
/*
 *  Owl Carousel - Core
 */
 .owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -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 {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  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-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  margin: 0;
}
.owl-carousel.owl-loaded {
  display: block;
}
.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 {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  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 Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.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 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* @font-face {
  font-family: "Lato Regular";
  src: url("../fonts/Lato-Regular.ttf");
    src: url("../fonts/Lato-SemiBold.ttf");
      src: url("../fonts/Lato-Bold.ttf");



} */
body {
  font-family: 'Lato', sans-serif;
/* font-family: 'Poppins', sans-serif; */
  margin: 0;
  /* font-family: "Lato Regular"; */
}

.banner {
  position: relative;
}
.banner .desktop img {
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .banner .desktop {
    display: none;
  }
}
.banner .movil {
  display: none;
}
@media screen and (max-width: 1000px) {
  .banner .movil {
    display: block;
  }
}
.banner .imagen-ico {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 89%;
  right: 50%;
  z-index: 1;
}
.banner .owl-nav {
  display: flex;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  position: absolute;
  z-index: 9;
  top: 50%;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
  padding: 0px 50px;
}
@media screen and (max-width: 1000px) {
  .banner .owl-nav {
    padding: 0px 0px;
  }
}
.banner .info_slider {
  display: flex;
  max-width: 640px;
  margin: 0 160px;
  width: 100%;
  position: absolute;
  top: 46%;
  margin-top: -100px;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .banner .info_slider {
    margin: 0 0px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
    top: 0;
    height: 100%;
  }
}
.banner h1 {
  font-weight: 700;
  color: white;
  font-size: 60px;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .banner h1 {
    font-size: 40px;
  }
}

.fixed-button {
  position: fixed;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;
}
.fixed-button .btn {
  font-size: 13px;
  padding: 10px 20px;
  background: #191769;
  color: #fff;
  text-decoration: none;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  margin-bottom: 9px;
}

@media screen and (max-width: 1000px) {
  .home-bolsa .banner_slider2 {
    display: none;
  }
}
.home-bolsa .banner_slider2-mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
  .home-bolsa .banner_slider2-mobile {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .home-bolsa {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .home-bolsa .banner_slider2-mobile .owl-dots {
    display: flex;
    justify-content: center;
    color: #fff;
    width: 100%;
    position: absolute;
    z-index: 9;
    top: 86%;
    margin-top: -20px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: linear 0.3s;
    -o-transition: linear 0.3s;
    transition: linear 0.3s;
    padding: 0px 50px;
  }
}
.home-bolsa .banner_slider2-mobile .owl-dots .active {
  border-radius: 50%;
  border: 2px solid white;
}
.home-bolsa .banner_slider2-mobile .owl-dots .active span {
  background: white !important;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.contenedor-home-bolsa {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.contenedor-home-bolsa .banner_slider2 .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30px;
}
.contenedor-home-bolsa .banner_slider2 .owl-dots .active {
  border-radius: 50%;
  border: 2px solid white;
}
.contenedor-home-bolsa .banner_slider2 .owl-dots .active span {
  background: white !important;
}
.contenedor-home-bolsa .banner_slider2 .owl-dots .owl-dot {
  height: 27px;
}
.contenedor-home-bolsa .banner_slider2 .owl-dots .owl-dot span {
  background: #ffffff;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 4px;
}
@media screen and (max-width: 1000px) {
  .contenedor-home-bolsa {
    flex-direction: column;
    flex-flow: column-reverse;
  }
}
.contenedor-home-bolsa div:nth-child(2) {
  padding: 0 130px;
}
@media screen and (max-width: 1000px) {
  .contenedor-home-bolsa div:nth-child(2) {
    padding: 20px;
    width: 100%;
    margin-bottom: 26px;
  }
}
.contenedor-home-bolsa > div {
  width: 50%;
}
.contenedor-home-bolsa > div h2 {
  font-size: 60px;
  color: #191769;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .contenedor-home-bolsa > div h2 {
    font-size: 40px;
    text-align: center;
  }
}
.contenedor-home-bolsa > div p {
  font-size: 16px;
  color: #212121;
  line-height: 22px;
}
.contenedor-home-bolsa > div img {
  width: 100%;
}
.contenedor-home-bolsa > div .imagenes-servicio {
  display: flex;
  flex-flow: wrap;
}
@media screen and (max-width: 1000px) {
  .contenedor-home-bolsa > div .imagenes-servicio {
    justify-content: center;
    flex-flow: wrap;
  }
}
.contenedor-home-bolsa > div .imagenes-servicio img {
  width: auto;
  max-width: 110px;
}
@media screen and (max-width: 1300px) {
  .contenedor-home-bolsa > div .imagenes-servicio img {
    max-width: 85px;
  }
}
@media screen and (max-width: 360px) {
  .contenedor-home-bolsa > div .imagenes-servicio img {
    width: 100px;
  }
}

.quienes-servicios .imagen-ico {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 84%;
  right: 50%;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .quienes-servicios .imagen-ico {
    top: -70px;
    right: 0%;
  }
}

.contenedor-quienes-servicios {
  max-width: 100%;
}
.contenedor-quienes-servicios .banner_slider-mini-servicio button {
  background: transparent !important;
}
.contenedor-quienes-servicios .owl-dots {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  top: -100px;
  height: 28px;
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots {
    top: -20px;
  }
}
.contenedor-quienes-servicios .owl-dots button:nth-child(1) {
  position: absolute;
  right: 33%;
}
@media (max-width: 1600px) {
  .contenedor-quienes-servicios .owl-dots button:nth-child(1) {
    right: 29%;
  }
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots button:nth-child(1) {
    position: relative;
    right: 0;
  }
}
.contenedor-quienes-servicios .owl-dots button:nth-child(2) {
  position: absolute;
  right: 35%;
}
@media (max-width: 1600px) {
  .contenedor-quienes-servicios .owl-dots button:nth-child(2) {
    right: 31%;
  }
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots button:nth-child(2) {
    position: relative;
    right: 0;
  }
}
.contenedor-quienes-servicios .owl-dots .active {
  border-radius: 50%;
  border: 2px solid white;
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots .active {
    border: 2px solid #26296E !important;
  }
}
.contenedor-quienes-servicios .owl-dots .active span {
  background: white !important;
  width: 15px;
  height: 14px;
  padding: 0;
  margin: 4px;
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots .active span {
    background: #26296E !important;
  }
}
.contenedor-quienes-servicios .owl-dots .owl-dot span {
  background: white;
}
@media (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-dots .owl-dot span {
    background: #26296E !important;
  }
}
.contenedor-quienes-servicios .owl-dots .owl-dot span:hover {
  background: white;
}
.contenedor-quienes-servicios .owl-nav {
  display: flex;
  justify-content: space-between;
  color: #191769;
  width: 100%;
  position: absolute;
  z-index: 9;
  top: 50%;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
  padding: 0px 50px;
}
.contenedor-quienes-servicios .owl-nav button {
  background: black;
  opacity: 0.69;
}
@media screen and (max-width: 1000px) {
  .contenedor-quienes-servicios .owl-nav button {
    background: transparent !important;
    opacity: unset;
  }
}
.contenedor-quienes-servicios .owl-nav button h1 {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contenedor-quienes-servicios .owl-nav button h1 img {
  width: 13px;
  height: 22px;
}
@media screen and (max-width: 1000px) {
  .contenedor-quienes-servicios .banner_slider3 {
    display: none !important;
  }
}
.contenedor-quienes-servicios .banner_slider3-mobile {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .contenedor-quienes-servicios .banner_slider3-mobile {
    display: block !important;
  }
}
.contenedor-quienes-servicios .titulo-servicios {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  flex-direction: column;
  align-items: center;
}
.contenedor-quienes-servicios .titulo-servicios h2 {
  font-size: 60px;
  color: #191769;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .contenedor-quienes-servicios .titulo-servicios h2 {
    font-size: 40px;
  }
}
.contenedor-quienes-servicios .titulo-servicios small {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .contenedor-quienes-servicios .titulo-servicios small {
    text-align: center;
    margin: 7px;
  }
}
.contenedor-quienes-servicios .servicios-row {
  display: flex;
  flex-direction: column;
}
.contenedor-quienes-servicios .servicios-row .owl-nav {
  position: absolute;
  top: 38%;
  width: 100%;
  color: white;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .contenedor-quienes-servicios .servicios-row .owl-nav {
    top: 43%;
  }
}
.contenedor-quienes-servicios .servicios-row .servicios-item {
  flex: 1;
  cursor: pointer;
  margin: 0 2px;
  transition: all 0.3s;
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  margin: 0;
}
.contenedor-quienes-servicios .servicios-row .servicios-item img {
  width: 100%;
  /* height: 100vh; */
}
@media screen and (max-width: 1200px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item img {
    height: 100%;
  }
}

.contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios {
  position: absolute;
  /* z-index: 9999; */
  display: flex;
  top: 0;
  color: white;
  flex-direction: column;
  padding: 0;
  height: 100%;
  align-items: center;
  /* min-height: 560px; */
  text-align: left;
  margin: 0 60px;
}
@media screen and (max-width: 1200px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios {
    top: 0;
    height: 100%;
    text-align: left;
    padding: 0;
    margin: 0 45px;
  }
}
@media screen and (max-width: 1200px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios {
    margin: 0;
    padding: 0 38px;
  }
}
.contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios h3 {
  font-size: 55px;
  font-weight: 500;
  line-height: 50px;
}
@media screen and (max-width: 1200px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios h3 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 500px) {
  .contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios h3 {
    font-size: 30px;
    line-height: 29px;
  }
}
.contenedor-quienes-servicios .servicios-row .servicios-item .titulo-servicios p {
  font-size: 16px;
}

section.testimonial-section {
  margin: 40px 0;
}
@media screen and (max-width: 1000px) {
  section.testimonial-section {
    margin: 40px 20px;
  }
}
section.testimonial-section .owl-dots {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  top: -50px;
  height: 28px;
}
section.testimonial-section .owl-dots button:nth-child(1) {
  position: absolute;
  right: 33%;
}
@media screen and (max-width: 1600px) {
  section.testimonial-section .owl-dots button:nth-child(1) {
    right: 29%;
  }
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .owl-dots button:nth-child(1) {
    right: 0;
    position: relative;
  }
}
section.testimonial-section .owl-dots button:nth-child(2) {
  position: absolute;
  right: 35%;
}
@media screen and (max-width: 1600px) {
  section.testimonial-section .owl-dots button:nth-child(2) {
    right: 31%;
  }
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .owl-dots button:nth-child(2) {
    right: 0;
    position: relative;
  }
}
section.testimonial-section .owl-dots .owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inheri;
}
section.testimonial-section .owl-dots .owl-dot span {
  background: white !important;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 4px;
}
section.testimonial-section .owl-dots .active {
  border-radius: 50%;
  border: 2px solid white;
}
section.testimonial-section .owl-dots .active span {
  background: white !important;
}
section.testimonial-section .testimonial-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .testimonial-wrapper {
    flex-direction: column;
  }
}
section.testimonial-section .testimonial-wrapper .client-pic-name {
  position: relative;
  margin-left: 0px;
  z-index: -2;
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .testimonial-wrapper .client-pic-name {
    margin-left: 0;
  }
}
section.testimonial-section .testimonial-wrapper .title-des {
  display: flex;
  align-items: center;
  background: #191769;
  color: white;
  padding: 40px;
  position: relative;
  width: 546px;
  height: 546px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .testimonial-wrapper .title-des {
    width: 100%;
    padding: 20px;
    text-align: center;
    align-items: center;
  }
}
section.testimonial-section .testimonial-wrapper .title-des .title-client {
  grid-gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media screen and (max-width: 1000px) {
  section.testimonial-section .testimonial-wrapper .title-des .title-client {
    align-items: center;
  }
}
section.testimonial-section .testimonial-wrapper .title-des h4 {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  section.testimonial-section .testimonial-wrapper .title-des h4 {
    font-size: 30px;
  }
}
section.testimonial-section .owl-nav {
  display: flex;
  justify-content: space-between;
  color: #191769;
  width: 100%;
  position: absolute;
  z-index: 9;
  top: 50%;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
  padding: 0px 50px;
}
section.testimonial-section .owl-nav :hover {
  color: #191769;
}
section.testimonial-section .owl-nav h1 {
  font-weight: 800;
  font-size: 40px;
}

.inicio-contacto {
  background: #FAFAFF;
}

.subcontenedor-inicio-contacto {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto {
    flex-direction: column;
  }
}
.subcontenedor-inicio-contacto > div {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto > div {
    width: 100%;
  }
}
.subcontenedor-inicio-contacto .subcontenedor-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 111px 0px 0px;
}
@media screen and (max-width: 1200px) {
  .subcontenedor-inicio-contacto .subcontenedor-form {
    padding: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto .subcontenedor-form {
    justify-content: center;
    padding: 25px;
  }
}
.subcontenedor-inicio-contacto .subcontenedor-info {
  position: relative;
  color: #fff;
  line-height: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .subcontenedor-inicio-contacto .subcontenedor-info > img {
    height: 500px;
  }
}
@media screen and (max-width: 420px) {
  .subcontenedor-inicio-contacto .subcontenedor-info .conti-info p {
    padding: 0;
    margin: 5px;
  }
}
.subcontenedor-inicio-contacto .subcontenedor-info > div {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  height: 100%;
  /* align-items: center; */
  line-height: normal;
}
@media screen and (max-width: 400px) {
  .subcontenedor-inicio-contacto .subcontenedor-info > div {
    padding: 0 20px;
  }
}
.subcontenedor-inicio-contacto .subcontenedor-info .info-row1 h2 {
  font-size: 60px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto .subcontenedor-info .info-row1 h2 {
    font-size: 40px;
  }
}
.subcontenedor-inicio-contacto .subcontenedor-info::before {
  content: "";
  position: absolute;
  background-color: #26296E;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.subcontenedor-inicio-contacto img {
  width: 100%;
     /* height: 100%; */
     object-fit: cover;
}
.subcontenedor-inicio-contacto .info-row2 {
  display: flex;
  flex-direction: column;
  grid-row-gap: 20px;
}
.subcontenedor-inicio-contacto .info-row2 .icon {
  margin-right: 11px;
}
.subcontenedor-inicio-contacto .info-row2 .icon .info-row2 .icon img {
  width: auto;
}
.subcontenedor-inicio-contacto .info-row2 .conti {
  display: flex;
  align-items: center;
}
.subcontenedor-inicio-contacto .info-row2 .conti .conti-info p {
  margin: 0;
}
.subcontenedor-inicio-contacto .contacto-form-titulo h2 {
  font-size: 30px;
  font-weight: 600;
  color: #191769;
  max-width: 355px;
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto .contacto-form-titulo h2 {
    font-size: 30px;
  }
}
.subcontenedor-inicio-contacto .contacto-row1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
  grid-gap: 22px;
}
.subcontenedor-inicio-contacto .contacto-row1 .input-button {
  width: 180px;
  border: 0;
}
.subcontenedor-inicio-contacto .contacto-row1 > div {
  background: white;
  width: 400px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.2196078431);
}
@media screen and (max-width: 1000px) {
  .subcontenedor-inicio-contacto .contacto-row1 > div {
    width: 100%;
  }
}
.subcontenedor-inicio-contacto .contacto-row1 > div input {
  width: 100%;
  padding: 10px 10px;
  border: 0 none;
  top: 0;
      font-family: 'Lato SemiBold';
}
.subcontenedor-inicio-contacto .contacto-row1 fieldset {
  border: 0;
}
.subcontenedor-inicio-contacto .contacto-row1 fieldset textarea {
  border: 0;
  width: 100%;
  padding: 10px 10px;
   font-family: 'Lato SemiBold';
}
.subcontenedor-inicio-contacto .contacto-row2 {
  padding-bottom: 20px;
}

