@charset "UTF-8";

/*requeridas*/
@font-face {
  font-family: 'FontAwesome';
  src: url(fonts/fontawesome-webfont.woff2);
  font-display: swap;
}

/*Adicionales*/
@font-face {
  font-family: 'LATO-REGULAR';
  src: url(fonts/LATO-REGULAR.TTF);
  font-display: swap;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url(fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: 'OpenSans-Semibold';
  src: url(fonts/OpenSans-Semibold.ttf);
}

@font-face {
  font-family: 'OpenSans-Light';
  src: url(fonts/OpenSans-Light.ttf);
}

@font-face {
  font-family: 'OpenSans-Bold';
  src: url(fonts/OpenSans-Bold.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-Medium';
  src: url(fonts/IBMPlexSans-Medium.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-BoldItalic';
  src: url(fonts/IBMPlexSans-BoldItalic.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-Regular';
  src: url(fonts/IBMPlexSans-Regular.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-Bold';
  src: url(fonts/IBMPlexSans-Bold.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-MediumItalic';
  src: url(fonts/IBMPlexSans-MediumItalic.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-SemiBold';
  src: url(fonts/IBMPlexSans-SemiBold.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-SemiBoldItalic';
  src: url(fonts/IBMPlexSans-SemiBoldItalic.ttf);
}

@font-face {
  font-family: 'IBMPlexSans-Light';
  src: url(fonts/IBMPlexSans-Light.ttf);
}

/*COLORES*/
/*LOADER*/
.jm-loadingpage {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background-color: #004FEF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.jm-loadingpage table {
  text-align: center;
}

.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block !important;
  margin: 15px auto;
  position: relative;
  background: #FFF;
  box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
  33% {
    background: #FFF;
    box-shadow: -24px 0 #004FEF, 24px 0 #FFF;
  }

  66% {
    background: #004FEF;
    box-shadow: -24px 0 #FFF, 24px 0 #FFF;
  }

  100% {
    background: #FFF;
    box-shadow: -24px 0 #FFF, 24px 0 #004FEF;
  }
}

/*Fuentes principales*/
p {
  color: #778299;
  font-size: .95rem;
}

p span {
  font-family: 'IBMPlexSans-SemiBoldItalic';
}

/*SLICK*/
.slick-next:before,
.slick-prev:before {
  color: #004FEF !important;
}

/*REGRESAR ARRIBA*/
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #004FEF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: #000;
  transition: 0.3s;
  scale: 0;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
}

.back-top.back-top-visible {
  scale: 1;
}

.back-top:hover {
  color: #FFF;
}

.back-top.force-active-off {
  scale: 0 !important;
}

/*BLOCK SOCIAL*/
.block-social {
  background-color: #00E790;
  position: fixed;
  padding: 10px 20px 15px;
  bottom: 180px;
  border-radius: 7px 0px 0px 7px;
  right: -200px;
  transition: 0.3s;
  text-align: center;
}

.block-social ul {
  display: inline-flex;
  list-style: none;
  padding-left: 10px;
  margin-bottom: 0;
}

.block-social ul li {
  margin-right: 10px;
}

.block-social p {
  margin-bottom: 5px;
  font-size: .9rem;
}

.block-social.c-visible {
  right: 0px;
}

.block-social.force-active-off {
  right: -200px !important;
}

/*WSP*/
.c-wsp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #00D900;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: #000;
  transition: 0.3s;
  font-size: 1.5rem;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  scale: 0;
  scale: 0 !important;
}

.c-wsp.c-visible {
  scale: 1;
}

.c-wsp:hover {
  cursor: pointer;
}

.c-wsp.force-active-off {
  scale: 0 !important;
}

.c-wsp2 {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #004FEF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  font-size: 1.5rem;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  scale: 1;
  width: 55px;
  height: 55px;
  scale: 0 !important;
}

.c-wsp2.c-visible {
  scale: 1;
}

.c-wsp2:hover {
  cursor: pointer;
}

.c-wsp2.force-active-off {
  scale: 0 !important;
}

.c-wsp-container {
  position: fixed;
  bottom: -550px;
  right: 30px;
  width: 300px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  transition: 0.5s;
}

.c-wsp-container.active {
  bottom: 0px;
}

.c-wsp-container .c-head {
  background-color: #075E54;
  padding: 10px 25px;
  border-radius: 5px 5px 0px 0px;
}

.c-wsp-container .c-head .close {
  position: absolute;
  right: 8px;
  width: 25px;
  height: 25;
  color: #FFF;
  cursor: pointer;
  margin-top: -25px;
}

.c-wsp-container .c-body {
  background-color: #FFF;
  padding: 25px 25px 5px 25px;
}

.c-wsp-container .c-body h3 {
  color: #515151;
  font-size: 1.1rem;
  font-family: 'Poppins-Medium';
}

.c-wsp-container .c-body p {
  color: #515151;
  font-size: .8rem;
}

.c-wsp-container .c-body label {
  font-family: 'Poppins-Medium';
  color: #515151;
  font-size: .8rem;
  margin-bottom: 0;
}

.c-wsp-container .c-body .form-control,
.c-wsp-container .c-body .form-select {
  padding-left: 0px;
  font-size: .8rem;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #DFDFDF;
  transition: 0.3s;
}

.c-wsp-container .c-body .form-control:focus,
.c-wsp-container .c-body .form-select:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-bottom: 1px solid #53D6BD !important;
}

.c-wsp-container .c-body .btn.submit {
  display: block;
  width: 100%;
  background-color: #4CCA5A;
  border: 0px;
  font-family: 'Poppins-Medium';
}

.back-top {
  display: none;
}

/*END WSP*/
/*LOADING*/
.lds-ring {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  margin: 3px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* BTN FIXED*/
.btn-fixed-call {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 999;
}

.btn-fixed-call a {
  background: #FFF;
  display: block;
  padding: 5px;
  border-radius: 50px 0px 0px 50px;
  -webkit-box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  text-decoration: none;
  display: flex;
  transition: 0.3s;
}

.btn-fixed-call a .img {
  float: left;
  position: relative;
  width: 50px;
  height: 48px;
}

.btn-fixed-call a .img img {
  max-width: 25px;
}

.btn-fixed-call a .img .off {
  position: absolute;
  border: 2px solid #004FEF;
  padding: 2px;
  border-radius: 50%;
  transition: 0.3s;
  animation: c_keyframe__btn_fixed_2 2s;
  -webkit-animation: c_keyframe__btn_fixed_2 2s;
  -moz-animation: c_keyframe__btn_fixed_2 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

.btn-fixed-call a .img .off .cont-off {
  width: 40px;
  height: 40px;
  background-color: #004FEF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-fixed-call a .img .on {
  position: absolute;
  border: 2px solid #fff;
  padding: 2px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
  animation: c_keyframe__btn_fixed 2s;
  -webkit-animation: c_keyframe__btn_fixed 2s;
  -moz-animation: c_keyframe__btn_fixed 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

.btn-fixed-call a .img .on .cont-on {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-fixed-call a .txt {
  float: left;
  padding: 4px 7px;
  line-height: 20px;
  color: #004FEF;
  font-family: 'IBMPlexSans-SemiBold';
  font-size: .9rem;
}

.btn-fixed-call a .txt span {
  font-family: 'IBMPlexSans-BoldItalic';
  display: block;
  font-size: 1.2rem;
  margin-top: -2px;
}

.btn-fixed-call:hover a,
.btn-fixed-call.active a {
  background-color: #FF495C;
}

.btn-fixed-call:hover a .txt,
.btn-fixed-call.active a .txt {
  color: #FFF;
}

.btn-fixed-call:hover a .img .off,
.btn-fixed-call.active a .img .off {
  opacity: 0;
}

.btn-fixed-call:hover a .img .on,
.btn-fixed-call.active a .img .on {
  opacity: 1;
}

@keyframes c_keyframe__btn_fixed {
  0% {
    border: 2px solid #FF495C;
  }

  5% {
    border: 2px solid #00E790;
  }

  10% {
    border: 2px solid #FF495C;
  }

  15% {
    border: 2px solid #00E790;
  }

  20% {
    border: 2px solid #FF495C;
  }

  100% {
    border: 2px solid #FF495C;
  }
}

@keyframes c_keyframe__btn_fixed_2 {
  0% {
    border: 2px solid #004FEF;
  }

  5% {
    border: 2px solid #00E790;
  }

  10% {
    border: 2px solid #004FEF;
  }

  15% {
    border: 2px solid #00E790;
  }

  20% {
    border: 2px solid #004FEF;
  }

  100% {
    border: 2px solid #004FEF;
  }
}

@keyframes c_keyframe__btn_fixed_txt {
  0% {
    color: #004FEF;
  }

  50% {
    color: #00E790;
  }

  100% {
    color: #004FEF;
  }
}

@keyframes c_keyframe_xs {
  0% {
    background-color: #643BA3;
  }

  90% {
    background-color: #643BA3;
  }

  100% {
    background-color: #FF495C;
  }
}

.c-subir {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 23;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #004FEF;
  -webkit-box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  box-shadow: -4px 6px 8px -4px rgba(0, 0, 0, 0.61);
  border: 1px solid #88AFFF;
  scale: 0;
  transition: 0.3s;
}

.c-subir.active {
  scale: 1;
}

.c-msj {
  position: fixed;
  bottom: 35px;
  right: 25px;
  z-index: 9998;
  width: 40px;
  height: 40px;
  background-color: #004FEF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #004FEF;
  border: 1px solid #004FEF;
  scale: 0;
  transition: 0.3s;
  color: #FFF;
  animation: pulse_ani 2s infinite;
  border: 1px solid #1D66F9;
}

.c-msj.active {
  scale: 1;
}

.c-msj:hover {
  background-color: #00E790;
  color: #000;
  border: 1px solid #00E790;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .c-subir {
    right: 23px;
    bottom: 85px;
  }

  .c-wsp {
    width: 55px;
    height: 55px;
  }

  .c-wsp2,
  .c-wsp {
    scale: 1 !important;
  }
}

@media only screen and (max-width: 600px) and (min-width: 768px) {
  body {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .btn-fixed-call {
    width: 100%;
    bottom: 0px;
    -webkit-box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.48);
    box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.48);
  }

  .btn-fixed-call .img {
    display: none;
  }

  .btn-fixed-call .txt {
    width: 100%;
    font-size: .9rem !important;
    padding-left: 0px !important;
    padding-right: 3px !important;
    text-align: center;
  }

  .btn-fixed-call .txt span {
    font-size: .9rem !important;
    display: contents !important;
    font-family: 'IBMPlexSans-SemiBold' !important;
  }

  .btn-fixed-call a {
    padding: 10px 10px 15px 10px;
    border-radius: 0px;
  }

  .btn-fixed-call a {
    background-color: #FFF !important;
  }

  .btn-fixed-call a .txt {
    background-color: #FF495C !important;
    border-radius: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .btn-fixed-call a .txt picture {
    background-color: #FFF;
    padding: 5px;
    border-radius: 50%;
    float: right;
    margin-right: 10px;
    position: absolute;
    right: 7px;
    margin-top: -6px;
  }

  .btn-fixed-call a .txt picture img {
    width: 20px;
    height: 20px;
  }
}

.d_dsk {
  display: block;
}

.d_mob {
  display: none;
}

@media (max-width: 768px) {
  .d_dsk {
    display: none;
  }

  .d_mob {
    display: block;
  }
}

@media (max-width: 574px) {
  .banner_principal_temp {
    padding-top: 80px;
  }
}

@media (max-width: 420px) {
  .banner_principal_temp {
    padding-top: 60px;
  }
}

.titulo-1 {
  font-family: 'IBMPlexSans-SemiBold';
  color: #004FEF;
}

.titulo-1 span {
  font-family: 'IBMPlexSans-SemiBoldItalic';
}

.titulo-2 {
  font-family: 'TTFirsNeue-Regular';
  font-size: 2rem !important;
  margin-bottom: 20px;
  color: #fff;
}

.titulo-2 span {
  color: #004FEF;
}

.titulo-2 sup {
  font-size: .9rem;
}

.btn-1 {
  text-decoration: none;
  background-color: #FF495C;
  color: #FFF;
  font-family: 'IBMPlexSans-Regular';
  text-transform: uppercase;
  font-size: 1rem;
  transition: 0.3s !important;
  padding: 13px 17px;
  -webkit-box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
  box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
  border-radius: 7px;
}

.btn-1 span {
  font-family: 'IBMPlexSans-Bold';
}

.btn-1:hover {
  background-color: #00E790;
}

.c-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.c-padding {
  padding: 20px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .c-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.header {
  position: absolute;
  z-index: 9999;
  top: 0;
  transition: 0.4s;
}

.header .logo img {
  transition: 0.3s;
}

.header .call {
  text-align: right;
}

.header .call .btn {
  font-family: 'LATO-REGULAR';
  background-color: #004FEF;
  color: #FFF;
  border-radius: 0px;
  display: inline-block;
  padding-left: 35px;
  padding-right: 35px;
}

.header .call .btn.btn2 {
  background-color: #00D900;
}

.header .call .btn-menu {
  font-size: 1.3rem;
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  text-decoration: none;
  color: #FFF;
  border-radius: 50%;
  background-color: #004FEF;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  display: block;
  text-align: center;
}

.header .call .btn-menu span {
  font-size: .7rem;
  display: grid;
  margin-top: -5px;
}

.header .c-container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.menu-xs {
  background-color: #fff;
  border-top-left-radius: 14px;
  width: 100%;
  max-width: 345px;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  transition: .3s;
  overflow-y: auto;
  z-index: 9999;
  padding: 30px;
}

.menu-xs.active {
  z-index: 99999;
  right: 0;
  -webkit-box-shadow: -2px 4px 21px -1px rgba(0, 0, 0, 0.67);
  -moz-box-shadow: -2px 4px 21px -1px rgba(0, 0, 0, 0.67);
  box-shadow: -2px 4px 21px -1px rgba(0, 0, 0, 0.67);
}

.menu-xs .cerrar {
  text-align: right;
}

.menu-xs .cerrar .fa-cmln {
  font-size: 1.5rem;
}

.menu-xs .item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 2px #eaebf4;
}

.menu-xs .item a {
  margin: 0px;
  text-decoration: none;
  color: #004FEF;
  text-transform: uppercase;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .header {
    position: fixed;
    background-color: #004FEF;
    /*padding-bottom: 15px;*/
  }

  .header .c-container .logo {
    text-align: center;
  }

  .header .c-container .logo img {
    max-width: 190px;
  }

  .header .c-container .call .btn {
    display: none;
  }

  .header .c-container .call .btn-menu {
    display: flex !important;
    color: #000;
  }

  .header.c-fixed .c-container .logo img {
    max-width: 130px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .header .c-container .call .btn::before {
    content: url("../img/logo-sap.png");
    position: absolute;
    width: 5px;
    height: 5px;
    margin-left: -110px;
    margin-top: -8px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
.cmln-slider .tp-caption {
  white-space: inherit !important;
  /*Obligar a respetar el ancho*/
}

.cmln-slider .tp-caption.caption-1 h3 {
  color: #FFF;
  font-family: 'OpenSans-Regular';
  font-size: 2.2rem !important;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 7px 25px;
}

.cmln-slider .tp-caption.caption-1 h1 {
  font-family: 'IBMPlexSans-Bold';
  color: #FFF;
}

.cmln-slider .tp-caption.caption-1 h1 span {
  background-color: #FFF;
  padding: 4px 15px !important;
  border-radius: 10px;
  color: #004FEF;
  font-family: 'IBMPlexSans-BoldItalic';
}

.cmln-slider .tp-caption.caption-1 h1 span::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 30px;
  background-color: #FFF;
  margin-left: -21px;
  clip-path: polygon(63% 0, 0% 100%, 100% 93%);
  margin-top: 38px;
  filter: url(#round);
  transform: rotate(92deg);
}

.cmln-slider .tp-caption.caption-1 p {
  color: #FFF;
  font-size: 1.2rem;
}

.cmln-slider .tp-caption.caption-1 img {
  max-width: 300px !important;
  height: auto !important;
}

.cmln-slider .tp-caption.caption-2 h2,
.cmln-slider .tp-caption.caption-2 h3 {
  display: inline-block;
  color: #FFF;
  font-family: 'IBMPlexSans-Medium';
  font-size: 1.6rem;
}

.cmln-slider .tp-caption.caption-2 h2 span,
.cmln-slider .tp-caption.caption-2 h3 span {
  font-family: 'IBMPlexSans-BoldItalic';
}

.cmln-slider .tp-caption.caption-2 h3.modalidad {
  border-radius: 7px 7px 7px 7px;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad.modalidad2 {
  border-radius: 0px 7px 7px 0px;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad {
  border: 1.5px solid #00E790;
  padding: 7px 13px;
  float: left;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad .img {
  float: left;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad .txt {
  font-size: 1.4rem;
  font-family: 'IBMPlexSans-SemiBoldItalic';
  float: left;
  margin-left: 11px;
  margin-bottom: -5px;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad .txt subt {
  font-size: 1rem;
  display: block;
  font-family: 'IBMPlexSans-Regular';
  margin-bottom: -15px;
  margin-top: -7px;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad.modalidad2 {
  border-left: 0px;
}

.cmln-slider .tp-caption.caption-2 h3.modalidad.modalidad2 .img img {
  width: auto !important;
}

.cmln-slider .tp-caption.caption-2 h3.efecto {
  position: relative;
  transition: 0.3s;
}

.cmln-slider .tp-caption.caption-2 h3.efecto::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -10px;
  background: #ff495c;
  background: linear-gradient(90deg, #ff495c 0%, #643ba3 100%);
}

.cmln-slider .tp-caption.caption-2 .c-btn {
  background-color: #FF495C;
  color: #FFF;
  font-family: 'IBMPlexSans-Regular';
  text-transform: uppercase;
  font-size: 1rem;
  transition: 0.3s !important;
  padding: 13px 10px 13px 23px;
  -webkit-box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
  box-shadow: 2px 4px 8px -4px rgba(0, 0, 0, 0.48);
}

.cmln-slider .tp-caption.caption-2 .c-btn span {
  font-family: 'IBMPlexSans-Bold';
}

.cmln-slider .tp-caption.caption-2 .c-btn .fa-c {
  animation: c_keyframe_2 2s;
  -webkit-animation: c_keyframe_2 2s;
  -moz-animation: c_keyframe_2 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

.cmln-slider .tp-caption.caption-2 .c-btn:hover {
  background-color: #00E790;
}

.cmln-slider .tp-caption.caption-2 p {
  color: #FFF;
}

.cmln-slider .tp-caption.c-caption-img img {
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 30px !important;
}

.cmln-slider .tp-caption.caption-3 h2 {
  color: #FFF;
  background-color: #643BA3;
  font-family: 'OpenSans-Bold';
  display: inline-block;
  padding: 7px 20px !important;
  margin-top: -180px !important;
  display: flow;
  position: absolute;
  border-radius: 50px;
  margin-left: 40px;
  font-size: 1.7rem !important;
}

.cmln-slider .tp-caption.caption-3 h2 span {
  font-family: 'IBMPlexSans-MediumItalic';
}

.cmln-slider .tp-caption.caption-3 h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 48px;
  height: 100%;
  background-color: #643BA3;
  /* Puedes cambiar el color según tus necesidades */
  z-index: 1;
  /* Para colocar el pseudo-elemento detrás del texto */
  border-radius: 50%;
  /* Ajusta según sea necesario para bordes redondeados */
  font-size: 1.7rem !important;
}

.cmln-slider .tp-caption.caption-3 h3 {
  color: #FFF;
  font-family: 'IBMPlexSans-SemiBold';
  font-size: 1.1rem;
  margin-top: -110px !important;
  display: grid;
  position: absolute;
  padding-left: 40px;
}

.cmln-slider .tp-caption.caption-3 h3 span {
  font-family: 'IBMPlexSans-SemiBoldItalic';
}

.cmln-slider .tp-caption.caption-3 h3 img {
  width: 30px !important;
  height: auto !important;
  position: absolute;
  margin-left: 40px;
}

.cmln-slider .tp-caption.caption-3 h3 .txt {
  margin-left: 40px !important;
}

.cmln-slider .rev_slider_wrapper {
  /*Opacidad de slider capa oscura*/
}

.cmln-slider .rev_slider_wrapper .slotholder:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background: transparent;
}

.c-slider-cta {
  position: absolute;
  color: #FFF;
  margin-top: -40px;
}

@keyframes c_keyframe_1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes c_keyframe_2 {
  0% {
    margin-left: 5px;
    margin-right: 15px;
  }

  50% {
    margin-left: 15px;
    margin-right: 5px;
  }

  100% {
    margin-left: 5px;
    margin-right: 15px;
  }
}

.tparrows.tp-rightarrow:before {
  font-family: 'FontAwesome';
  content: '\f054';
}

.tparrows.tp-leftarrow:before {
  font-family: 'FontAwesome';
  content: '\f053';
}

.cmln-slider .slide1 .tp-caption.caption-1 img {
  max-width: 260px !important;
  height: auto !important;
}

.cmln-slider .slide1 .tp-caption.caption-2 img {
  max-width: 310px !important;
  height: auto !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .slide1 .tp-bgimg {
    background-image: url(../img/slider/bg-banner-2-xs.png) !important;
  }

  .cmln-slider .slide1 .tp-caption.caption-1 img {
    max-width: 200px !important;
    height: auto !important;
  }

  .cmln-slider .slide1 .tp-caption.caption-2 img {
    max-width: 210px !important;
    height: auto !important;
  }

  .cmln-slider .tp-caption p {
    font-size: 1.3rem;
  }

  .cmln-slider .tp-caption.caption-1 h3 span {
    font-size: 1.5rem !important;
  }

  .cmln-slider .tp-caption.caption-1 h3 .bono {
    font-size: 2.1rem !important;
  }

  .cmln-slider .tp-caption.caption-1 h1 {
    font-size: 2.5rem !important;
  }

  .cmln-slider .tp-caption.caption-1 h1 span {
    font-size: 2rem;
  }

  .cmln-slider .tp-caption.caption-1 h1 span::before {
    margin-top: 19px;
    margin-left: -20px;
    filter: url(#round);
    transform: rotate(92deg);
  }

  .cmln-slider .tp-caption.caption-2 h2 {
    font-size: 1.5rem;
  }

  .cmln-slider .tp-caption.caption-2 h2 span {
    font-size: 1.5rem;
  }

  .cmln-slider .tp-caption.caption-2 h3.modalidad .txt {
    padding-top: 4px;
  }

  .cmln-slider .tp-caption.caption-2 h3.modalidad .txt subt {
    margin-bottom: -5px;
  }

  .cmln-slider .tp-caption.caption-3 img {
    width: 380px !important;
    height: auto !important;
  }

  .cmln-slider .legal {
    font-size: .8rem !important;
  }
}

/* Estilos para dispositivos móviles en orientación horizontal */
@media only screen and (max-width: 767px) and (orientation: landscape) {

  /* Tus estilos específicos para dispositivos móviles en orientación horizontal aquí */
  .cmln-slider .slide1 .tp-caption.caption-1 img {
    max-width: 160px !important;
    height: auto !important;
  }

  .cmln-slider .slide1 .tp-caption.caption-2 img {
    max-width: 210px !important;
    height: auto !important;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .cmln-slider .tp-caption.caption-2 h3.modalidad .txt subt {
    margin-bottom: 0px !important;
  }

  .cmln-slider .tp-caption.caption-1 h1 span::before {
    margin-left: -19px;
    margin-top: 19px;
  }

  .cmln-slider .tp-caption.caption-2 h2,
  .cmln-slider .tp-caption.caption-2 h3 {
    font-size: 1.4rem;
  }

  .cmln-slider .tp-caption.caption-2 h2 span,
  .cmln-slider .tp-caption.caption-2 h3 span {
    font-size: 1.4rem;
  }

  .cmln-slider .tp-caption.caption-2 h3.modalidad {
    border-radius: 7px 7px 7px 7px;
  }

  .cmln-slider .tp-caption.caption-2 h3.modalidad.modalidad2 {
    border-radius: 0px 7px 7px 0px;
  }

  .cmln-slider .tp-caption.caption-3 h3 {
    font-size: 1.1rem;
  }

  .cmln-slider .tp-caption.caption-3 h3 span {
    font-size: 1.1rem;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .cmln-slider .tp-caption.caption-2 h3.modalidad .txt subt {
    margin-bottom: -15px !important;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .cmln-slider .tp-caption.caption-1 h1 {
    font-size: 4.2rem;
  }

  .cmln-slider .tp-caption.caption-1 h1 span::before {
    margin-left: -22px;
    margin-top: 52px;
    width: 60px;
    height: 50px;
    transform: rotate(93deg);
  }

  .cmln-slider .tp-caption.caption-2 h2,
  .cmln-slider .tp-caption.caption-2 h3 {
    font-size: 1.9rem;
  }

  .cmln-slider .tp-caption.caption-2 h2 span,
  .cmln-slider .tp-caption.caption-2 h3 span {
    font-size: 1.9rem;
  }

  .cmln-slider .tp-caption.caption-3 h3 {
    font-size: 1.1rem;
  }

  .cmln-slider .tp-caption.caption-3 h3 span {
    font-size: 1.1rem;
  }

  .container-affter {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 0px;
    margin-top: -300px;
  }

  .container-affter .affter-slider {
    display: inline-block;
    width: 100%;
    color: #FFF;
    filter: url(#round);
  }

  .container-affter .affter-slider::before {
    position: absolute;
    content: "";
    display: block;
    width: 104%;
    height: 300px;
    margin-left: -2%;
    background: currentColor;
    -webkit-clip-path: polygon(83% 94%, 100% 0, 100% 100%, 0 100%, 0 49%);
    clip-path: polygon(83% 94%, 100% 0, 100% 100%, 0 100%, 0 49%);
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* Estilos para dispositivos móviles en orientación horizontal */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .cmln-slider .tp-caption.caption-3 h3 {
    margin-top: -95px !important;
  }
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px;
}

/* a partir de aqui el CSS de las animaciones */
@keyframes anim-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes anim-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes anim-down {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes anim-left {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes anim-right {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.anim-up,
.anim-down,
.anim-left,
.anim-right,
.anim-fade-in {
  animation-duration: 0.5s;
  /* la animacion dura X segundos */
  animation-delay: 0.5s;
  /* esperamos X segundos antes de hacer la animacion */
  animation-fill-mode: both;
  /* aplica estilos de la animacion antes y despues de reproducirla */
}

.anim-up {
  animation-name: anim-up;
}

.anim-down {
  animation-name: anim-down;
}

.anim-left {
  animation-name: anim-left;
}

.anim-right {
  animation-name: anim-right;
}

.anim-fade-in {
  animation-name: anim-fade-in;
}

.anim-pause-2 {
  animation-delay: 2s;
}

/* la animacion empieza en 2 seg. */
.anim-pause-3 {
  animation-delay: 3s;
}

/* la animacion empieza en 3 seg. */
.anim-pause-4 {
  animation-delay: 4s;
}

/* la animacion empieza en 4 seg. */
.anim-pause-5 {
  animation-delay: 5s;
}

/* la animacion empieza en 5 seg. */
/* todas las animaciones pausadas */
.paused * {
  animation-play-state: paused;
}

.typ {
  background-image: url("../img/typ.jpg");
  background-image: -webkit-image-set(url("../img/typ.webp") 1x);
  background-size: cover;
}

.typ #header_page {
  background-color: transparent;
}

.typ .back-top {
  display: none !important;
}

.typ h1 {
  color: #FFF;
  font-family: 'OpenSans-Light';
}

.typ h1 span {
  display: block;
  font-family: 'OpenSans-Light';
}

.typ p {
  color: #FFF;
}

.typ .btn {
  background-color: #004FEF;
  color: #000;
  border-radius: 3px;
  font-family: 'OpenSans-Regular';
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 15px;
}

/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .typ .c-body {
    margin-top: 200px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .fade-in.active {
    opacity: 1;
  }

  /* Efecto de arriba a abajo */
  .fade-in-top {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .fade-in-top.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Efecto de abajo a arriba */
  .fade-in-bottom {
    opacity: 0;
    transform: translateY(20px);
    /* Cambiado a un valor positivo para empezar desde abajo */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .fade-in-bottom.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Efecto de izquierda a derecha */
  .fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
  }

  /* Efecto de derecha a izquierda */
  .fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
.pre-footer {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #00E790;
  background-image: url("../img/typ.jpg");
  background-image: -webkit-image-set(url("../img/typ.webp") 1x);
  background-position: top right;
  background-repeat: no-repeat;
}

.pre-footer .logo img {
  max-width: 70px;
  margin-bottom: 30px;
}

.pre-footer h2 {
  color: #FFF;
}

.pre-footer .items {
  color: #FFF;
  margin-top: 50px;
}

.pre-footer .items .item {
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}

.pre-footer .items .item .icono {
  margin-bottom: 15px;
}

.pre-footer .items .item p span {
  font-family: 'OpenSans-Semibold';
}

.footer {
  background-color: #000;
  padding: 15px 25px 15px;
  color: #004FEF;
}

.footer2 {
  background-color: #00E790;
  padding: 15px 25px 15px 25px;
}

.footer2 p {
  margin: 0px;
  color: #004FEF;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .pre-footer .items .item {
    margin-top: 25px;
  }

  .pre-footer .c-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .pre-footer .items {
    padding-left: 120px;
    padding-right: 120px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 579px) {
  .footer {
    padding-bottom: 20px;
  }
}

.seccion_menu_desktop {
  width: 100%;
  background: #FFFFFF;
  background: linear-gradient(180deg, white 54%, #d9f1ff 100%);
  height: 70px;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99;
}

@media (min-width: 992px) {
  .seccion_menu_desktop {
    display: flex !important;
  }
}

.seccion_menu_desktop ul {
  width: 100%;
  display: inline-flex;
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
  justify-content: center;
  gap: 20px;
}

.seccion_menu_desktop ul li {
  margin-right: 11px;
  transition: 0.3s !important;
}

.seccion_menu_desktop ul li a {
  text-decoration: none;
  color: #00287A;
  text-transform: uppercase;
  font-family: 'IBMPlexSans-Bold';
  font-size: .85rem;
  transition: 0.3s !important;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 8px 10px;
  height: 40px;
  display: block;
}

.seccion_menu_desktop ul li a:hover,
.seccion_menu_desktop ul li a.active {
  border-radius: 20px;
  border: 1px solid #D9F1FF;
  background-color: #D9F1FF;
}

.seccion_menu_desktop ul li a.azul {
  background-color: #D9F1FF;
  color: #00287A;
}

.seccion_menu_desktop ul li a.azul:hover,
.seccion_menu_desktop ul li a.azul.active {
  border-radius: 10px;
  border: 1px solid #D9F1FF;
  background-color: #D9F1FF;
}

.seccion_menu_desktop.menu_estatico {
  position: fixed;
  top: 0;
  left: 0;
}

/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.seccion_formulario {
  width: 100%;
  background-color: #6D9DFF;
  padding: 50px 15px 50px;
  z-index: 20;
}

.seccion_formulario #form___telefono___prefijo1-19787b97-4cf9-4c67-bbcb-808934f549c8_5325 {
  display: none;
}

.seccion_formulario .hs_form___telefono___prefijo1.hs-form___telefono___prefijo1.hs-fieldtype-text.field.hs-form-field {
  display: none;
}

.seccion_formulario .c-hs-form {
  z-index: 1;
}

.seccion_formulario article {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.seccion_formulario article .tarjeta {
  width: 100%;
  max-width: 309px;
}

.seccion_formulario article .tarjeta img {
  width: 100%;
}

.seccion_formulario article p.completa {
  color: #00287A;
  margin-top: 0;
  font-size: 24px;
  line-height: 27px;
  padding-left: 10px;
  text-align: left;
  font-family: 'IBMPlexSans-Regular';
  margin-bottom: 30px;
}

.seccion_formulario article p.completa span {
  font-family: 'IBMPlexSans-SemiBoldItalic';
}

.seccion_formulario article p.completa.completa_2 {
  font-size: 42px;
  line-height: 45px;
  margin-bottom: 30px;
  font-family: 'IBMPlexSans-Regular';
  text-align: left;
}

.seccion_formulario article p.completa.completa_2 span {
  display: inline;
  font-size: 42px;
  font-family: 'IBMPlexSans-BoldItalic';
}

.seccion_formulario .contenedor_caja_form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seccion_formulario .caja {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 40px;
}

.seccion_formulario .caja p.completa {
  color: #00287A;
  font-size: 24px;
}

.seccion_formulario .persona {
  width: 100%;
  max-width: 468px;
}

.seccion_formulario .persona img {
  width: 100%;
}

.seccion_formulario .txt {
  max-width: 587px;
  margin: 0 auto;
}

.seccion_formulario .txt::before {
  content: url("../img/bg_1.png");
  position: absolute;
  height: 50px;
  width: 50px;
  transform: scale(0.7);
  margin-top: -40px;
}

.seccion_formulario .c-hs-form .hs-form-field {
  margin-bottom: 10px;
}

.seccion_formulario .c-hs-form .hs-form-field label {
  font-family: 'IBMPlexSans-Regular';
  color: #00287A;
  font-size: 12px;
  line-height: 13px;
}

.seccion_formulario .c-hs-form .hs-form-field .input .hs-input {
  width: 100%;
}

.seccion_formulario .c-hs-form .hs-form-field .input input[type="radio"].hs-input {
  width: auto;
}

.seccion_formulario .c-hs-form .hs-form-field .input input,
.seccion_formulario .c-hs-form .hs-form-field .input select,
.seccion_formulario .c-hs-form .hs-form-field .input textarea {
  border: 0;
  border: 0;
  border-radius: 7px;
  padding: 4px 15px;
  color: #00287A;
}

.seccion_formulario .c-hs-form .hs-fieldtype-text.hs-form-field>label,
.seccion_formulario .c-hs-form .hs-fieldtype-phonenumber.hs-form-field>label,
.seccion_formulario .c-hs-form .hs-fieldtype-select>label,
.seccion_formulario .c-hs-form .hs_form___tipo_telefono>label {
  /* position: absolute;
     margin-top: 2px;*/
}

.seccion_formulario .c-hs-form .hs_pe_tyc_1,
.seccion_formulario .c-hs-form .hs_pe_tyc_2 {
  width: 60%;
}

.seccion_formulario .c-hs-form .hs_pe_tyc_1 label,
.seccion_formulario .c-hs-form .hs_pe_tyc_2 label {
  display: block;
}

.seccion_formulario .c-hs-form .hs_pe_tyc_2 {
  margin-bottom: 0;
}

.seccion_formulario .c-hs-form .hs_pe_tyc_2 ul.inputs-list {
  margin-bottom: 0;
}

.seccion_formulario .c-hs-form .hs-error-msgs,
.seccion_formulario .c-hs-form .hs_error_rollup {
  list-style: none;
  padding-left: 0px;
}

.seccion_formulario .c-hs-form .hs-error-msgs li label,
.seccion_formulario .c-hs-form .hs_error_rollup li label {
  font-family: 'IBMPlexSans-Regular';
  color: #ffffff !important;
  font-size: .7rem;
  opacity: .8;
  background-color: red;
  padding: 2px 5px;
  border-radius: 5px;
}

.seccion_formulario .c-hs-form .hs-form-booleancheckbox .hs-input {
  width: auto !important;
}

.seccion_formulario .c-hs-form .hs-fieldtype-booleancheckbox a {
  color: #00287A;
}

.seccion_formulario .c-hs-form .hs-fieldtype-booleancheckbox ul {
  list-style: none;
  padding-left: 20px;
}

.seccion_formulario .c-hs-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox input {
  position: absolute;
  margin-left: -20px;
  margin-top: 0;
}

.seccion_formulario .c-hs-form .hs-submit {
  width: 29%;
  margin-left: 70%;
  position: relative;
}

.seccion_formulario .c-hs-form .hs-submit .hs-button {
  background: #FF9A4C;
  background: linear-gradient(180deg, #ff9a4c 0%, #ff4949 100%);
  color: #FFF;
  border: 0;
  font-family: 'IBMPlexSans-Bold';
  padding: 10px 40px;
  text-transform: uppercase;
  border-radius: 28px;
  width: 100%;
  -webkit-box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  transition: 0.3s;
  position: absolute;
  margin-top: -50px;
}

.seccion_formulario .c-hs-form .hs-submit .hs-button:hover {
  background: #FF9A4C;
  background: linear-gradient(180deg, #e68b46 0%, #eb4343 100%);
}

.seccion_formulario .c-hs-form .form-columns-2,
.seccion_formulario .c-hs-form .form-columns-1 {
  max-width: 100%;
}

.seccion_formulario .hs_form___tipo_telefono .input ul {
  display: flex;
  padding: 0;
  list-style: none;
}

.seccion_formulario .hs_form___tipo_telefono .input ul li {
  margin-right: 8px;
}

.seccion_formulario .hs_form___tipo_telefono .input ul li label {
  display: flex;
  padding-top: 10px;
}

.seccion_formulario .hs_form___tipo_telefono .input ul li input {
  margin-right: 5px;
}

.form-columns-3 {
  max-width: inherit !important;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  display: none;
}

@keyframes c_frm_keyframe_1 {
  0% {
    transform: scale(0.7);
  }

  50% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(0.7);
  }
}

@keyframes c_frm_keyframe_2 {
  0% {
    background-color: #643BA3;
    -webkit-box-shadow: inset 10px 10px 12px -7px transparent;
    -moz-box-shadow: inset 10px 10px 12px -7px transparent;
    box-shadow: inset 10px 10px 12px -7px transparent;
  }

  50% {
    background-color: #643BA3;
    -webkit-box-shadow: inset 10px 10px 6px -6px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: inset 10px 10px 6px -6px rgba(0, 0, 0, 0.41);
    box-shadow: inset 10px 10px 6px -6px rgba(0, 0, 0, 0.41);
  }

  100% {
    background-color: #643BA3;
    -webkit-box-shadow: inset 10px 10px 12px -7px transparent;
    -moz-box-shadow: inset 10px 10px 12px -7px transparent;
    box-shadow: inset 10px 10px 12px -7px transparent;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .seccion_formulario {
    position: relative;
  }

  .seccion_formulario .hs-input {
    width: 100%;
  }

  .seccion_formulario .txt::before {
    transform: scale(0.4);
  }

  .seccion_formulario .txt h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .seccion_formulario .txt h3 span {
    font-size: 3.5rem;
    margin-top: -10px;
  }

  .seccion_formulario .txt h2 {
    text-align: center;
  }

  .seccion_formulario .txt h2 span::before {
    margin-left: 105px;
    margin-top: -10px;
    transform: scale(0.4);
  }

  .seccion_formulario .txt p.completa {
    text-align: center;
  }

  .seccion_formulario .hs-fieldtype-text input {
    width: 100% !important;
  }

  .seccion_formulario .hs_form___tipo_telefono .input ul li label {
    width: auto;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .seccion_formulario .txt h2 span::before {
    margin-left: 100px;
    margin-top: -10px;
    transform: scale(0.4);
  }
}

/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .seccion_formulario .txt h2 span::before {
    margin-left: 140px;
    margin-top: 0px;
    transform: scale(0.6);
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
/*.seccion_formulario.oculto {
    margin-bottom: -400px;
}*/
@media (max-width: 578px) {
  .seccion_formulario {
    padding: 15px;
  }

  .seccion_formulario .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .seccion_formulario .container-fluid .container-lg {
    padding-left: 0;
    padding-right: 0;
  }

  .seccion_formulario .caja {
    border-radius: 18px;
    padding: 15px 20px 15px;
  }

  .seccion_formulario .txt p.completa {
    font-size: 24px;
    line-height: 26px;
  }

  .seccion_formulario .txt p.completa span {
    display: inline;
    font-family: "IBM Plex Sans", sans-serif !important;
  }

  .seccion_formulario .txt p.completa.completa_2 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 20px;
  }

  .seccion_formulario .txt p.completa.completa_2 span {
    display: inline;
    font-size: 60px;
    font-family: 'IBMPlexSans-BoldItalic';
  }

  .seccion_formulario .txt .tarjeta {
    width: 100%;
  }

  .seccion_formulario .txt .tarjeta img {
    width: 100%;
  }

  .seccion_formulario .c-hs-form .hs_pe_tyc_1,
  .seccion_formulario .c-hs-form .hs_pe_tyc_2 {
    width: 100%;
  }

  .seccion_formulario .c-hs-form .hs-submit {
    width: 100%;
    margin-left: 0;
    padding-top: 15px;
  }

  .seccion_formulario .c-hs-form .hs-submit .hs-button {
    margin-top: 0;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 14px;
  }
}

.phone-error {
  margin-top: 4px;
  background: #e53935;
  display: none;
  font-family: 'IBMPlexSans-Regular';
  color: #ffffff !important;
  font-size: .6rem;
  opacity: .8;
  background-color: red;
  padding: 2px 5px;
  border-radius: 5px;
}

.seccion_metodo {
  background-color: #fff;
  background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/kidsteens-metodo-bg.png");
  background-position: left top;
  background-size: cover;
}

.metodo h3 {
  font-family: 'IBMPlexSans-Bold';
  color: #032059;
  font-size: 1.5rem;
}

.metodo p {
  color: #00287A;
  font-size: 1.2rem;
  line-height: 22px;
}

.metodo p strong {
  font-family: 'IBMPlexSans-Bold';
}

.metodo p.sup {
  color: #000;
  font-size: 1.2rem;
}

.metodo p.sup font {
  font-family: 'IBMPlexSans-Bold';
}

.metodo p.sup font.azul {
  color: #004FEF;
}

.metodo p.mt-4 {
  font-size: .95rem;
}

/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (max-width: 574px) {
  picture img {
    margin-bottom: 25px;
  }

  .metodo h3 {
    text-align: center;
  }

  .metodo p {
    text-align: center;
  }
}

.testimonio {
  background-color: #f1f6ff;
}

.testimonio p {
  font-size: 0.95rem;
}

.testimonio p.sup {
  color: #000;
  font-size: 1.2rem;
  margin-top: 20px;
}

.testimonio p.sup span {
  color: #004FEF;
}

.testimonio .laptop-cont .youtube {
  display: none;
}

.testimonio .laptop-cont .youtube.active {
  display: block;
}

.testimonio .laptop-cont .youtube-prev {
  display: block;
  color: #000 !important;
  display: none;
}

.testimonio .laptop-cont .youtube-prev .bg-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  background-image: url("../img/bg-video.png");
  background-position: center;
  background-size: auto 100%;
}

.testimonio .laptop-cont .youtube-prev .bg-prev .btn-video {
  text-align: center;
  background-color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: absolute;
}

.testimonio .laptop-cont .youtube-prev .bg-prev .btn-video .fa-c {
  font-size: 1.8rem;
  transition: 0.3s;
}

.testimonio .laptop-cont .youtube-prev .bg-prev .btn-video:hover {
  width: 55px;
  height: 55px;
}

.testimonio .laptop-cont .youtube-prev .bg-prev .btn-video:hover .fa-c {
  color: #00E790;
  font-size: 1.5rem;
}

.testimonio .laptop-cont .youtube-prev .youtube,
.testimonio .laptop-cont .youtube-prev iframe {
  width: 570px;
  height: 345px;
}

.testimonio .laptop-cont .youtube-prev .play {
  background-image: url(../img/play-youtube.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.testimonio .laptop-cont .youtube-prev.active {
  display: block;
}

.seccion_testimonio {
  background-size: cover;
  background-position: center;
  padding-top: 40px;
}

.seccion_testimonio .container {
  height: auto;
}

.seccion_testimonio .container .row {
  height: 100%;
  position: relative;
  align-items: center;
}

.seccion_testimonio .container h2 {
  color: #00287A;
  font-family: 'IBMPlexSans-Bold';
  letter-spacing: -0.5px;
  line-height: 34px;
}

.seccion_testimonio .container p {
  color: #00287A;
  font-size: 18px;
  line-height: 20px;
}

.seccion_testimonio .container p span {
  font-family: 'IBMPlexSans-BoldItalic';
}

.seccion_testimonio .container iframe {
  width: 100%;
  height: 270px;
}

.c-video-testimonial-2 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #D9F1FF;
}

.c-video-testimonial-2 .texto {
  max-width: 280px;
}

.c-video-testimonial-2 h2 {
  font-family: 'IBMPlexSans-Bold';
  color: #00287A;
  font-size: 32px;
  margin-bottom: 5px;
}

.testimonio_persona {
  width: 100%;
  position: relative;
  max-width: 380px;
  margin: 0 auto -6px;
}

.testimonio_persona img {
  width: 100%;
}

.pulse {
  margin: 100px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 231, 144, 0.4);
  animation: pulse_ani 2s infinite;
}

.pulse:hover {
  animation: none;
}

@keyframes pulse_ani {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 231, 144, 0.9);
    box-shadow: 0 0 0 0 rgba(0, 231, 144, 0.9);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 231, 144, 0);
    box-shadow: 0 0 0 30px rgba(0, 231, 144, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 231, 144, 0);
    box-shadow: 0 0 0 0 rgba(0, 231, 144, 0);
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .c-video-testimonial-2 {
    text-align: center;
  }

  .c-video-testimonial-2 iframe {
    height: 190px;
    margin-top: 10px;
  }

  .testimonio .laptop-cont {
    position: relative;
  }

  .testimonio .laptop-cont .youtube,
  .testimonio .laptop-cont .youtube-prev {
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 15px 15px 15px 20px;
  }

  .testimonio .laptop-cont .youtube span,
  .testimonio .laptop-cont .youtube-prev span {
    width: 100%;
    display: inline-block;
  }

  .testimonio .laptop-cont .youtube span iframe,
  .testimonio .laptop-cont .youtube-prev span iframe {
    width: 100%;
    height: 170px;
  }

  .testimonio .laptop-cont .youtube .bg-prev,
  .testimonio .laptop-cont .youtube-prev .bg-prev {
    height: 170px;
  }

  .testimonio .laptop-cont .youtube .youtube,
  .testimonio .laptop-cont .youtube iframe,
  .testimonio .laptop-cont .youtube-prev .youtube,
  .testimonio .laptop-cont .youtube-prev iframe {
    width: 280px;
    height: 155px;
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {

  .testimonio .laptop-cont .youtube-prev .youtube,
  .testimonio .laptop-cont .youtube-prev iframe {
    width: 450px;
    height: 255px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .testimonio .laptop-cont {
    position: relative;
  }

  .testimonio .laptop-cont .youtube,
  .testimonio .laptop-cont .youtube-prev {
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 20px 30px 20px 30px;
  }

  .testimonio .laptop-cont .youtube span,
  .testimonio .laptop-cont .youtube-prev span {
    width: 100%;
    display: inline-block;
  }

  .testimonio .laptop-cont .youtube span iframe,
  .testimonio .laptop-cont .youtube-prev span iframe {
    width: 100%;
    height: 285px;
  }

  .testimonio .laptop-cont .youtube .bg-prev,
  .testimonio .laptop-cont .youtube-prev .bg-prev {
    height: 285px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .testimonio .laptop-cont {
    position: relative;
  }

  .testimonio .laptop-cont .youtube,
  .testimonio .laptop-cont .youtube-prev {
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 45px 100px;
  }

  .testimonio .laptop-cont .youtube span,
  .testimonio .laptop-cont .youtube-prev span {
    width: 100%;
    display: inline-block;
  }

  .testimonio .laptop-cont .youtube span iframe,
  .testimonio .laptop-cont .youtube-prev span iframe {
    width: 100%;
    height: 125px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .testimonio .laptop-cont {
    position: relative;
  }

  .testimonio .laptop-cont .youtube,
  .testimonio .laptop-cont .youtube-prev {
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 45px 100px;
  }

  .testimonio .laptop-cont .youtube span,
  .testimonio .laptop-cont .youtube-prev span {
    width: 100%;
    display: inline-block;
  }

  .testimonio .laptop-cont .youtube span iframe,
  .testimonio .laptop-cont .youtube-prev span iframe {
    width: 100%;
    height: 200px;
  }

  .testimonio .txt {
    margin-top: 55px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .testimonio .laptop-cont {
    position: relative;
  }

  .testimonio .laptop-cont .youtube,
  .testimonio .laptop-cont .youtube-prev {
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 25px 25px 25px 35px;
  }

  .testimonio .laptop-cont .youtube span,
  .testimonio .laptop-cont .youtube-prev span {
    width: 100%;
    display: inline-block;
  }

  .testimonio .laptop-cont .youtube span iframe,
  .testimonio .laptop-cont .youtube-prev span iframe {
    width: 100%;
    height: 355px;
  }

  .testimonio .laptop-cont .youtube .bg-prev,
  .testimonio .laptop-cont .youtube-prev .bg-prev {
    width: 100%;
    height: 355px;
    background-color: #000;
    background-image: url("../img/bg-video.png");
    background-size: auto 100%;
  }
}

.yt-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 45px;
}

.yt-carousel .yt-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.yt-carousel .yt-slide {
  min-width: 100%;
  position: relative;
}

.yt-carousel .yt-poster {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.yt-carousel .yt-poster img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 567px) {
  .yt-carousel .yt-poster img {
    aspect-ratio: 9 / 16;
  }
}

.yt-carousel .yt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.65);
  display: grid;
  place-items: center;
}

.yt-carousel .yt-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.yt-carousel .yt-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.yt-carousel .yt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  user-select: none;
  transition: background 0.2s ease;
}

.yt-carousel .yt-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

.yt-carousel .yt-nav.yt-prev {
  left: 10px;
}

.yt-carousel .yt-nav.yt-next {
  right: 10px;
}

.yt-carousel .yt-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.yt-carousel .yt-nav.yt-next::before {
  transform: rotate(-45deg);
}

.yt-carousel .yt-nav.yt-prev::before {
  transform: rotate(135deg);
}

@media (max-width: 574px) {
  .c-video-testimonial-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .c-video-testimonial-2 .texto {
    max-width: 100%;
  }

  .c-video-testimonial-2 h2 {
    font-size: 24px;
    margin-bottom: 0;
    text-align: center;
  }

  .c-video-testimonial-2 p {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 30px;
    text-align: center;
  }

  .seccion_testimonio {
    background-position: left;
  }

  .seccion_testimonio .container .texto {
    padding: 40px 0;
  }

  .seccion_testimonio .container h2 {
    text-align: center;
  }

  .seccion_testimonio .container p {
    text-align: center;
  }

  .seccion_testimonio .container .yt-slide.is-playing {
    padding-bottom: 120%;
    position: relative;
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    min-width: 200px;
  }

  .seccion_testimonio .container .yt-slide.is-playing iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .yt-carousel:before {
    content: '';
    width: 440px;
    height: 440x;
    background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/kids-lazos.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .yt-carousel .yt-poster {
    max-width: 240px;
    margin: 0 auto;
  }

  .yt-carousel .yt-poster img {
    z-index: 10;
  }
}

.tyc {
  background-color: #004FEF;
  padding-bottom: 90px;
}

.tyc .accordion .accordion-item {
  border: 0px;
  background-color: transparent;
}

.tyc .accordion .accordion-item .accordion-button {
  background-color: transparent;
  font-family: 'IBMPlexSans-Regular';
  color: #778299;
  font-size: 1.1rem;
  box-shadow: none;
  color: #FFF;
  border-bottom: 1px solid #DEE0E3;
  border-radius: 0px;
}

.tyc .accordion .accordion-item .accordion-button:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.tyc .accordion .accordion-item .accordion-button::after {
  border: 1px solid #3CDF86;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  /* Centra la imagen */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.tyc .accordion .accordion-item .accordion-body {
  color: #FFF;
}

.tyc .accordion .accordion-body {
  color: #fff;
}

.tyc .accordion .accordion-body ul {
  padding-left: 15px;
}

.tyc .accordion .accordion-body ul li {
  font-size: 0.7rem;
}

.tyc .accordion .accordion-body p {
  color: #fff;
  font-size: 0.7rem;
  margin-bottom: 0px;
}

.tyc .accordion .accordion-body .cerrar {
  float: right;
}

.tyc .accordion .accordion-body .cerrar a {
  text-decoration: none;
  color: #fff;
}

.tyc .accordion .accordion-body .cerrar a span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #3cdf86;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Extra small devices (phones, 600px and down) */
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.seccion_como_logramos {
  background-color: #02E1C3;
  padding: 50px 0 50px;
  position: relative;
}

.seccion_como_logramos img {
  width: 100%;
  display: block;
  height: auto;
}

.seccion_como_logramos .cara {
  width: 130px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.seccion_como_logramos .vector_left {
  width: 218px;
  height: 210px;
  position: absolute;
  left: 0;
  top: calc(50% + 70px);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/logramos-vector-left.png");
}

.seccion_como_logramos .vector_right {
  width: 235px;
  height: 157px;
  position: absolute;
  right: 0;
  top: calc(50% + 70px);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/logramos-vector-right.png");
}

.seccion_como_logramos h2 {
  font-family: 'IBMPlexSans-Bold';
  color: #00287A;
  font-size: 24px;
  margin-bottom: 35px;
  text-align: center;
}

.seccion_como_logramos .lista_items {
  margin-bottom: 20px;
}

.seccion_como_logramos .lista_items article {
  margin-bottom: 25px;
  width: 100%;
}

.seccion_como_logramos .subtitulo {
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #00287A;
  font-family: 'IBMPlexSans-BoldItalic';
}

.seccion_como_logramos .subtitulo span {
  font-size: 32px;
  color: #00287A;
  line-height: 29px;
}

@media (max-width: 574px) {
  .seccion_como_logramos h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 45px;
  }

  .seccion_como_logramos .vector_left {
    background-repeat: no-repeat;
    background-size: cover;
    top: calc(50% + 78px);
    width: 122px;
    height: 116px;
  }

  .seccion_como_logramos .vector_right {
    background-repeat: no-repeat;
    background-size: cover;
    width: 122px;
    height: 96px;
    top: calc(30% + 29px);
  }

  .seccion_como_logramos .subtitulo {
    letter-spacing: -0.5px;
  }
}

.seccion_curso {
  background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/kidsteens-curso-bg.png");
  padding: 70px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.seccion_curso img {
  width: 100%;
  display: block;
  height: auto;
}

.seccion_curso .side {
  padding-top: 20px;
}

.seccion_curso .side_bottom {
  margin-top: -320px;
}

.seccion_curso h3 {
  font-family: 'IBMPlexSans-Regular';
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.seccion_curso h3 span {
  font-family: 'IBMPlexSans-BoldItalic';
}

.seccion_curso .left_side .logo_curso {
  max-width: 290px;
  margin: 0 auto 25px;
}

.seccion_curso .subtitulo {
  font-family: 'IBMPlexSans-Bold';
  color: #ffffff;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 50px;
  text-align: center;
}

.seccion_curso .cursos_profesor_en_vivo {
  width: 250px;
  margin: 0 auto 50px;
}

.seccion_curso .btn_iniciar {
  width: 239px;
  margin: 0 auto 50px;
}

.seccion_curso .texto {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
  font-family: 'IBMPlexSans-Regular';
}

.seccion_curso .texto span {
  font-family: 'IBMPlexSans-Bold';
}

.seccion_curso .lista_items {
  width: 100%;
  border-radius: 28px;
  margin-bottom: 15px;
}

.seccion_curso .lista_items article {
  border-bottom: 1px solid rgba(118, 24, 190, 0.5);
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
}

.seccion_curso .lista_items article .texto {
  font-size: 17px;
  line-height: 19px;
  color: #00287A;
  font-family: 'IBMPlexSans-Regular';
  max-width: 275px;
  text-align: left;
}

.seccion_curso .lista_items article .texto span {
  font-size: 19px;
  font-family: 'IBMPlexSans-Bold';
}

.seccion_curso .lista_items article img {
  width: 130px;
}

.seccion_curso .lista_items article.bottom_article {
  border-bottom: 0;
}

@media (max-width: 990px) {
  .seccion_curso .lista_items {
    margin-bottom: 35px;
  }

  .seccion_curso .side_bottom {
    margin-top: 0;
  }
}

.marquesina {
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  padding-top: 50px;
}

.marquesina::before,
.marquesina::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}

.marquesina::before {
  left: 0;
  background: linear-gradient(to right, #7618BE, transparent);
}

.marquesina::after {
  right: 0;
  background: linear-gradient(to left, #7618BE, transparent);
}

.marquesina__track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.marquesina__content {
  display: flex;
  gap: 34px;
  padding-right: 34px;
}

.marquesina__content span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.marquesina:hover__track {
  animation-play-state: paused;
}

/* Animación */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .marquesina__track {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .seccion_curso {
    padding-bottom: 30px;
  }

  .seccion_curso .texto {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .seccion_curso {
    background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/kidsteens-curso-bg-mob.png");
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 390px;
    overflow: hidden;
    background-size: contain;
    background-color: #743CFF;
  }

  .seccion_curso .side {
    padding-top: 90px;
  }

  .seccion_curso h3 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }

  .seccion_curso .subtitulo {
    font-family: 'IBMPlexSans-Regular';
    font-size: 24px;
  }

  .seccion_curso .lista_items article img {
    max-width: 130px;
  }

  .seccion_curso .lista_items article .texto {
    font-size: 14px;
  }

  .seccion_curso .lista_items article .texto span {
    font-size: 17px;
  }

  .seccion_curso .lista_items article.bottom_article {
    border-bottom: 1px solid rgba(118, 24, 190, 0.5);
  }

  .seccion_curso .lista_items article.bottom_article.last_article {
    border-bottom: 0;
  }

  .seccion_curso .left_side .cursos_profesor_en_vivo {
    max-width: 350px;
    width: 100%;
    margin-bottom: 30px;
  }

  .marquesina {
    background-color: #A227E0;
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .marquesina::before {
    left: 0;
    background: linear-gradient(to right, #A227E0, transparent);
  }

  .marquesina::after {
    right: 0;
    background: linear-gradient(to left, #A227E0, transparent);
  }

  .marquesina__track {
    animation: scroll 50s linear infinite;
  }
}

@media (max-width: 620px) {
  .seccion_curso {
    padding-top: 270px;
  }
}

@media (max-width: 420px) {
  .seccion_curso {
    padding-top: 230px;
  }
}

.seccion_workshop {
  border-top: 20px solid #3CDF86;
  position: relative;
}

.seccion_workshop:before {
  content: 'BONUS';
  color: #00287A;
  text-transform: uppercase;
  font-family: 'IBMPlexSans-Bold';
  background-color: #3CDF86;
  position: absolute;
  top: -10px;
  left: calc(50% - 450px);
  transform: translate(-50%, -50%);
  font-size: 25px;
  border-radius: 15px;
  z-index: 10;
  padding: 5px 15px;
}

@media (max-width: 1200px) {
  .seccion_workshop:before {
    left: 50%;
  }
}

.c-wsp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #00d900;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: #000;
  transition: 0.3s;
  font-size: 1.5rem;
  z-index: 999999;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  scale: 0;
  scale: 0 !important;
}

.c-wsp.c-visible {
  scale: 1;
}

.c-wsp:hover {
  cursor: pointer;
}

.c-wsp.force-active-off {
  scale: 0 !important;
}

.c-wsp2,
.c-wsp3 {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #01bc07;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  font-size: 1.5rem;
  z-index: 21;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  scale: 1;
  width: 55px;
  height: 55px;
  scale: 0 !important;
}

.c-wsp2.active,
.c-wsp3.active {
  scale: 1 !important;
}

.c-wsp2:hover,
.c-wsp3:hover {
  cursor: pointer;
  background-color: #075e54;
  color: #fff;
}

.c-wsp2.force-active-off,
.c-wsp3.force-active-off {
  scale: 0 !important;
}

.c-wsp2.oculto,
.c-wsp3.oculto {
  bottom: -150px;
}

.c-form-whatsapp {
  background-color: #fff;
  position: fixed;
  bottom: -500px;
  right: 20px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32);
  padding: 15px 20px;
  border-radius: 7px 7px 0px 0px;
  width: 350px;
  z-index: 9999;
  transition: 0.3s;
  display: grid;
}

.c-form-whatsapp .close {
  position: absolute;
  width: 100%;
  padding-right: 10px;
  padding-top: 10px;
}

.c-form-whatsapp .close span {
  cursor: pointer;
  float: right;
}

.c-form-whatsapp .hs_error_rollup {
  display: none;
}

.c-form-whatsapp h3 {
  font-size: 1rem;
}

.c-form-whatsapp.visible {
  bottom: 0px;
}

.c-form-whatsapp.c-hs-form .hs-form-field {
  margin-bottom: 10px;
}

.c-form-whatsapp.c-hs-form .hs-form-field label {
  font-family: "IBMPlexSans-Regular";
  color: #000;
}

.c-form-whatsapp.c-hs-form .hs-form-field .input .hs-input {
  width: 100%;
}

.c-form-whatsapp.c-hs-form .hs-form-field .input input,
.c-form-whatsapp.c-hs-form .hs-form-field .input select,
.c-form-whatsapp.c-hs-form .hs-form-field .input textarea {
  border: 0;
  border: 1px solid #dadada;
  border-radius: 7px;
  padding: 7px 15px;
}

.c-form-whatsapp.c-hs-form .hs-form-field .hs-error-msgs {
  list-style: none;
  padding-left: 0px;
}

.c-form-whatsapp.c-hs-form .hs-form-field .hs-error-msgs li label {
  font-family: "IBMPlexSans-Regular";
  color: red !important;
  font-size: 0.7rem;
  opacity: 0.8;
}

.c-form-whatsapp.c-hs-form .hs-form-booleancheckbox .hs-input {
  width: auto !important;
}

.c-form-whatsapp.c-hs-form .hs-fieldtype-booleancheckbox a {
  color: #000000;
}

.c-form-whatsapp.c-hs-form .hs-fieldtype-booleancheckbox ul {
  list-style: none;
  padding-left: 20px;
}

.c-form-whatsapp.c-hs-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox input {
  position: absolute;
  margin-left: -20px;
  margin-top: 5px;
}

.c-form-whatsapp.c-hs-form .hs-submit .hs-button {
  background-color: #01bc07;
  color: #fff;
  border: 0;
  font-family: "IBMPlexSans-Bold";
  padding: 10px 40px;
  text-transform: uppercase;
  border-radius: 7px;
  width: 100%;
  -webkit-box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  box-shadow: 10px 10px 14px -10px rgba(0, 0, 0, 0.44);
  transition: 0.3s;
}

.c-form-whatsapp.c-hs-form .hs-submit .hs-button:hover {
  background-color: #53d6bd;
}

.c-form-whatsapp.c-hs-form .form-columns-2,
.c-form-whatsapp.c-hs-form .form-columns-1 {
  max-width: 100%;
}

.c-form-whatsapp .hs_email label,
.c-form-whatsapp .hs_firstname label,
.c-form-whatsapp .hs_phone label,
.c-form-whatsapp .hs-provincia label,
.c-form-whatsapp .hs-fieldtype-text label {
  display: none;
}

.c-form-whatsapp .hs_email label.hs-error-msg,
.c-form-whatsapp .hs_firstname label.hs-error-msg,
.c-form-whatsapp .hs_phone label.hs-error-msg,
.c-form-whatsapp .hs-provincia label.hs-error-msg,
.c-form-whatsapp .hs-fieldtype-text label.hs-error-msg {
  display: block;
}

.c-form-whatsapp .hs_pe_tyc_1 span {
  font-size: .7rem;
}

.c-form-whatsapp .hs_pe_tyc_1 span a {
  color: #000 !important;
}

.c-form-whatsapp .hs_form___telefono___prefijo3 {
  width: 45% !important;
}

.c-form-whatsapp .hs_form___telefono___prefijo4 {
  width: 55% !important;
}

.c-wsp3 {
  bottom: 20px;
  background-color: #26a73a;
}

.c-wsp-container {
  position: fixed;
  bottom: -550px;
  right: 30px;
  width: 300px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  transition: 0.5s;
}

.c-wsp-container.active {
  bottom: 0px;
}

.c-wsp-container .c-head {
  background-color: #075e54;
  padding: 10px 25px;
  border-radius: 5px 5px 0px 0px;
}

.c-wsp-container .c-head .close {
  position: absolute;
  right: 8px;
  width: 25px;
  height: 25;
  color: #fff;
  cursor: pointer;
  margin-top: -25px;
}

.c-wsp-container .c-body {
  background-color: #fff;
  padding: 25px 25px 5px 25px;
}

.c-wsp-container .c-body h3 {
  color: #515151;
  font-size: 1.1rem;
  font-family: "Poppins-Medium";
}

.c-wsp-container .c-body p {
  color: #515151;
  font-size: 0.8rem;
}

.c-wsp-container .c-body label {
  font-family: "Poppins-Medium";
  color: #515151;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.c-wsp-container .c-body .form-control,
.c-wsp-container .c-body .form-select {
  padding-left: 0px;
  font-size: 0.8rem;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #dfdfdf;
  transition: 0.3s;
}

.c-wsp-container .c-body .form-control:focus,
.c-wsp-container .c-body .form-select:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-bottom: 1px solid #53d6bd !important;
}

.c-wsp-container .c-body .btn.submit {
  display: block;
  width: 100%;
  background-color: #4cca5a;
  border: 0px;
  font-family: "Poppins-Medium";
}

.back-top {
  display: none;
}

@media (max-width: 578px) {
  .c-wsp3 {
    bottom: 20px;
    right: 15px;
  }
}

.banner_principal {
  width: 100%;
  height: auto;
  /*max-height: 720px;*/
  position: relative;
  overflow: hidden;
  background-color: #0292FD;
}

.banner_principal .fondo {
  background-size: cover;
  background-position: center top;
  padding-top: 40px;
}

.banner_principal .container {
  max-width: 1200px;
}

.banner_principal * {
  box-sizing: border-box;
}

.banner_principal img {
  width: 100%;
  display: block;
  height: auto;
}

.banner_principal .tienes_el_talento {
  padding-top: 110px;
  width: 482px;
  margin: 0 auto;
}

.banner_principal .muneco {
  width: 172px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  /*transform: translateY(50%);*/
}

@media (min-width: 768px) {
  .banner_principal .left_side.left_side_static {
    margin-top: 140px;
  }
}


.banner_principal .persona img.personas_mob {
  display: none;
}

@media (max-width: 768px) {
  .banner_principal .persona img.personas_dsk {
    display: none;
  }

  .banner_principal .persona img.personas_mob {
    display: block;
  }
}

.banner_principal .left_side {
  width: 100%;
  margin-top: -960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner_principal .left_side .subtitulo {
  width: 100%;
  color: #ffffff;
  font-size: 65px;
  font-family: 'IBMPlexSans-Bold';
  text-align: center;
  margin-bottom: 75px;
  letter-spacing: -0.5px;
  z-index: 5;
  line-height: 46px;
}

.banner_principal .left_side .subtitulo img {
  display: inline;
}

.banner_principal .left_side .subtitulo img.palabra_ingles {
  max-width: 221px;
}

.banner_principal .left_side .subtitulo span {
  font-family: 'IBMPlexSans-BoldItalic';
  display: inline;
  position: relative;
}

.banner_principal .left_side .subtitulo span .flecha {
  width: 235px;
  height: auto;
  position: absolute;
  top: calc(100% + -19px);
  right: -30px;
}

.banner_principal .left_side .subtitulo span .flecha img {
  display: block;
}

.banner_principal .left_side .logo {
  width: 269px;
  margin-bottom: 15px;
  z-index: 5;
}

.banner_principal .left_side .hashtag {
  width: 375px;
  margin-bottom: 35px;
  z-index: 5;
}

.banner_principal .left_side .cta {
  width: 239px;
  z-index: 5;
}

.banner_principal .barra_inferior_banner {
  text-align: center;
  width: 100%;
  height: 57px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 36px;
  font-family: 'IBMPlexSans-Regular';
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.banner_principal .barra_inferior_banner span.bolder {
  font-family: 'IBMPlexSans-BoldItalic';
}

.banner_principal .barra_inferior_banner span {
  padding: 0 5px;
}

.banner_principal .barra_inferior_banner h1 {
  font-size: 35px;
  font-family: "IBM Plex Sans", sans-serif !important;
}
.banner_principal .barra_inferior_banner .online {
  font-size: 35px;
  font-family: "IBM Plex Sans", sans-serif !important;
  padding-top: 10px;
}


.banner_principal .barra_inferior_banner img {
  width: 113px;
  margin-left: 10px;
}

.banner_principal .lazo_left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner_principal .lazo_central {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .banner_principal .left_side .subtitulo {
    width: 100%;
    color: #ffffff;
    font-size: 44px;
  }

  .banner_principal .left_side .subtitulo img.palabra_ingles {
    max-width: 121px;
  }

  .banner_principal .left_side.left_side_static {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .banner_principal {
    height: auto;
  }

  .banner_principal .barra_inferior_banner .online {
  font-size: 20px;
  font-family: "IBM Plex Sans", sans-serif !important;
  padding-top: 10px;
}
.banner_principal .barra_inferior_banner .clases {
  font-size: 20px;
  font-family: "IBM Plex Sans", sans-serif !important;
}
  .banner_principal .fondo {
    padding-top: 0px;
  }

  .banner_principal .container {
    padding-left: 0;
    padding-right: 0;
  }

  .banner_principal .tienes_el_talento {
    width: 90%;
    max-width: 395px;
  }

  .banner_principal .persona {
    z-index: 3;
  }

  .banner_principal .left_side {
    margin-top: -2px;
    position: relative;
    padding-top: 10px;
  }

  .banner_principal .left_side:before {
    content: '';
    width: 120%;
    height: 350px;
    background: #01BDFF;
    background: linear-gradient(181deg, #01bdff 20%, #028cfd 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }

  .banner_principal .left_side .subtitulo {
    font-size: 46px;
    line-height: 37px;
  }

  .banner_principal .left_side .subtitulo img.palabra_ingles {
    max-width: 122px;
  }

  .banner_principal .left_side .subtitulo span .flecha {
    width: 140px;
    top: calc(100% + -7px);
    right: -5px;
  }

  .banner_principal .left_side .logo {
    width: 220px;
  }

  .banner_principal .left_side .cta {
    margin-bottom: 30px;
  }

  .banner_principal .left_side .hashtag {
    width: 206px;
  }

  .banner_principal .left_side.left_side_static {
    margin-top: 0;
  }

  .banner_principal .muneco {
    display: none;
  }

  .banner_principal .lazo_left {
    left: -72px;
    width: 150px;
    bottom: 30px;
  }

  .banner_principal .barra_inferior_banner {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .banner_principal .fondo {
    padding-top: 93px;
  }
}

.banner_principal {
  width: 100%;
  height: auto;
  /*max-height: 720px;*/
  position: relative;
  overflow: hidden;
  background-color: #0292FD;
}

.banner_principal .fondo {
  background-size: cover;
  background-position: center top;
  padding-top: 40px;
}

.banner_principal .container {
  max-width: 1200px;
}

.banner_principal * {
  box-sizing: border-box;
}

.banner_principal img {
  width: 100%;
  display: block;
  height: auto;
}

.banner_principal .tienes_el_talento {
  padding-top: 110px;
  width: 482px;
  margin: 0 auto;
}

.banner_principal .muneco {
  width: 172px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  /*transform: translateY(50%);*/
}

@media (min-width: 768px) {
  .banner_principal .left_side.left_side_static {
    margin-top: 140px;
  }
}

.banner_principal .persona img.personas_mob {
  display: none;
}

@media (max-width: 768px) {
  .banner_principal .persona img.personas_dsk {
    display: none;
  }

  .banner_principal .persona img.personas_mob {
    display: block;
  }
}

.banner_principal .left_side {
  width: 100%;
  margin-top: -960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner_principal .left_side .subtitulo {
  width: 100%;
  color: #ffffff;
  font-size: 65px;
  font-family: 'IBMPlexSans-Bold';
  text-align: center;
  margin-bottom: 75px;
  letter-spacing: -0.5px;
  z-index: 5;
  line-height: 46px;
}

.banner_principal .left_side .subtitulo img {
  display: inline;
}

.banner_principal .left_side .subtitulo img.palabra_ingles {
  max-width: 221px;
}

.banner_principal .left_side .subtitulo span {
  font-family: 'IBMPlexSans-BoldItalic';
  display: inline;
  position: relative;
}

.banner_principal .left_side .subtitulo span .flecha {
  width: 235px;
  height: auto;
  position: absolute;
  top: calc(100% + -19px);
  right: -30px;
}

.banner_principal .left_side .subtitulo span .flecha img {
  display: block;
}

.banner_principal .left_side .logo {
  width: 269px;
  margin-bottom: 15px;
  z-index: 5;
}

.banner_principal .left_side .hashtag {
  width: 375px;
  margin-bottom: 35px;
  z-index: 5;
}

.banner_principal .left_side .cta {
  width: 239px;
  z-index: 5;
}

.banner_principal .barra_inferior_banner {
  text-align: center;
  width: 100%;
  height: 57px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 36px;
  font-family: 'OpenSans-Regular';
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.banner_principal .barra_inferior_banner span.bolder {
  font-family: 'IBMPlexSans-BoldItalic';
}

.banner_principal .barra_inferior_banner span {
  padding: 0 5px;
}

.banner_principal .barra_inferior_banner img {
  width: 113px;
  margin-left: 10px;
}

.banner_principal .lazo_left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner_principal .lazo_central {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .banner_principal .left_side .subtitulo {
    width: 100%;
    color: #ffffff;
    font-size: 44px;
  }

  .banner_principal .left_side .subtitulo img.palabra_ingles {
    max-width: 121px;
  }

  .banner_principal .left_side.left_side_static {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .banner_principal {
    height: auto;
  }

  .banner_principal .fondo {
    padding-top: 0px;
  }

  .banner_principal .container {
    padding-left: 0;
    padding-right: 0;
  }

  .banner_principal .tienes_el_talento {
    width: 90%;
    max-width: 395px;
  }

  .banner_principal .persona {
    z-index: 3;
  }

  .banner_principal .left_side {
    margin-top: -2px;
    position: relative;
    padding-top: 10px;
  }

  .banner_principal .left_side:before {
    content: '';
    width: 120%;
    height: 350px;
    background: #01BDFF;
    background: linear-gradient(181deg, #01bdff 20%, #028cfd 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }

  .banner_principal .left_side .subtitulo {
    font-size: 46px;
    line-height: 37px;
  }

  .banner_principal .left_side .subtitulo img.palabra_ingles {
    max-width: 122px;
  }

  .banner_principal .left_side .subtitulo span .flecha {
    width: 140px;
    top: calc(100% + -7px);
    right: -5px;
  }

  .banner_principal .left_side .logo {
    width: 220px;
  }

  .banner_principal .left_side .cta {
    margin-bottom: 30px;
  }

  .banner_principal .left_side .hashtag {
    width: 206px;
  }

  .banner_principal .left_side.left_side_static {
    margin-top: 0;
  }

  .banner_principal .muneco {
    display: none;
  }

  .banner_principal .lazo_left {
    left: -72px;
    width: 150px;
    bottom: 30px;
  }

  .banner_principal .barra_inferior_banner {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .banner_principal .fondo {
    padding-top: 93px;
  }
}

.hs-button {
  border: 2px solid #FFF;
}

/* STYLES - TELEFONO ARG */
.hs_form___telefono___prefijo1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
}

.hs_form___telefono___prefijo1 .hs-input {
  padding: 0px;
}

.legal-consent-container {
  z-index: 9999;
  position: sticky;
}

.hs_form___telefono___prefijo2 {
  opacity: 0;
  position: absolute;
}

.hs_form___tipo_telefono .input ul {
  display: flex;
}

.hs_form___telefono___prefijo3 {
  width: 30% !important;
}

.hs_form___telefono___prefijo4 {
  width: 36% !important;
}

.hs_form___telefono___prefijo3 label,
.hs_form___telefono___prefijo4 label {
  opacity: 0;
}

@media (min-device-width: 320px) and (max-device-width: 767px) {
  #hs_form_target_widget_1616625895479 .form-columns-3 .hs_form___telefono___prefijo3 {
    width: 40% !important;
  }

  #hs_form_target_widget_1616625895479 .form-columns-3 .hs_form___telefono___prefijo4 {
    width: 40% !important;
  }
}

.form-columns-3 {
  max-width: inherit !important;
}

.hs_acepta_politica_privacidad_ar {
  z-index: 9;
  position: sticky;
}

form .inputs-list {
  padding: 0;
  list-style: none;
}

form .inputs-list li {
  margin-right: 8px;
}

form .inputs-list li label {
  display: inline-flex !important;
}

form .inputs-list li label span {
  margin-left: 5px;
}

form #form___telefono___prefijo1-03045fad-1c5f-474c-995e-a2331d2be31c_9670,
form #form___telefono___prefijo1-03045fad-1c5f-474c-995e-a2331d2be31c_8899,
form #form___telefono___prefijo1-b3648151-9977-4e93-8e7f-632275dd21a9_8899,
form #form___telefono___prefijo1-b3648151-9977-4e93-8e7f-632275dd21a9_5325,
form #form___telefono___prefijo1-3dea179a-7681-484f-b602-b05804566e69_5325 {
  display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hs_form___telefono___prefijo3 {
    display: inline-grid;
    width: 44% !important;
  }

  .hs_form___telefono___prefijo3 label {
    display: none;
  }

  .hs_form___telefono___prefijo4 {
    display: inline-grid;
    width: 56% !important;
  }

  .hs_form___telefono___prefijo4 label {
    display: none;
  }

  .hs_form___tipo_telefono .input ul {
    display: contents;
  }

  .hs_form___tipo_telefono .input ul li label {
    width: 15px;
  }

  .hs_form___tipo_telefono .input ul li label input {
    width: 17px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.seccion_sabias_que {
  background-position: left center;
  background-size: center;
  background-color: #020F9F;
  padding: 80px 0 90px;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
}

.seccion_sabias_que * {
  box-sizing: border-box;
}

.seccion_sabias_que img {
  width: 100%;
  display: block;
  height: auto;
}

.seccion_sabias_que .texto_amarillo {
  color: #FADC04;
  font-size: 30px;
  text-align: left;
  font-family: 'IBMPlexSans-Bold';
  line-height: 34px;
  margin-bottom: 40px;
  max-width: 310px;
  top: 70px;
  position: relative;
}

@media (max-width: 768px) {
  .seccion_sabias_que .texto_amarillo {
    top: auto;
  }
}

.seccion_sabias_que h2 {
  color: #00BDFF;
  font-size: 30px;
  line-height: 34px;
  font-family: 'IBMPlexSans-Bold';
  margin-bottom: 40px;
}

.seccion_sabias_que .lista_cards {
  position: relative;
  z-index: 50;
}

.seccion_sabias_que .texto_img {
  width: 100%;
  margin-bottom: 20px;
  position: absolute;
  max-width: 300px;
  bottom: 50px;
  /*&:before{
        width: 642px;
        height: 300px;
        content: '';
        position: absolute;
        top: -70px;
        right: -30px;
        background-image: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/kids-cinta.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right top;
    }*/
}

@media (max-width: 768px) {
  .seccion_sabias_que .texto_img {
    position: relative;
    bottom: auto;
  }
}

.seccion_sabias_que .texto_img .cinta {
  position: absolute;
  top: -360px;
  right: -100px;
}

@media (max-width: 768px) {
  .seccion_sabias_que .texto_img .cinta {
    display: none;
  }
}

.seccion_sabias_que .texto_img img {
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.seccion_sabias_que article.sabias_que_card {
  border: 1px solid #ffffff;
  border-radius: 25px;
  background-color: #020F9F;
  overflow: hidden;
}

.seccion_sabias_que article.sabias_que_card .caja {
  padding: 15px;
}

.seccion_sabias_que article.sabias_que_card .caja p {
  color: #ffffff;
  font-family: 'IBMPlexSans-Regular';
  font-size: 17px;
  line-height: 22px;
}

.seccion_sabias_que article.sabias_que_card .caja p strong {
  font-family: 'IBMPlexSans-Bold';
}

.seccion_sabias_que .star {
  width: 45px;
  position: absolute;
  right: 40px;
  top: 40px;
}

.seccion_sabias_que .cara {
  width: 162px;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767.98px) {
  .seccion_sabias_que {
    background-image: none;
    overflow: hidden;
  }

  .seccion_sabias_que article.sabias_que_card {
    box-shadow: inset 0 0 0 0 transparent;
    border: 1px solid #ffffff;
    border-radius: 22px;
    max-width: 240px;
    margin: 0 auto;
  }

  .seccion_sabias_que .texto_amarillo {
    margin-bottom: 80px;
  }

  .seccion_sabias_que .texto_img {
    position: relative;
    margin: 0 auto 80px;
  }

  .seccion_sabias_que .texto_img:before {
    content: '';
    width: 148%;
    height: 264px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/assets/img/kidsteens_sabias_que_curva.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .seccion_sabias_que .texto_img img {
    z-index: 10;
    position: relative;
  }

  /* ====== Peek (que se vea un poquito el de al costado) ====== */
  .sabias-que-carousel .carousel,
  .sabias-que-carousel .carousel-inner {
    overflow: visible !important;
  }

  .sabias-que-carousel .carousel-inner {
    padding: 0 18px;
  }

  /* ====== IMPORTANTE: NO tocar transform del carousel-item ====== */
  .sabias-que-carousel .carousel-item {
    opacity: 1;
    transition: opacity .25s ease;
  }

  /* ====== Zoom suave sin chocar con Bootstrap ====== */
  .sabias-que-carousel .sabias-zoom {
    transform: scale(0.92);
    opacity: .85;
    transition: transform 350ms ease, opacity 350ms ease;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
  }

  .sabias-que-carousel .carousel-item.active .sabias-zoom {
    transform: scale(1);
    opacity: 1;
  }

  /* ====== Dots centrados abajo ====== */
  .sabias-que-indicators {
    position: static;
    margin-top: 14px;
    gap: 8px;
  }

  .sabias-que-indicators button {
    width: 9px !important;
    height: 9px !important;
    border-radius: 50%;
    border: 0;
    opacity: .45;
  }

  .sabias-que-indicators button.active {
    opacity: 1;
    transform: scale(1.25);
  }
}

@media (max-width: 767.98px) {
  .sabias-que-indicators button.active {
    transform: scale(1.25);
  }
}

/*# sourceMappingURL=cmln-style.css.map */

/*B2S 06/02/26*/
@media (max-width: 768px) {
  .banner_principal .left_side::before {
    content: '';
    width: 120%;
    height: 350px;
    background: #FF0774;
    background: linear-gradient(181deg, #FF0774 20%, #FF2C52 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
}


@media (min-width: 768px) {

  .descuento {
    position: absolute;
    z-index: 10;
    top: 55%;
    right: 10%;
    display: block;
    /* Asegura que se vea en estas versiones */
    animation: palpito 2.5s ease-in-out infinite;
  }

  .descuento img {
    width: 300px;
    height: 215px;
    display: block;
    object-fit: contain;
  }

  @keyframes palpito {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
      /* Crece solo un 5% */
    }

    100% {
      transform: scale(1);
    }
  }
}


@media (max-width: 767px) {
  .descuento {
    display: none;
  }

}