@font-face {
  font-family: "raleway";
  src: url("../fonts/Raleway-Medium.ttf");
}
@font-face {
  font-family: "raleway-l";
  src: url("../fonts/Raleway-ExtraLight.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.img-fondo {
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1000000;
  width: 90vw;
  height: auto;
  overflow-x: hidden;
}
/*------------/HEADER/--------------*/
.menu {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 100000000;
  flex-direction: row;
  flex-wrap: wrap;
}
nav {
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
}
nav .logo {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  display: flex;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li {
  margin: 0 5px;
}
nav ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "raleway-l";
}
nav ul li a.active, nav ul li a:hover {
  color: #141F91;
}

.menu-btn{
    color: #fff;
    display: none;
}

nav .menu-btn i {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"] {
  display: none;
}
@media (max-width: 1000px) {
  nav {
    padding: 0 40px 0 50px;
  }
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}
.content div {
  font-size: 40px;
  font-weight: 700;
}
/*------------/HEADER/--------------*/
/*------------/SLIDER/--------------*/
.home {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.home .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: none;
  padding: 0 15px;
  animation: slide 2s ease;
}
.home .slide.active {
  display: flex;
}
@keyframes slide {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.container {
  max-width: 1170px;
  margin: auto;
}
.home .container {
  flex-grow: 1;
}
.home .caption {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.57);
  padding: 20px;
  transition-delay: .2s;
  transition-duration: .2s;
}
h1 {
  font-size: 42px;
  color: #000000;
  margin: 0;
  font-family: "raleway-l";
}
p {
  font-size: 1em;
  color: #000000;
  margin: 0;
  font-family: "raleway";
}
.home .caption h1 {
  font-size: 42px;
  color: #000000;
  margin: 0;
  font-family: "raleway-l";
}
.home .slide.active .caption h1 {
  opacity: 0;
  animation: captionText .5s ease forwards;
  animation-delay: 1s;
}
.home .caption p {
  font-size: 18px;
  margin: 15px 0 30px;
  color: #222222;
}
.home .slide.active .caption p {
  opacity: 0;
  animation: captionText .5s ease forwards;
  animation-delay: 1.2s;
}
.home .caption a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #D3D800;
  text-decoration: none;
  color: #000;
  font-family: "raleway-l";
}
.home .slide.active .caption a {
  opacity: 0;
  animation: captionText .5s ease forwards;
  animation-delay: 1.4s;
}
@keyframes captionText {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.home .controls .prev, .home .controls .next {
  position: absolute;
  z-index: 2;
  top: 50%;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  color: #ffffff;
  background-color: #0056A4;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all .5s ease;
}
.home .controls .prev:hover, .home .controls .next:hover {
  background-color: #D3D800;
}
.home .controls .prev {
  left: 0;
}
.home .controls .next {
  right: 0;
}
.home .indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  transform: translateX(-50%);
  cursor: pointer;
  font-family: "raleway"
}
.home .indicator div {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: #000;
  background-color: #D3D800;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  margin: 0 3px;
  cursor: pointer;
}
.home .indicator div.active {
  background-color: #000;
  color: #fff;
}
/*responsive*/
@media(max-width: 767px) {
  .controls {
    display: none;
  }
}
/*------------/SLIDER/--------------*/
/*------------/SERVICIOS/--------------*/
.servicios {
  position: relative;
  width: 100%;
  padding: 50px;
  margin-top: 50px;
}
.wrapper {
  display: grid;
  margin: 10px 0px auto;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}
.servicios-ch {
  display: none;
}
  .servicios-cell{
        display: none;
    }
.servicios {
  display: block;
}
.wrapper .box {
  width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}