.cta {
  padding: 15px 61px;
  background: #FFC924;
  color: black;
  border-radius: 4px;
  cursor: pointer;
}

.contenedor-tracking {
  position: fixed;
  /* height: 100%; */
  display: flex;
  align-items: self-end;
  right: 2px;
  z-index: 100;
  flex-direction: column-reverse;
  bottom: 0%;
}
.contenedor-tracking .botonF1 {
  font-size: 13px;
  padding: 10px 20px;
  background: #191769;
  color: #fff;
  text-decoration: none;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  margin-bottom: 9px;
  transition: 0.5s;
}
.contenedor-tracking .botonF1 span {
  transition: 0.5s;
}
.contenedor-tracking .botonF1 :hover span {
  transform: rotate(360deg);
}
.contenedor-tracking .botonF1 :active {
  transform: scale(1.1);
}
.contenedor-tracking :hover:nth-child(n+2) {
  background: #FFC924;
}
.contenedor-tracking :nth-child(2) {
  transform: scale(0);
  transition: 0.5s;
  padding: 14px 14px;
}
.contenedor-tracking :nth-child(3) {
  transform: scale(0);
      transition: 0.7s;
    padding: 14px 14px;
}
.contenedor-tracking .botonF1 img {
  width: 47px;
  height: 47px;
}
.contenedor-tracking :nth-child(4) {
  transform: scale(0);
  transition: 0.9s;
}
.contenedor-tracking :nth-child(5) {
  transform: scale(0);
  transition: 0.9s;
}
.contenedor-tracking :nth-child(6) {
  transform: scale(0);
  transition: 0.9s;
}
.contenedor-tracking .animacionVer {
  transform: scale(1);
}

