@charset "UTF-8";
@font-face {
  font-family: "bogle-reg";
  font-display: swap;
  src: url("fonts/BOGLEREGULAR.ttf") format("truetype");
}

@font-face {
  font-family: "bogle-bold";
  font-display: swap;
  src: url("fonts/BOGLEBOLD.ttf") format("truetype");
}

@font-face {
  font-family: "bogle-black";
  font-display: swap;
  src: url("fonts/BOGLEBLACK.ttf") format("truetype");
}









@media only screen and (min-width: 550px) {
  .wrapper {
    padding: 0 30px;
  }
  .wrap--footer {
    padding: 0 15px;
  }
}

@media only screen and (min-width: 768px) {
  .wrapper {
    max-width: 1250px;
    padding: 0 45px;
  }
  .wrap--footer {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1250px) {
  .wrapper {
    max-width: 1350px;
  }
}














.rrss-fixed {
  background-color: #F7FDFE;
  padding: 1.5rem 0.5rem;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 20;
}

.rrss-fixed img {
  width: 34px;
  height: 34px;
}

.hero {
  background-color: #6E39B7;
  height: calc(100vh + 80px);
  min-width: 320px;
}

@media only screen and (max-width: 550px) {
  .hero {
    height: 100vh;
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .hero {
    padding-top: 80px;
  }
}

.hero .row.wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .hero .row.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__txt-banner {
  margin-top: 4rem;
}

.hero__txt-banner h1 {
  color: #fff;
  font-family: "bogle-black", sans-serif;
  font-size: 6rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 576px) {
  .hero__txt-banner h1 {
    font-size: 3.5rem;
  }

  .hero__txt-banner a.btn {
    padding: 1.2rem 2.5rem;
  }

}

.hero__txt-banner h1 span {
  -webkit-text-stroke: 2px #E8E34A;
  color: transparent;
}

@media only screen and (min-width: 992px) {
  .hero__txt-banner {
    margin: auto 0;
    height: 45%;
  }
}

.hero__figure {
  width: 100%;
}

.hero__figure img {
  width: 100%;
}

.hero__icon {
  position: absolute;
  right: 0;
  padding: 0 15px;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  .hero__icon {
    top: 65%;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}

@media only screen and (min-width: 576px) {
  .hero__icon {
    text-align: end;
    bottom: 8%;
  }
}

@media only screen and (min-width: 992px) {
  .hero__icon {
    bottom: 25px;
  }
}

@media only screen and (min-width: 1300px) {
  .hero__icon {
    bottom: 35px;
  }
}

@media (min-width: 1900px) and (min-height: 900px) {
  .hero__icon {
    bottom: 70px;
  }
}

.hero__icon img {
  width: 92%;
}

@media only screen and (min-width: 500px) {
  .hero__icon img {
    width: 80%;
  }
}

@media only screen and (min-width: 600px) {
  .hero__icon img {
    width: 62%;
  }
}

@media only screen and (min-width: 1130px) {
  .hero__icon img {
    width: 88%;
  }
}

@media only screen and (min-width: 1250px) {
  .hero__icon img {
    width: 94%;
  }
}

@media only screen and (min-width: 1450px) {
  .hero__icon img {
    width: 96%;
  }
}

@media (min-width: 1450px) and (min-height: 900px) {
  .hero__icon img {
    width: 730px;
  }
}

@media (min-width: 1900px) and (min-height: 900px) {
  .hero__icon img {
    width: 870px;
  }
}

.hero__arrow {
  display: none;
}

@media only screen and (min-width: 576px) {
  .hero__arrow {
    display: block;
    position: absolute;
    padding: 0 15px;
    top: 50%;
    left: 10%;
  }

  .hero__arrow img {
    height: 125px;
  }

}

@media only screen and (min-width: 992px) {
  .hero__arrow {
    top: 65%;
    left: initial;
  }
}

@-webkit-keyframes show {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0.2;
  }
  30% {
    opacity: 0.4;
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes show {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0.2;
  }
  30% {
    opacity: 0.4;
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.about, .convenio, .team {
  background-color: #F7FDFE;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8rem 0;
}

@media only screen and (min-width: 576px) {
  .about, .convenio, .team {
    min-height: calc(100vh - 200px);
  }
}

@media only screen and (min-width: 992px) {
  .about, .convenio, .team {
    min-height: calc(100vh - 80px);
  }
}

@media only screen and (min-width: 768px) {
  .about--title.fixed {
    position: fixed;
    top: 10vh;
  }
}

.about__txt {
  margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
  .about__txt {
    padding: 0 20rem 0 0;
  }
}

.about .btn__content img {
  margin-left: 9px;
  transform: translateY(-2px);
  width: 15px;
}

.about__txt p {
  line-height: 28px;
}

.team {
  background-color: #fff;
}

.team__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #6E39B7;
}

.team__txt p {
  font-size: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .team__txt p {
    font-size: 4rem;
  }
}

.team__txt p b {
  font-family: "bogle-black", sans-serif;
}

.team__wrap-icon {
  text-align: center;
}

.team__icon img {
  width: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (min-width: 600px) {
  .team__icon img {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .team__icon img {
    width: 90%;
  }
}

.services {
  background-color: #F7F8F8;
  min-height: 100vh;
  padding: 7rem 0 5rem 0;
}

@media only screen and (min-width: 576px) {
  .services {
    min-height: calc(100vh - 200px);
  }
}

@media only screen and (min-width: 992px) {
  .services {
    min-height: calc(100vh - 80px);
  }
}

@media only screen and (min-width: 992px) {
  .services__content {
    padding-right: 20%;
  }
}

.services__content p {
  line-height: 28px;
}

.services__title-icon {
  text-align: start;
}

@media only screen and (max-width: 576px) {
  .services__title-icon {
    margin-bottom: 3rem;
  }
}

.services__title-icon img {
  width: 78%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (min-width: 992px) {
  .services__title-icon img {
    width: 80%;
  }
}

.services__icon {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

@media only screen and (min-width: 992px) {
  .services__icon {
    -webkit-transform: translate(-90px, 55px);
            transform: translate(-90px, 55px);
  }
}

.areas {
  width: 100%;
  margin-top: 5rem;
}

.areas--mt1 {
  margin-top: 2rem;
}

@media only screen and (min-width: 576px) {
  .areas {
    margin-top: 6rem;
  }
}

.areas__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 576px) {
  .areas__title {
    text-align: start;
    margin-bottom: 0;
  }
}

.areas__title h4 {
  color: #1C355E;
  font-family: "bogle-black", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
}

@media only screen and (min-width: 576px) {
  .areas__title h4 {
    font-size: 1.8rem;
  }
}

.areas__wrap-list--mb {
  margin-bottom: 1.5rem;
}

.areas__list {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.areas__list li {
  font-size: 2rem;
  list-style: none;
  padding: 0 0 0.5rem 2rem;
  position: relative;
}

.areas__list li::before {
  content: "";
  background: url("../images/item-li.svg") no-repeat;
  position: absolute;
  height: 25px;
  width: 20px;
  left: 0;
  top: 9.5px;
}

@media (min-width: 1450px) and (min-height: 900px) {
  .areas__list li::before {
    top: 7.5px;
  }
}

.areas__separator {
  background: #fff;
  height: 5px;
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 576px) {
  .areas__separator {
    margin: 0 0 0 1.5rem;
  }
}

.sell-more {
  background-color: #EDEB8F;
  padding: 6rem 0;
}

.sell-more__content {
  text-align: center;
}

.sell-more__content h3 {
  color: #6E39B7;
  font-family: "bogle-bold", sans-serif;
  font-size: 4rem;
  margin: 0 0 3rem 0;
}

@media only screen and (min-width: 576px) {
  .sell-more__content h3 {
    font-size: 4.8rem;
  }
}

.clients {
  padding: 14rem 0;
}

.clients .title-1 {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}

.clients__item {
  margin: 0 5px;
}

.clients__item img {
  width: 150px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

.clients .filter {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.clients .filter:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media (min-width: 1450px) and (min-height: 900px) {
  .performance__list li::before {
    top: 7.5px;
  }
}

.convenio {
  background-color: #F7F8F8;
}

.convenio__wrap-img {
  margin: 5rem 0 3rem;
}

@media only screen and (min-width: 576px) {
  .convenio__wrap-img {
    margin: 8.5rem 0 0;
  }
}

.convenio__wrap-img img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (min-width: 992px) {
  .convenio__wrap-img img {
    width: 60%;
  }
}

.convenio--title {
  -webkit-animation: typing 5s steps(22) infinite;
          animation: typing 5s steps(22) infinite;
  overflow: hidden;
}

.convenio__data-title {
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .convenio__data-title {
    text-align: initial;
  }
}

.convenio__data-comuni {
  margin: 5rem 0 0;
}

@media only screen and (min-width: 576px) {
  .convenio__data-comuni {
    margin: 7rem 0 0;
  }
}

@media only screen and (min-width: 576px) {
  .convenio__data-dev {
    margin: 4rem 0 0;
  }
}

.footer {
  background-color: #DCECFD;
  padding: 2.2rem .9rem;
  position: relative;
  color: #fff;
}

.footer--wrap-success {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #6E39B7;
  min-height: 100vh;
  padding: 0;
}

.footer--wrap-success img {
  max-width: 100%;
}

.footer--wrap-success .txt-success {
  color: #0C284C;
  font-size: 2.2rem;
  margin: 0;
}

.footer--align {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__lfi-medios {
  text-align: center;
}

/* .footer--pb-0 {
  padding: 3.5rem 2rem 0;
} */

.footer__copy-right {
  background-color: #492974;
  color: #DCECFD;
  padding: 1.1rem 1.5rem;
  
}

.footer__copy-right p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  transform: translateY(3px);
  font-family: "bogle-reg";
}

@media only screen and (min-width: 992px) {
  .footer__copy-right p {
    margin: 0 auto;
    text-align: initial;
    width: 93%;
  }
}

@media only screen and (min-width: 992px) {
  .footer__lfi-medios {
    text-align: initial;
  }
}

.logo-cities__wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .logo-cities__wrap {
    width: 92%;
  }
}

.logo-cities__logo {
  margin: 0 0 2.5rem;
  text-align: center;
  width: 100%;
}

.logo-cities__city {
  margin: 0 0 2.5rem;
  width: 100%;
}

@media only screen and (min-width:768px) {
  .logo-cities__city--chile,
  .logo-cities__city--colombia {
    width: 50%;
    text-align: center;
  }

  .logo-cities__city--mexico {
    text-align: center;
  }

}

@media only screen and (min-width: 992px) {
  .logo-cities__wrap {
    align-items: center;
  }

  .logo-cities__logo,
  .logo-cities__city--chile,
  .logo-cities__city--colombia,
  .logo-cities__city--mexico {
    width: initial;
    text-align: initial;
  }

  .logo-cities__logo {
    flex: 1 0 15%;
    /* flex: 1; */
    margin: 0 1rem 0 0;
  }

  .logo-cities__logo img {
    width: 105px;
  }

  .logo-cities__city {
    flex: 1 0 25%;
    /* flex: 2; */
    margin: 0 1rem 0 0;
  }

}


.logo-cities__city h6 {
  /* font-size: 2rem; */
  font-size: 20px;
  margin: 0 0 1.5rem;
  color: #1C355E;
}

.logo-cities__city p {
  margin: 0 0 .4rem;
  /* font-size: 1.4rem; */
  font-size: 14px;
  color: #1C355E;
}

.logo-cities__city a {
  font-size: 20px;
  color: #ED3A4A;
  font-weight: bold;
}

.logo-cities__city a:hover {
  text-decoration: underline;
}

.footer-info__btn a.btn {
  padding: .8rem 1.3rem;
}

.footer-info__btn .btn__content img {
  margin-left: 9px;
  width: 15px;
}

.footer-info__wrap {
  margin: 2rem auto;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .footer-info__wrap {
    width: 92%;
  }
}

.footer-info__txt h5 {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  color: #1C355E;
}

.footer-info__btn {
  margin: .6rem 0;
}

@media only screen and (min-width: 992px) {
  .footer-info__wrap {
    display: flex;
    align-items: center;
    text-align: initial;
    margin: 1.1rem auto .75rem;
  }

  .footer-info__txt {
    margin-right: 0rem;
  }

  .footer-info__txt h5 {
    transform: translateY(3px);
  }

}

@media only screen and (min-width: 1160px) {
  .footer-info__txt {
    margin-right: 6rem;
  }
}

.footer-visit__wrap {
  margin: 1.3rem auto .4rem;
}

.footer-visit__wrap h5 {
  font-size: 20px;
  font-weight: normal;
  font-family: "bogle-reg";
  margin: 0 0 1.6rem;
  padding-top: 1.6rem;
  text-align: center;
  color: #1C355E;
}

.footer-visit__logos {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .footer-visit__wrap {
    width: 92%;
  }

  .footer-visit__logos {
    justify-content: center;
  }

  .footer-visit__logos a:first-child {
    margin-right: 6rem;
  }

  .footer-visit__logos a img:first-child {
    width: 90px;
  }

  .footer-visit__logos a:last-child img  {
    width: 85px;
  }
}

@media only screen and (min-width: 992px) {
  .footer-visit__wrap h5 {
    text-align: initial;
    padding-top: .5rem;
  }

  .footer-visit__logos {
    justify-content: flex-start;
  }
}

.footer .col--px {
  padding-top: 2rem;
}

@media only screen and (min-width: 992px) {
  .footer .col--px {
    padding-top: 5.6rem;
    margin: 0;
    padding-bottom: 2rem;
  }
}

.footer--reverse {
  flex-direction: column-reverse;
}

@media only screen and (min-width: 992px) {
  .footer--reverse {
    flex-direction: row;
  }
}

.footer__latam {
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .footer__latam {
    text-align: initial;
  }
}

.footer__latam svg {
  width: 100%;
  height: 100%;
  margin-top: -44px;
}

@media only screen and (min-width: 576px) {
  .footer__latam svg {
    width: initial;
    max-width: 465px;
    margin-top: -49px;
  }
  
}

/* Estilos imagen SVG */
.footer #Trazado_47260:hover,
.footer #Trazado_47255:hover,
.footer #Trazado_47250:hover {
  cursor: pointer;
  fill: #4A8E13;
  position: relative;
  transition: all .2s ease-in;
}

.footer #Trazado_47260::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3rem;
  width: 30px;
  height: 30px;
  background: black;
}

.tooltip-inner { 
  /* background: #151950; */
  background: #492974;
  border: none;
  color: #F7FDFE;
  font-size: 1.35rem;
  padding: .85rem 1rem;
}

.bs-tooltip-left .arrow::before {
  /* border-left-color: #151950; */
  border-left-color: #492974;
}

/*  */

.footer__lfi-medios img {
  width: 110px;
}

.footer__lfi-medios p {
  margin: 1.5rem 0 2rem;
}

.footer__lfi-contact {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2.1rem;
}

.footer__lfi-contact a {
  color: inherit;
  text-decoration: none;
}

.footer__lfi-contact a:hover {
  text-decoration: underline;
}

.footer__icon {
  margin: 0 1.7rem 0 0;
}

.footer__icon img {
  width: 30px;
}

.footer__txt-icon h5 {
  font-family: "bogle-bold", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.3rem;
}

.footer__txt-icon p {
  font-size: 1.7rem;
  margin: 0;
}

.footer__rrss {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2.1rem;
}

@media only screen and (min-width: 576px) {
  .footer__rrss {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 992px) {
  .footer__rrss {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.footer__rrss-img--1 {
  margin: 0 1.7rem 0 0;
}

.footer__rrss-img--1 img {
  width: 34px;
}

.footer__rrss-img {
  margin: 0 1rem 0 0;
}

.footer__rrss-img img {
  width: 37px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer__rrss-img img:hover {
  -webkit-filter: brightness(100%) invert(0);
          filter: brightness(100%) invert(0);
}

.footer__plataformas {
  margin: 1rem 0 3rem;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .footer__plataformas {
    text-align: initial;
  }
}

.footer__plataformas p {
  margin: 0;
}

.footer__wrap-logos {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
  .footer__wrap-logos {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.footer__logo--1 {
  margin-right: 30px;
}

.footer__logo--3 {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

@media only screen and (min-width: 678px) {
  .footer__logo--3 {
    -webkit-transform: translate(-15, 20px);
            transform: translate(-15, 20px);
  }
}

@media only screen and (min-width: 992px) {
  .footer__logo--3 {
    -webkit-transform: translate(-15px, 15px);
            transform: translate(-15px, 15px);
  }
}

.footer--lfi-logo {
  width: 110px;
}

.form {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

@media only screen and (min-width: 992px) {
  .form {
    padding: 4.5rem 2rem;
  }
}

.form__wrap-inputs {
  max-width: 95%;
  margin: 0 auto;
}

@media only screen and (min-width: 576px) {
  .form__wrap-inputs {
    max-width: 75%;
  }
}

.form__wrap-form-success {
  max-width: 95%;
  margin: 0 auto;
}

@media only screen and (min-width: 576px) {
  .form__wrap-form-success {
    max-width: 85%;
  }
}

.form input {
  width: 100% !important;
  height: 4rem;
  border: none;
  border-bottom: 2px solid #501778;
  margin-bottom: 1.5rem;
  padding: 0.9rem 0.9rem 0.9rem 0.4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form input:hover {
  border-color: #EDEB8F;
}

.form input:focus {
  background: #f7f7f7;
  outline: 2px solid #501778;
  border-bottom: none;
}

.form input--txt {
  height: 8rem;
  overflow: auto;
  resize: vertical;
}

.form__btn {
  cursor: pointer;
  margin-top: 1.5rem;
}

.form__btn:hover img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translate(6px, 3px);
          transform: translate(6px, 3px);
}

.form__btn img {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}

.animateEntry {
  -webkit-animation: showElement 1.8s ease;
          animation: showElement 1.8s ease;
}

@-webkit-keyframes showElement {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 0.6;
    -webkit-transform: scale(1);
            transform: scale(1);
    letter-spacing: 1px;
  }
  75%, 100% {
    opacity: 1;
    letter-spacing: 0;
  }
}

@keyframes showElement {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 0.6;
    -webkit-transform: scale(1);
            transform: scale(1);
    letter-spacing: 1px;
  }
  75%, 100% {
    opacity: 1;
    letter-spacing: 0;
  }
}


/* this */

.btn.footer {
  background-color: #83DB3B;
    border: none;
    border-radius: 0;
    color: #1C355E;
    font-size: 14px;
    font-family: "bogle-bold", sans-serif;
    padding: .7rem 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 1.8rem;
    position: relative;
}

.btn.footer:hover {
  background-color: #70E511;
}



.btn.footer .btn__content  {
  display: flex;
}

.btn.footer .btn__content p  {
  margin-bottom: 0rem !important;
  padding-top: .4rem;
}

/*# sourceMappingURL=styles.css.map */