@import "reset.css";
* {
  scrollbar-width: auto;
  scrollbar-color: #636363 #ffffff;
}
*::-webkit-scrollbar {
  width: 13px;
}
*::-webkit-scrollbar-thumb {
  background-color: #636363;
  border-radius: 8px;
  border: 3px solid #ffffff;
}

section {
  margin: 0px 100px 0px 100px;
}

.body {
  font-family: "Oswald", sans-serif;
  color: black;
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stickymenu {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  height: 100px;
  padding: 10px 0px;
  padding-top: 20px;
  -webkit-box-shadow: 3px 11px 26px -20px rgba(0, 0, 0, 0.91);
  box-shadow: 3px 11px 26px -20px rgba(0, 0, 0, 0.91);
  background-color: white;
}
.stickymenu .nav-logo {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stickymenu .links .nav-menu .nav-item .nav-link {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stickymenu .subnav-content {
  top: 90px;
}
.stickymenu .subnav-content a {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stickymenu .brand {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stickymenu .menutoggle {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stickymenu .menutoggle .bar {
  background-color: black;
}
.stickymenu .menutoggle .white {
  background-color: white;
}

nav {
  position: absolute;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 15px;
  width: 100%;
  z-index: 100;
}
nav .nav-logo {
  z-index: 100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
nav .links {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 15px 0 15px;
}
nav .links .nav-menu {
  cursor: default;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
nav .links .nav-menu .nav-item {
  padding: 15px;
  font-size: 28px;
  font-weight: 300;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
nav .links .nav-menu .nav-item .nav-link {
  color: black;
}
nav .links .nav-menu .nav-item .nav-link .rotate {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
nav .links .nav-menu .nav-item .nav-link .active {
  width: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
nav .links .nav-menu .nav-item .nav-link:hover {
  color: #a7a7a7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav .links .nav-menu .nav-item .nav-link:hover img {
  opacity: 0.5;
}
nav .links .nav-menu .nav-item .subnav-mobile {
  display: none;
}
nav .links .nav-menu .nav-item .subnav-mobile a {
  color: black;
  text-decoration: none;
}
nav .links .nav-menu .nav-item .subnav-mobile a:hover {
  color: #a7a7a7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav .links .nav-menu.active {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}
nav .menutoggle {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
nav .menutoggle:hover .bar {
  background-color: #a7a7a7;
}
nav .menutoggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: black;
}
nav .menutoggle.active .bar:nth-child(2) {
  opacity: 0;
}
nav .menutoggle.active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
nav .menutoggle.active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
nav .subnav-content {
  cursor: default;
  pointer-events: none;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  top: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 100%;
  background: white;
  padding-bottom: 20px;
  padding-top: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}
nav .subnav-content a {
  font-size: 28px;
  font-weight: 300;
  text-decoration: none;
  color: black;
  width: 50px;
}
nav .subnav-content a:hover {
  color: #a7a7a7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav .show {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: white;
  margin: 20vh 0px 10vh 0px;
  padding: 120px 180px;
  min-height: 600px;
  height: 70vh;
  background: url(../img/fondo.png) no-repeat;
  background-size: 100%;
}
.home .text {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 70%;
}
.home .text h3 {
  font-size: 47px;
  font-weight: lighter;
}
.home .text h2 {
  font-size: 75px;
  font-weight: 400;
}

.description {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 200px;
}
.description .info {
  width: 55%;
}
.description .info .title {
  margin-bottom: 50px;
  width: 65%;
}
.description .info .title h2 {
  font-size: 83px;
  font-weight: 300;
}
.description .info .title h2 b {
  font-weight: 400;
}
.description .info .title .bar-blue {
  width: 54px;
  height: 11px;
}
.description .info .desc {
  width: 90%;
}
.description .info .desc img {
  width: 39px;
  height: 39px;
}
.description .info .desc p {
  color: #557996;
  margin-left: 10px;
  font-size: 30px;
}
.description .info .desc p .black {
  font-size: 31px;
  font-weight: 400;
  color: black;
}
.description .info .desc p .black b {
  font-weight: 500;
}
.description .services {
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.description .services a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: black;
  margin: 10px 0px 5px 10px;
  font-size: 36px;
  font-weight: 300;
  text-decoration: none;
}
.description .services a img {
  margin-right: 10px;
}
.description .services a:hover {
  font-weight: 400;
}

.count {
  margin-bottom: 150px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.count .col {
  text-align: center;
  font-weight: 300;
}
.count .col p {
  color: #557996;
  font-size: 121px;
  font-weight: 500;
}
.count .col .counter-desc {
  font-size: 40px;
}

.transition {
  margin: 0;
  height: 590px;
  max-height: 600px;
  width: 100%;
}
.transition a {
  display: contents;
  text-decoration: none;
  color: white;
}
.transition a:hover {
  text-decoration: none;
}
.transition .background {
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.transition .background:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 0px 0px 183px 15px rgba(0, 0, 0, 0.39) inset;
  -webkit-box-shadow: 0px 0px 183px 15px rgba(0, 0, 0, 0.39) inset;
  -moz-box-shadow: 0px 0px 183px 15px rgba(0, 0, 0, 0.39) inset;
}
.transition .background:hover .description {
  background-color: rgba(0, 0, 0, 0.151);
}
.transition .background .box-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  color: white;
  padding: 5px 10px 10px 10px;
  -ms-flex-line-pack: center;
  align-content: center;
}
.transition .background .box-blue p {
  font-weight: 300;
  font-size: 25px;
  margin: 0;
}
.transition .background .left {
  width: 30%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: url(../img/bar-left.png) no-repeat left;
  background-size: contain;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.transition .background .left p {
  text-align: left;
}
.transition .background .right {
  width: 30%;
  -ms-flex-item-align: end;
  align-self: flex-end;
  background: url(../img/bar-right.png) no-repeat right;
  background-size: contain;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.transition .background .right p {
  text-align: right;
}
.transition .background .description {
  margin: 0;
  text-align: end;
  padding: 0 150px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.075);
}
.transition .background .description p {
  font-weight: 300;
  font-size: 35px;
  color: white;
  text-align: center;
  margin: 15px 0;
}

.blur {
  position: fixed;
  opacity: 0;
  top: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.active-blur {
  opacity: 0.7;
  z-index: 999;
}

.formservice {
  color: white;
  position: fixed;
  top: 50%;
  right: 50%;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 50px 70px;
  width: 25%;
  border-radius: 10px 10px 58px 10px;
  -webkit-border-radius: 10px 10px 58px 10px;
  -moz-border-radius: 10px 10px 58px 10px;
  background-color: #153f59;
}
.formservice .flex {
  margin-bottom: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.formservice .flex h3 {
  font-size: 35px;
  color: #ffffff;
  font-weight: 400;
}
.formservice .flex button {
  font-size: 25px;
  color: #ffffff;
  font-weight: 600;
  border: 0;
  opacity: 1;
  background-color: transparent;
  text-shadow: 0 0px 0 #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.formservice .flex button:hover {
  color: grey;
}
.formservice form input {
  border: 0;
  border-bottom: 1px solid grey;
  font-size: 20px;
  font-weight: 300;
}
.formservice form input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.formservice form textarea {
  border: 0;
  border-bottom: 1px solid grey;
  font-size: 20px;
  font-weight: 300;
  resize: none;
  height: 50px;
}
.formservice form textarea:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.formservice form .flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.formservice form .flex button {
  font-size: 25px;
  color: #ffffff;
  font-weight: 600;
  border: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.formservice form .flex button:hover {
  color: grey;
}
.formservice form .flex p {
  margin: 0;
}

.showform {
  opacity: 1;
  z-index: 1000;
}

.service {
  margin: 150px 40px 10vh 40px;
  height: 70vh;
  min-height: 500px;
  padding: 0 80px 0 0;
  position: relative;
}
.service .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.service .info {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(50%, #ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  width: 35%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 0 80px;
}
.service .info .path {
  height: 35%;
  font-size: 23px;
  font-weight: 300;
}
.service .info .title {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.service .info .title .icon {
  width: 47px;
  height: 47px;
  margin-bottom: 30px;
}
.service .info .title h2 {
  width: 50%;
  font-size: 40px;
  margin: 0;
}
.service .info .title h2 b {
  font-size: 70px;
}
.service .info .title .bar-blue {
  width: 50px;
  height: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.service .info .desc-service {
  font-size: 25px;
  font-weight: 200;
}
.service .info .float {
  position: absolute;
  right: 2%;
  bottom: 5%;
  background-color: #153f59;
  border-radius: 35px 10px 10px 10px;
  -webkit-border-radius: 35px 10px 10px 10px;
  -moz-border-radius: 35px 10px 10px 10px;
  border: 0px solid #153f59;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 17px;
  padding: 14px 54px;
  text-decoration: none;
}
.service .info .float:hover {
  background-color: #557996;
}
.service .image {
  width: 65%;
}
.service .image img {
  width: 100%;
}

.items {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
}
.items .item {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  cursor: default;
  width: 30%;
  color: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 5px 10px 5px;
  padding: 25px 40px;
  background-color: #153f59;
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.items .item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.items .item:hover {
  background-color: white;
  color: black;
}

.item-title {
  margin-bottom: 70px;
}
.item-title h2 {
  text-align: center;
  font-weight: 300;
}
.item-title h2 b {
  font-weight: 500;
}

.search {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 150px;
  margin-bottom: 30px;
}
.search .search-container {
  height: 30px;
}
.search .search-container form {
  height: 100%;
}
.search .search-container form input {
  border: 0;
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  height: 100%;
}
.search .search-container form input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.search .search-container form input:focus-visible {
  outline: 0;
}
.search .search-container form button {
  position: relative;
  background: none;
  border: 0;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  height: 100%;
}
.search .search-container form button img {
  text-align: center;
  height: 15px;
  width: 15px;
}

.proyects {
  background: url(../img/proyect/fondo.png) no-repeat;
  background-position: right;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 100px;
  margin-top: 50px;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.proyects .block {
  display: block;
  text-decoration: none;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.proyects .block:hover {
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.56);
  -webkit-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.56);
}
.proyects .proyect {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 480px;
}
.proyects .proyect .info {
  width: 50%;
  height: 100%;
  padding: 100px;
}
.proyects .proyect .info h2 {
  font-size: 30px;
  font-weight: 400;
}
.proyects .proyect .info ul {
  overflow: auto;
  margin-top: 10px;
  font-size: 25px;
  font-weight: 200;
}
.proyects .proyect .image {
  height: 100%;
  position: relative;
  text-align: center;
  color: white;
  padding: 40px;
}
.proyects .proyect .image .top-left {
  padding: 20px;
  padding-right: 30px;
  position: absolute;
  top: 70px;
  left: 40px;
  color: white;
  font-size: 30px;
  font-weight: 300;
  background: url(../img/proyect/bar-azul.png) no-repeat center;
  background-size: contain;
}

.clients {
  margin-top: 50px;
  margin-bottom: 50px;
}
.clients .title-carousel {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.clients hr {
  border-top: 2px solid black;
}
.clients .glide__slides {
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.clients .glide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.clients .glide__arrows {
  position: absolute;
  top: -70px;
  right: 20px;
}
.clients .glide__arrows button {
  border: 0;
  background: none;
}

.information {
  background: url(../img/proyect/fondo.png) no-repeat right;
  margin-top: 150px;
  padding-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.information .info-detalle {
  width: 50%;
  margin: 50px auto;
}
.information .info-detalle h2 {
  font-size: 30px;
  font-weight: 400;
}
.information .info-detalle ul {
  font-size: 25px;
  font-weight: 200;
}

.history {
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.445)), to(rgba(255, 255, 255, 0))), url(../img/empresa/Trama.png) no-repeat;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.445), rgba(255, 255, 255, 0)), url(../img/empresa/Trama.png) no-repeat;
  background-position: right;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 200px 0 50px 120px;
}
.history .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.history .item .image {
  padding: 9em 2em;
}
.history .item .image > div {
  position: relative;
  text-align: center;
  font-size: 0.8em;
}
.history .item .image > div::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 2.75em;
  left: 2.5em;
  z-index: -1;
}
.history .item .image img {
  border-radius: 50%;
}
.history .item .details {
  position: relative;
  padding-right: 5%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.history .item .details > div {
  padding-top: 10px;
  margin: 10em 0;
  width: 30%;
}
.history .item .details > div h1 {
  font-size: 50px;
  margin: 0;
  padding: 0 0 0.5em 0;
  letter-spacing: 0.1em;
}
.history .item .details > div p {
  margin: 0;
  padding: 0;
  font-size: 21px;
  font-weight: 300;
}
.history .item .details > div p b {
  font-weight: 400;
}
.history .item .details::before {
  content: "";
  width: 0;
  height: 100%;
  border-left: 1px solid #232b50;
  position: absolute;
  top: 0;
  left: -5.35em;
  z-index: -1;
}

.cv {
  margin-top: 200px;
}
.cv .name-link {
  font-size: 35px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cv .name-link h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 400;
}
.cv .name-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #557996;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: underline;
  font-weight: 300;
}
.cv .name-link a img {
  margin: 0;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.cv hr {
  border-top: 2px solid black;
}
.cv h4 {
  font-weight: 500;
  font-size: 25px;
  color: #557996;
  margin-top: 10px;
}
.cv .info-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 35px;
  margin-bottom: 70px;
}
.cv .info-flex .personal-info {
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cv .info-flex .personal-info .spects {
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 160px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cv .info-flex .personal-info .spects p {
  font-weight: 300;
  font-size: 20px;
}
.cv .info-flex .personal-info .spects p img {
  margin-right: 10px;
}
.cv .info-flex .imgperfil {
  margin: 0 auto;
  text-align: end;
  width: 50%;
}

.map {
  background: url(../img/contact/fondomapa.jpg) no-repeat center;
  margin: 120px 0px 10vh 0px;
  height: 70vh;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.map .text-blur {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
  padding: 120px 180px;
}
.map .text-blur h2 {
  margin-bottom: 30px;
  width: 8rem;
  font-size: 70px;
  font-weight: 500;
}
.map .text-blur img {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}
.map .text-blur p {
  font-size: 25px;
  color: #557996;
  width: 40rem;
}

.form-info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 70px;
}
.form-info .info h2 {
  font-size: 40px;
  color: #557996;
  margin-bottom: 20px;
}
.form-info .info h4 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}
.form-info .info p {
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 15px;
}
.form-info .info a {
  font-size: 30px;
  font-weight: 200;
  text-decoration: none;
  color: black;
}
.form-info .form {
  width: 30%;
}
.form-info .form form h3 {
  font-size: 40px;
  color: #557996;
  font-weight: 400;
  margin-bottom: 20px;
}
.form-info .form form input {
  border: 0;
  border-bottom: 1px solid grey;
  font-size: 25px;
  font-weight: 300;
}
.form-info .form form input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-info .form form textarea {
  border: 0;
  border-bottom: 1px solid grey;
  font-size: 25px;
  font-weight: 300;
  resize: none;
  height: 50px;
}
.form-info .form form textarea:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-info .form form .flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-info .form form .flex button {
  font-size: 30px;
  color: #232b50;
  font-weight: 600;
  border: 0;
  background-color: transparent;
}
.form-info .form form .flex p {
  margin: 0;
}

footer {
  padding: 50px 150px 25px 150px;
  background: #232323;
  height: 350px;
  color: white;
}
footer .flex {
  margin-bottom: 10px;
}
footer .flex .logo {
  width: 25%;
}
footer .flex .services {
  width: 35%;
}
footer .flex .services .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 40%;
}
footer .flex .services .flex a {
  color: white;
  text-decoration: none;
}
footer .flex .services .flex a:hover {
  color: grey;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
footer .flex .smedia {
  width: 15%;
}
footer .flex .info {
  width: 25%;
}
footer .flex .info p {
  margin-bottom: 5px;
  color: white;
}
footer hr {
  width: 100%;
  border-top: 1px solid grey;
}
footer p {
  color: grey;
}
footer p a {
  text-decoration: none;
  color: white;
}
footer p a:hover {
  text-decoration: none;
  color: grey;
}

@media only screen and (max-width: 1535px) {
  .count .col p {
    font-size: 100px;
  }
  .count .col .counter-desc {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1366px) {
  nav .nav-logo {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  
  .home {
      margin:20vh 0 5vh 0;
  }

  .home .text h2 {
    font-size: 55px;
  }
  
  .description .info .title h2 {
     font-size: 50px
  }
  
  .description .info .desc p {
      font-size:25px;
  }
  
  .description .services a {
      font-size:30px;
  }
  
  .description .services a img {
      width:45px;
      height:45px;
  }

  .transition .background .description {
    padding: 0 60px;
  }

  .formservice {
    width: 40%;
  }

  .service .info .title h2 {
    font-size: 30px;
  }
  .service .info .title h2 b {
    font-size: 50px;
  }
  .service .info .title .bar-blue {
    height: 10px;
    width: 40px;
  }
  .service .info .desc-service {
    font-size: 22px;
  }

  .proyects a .proyect .info {
    padding: 60px;
  }

  .map .flex {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  section {
    margin: 0px 20px 0px 20px;
  }

  .stickymenu .nav-logo {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  .stickymenu .links .nav-menu .nav-item .nav-link {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .active {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  nav .nav-logo {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  nav .links .nav-menu {
    padding-top: 100px;
    position: fixed;
    left: -100%;
    top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }
  nav .links .active {
    left: 0;
  }
  nav .links .active .nav-item .show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  nav .links .active .nav-item .show a {
    padding: 10px;
  }

  .home {
    background-position: center;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 100px 0px 30px 0px;
    height: 90vh;
    padding: 0 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .home .text {
    width: 100%;
    text-align: center;
  }
  .home .text h3 {
    font-size: 30px;
  }
  .home .text h2 {
    font-size: 40px;
  }

  .description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  .description .info {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
  .description .info .title {
    margin-bottom: 10px;
    width: 100%;
  }
  .description .info .title h2 {
    font-size: 40px;
  }
  .description .info .desc p {
    font-size: 20px;
  }
  .description .info .desc p .black {
    font-size: 20px;
  }
  .description .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .description .services a {
    font-size: 25px;
  }
  .description .services a img {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .count {
    margin: 0;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .count .col {
    width: 50%;
    margin-bottom: 10px;
  }
  .count .col p {
    margin-bottom: 0;
    font-size: 40px;
  }
  .count .col .counter-desc {
    font-size: 20px;
  }

  .transition {
    display:none;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    max-height: none;
    width: 100%;
  }
  .transition .background {
    padding: 50px 0 0 0;
    width: 100%;
  }
  .transition .background .description {
    padding: 0 15px;
  }
  .transition .background .description p {
    font-size: 23px;
  }
  .transition .background .box-blue {
    margin-top: 0;
    margin-bottom: 50px;
    width: 50%;
  }

  .formservice {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    padding: 30px 40px;
  }

  .service {
    color: white;
    margin: 100px 0px 30px 0px;
    height: 90vh;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
    -webkit-box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
    -moz-box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
  }
  .service .info {
    background: transparent;
    width: 100%;
    padding: 0 15px;
    text-shadow: 0px 3px 50px black;
  }
  .service .info .path {
    margin-left: 5px;
    width: 100%;
    font-size: 20px;
  }
  .service .info .title {
    width: 100%;
    margin-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
    margin-bottom: 20px;
  }
  .service .info .title img {
    margin-bottom: 0;
    margin-left: 15px;
  }
  .service .info .title h2 {
    text-align: center;
    width: 100%;
  }
  .service .info .title .bar-blue {
    display: none;
  }
  .service .info .desc-service {
    text-align: center;
    font-size: 30px;
  }
  .service .info .float {
    margin-top: 40px;
    position: relative;
    right: 0;
    text-align: center;
    border-radius: 15px;
  }

  .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .items .item {
    width: 75%;
  }

  .item-title {
    text-align: center;
    padding: 0;
    margin-bottom: 10px;
  }
  .item-title h2 {
    font-size: 28px;
  }

  .proyects {
    margin-bottom: 50px;
  }
  .proyects a {
    margin: 50px 0;
  }
  .proyects a .proyect {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .proyects a .proyect .info {
    padding: 5px 10px;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 10px;
  }
  .proyects a .proyect .info h2 {
    margin: 0;
    font-size: 20px;
  }
  .proyects a .proyect .info ul {
    font-size: 18px;
  }
  .proyects a .proyect .image {
    padding: 0;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .proyects a .proyect .image .top-left {
    font-size: 18px;
    top: 0;
    left: 0;
  }
  
  .information {
      background:white;
  }
  
  .information .image img {
      width: 100%;
  }
  
  .information .info-detalle {
      width:100%;
  }

  .history {
    margin: 100px 0px 30px 0px;
    width: 100%;
  }
  .history .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .history .item .image {
    padding: 50px 10px;
  }
  .history .item .image img {
    width: 80px;
    height: 80px;
  }
  .history .item .details > div {
    padding-top: 10px;
    margin: 60px 0;
    width: 100%;
  }
  .history .item .details > div h1 {
    font-size: 30px;
  }
  .history .item .details > div p {
    margin: 0;
    padding: 0;
    font-size: 18px;
  }
  .history .item .details::before {
    left: -50px;
  }

  .cv {
    margin: 0;
    margin-top: 40px;
  }
  .cv .name-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cv .name-link h3 {
    font-size: 30px;
  }
  .cv .name-link a {
    font-size: 25px;
  }
  .cv .name-link a img {
    width: 30px;
    height: 30px;
  }
  .cv .info-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .cv .info-flex .personal-info {
    width: 100%;
    padding: 0 10px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .cv .info-flex .personal-info h4 {
    text-align: center;
  }
  .cv .info-flex .personal-info .spects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin-left: 20px;
  }
  .cv .info-flex .imgperfil {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
    text-align: center;
  }

  .map {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 100px 0px 30px 0px;
  }
  .map .text-blur {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
    width: 100%;
    box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
    -webkit-box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
    -moz-box-shadow: 0px 0px 400px 200px rgba(0, 0, 0, 0.48) inset;
  }
  .map .text-blur h2 {
    color:white;
    text-align: center;
    width: 100%;
    font-size: 40px;
  }
  .map .text-blur .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .map .text-blur .flex img {
    display: none;
  }
  .map .text-blur .flex p {
    color: white;
    text-align: center;
    font-size: 25px;
  }

  .form-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-info .info {
    text-align: center;
    width: 100%;
  }
  .form-info .info h2 {
    font-size: 30px;
  }
  .form-info .info h4 {
    font-size: 25px;
  }
  .form-info .info p {
    font-size: 18px;
  }
  .form-info .info p a {
    font-size: 18px;
  }
  .form-info .form {
    width: 100%;
  }
  .form-info .form form h3 {
    font-size: 30px;
    text-align: center;
  }
  .form-info .form form .form-group input {
    font-size: 18px;
  }
  .form-info .form form .form-group textarea {
    font-size: 18px;
  }
  .form-info .form form .flex button {
    font-size: 25px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer {
    padding: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    margin-bottom: 20px;
  }
  footer .flex .logo {
    display: none;
    width: 100%;
    margin-bottom: 15px;
  }
  footer .flex .services {
    display: none;
    width: 100%;
    margin-bottom: 15px;
  }
  footer .flex .services .flex {
    margin: 0;
  }
  footer .flex .services .flex a {
    padding: 5px;
  }
  footer .flex .smedia {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .flex .info {
    width: 100%;
    margin-bottom: 15px;
  }
  footer p {
    text-align: center;
  }
}