* {
  -webkit-font-smoothing: antialiased; /* Sin bold en Mac. */
  box-sizing: border-box;
}

h1, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

*:focus {
  outline: none;
}

.is-navigation-open .menu-trigger__line:nth-child(1) {
  transform: rotate(-45deg);
  top: 18px !important;
}
.is-navigation-open .menu-trigger__line:nth-child(2) {
  transform: scale(0);
}
.is-navigation-open .menu-trigger__line:nth-child(3) {
  transform: rotate(45deg);
  bottom: 18px !important;
}
.is-navigation-open .main-links-desktop {
  opacity: 0;
  pointer-events: none;
}
.is-navigation-open .navigation {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
@media screen and (max-width: 1000px) {
  .is-navigation-open .navigation {
    clip-path: margin-box;
  }
}
.is-navigation-open .navigation .navigation__info {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}
.is-navigation-open .navigation .menu {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0.3s;
}

.mask-polygon-1 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 82.8%, 37.2% 100%, 0 77.2%);
  clip-path: polygon(0 0, 100% 0, 100% 82.8%, 37.2% 100%, 0 77.2%);
}

.superior-menu-desktop {
  position: fixed;
  background-color: transparent;
  width: 100%;
  display: block;
  top: 0;
  padding: 0px 59px;
  z-index: 999;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop {
    padding: 24px 20px;
  }
}
.superior-menu-desktop .abajo-logo {
  display: none;
}
.superior-menu-desktop .mega-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  align-items: center;
}
.superior-menu-desktop .mega-menu .all-links-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #fff;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
  border: 0;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger {
    display: block;
  }
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger:focus, .superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger:active {
  outline: 0;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger__line {
  position: absolute;
  left: 4px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger__line:nth-child(1) {
  top: 9px;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger__line:nth-child(2) {
  top: 18px;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger__line:nth-child(3) {
  bottom: 9px;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger:hover .menu-trigger__line:nth-child(1) {
  top: 7px;
}
.superior-menu-desktop .mega-menu .all-links-desktop .menu-trigger .menu-trigger:hover .menu-trigger__line:nth-child(3) {
  bottom: 7px;
}
.superior-menu-desktop .mega-menu .botonera {
  color: white;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop .mega-menu .botonera {
    color: transparent;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop .mega-menu .main-links-desktop {
    display: none;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul {
  width: 100%;
  display: flex;
  justify-content: end;
  grid-gap: 0px;
}
.superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul li {
  padding: 0 15px;
}
@media screen and (max-width: 1400px) {
  .superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul li {
    font-size: 14px;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul li a {
  display: flex;
  grid-gap: 10px;
}
.superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul > li:last-child {
  padding-right: 0;
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul {
  display: flex;
  margin: 0;
  border-top: white solid 1px;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop .mega-menu .main-links-desktop > ul {
    color: transparent;
    border: 0;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul > div:last-child li {
  padding-right: 0;
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 50px;
  position: relative;
  padding-bottom: 0;
  z-index: 1;
  padding: 0 15px;
}
@media screen and (max-width: 1400px) {
  .superior-menu-desktop .mega-menu .main-links-desktop > ul div li {
    font-size: 14px;
    padding: 0 8px;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li a {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .superior-menu-desktop .mega-menu .main-links-desktop > ul div li a {
    color: transparent;
    pointer-events: none;
  }
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li :before {
  content: "";
  width: 0;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  will-change: width;
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li :hover::before {
  width: 100%;
  transition: width 0.1s ease-out;
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li :active::before {
  transition-duration: 0.15s;
}
.superior-menu-desktop .mega-menu .main-links-desktop > ul div li :focus::before {
  width: 100%;
  transition-duration: 0.15s;
}

.abajo-home .superior-menu-desktop {
  background-color: #ffffff;
}
.abajo-home .superior-menu-desktop .abajo-logo {
  display: block;
}
.abajo-home .superior-menu-desktop .arriba-logo {
  display: none;
}
.abajo-home .superior-menu-desktop ul li a {
  color: #191769 !important;
  font-weight: 600;
}
.abajo-home .superior-menu-desktop .menu-trigger__line {
  background-color: #191769 !important;
}
.abajo-home .superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul li img {
  /* display: none; */
}
.abajo-home .superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul > li:nth-child(1) a:before {
  /* content: url(https://multilog-landing.medialabla.net/wp-content/uploads/2023/11/abajo-telef.svg); */
}
.abajo-home .superior-menu-desktop .mega-menu .main-links-desktop .botonera .nav_secundario ul > li:nth-child(2) a:before {
  /* content: url(https://multilog-landing.medialabla.net/wp-content/uploads/2023/11/abajo-whatsap.svg); */
}
.abajo-home .superior-menu-desktop .mega-menu .main-links-desktop > ul {
  border-top: #191769 solid 1px;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 40px);
  background-color: #191769;
  z-index: 9;
  color: #fff;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
  transition: 0.4s ease-in-out;
  transition-delay: 0.3s;
  min-height: 450px;
  position: fixed;
}

.navigation__inner {
  max-width: 650px;
  margin: 120px auto 0;
}
.navigation__inner .menu {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(25px, 0, 0);
  transition: 0.4s ease-in-out;
  transition-delay: 0s;
}
@media screen and (max-width: 1000px) {
  .navigation__inner .menu {
    font-size: 26px;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.navigation__inner .menu ul {
  list-style: none;
  counter-reset: menu;
  margin: 0;
  padding: 0;
}
.navigation__inner .menu ul li {
  position: relative;
  margin: 15px 0 30px;
}
.navigation__inner .menu ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .navigation__inner .menu ul li a {
    line-height: 40px;
  }
}

.navigation__info {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 30px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translate3d(-25px, 0, 0);
  visibility: hidden;
  transition: 0.4s ease-in-out;
  transition-delay: 0s;
}

@media screen and (min-width: 760px) {
  .navigation__inner {
    display: flex;
    text-align: center;
  }
  .navigation__info {
    width: calc(50% - 75px);
    margin: 0 75px 0 0;
  }
}
footer {
  background-color: #191769;
  color: white;
}
footer .subcontenedor-footer {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 0px;
}
footer .contenedor-footer {
  padding-top: 50px;
  padding-bottom: 50px;
}
footer .divisor-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px auto;
}
@media screen and (max-width: 1200px) {
  footer .divisor-footer {
    flex-direction: column;
    justify-content: center;
    margin: 0px auto;
    align-items: center;
    grid-gap: 20px;
  }
}
footer .divisor-footer > div:nth-child(1) {
  display: none;
}
footer .divisor-footer > div:nth-child(2) {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 62px;
  justify-content: center;
}
footer .divisor-footer > div:nth-child(2) .separador a{
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
}
footer .redes-footer {
  margin: 12px 0;
  grid-gap: 20px;
  display: flex;
}
footer .footer3div > div {
  display: flex;
  /*flex-direction: column;*/
     
    grid-gap: 62px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  footer .footer3div > div {
    grid-gap: 20px;
  }
}
footer .footer3div > div a:nth-child(1) {
  text-decoration: underline;
    font-size: 13px;
    font-weight: 400;
    color: #fafaff;
  /* font-size: 30px;
  font-weight: 600; */
}
footer .footer3div > div a:nth-child(n+2){
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400;
  color: #fafaff;
}

footer .footer3div > div a:nth-child(2) {
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400;
  color: #fafaff;
}
footer .subcontenedor2 {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 5px;
}
footer .subcontenedor2 .politica-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.testimonial-section .testimonial-wrapper .client-pic-name img {
  max-height: 546px;
}
@media screen and (max-width: 1200px) {
  footer .subcontenedor2 .politica-footer {
    flex-wrap: wrap;
    grid-gap: 28px;
  }
}
footer .subcontenedor2 .politica-footer:nth-child(2) {
  justify-content: left;
  margin-top: 20px;
}


.logo-contenedor img{
  width: 100%;
  /* min-width: 160px; */
  max-width: 220px;
}
/*# sourceMappingURL=main.css.map */