.wrapper .box .front-face {
  background: #fff;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .front-face .icon {
  height: 80px;
}
.box .front-face .icon i {
  font-size: 50px;
}
.box .front-face span, .box .back-face span {
  font-size: 22px;
  font-weight: 100;
  text-transform: uppercase;
  font-family: "raleway-l"
}
.box .front-face .icon i, .box .front-face span {
  background-color: #0056A4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "raleway-l"
}
.box .back-face {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #0056A4;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background-color: #D3D800;
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p {
  margin-top: 10px;
  text-align: justify;
}
.box:hover .back-face {
  opacity: 1;
  transform: rotateX(0deg);
}
.box:hover .front-face {
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg);
}
/*------------/SERVICIOS/--------------*/
/*------------/SOMOS/--------------*/
.titulo-somos {
  padding-left: 50px;
  margin-top: 100px;
  position: relative;
}
.somos {
  position: relative;
  background: url("../img/somos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  margin-top: 50px;
}
.floating-triangle {
  opacity: .9;
}
.texto-somos {
  font-family: "raleway";
  font-size: 1em;
  width: 50%;
  background-color: #fff;
  padding: 30px;
  float: left;
  margin-left: 50%;
  margin-top: 200px;
  text-align: justify;
}
.floating-triangle-a {
  margin-top: -300px;
  float: left;
  margin-right: 500px;
}
.floating-triangle-t {
  margin-top: 150px;
  float: left;
}
.floating-triangle-v {
  margin-top: 0px;
  float: left;
}
.myv {
  width: 70%;
  margin-left: 10%;
  font-family: "raleway";
  font-size: 1em;
  text-align: justify;
  height: 300px;
  position: absolute;
  margin-top: 400px;
}
.mision {
  width: 70%;
}
.triangulos {
  width: 30%;
}
.myv tr td {
  padding: 20px;
}
.floating-triangle-a2 {
  margin-top: -400px;
  float: right;
  margin-left: 200px;
}
.floating-triangle-t2 {
  margin-top: -200px;
  float: right;
}
.floating-triangle-v2 {
  margin-top: -350px;
  float: right;
}
/*------------/SOMOS/--------------*/
/*------------/BENEFICIOS/--------------*/
.beneficios {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 100PX;
}
.benef {
  width: 80%;
  padding: 20px;
  text-align: center;
  display: block;
}

.benef tr td{
    padding: 20px 50px;
}

.benef-ch {
  display: none;
}
.oficinas-ch {
  display: none;
}

/*------------/BENEFICIOS/--------------*/
/*------------/GALERÍA/-----------------*/
.galeria {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 0PX;
}
/*-------------/GALERÍA/--------------*/
/*------------/CLIENTES/--------------*/
.clientes {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 50px;
  height: 350px;
}
.slider {
  max-width: 1100px;
  display: flex;
}
.slider .card {
  flex: 1;
  margin: 0 10px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
}
.slider .card .img {
  height: 200px;
  width: 100%;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
}
.slider .card .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slider .card .content {
  padding: 10px 20px;
}
.card .content .title {
  font-size: 25px;
  font-weight: 600;
}
.card .content .sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 20px;
}
.card .content p {
  text-align: justify;
  margin: 10px 0;
}
.card .content .btn {
  display: block;
  text-align: left;
  margin: 10px 0;
}
.card .content .btn button {
  background: #e74c3c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.card .content .btn button:hover {
  transform: scale(0.9);
}
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative
}
.owl-carousel {
  display: none;
  width: 80%;
  z-index: 1
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}
.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0)
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none
}
.owl-carousel .owl-item img {
  display: block;
  width: 50%
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}
.owl-carousel.owl-hidden {
  opacity: 0
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  padding: 20px;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}
.owl-carousel.owl-rtl {
  direction: rtl
}
.owl-carousel.owl-rtl .owl-item {
  float: right
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both
}
.owl-carousel .owl-animated-in {
  z-index: 0
}
.owl-carousel .owl-animated-out {
  z-index: 1
}
.owl-carousel .fadeOut {
  animation-name: fadeOut
}
@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}
.owl-height {
  transition: height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease
}
.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3)
}
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%
}
/*------------/CLIENTES/--------------*/
/*------------/OFICINAS/--------------*/
.oficinas {
  margin-top: -100px;
}
/*------------/OFICINAS/--------------*/
/*------------/PARALLAX/--------------*/
.parallax {
  /* The image used */
  background-image: url("../img/parallax.jpg");
  /* Set a specific height */
  height: 300px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
}
/*------------/PARALLAX/--------------*/
/*------------/FORM/------------------*/
.contacto {
  font-family: "raleway";
  width: 100%;
  height: 580px;
  display: flex;
  padding-left: 50px;
  margin-top: 100px;
  padding-bottom: 100px;
}
form {
  background: #fff;
  width: 40%;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
  margin-top: 70px;
  margin-left: -100px;
  text-align: center;
  height: 450px;
}
.form {
  width: 100%;
  margin: auto;
}
form .grupo {
  position: relative;
  margin: 20px;
}
input, textarea {
  background: none;
  color: #000000;
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--colorTextos);
  resize: none;
  background-color: #E0DFDF;
}
input:focus, textarea:focus {
  outline: none;
  color: rgb(94, 93, 93);
}
input:focus ~ .fomr-text, input:valid ~ .fomr-text, textarea:focus ~ .fomr-text, textarea:valid ~ .fomr-text {
  position: absolute;
  top: -14px;
  font-size: 12px;
  color: #2196F3;
}
.fomr-text {
  color: var(--colorTextos);
  font-size: 15px;
  position: absolute;
  left: 5px;
  top: 10px;
  transition: 0.5s ease all;
  pointer-events: none;
}
input:focus ~ .barra::before, textarea:focus ~ .barra::before {
  width: 100%;
}
.barra {
  position: relative;
  display: block;
  width: 100%;
}
.barra::before {
  content: '';
  height: 2px;
  width: 0%;
  bottom: 0;
  position: absolute;
  background: #D3D800;
  transition: 0.3s ease all;
  left: 0%;
}
button {
  background: #D3D800;
  display: block;
  width: 100px;
  height: 40px;
  border: none;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  margin: 10px auto;
  cursor: pointer;
  font-family: "raleway"
}
.maps {
  padding-left: 50px;
  margin-top: 100px;
}
.maps iframe {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.imagen-form {
  width: 40%;
  margin-left: 50px;
  margin-top: 130px;
}
.imagen-form img {
  width: 100%;
}
/*------------/FORM/------------------*/
/*------------/FOOTER/----------------*/
.footer {
  height: 50px;
  background-color: #000;
  width: 100%;
  margin-top: 0px;
  border-bottom: 3px solid #D3D800;
}
@media screen and (min-width: 1900px) and (max-width: 2500px) {
  .container {
    max-width: 1800px;
    margin: auto;
  }
  .floating-triangle-a {
    margin-top: -300px;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
  }
  .floating-triangle-v {
    margin-top: 0px;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 30px;
  }
        .benef {
  width: 60%;
}
        p {
  font-size: 25px;
}
    .texto-somos {
  font-size: 25px;
}
    .myv {
  font-size: 25px;
}
    
    .home .caption p {
       font-size: 25px; 
    }
    .wrapper .box {
    width: 550px;
    }
    .wrapper .box .front-face {
  height: 280px;
}
    .wrapper .box .back-face {
  height: 280px;
}
}
@media screen and (min-width: 1800px) and (max-width: 1899px) {
  .container {
    max-width: 1700px;
    margin: auto;
  }
  .floating-triangle-a {
    margin-top: -300px;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
  }
  .floating-triangle-v {
    margin-top: 0px;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 40px;
  }
    .benef {
  width: 50%;
}
            p {
  font-size: 25px;
}
    .texto-somos {
  font-size: 25px;
}
    .myv {
  font-size: 25px;
}
    
    .home .caption p {
       font-size: 25px; 
    }
    .wrapper .box {
    width: 550px;
    }
    .wrapper .box .front-face {
  height: 280px;
}
    .wrapper .box .back-face {
  height: 280px;
}
}
@media screen and (min-width: 1700px) and (max-width: 1799px) {
  .container {
    max-width: 1600px;
    margin: auto;
  }
  .floating-triangle-a {
    margin-top: -300px;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
  }
  .floating-triangle-v {
    margin-top: 0px;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 65px;
  }
        .benef {
  width: 50%;
}
            p {
  font-size: 25px;
}
    .texto-somos {
  font-size: 25px;
}
    .myv {
  font-size: 25px;
}
    
    .home .caption p {
       font-size: 25px; 
    }
    .wrapper .box {
    width: 500px;
    }
    .wrapper .box .front-face {
  height: 280px;
}
    .wrapper .box .back-face {
  height: 280px;
}
}
@media screen and (min-width: 1600px) and (max-width: 1699px) {
  .container {
    max-width: 1500px;
    margin: auto;
  }
  .floating-triangle-a {
    margin-top: -300px;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
  }
  .floating-triangle-v {
    margin-top: 0px;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 75px;
  }
        .benef {
  width: 60%;
}
}
@media screen and (min-width: 1500px) and (max-width: 1599px) {
  .container {
    max-width: 1400px;
    margin: auto;
  }
  .home .container {
    flex-grow: 1;
  }
  .home .caption {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.57);
    padding: 20px;
    transition-delay: .2s;
    transition-duration: .2s;
  }
  .floating-triangle-a {
    margin-top: -300px;
    float: left;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
    float: left;
  }
  .floating-triangle-v {
    margin-top: 0px;
    float: left;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    float: right;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
    float: right;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
    float: right;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 40px;
  }
  .imagen-form img {
    width: 100%;
  }
  .imagen-form {
    width: 40%;
    margin-left: 50px;
    margin-top: 85px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1499px) {
  .container {
    max-width: 1300px;
    margin: auto;
  }
  .floating-triangle-a {
    margin-top: -300px;
    margin-right: 1500px;
  }
  .floating-triangle-t {
    margin-top: 150px;
  }
  .floating-triangle-v {
    margin-top: 0px;
  }
  .floating-triangle-a2 {
    margin-top: -400px;
    margin-left: 200px;
  }
  .floating-triangle-t2 {
    margin-top: -200px;
  }
  .floating-triangle-v2 {
    margin-top: -350px;
  }
}
@media screen and (min-width: 501px) and (max-width:1118px) {
  .container {
    max-width: 900px;
    margin: auto;
  }
  form {
    width: 50%;
  }
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
    .menu-btn{
    color: #fff;
    display: block;
}
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    margin-left: 0px;
  }
  nav ul li a.active, nav ul li a:hover {
    background: none;
    color: cyan;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 220px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .wrapper {
    display: grid;
    margin: 10px 0px auto;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .wrapper .box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .front-face .icon {
    height: 80px;
  }
  .box .front-face .icon i {
    font-size: 50px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 22px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
  .box .front-face .icon i, .box .front-face span {
    background-color: #0056A4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "raleway-l"
  }
  .box .back-face {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 150px;
    width: 100%;
    padding: 30px;
    color: #0056A4;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background-color: #D3D800;
    transform: translateY(110px) rotateX(-90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .back-face p {
    margin-top: 10px;
    text-align: justify;
  }
  .box:hover .back-face {
    opacity: 1;
    transform: rotateX(0deg);
  }
  .box:hover .front-face {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
  }
  .servicios-ch {
    display: block;
  }

    .servicios-cell{
        display: none;
    }
  .servicios {
    display: none;
  }
  .oficinas {
    margin-top: -200px;
  }
  .contacto {
    background-color: #FFFFFF;
    margin-top: 0px;
    padding-top: 100px;
    height: 680px;
  }
  .imagen-form {
    display: none;
  }
  form {
    background: #fff;
    width: 60%;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: 70px;
    margin-left: 0 auto;
    text-align: center;
    height: 450px;
  }
  .benef {
    display: none;
  }
  .benef-ch {
    width: 60%;
    padding:0px;
      margin-top: 400px;
    text-align: center;
    display: block;
  }
  .oficinas-ch {
    width: 60%;
    padding:0px;
      margin-top: 50px;
    text-align: center;
    display: block;
  }
    
.benef-ch tr td {
    padding: 10px 30px;
}
      .floating-triangle-a {
    display: none;
  }
  .floating-triangle-t {
    display: none;
  }
  .floating-triangle-v {
    display: none;
  }
  .floating-triangle-a2 {
    display: none;
  }
  .floating-triangle-t2 {
    display: none;
  }
  .floating-triangle-v2 {
    display: none;
  }
}
@media screen and (min-width: 321px) and (max-width:410px) {
  .container {
    max-width: 300px;
    margin: auto;
  }
.home .caption {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.57);
  padding: 20px;
  transition-delay: .2s;
  transition-duration: .2s;
}
  form {
    width: 50%;
  }
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
    .menu-btn{
    color: #fff;
    display: block;
}
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    margin-left: 0px;
  }
  nav ul li a.active, nav ul li a:hover {
    background: none;
    color: cyan;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 220px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .wrapper {
    display: grid;
    margin: 10px 0px auto;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .wrapper .box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .front-face .icon {
    height: 80px;
  }
  .box .front-face .icon i {
    font-size: 50px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 22px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
  .box .front-face .icon i, .box .front-face span {
    background-color: #0056A4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "raleway-l"
  }
  .box .back-face {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 200px;
    width: 100%;
    padding: 30px;
    color: #0056A4;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background-color: #D3D800;
    transform: translateY(110px) rotateX(-90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .back-face p {
    margin-top: 10px;
    text-align: justify;
  }
  .box:hover .back-face {
    opacity: 1;
    transform: rotateX(0deg);
  }
  .box:hover .front-face {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
  }
  .oficinas {
    margin-top: 150px;
  }
  .oficinas-ch {
    width: 60%;
    padding:0px;
      margin-top: 50px;
    text-align: center;
    display: block;
  }
  .contacto {
    background-color: #FFFFFF;
    margin-top: 0px;
    padding-top: 100px;
    height: 680px;
  }
  .imagen-form {
    display: none;
  }
  form {
    background: #fff;
    width: 80%;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: 70px;
    margin-left: 0 auto;
    text-align: center;
    height: 450px;
  }
  .floating-triangle-a {
    display: none;
  }
  .floating-triangle-t {
    display: none;
  }
  .floating-triangle-v {
    display: none;
  }
  .floating-triangle-a2 {
    display: none;
  }
  .floating-triangle-t2 {
    display: none;
  }
  .floating-triangle-v2 {
    display: none;
  }
  .benef {
    display: none;
  }
  .benef-ch {
    width: 90%;
    padding:0px;
    text-align: center;
    display: block;
  }
.beneficios {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 500PX;
}
  h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  p {
    font-size: 15px;
    color: #000000;
    margin: 0;
    font-family: "raleway";
  }
  .home .caption h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  .box .front-face .icon i {
    font-size: 20px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
.servicios-ch {
  display: none;
}
  .servicios-cell{
        display: block;
    }
.servicios {
  display: none;
}
.texto-somos {
  font-size: 15px;
  width: 80%;
  background-color: #fff;
  padding: 30px;
  margin-left: 10%;
  margin-top: 50px;
  text-align: justify;
}
.myv {
  width: 80%;
  margin-left: 10%;
  font-family: "raleway";
  font-size: 15px;
  text-align: justify;
  height: 300px;
  position: absolute;
  margin-top: 400px;
}
.mision {
  width: 80%;
}
    .galeria {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-top: 0PX;
        margin-left: -100px;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}
.clientes {
  padding: 0px 50px;
  margin-top: 50px;
  height: 0px;
}
    .galeria{
        margin-left: -50px;
    }
}
@media screen and (min-width: 411px) and (max-width:500px) {
  .container {
    max-width: 300px;
    margin: auto;
  }
    
        .menu-btn{
    color: #fff;
    display: block;
}

.home .caption {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.57);
  padding: 20px;
  transition-delay: .2s;
  transition-duration: .2s;
}
  form {
    width: 50%;
  }
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    margin-left: 0px;
  }
    
  nav ul li a.active, nav ul li a:hover {
    background: none;
    color: cyan;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 220px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .wrapper {
    display: grid;
    margin: 10px 0px auto;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .wrapper .box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .front-face .icon {
    height: 80px;
  }
  .box .front-face .icon i {
    font-size: 50px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 22px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
  .box .front-face .icon i, .box .front-face span {
    background-color: #0056A4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "raleway-l"
  }
  .box .back-face {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 200px;
    width: 100%;
    padding: 30px;
    color: #0056A4;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background-color: #D3D800;
    transform: translateY(110px) rotateX(-90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .back-face p {
    margin-top: 10px;
    text-align: justify;
  }
  .box:hover .back-face {
    opacity: 1;
    transform: rotateX(0deg);
  }
  .box:hover .front-face {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
  }
  .oficinas {
    margin-top: 150px;
  }
  .oficinas-ch {
    width: 60%;
    padding:0px;
      margin-top: 50px;
    text-align: center;
    display: block;
  }
  .contacto {
    background-color: #FFFFFF;
    margin-top: 0px;
    padding-top: 100px;
    height: 680px;
  }
  .imagen-form {
    display: none;
  }
  form {
    background: #fff;
    width: 80%;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: 70px;
    margin-left: 0 auto;
    text-align: center;
    height: 450px;
  }
  .floating-triangle-a {
    display: none;
  }
  .floating-triangle-t {
    display: none;
  }
  .floating-triangle-v {
    display: none;
  }
  .floating-triangle-a2 {
    display: none;
  }
  .floating-triangle-t2 {
    display: none;
  }
  .floating-triangle-v2 {
    display: none;
  }
  .benef {
    display: none;
  }
  .benef-ch {
    width: 90%;
    padding:0px;
    text-align: center;
    display: block;
  }
.beneficios {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 500PX;
}
  h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  p {
    font-size: 15px;
    color: #000000;
    margin: 0;
    font-family: "raleway";
  }
  .home .caption h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  .box .front-face .icon i {
    font-size: 20px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
.servicios-ch {
  display: none;
}
  .servicios-cell{
        display: block;
    }
.servicios {
  display: none;
}
.texto-somos {
  font-size: 15px;
  width: 80%;
  background-color: #fff;
  padding: 30px;
  margin-left: 10%;
  margin-top: 50px;
  text-align: justify;
}
.myv {
  width: 80%;
  margin-left: 10%;
  font-family: "raleway";
  font-size: 15px;
  text-align: justify;
  height: 300px;
  position: absolute;
  margin-top: 400px;
}
.mision {
  width: 80%;
}
    .galeria {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-top: 0PX;
        margin-left: -40px;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}
.clientes {
  padding: 0px 50px;
  margin-top: 50px;
  height: 0px;
}
}
@media screen and (min-width: 300px) and (max-width:320px) {
  .container {
    max-width: 300px;
    margin: auto;
  }
.home .caption {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.57);
  padding: 20px;
  transition-delay: .2s;
  transition-duration: .2s;
}
      .menu-btn{
    color: #fff;
    display: block;
}
  form {
    width: 50%;
  }
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    margin-left: 0px;
  }
  nav ul li a.active, nav ul li a:hover {
    background: none;
    color: cyan;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 220px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .wrapper {
    display: grid;
    margin: 10px 0px auto;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .wrapper .box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
  }
  .wrapper .box .front-face {
    background: #fff;
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .front-face .icon {
    height: 80px;
  }
  .box .front-face .icon i {
    font-size: 50px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 22px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
  .box .front-face .icon i, .box .front-face span {
    background-color: #0056A4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "raleway-l"
  }
  .box .back-face {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 200px;
    width: 100%;
    padding: 30px;
    color: #0056A4;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background-color: #D3D800;
    transform: translateY(110px) rotateX(-90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
    transition: all 0.5s ease;
  }
  .box .back-face p {
    margin-top: 10px;
    text-align: justify;
  }
  .box:hover .back-face {
    opacity: 1;
    transform: rotateX(0deg);
  }
  .box:hover .front-face {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
  }
  .oficinas {
    margin-top: 150px;
  }
  .oficinas-ch {
    width: 60%;
    padding:0px;
      margin-top: 50px;
    text-align: center;
    display: block;
  }
  .contacto {
    background-color: #FFFFFF;
    margin-top: 0px;
    padding-top: 100px;
    height: 680px;
  }
  .imagen-form {
    display: none;
  }
  form {
    background: #fff;
    width: 80%;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    margin-top: 70px;
    margin-left: 0 auto;
    text-align: center;
    height: 450px;
  }
  .floating-triangle-a {
    display: none;
  }
  .floating-triangle-t {
    display: none;
  }
  .floating-triangle-v {
    display: none;
  }
  .floating-triangle-a2 {
    display: none;
  }
  .floating-triangle-t2 {
    display: none;
  }
  .floating-triangle-v2 {
    display: none;
  }
  .benef {
    display: none;
  }
  .benef-ch {
    width: 90%;
    padding:0px;
    text-align: center;
    display: block;
  }
.beneficios {
  position: relative;
  width: 100%;
  padding: 0px 50px;
  margin-top: 600PX;
}
  h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  p {
    font-size: 15px;
    color: #000000;
    margin: 0;
    font-family: "raleway";
  }
  .home .caption h1 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-family: "raleway-l";
  }
  .box .front-face .icon i {
    font-size: 20px;
  }
  .box .front-face span, .box .back-face span {
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "raleway-l"
  }
.servicios-ch {
  display: none;
}
  .servicios-cell{
        display: block;
    }
.servicios {
  display: none;
}
.texto-somos {
  font-size: 15px;
  width: 80%;
  background-color: #fff;
  padding: 30px;
  margin-left: 10%;
  margin-top: 50px;
  text-align: justify;
}
.myv {
  width: 80%;
  margin-left: 10%;
  font-family: "raleway";
  font-size: 15px;
  text-align: justify;
  height: 300px;
  position: absolute;
  margin-top: 400px;
}
.mision {
  width: 80%;
}
    .galeria {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-top: 0PX;
        margin-left: -100px;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}
.clientes {
  padding: 0px 50px;
  margin-top: 50px;
  height: 0px;
}
}