@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_Condensed-Italic";
  src: url(../fonts/IBMPlexSans_Condensed-Italic.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: 0.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: 0.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;
}
.c-wsp.c-visible {
  scale: 1;
}
.c-wsp:hover {
  cursor: pointer;
}
.c-wsp.force-active-off {
  scale: 0 !important;
}
.c-wsp {
  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;
}
.c-wsp2.c-visible {
  scale: 1;
}
.c-wsp2:hover {
  cursor: pointer;
}
.c-wsp2.force-active-off {
  scale: 0 !important;
}
.c-wsp2 {
  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: 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;
}

/*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: 0.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: 0.9rem !important;
    padding-left: 0px !important;
    padding-right: 3px !important;
    text-align: center;
  }
  .btn-fixed-call .txt span {
    font-size: 0.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: 0.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: 0.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: 0.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: rgb(255, 73, 92);
  background: linear-gradient(90deg, rgb(255, 73, 92) 0%, rgb(100, 59, 163) 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: rgba(0, 0, 0, 0);
}

.cmln-slider-2 .logo {
  max-height: 65px;
  width: auto !important;
}
.cmln-slider-2 .img-1 {
  max-height: 505px;
  width: auto !important;
}
.cmln-slider-2 .img-2 {
  max-height: 325px;
  width: auto !important;
}
.cmln-slider-2 .img-3 {
  max-width: 470px !important;
  height: auto !important;
}
.cmln-slider-2 .img-4 {
  position: relative !important;
  max-height: 30px;
  width: auto !important;
}
.cmln-slider-2 .cta_banner {
  border: 8px solid #FFF;
  animation: efectoFoco 5s ease-in-out infinite;
  border-radius: 28px;
  padding: 15px 15px !important;
}

.barra_inferior_banner_2 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #FD2B73;
  border-bottom: 80px solid #0226c3;
}

.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: 0.8rem !important;
  }
  .cmln-slider-2 .img-1 {
    max-height: 350px;
  }
  .cmln-slider-2 .logo {
    max-height: 40px;
  }
  .cmln-slider-2 .img-2 {
    max-height: 150px;
  }
  .cmln-slider-2 .img-3 {
    max-height: 30px;
    width: auto !important;
  }
  .cmln-slider-2 .img-4 {
    max-height: 15px;
    width: auto !important;
  }
  .barra_inferior_banner_2 {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 40px solid #0226c3;
  }
  .item-texto {
    font-size: 1.7rem;
  }
  .texto-banner .intro {
    margin-bottom: 30px;
  }
}
/* 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;
  }
  .seccion_como_logramos .slick-dots li button:before {
    font-size: 20px !important;
  }
  .cmln-slider-2 .logo {
    max-height: 30px;
  }
  .cmln-slider-2 .img-1 {
    max-height: 280px;
  }
  .cmln-slider-2 .img-2 {
    max-height: 190px;
  }
  .cmln-slider-2 .img-3 {
    max-height: 20px;
    width: auto !important;
  }
  .cmln-slider-2 .img-4 {
    max-height: 20px;
    width: auto !important;
  }
  .cmln-slider-2 .cta_banner {
    border: 5px solid #FFF;
    padding: 10px 10px !important;
  }
  .hero-title2 {
    text-align: center;
  }
  .contenedor-modalidades {
    max-width: 540px !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) */
@media only screen and (min-width: 992px) {
  .fa-ul-temp-1 {
    min-height: 100px;
  }
}
/* 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, rgb(255, 255, 255) 54%, rgb(217, 241, 255) 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: 0.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 {
  background-image: url("https://github.com/enis190/assets_dev/blob/main/img/portada_pink.png?raw=true");
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 600px;
  background-repeat: no-repeat;
  padding: 90px 15px 5px;
  z-index: 20;
  background-color: #FD2B73;
}
.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: 70px;
}
.seccion_formulario article .tarjeta img {
  width: 100%;
}
.seccion_formulario article p.completa {
  color: #fff;
  margin-top: 0;
  font-size: 24px;
  line-height: 27px;
  padding-left: 10px;
  text-align: left;
  font-family: "IBMPlexSans-Regular";
  margin-bottom: 30px;
  text-align: right;
  padding-right: 50px;
}
.seccion_formulario article p.completa span {
  font-family: "IBMPlexSans-Regular";
  font-size: 2.5rem !important;
}
.seccion_formulario article p.completa.completa_2 {
  font-size: 62px;
  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: 62px;
  position: relative;
  display: inline-block;
  /* background: #ef2d7b; */
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0px 8px 16px;
  /* border-radius: 50px; */
  line-height: 1;
}
.seccion_formulario .contenedor_caja_form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seccion_formulario .caja {
  background-color: rgba(255, 255, 255, 0);
  border: 7px solid #fff;
  border-radius: 45px;
  padding: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.seccion_formulario .caja p.completa {
  color: #fff;
  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: #fff;
  font-size: 12px;
  line-height: 13px;
}
.seccion_formulario .c-hs-form .hs-form-field .input .hs-input {
  width: 100%;
  background-color: #fff;
  color: #000;
}
.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: #fff;
}
.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: 0.7rem;
  opacity: 0.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: #fff;
}
.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-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  border: 8px solid #FFF;
  animation: efectoFoco 5s ease-in-out infinite;
  padding: 10px;
  border-radius: 28px;
  width: 96%;
  -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: 0px 0px 0px -10px rgba(0, 0, 0, 0.44);
  transition: 0.3s;
  color: #FFF;
  text-transform: uppercase;
  font-family: "IBMPlexSans-Regular";
}
.seccion_formulario .c-hs-form .hs-submit .hs-button:hover {
  background-color: transparent;
  /* background: linear-gradient(180deg, rgb(230, 139, 70) 0%, rgb(235, 67, 67) 100%); */
}
.seccion_formulario .c-hs-form .hs-submit .hs-button {
  position: absolute;
  margin-top: -80px;
  margin-left: -20px;
}
.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;
}

.seccion_formulario_2 {
  background-image: url("https://github.com/enis190/assets_dev/blob/main/img/portada_form.png?raw=true");
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 500px;
  background-repeat: no-repeat;
  padding: 50px 15px 80px;
  background-color: #0433ff;
  z-index: 20;
}
.seccion_formulario_2 #form___telefono___prefijo1-19787b97-4cf9-4c67-bbcb-808934f549c8_5325 {
  display: none;
}
.seccion_formulario_2 .hs_form___telefono___prefijo1.hs-form___telefono___prefijo1.hs-fieldtype-text.field.hs-form-field {
  display: none;
}
.seccion_formulario_2 .c-hs-form {
  z-index: 1;
}
.seccion_formulario_2 article {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}
.seccion_formulario_2 article .tarjeta {
  width: 100%;
  max-width: 70px;
}
.seccion_formulario_2 article .tarjeta img {
  width: 100%;
}
.seccion_formulario_2 article p.completa {
  color: #fff;
  margin-top: 0;
  font-size: 24px;
  line-height: 27px;
  padding-left: 10px;
  text-align: left;
  font-family: "IBMPlexSans-Regular";
  margin-bottom: 30px;
}
.seccion_formulario_2 article p.completa span {
  font-family: "IBMPlexSans-SemiBoldItalic";
}
.seccion_formulario_2 article p.completa.completa_2 {
  font-size: 42px;
  line-height: 45px;
  margin-bottom: 30px;
  font-family: "IBMPlexSans-Regular";
  text-align: left;
}
.seccion_formulario_2 article p.completa.completa_2 span {
  display: inline;
  font-size: 42px;
  font-family: "IBMPlexSans-BoldItalic";
  margin-left: 130px;
  position: relative;
  display: inline-block;
  background: #ef2d7b;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px 8px 16px;
  border-radius: 50px;
  line-height: 1;
}
.seccion_formulario_2 .contenedor_caja_form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seccion_formulario_2 .caja {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 28px;
  padding: 40px;
  border: 2px solid #FD2B73;
}
.seccion_formulario_2 .caja p.completa {
  color: #fff;
  font-size: 24px;
}
.seccion_formulario_2 .persona {
  width: 100%;
  max-width: 468px;
}
.seccion_formulario_2 .persona img {
  width: 100%;
}
.seccion_formulario_2 .txt {
  max-width: 587px;
  margin: 0 auto;
}
.seccion_formulario_2 .txt::before {
  content: url("../img/bg_1.png");
  position: absolute;
  height: 50px;
  width: 50px;
  transform: scale(0.7);
  margin-top: -40px;
}
.seccion_formulario_2 .c-hs-form .hs-form-field {
  margin-bottom: 10px;
}
.seccion_formulario_2 .c-hs-form .hs-form-field label {
  font-family: "IBMPlexSans-Regular";
  color: #fff;
  font-size: 12px;
  line-height: 13px;
}
.seccion_formulario_2 .c-hs-form .hs-form-field .input .hs-input {
  width: 100%;
  background-color: #FD2B73;
}
.seccion_formulario_2 .c-hs-form .hs-form-field .input input[type=radio].hs-input {
  width: auto;
}
.seccion_formulario_2 .c-hs-form .hs-form-field .input input,
.seccion_formulario_2 .c-hs-form .hs-form-field .input select,
.seccion_formulario_2 .c-hs-form .hs-form-field .input textarea {
  border: 0;
  border: 0;
  border-radius: 7px;
  padding: 4px 15px;
  color: #fff;
}
.seccion_formulario_2 .c-hs-form .hs-fieldtype-text.hs-form-field > label,
.seccion_formulario_2 .c-hs-form .hs-fieldtype-phonenumber.hs-form-field > label,
.seccion_formulario_2 .c-hs-form .hs-fieldtype-select > label,
.seccion_formulario_2 .c-hs-form .hs_form___tipo_telefono > label {
  /* position: absolute;
  margin-top: 2px;*/
}
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_1,
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_2 {
  width: 60%;
}
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_1 label,
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_2 label {
  display: block;
}
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_2 {
  margin-bottom: 0;
}
.seccion_formulario_2 .c-hs-form .hs_pe_tyc_2 ul.inputs-list {
  margin-bottom: 0;
}
.seccion_formulario_2 .c-hs-form .hs-error-msgs,
.seccion_formulario_2 .c-hs-form .hs_error_rollup {
  list-style: none;
  padding-left: 0px;
}
.seccion_formulario_2 .c-hs-form .hs-error-msgs li label,
.seccion_formulario_2 .c-hs-form .hs_error_rollup li label {
  font-family: "IBMPlexSans-Regular";
  color: #ffffff !important;
  font-size: 0.7rem;
  opacity: 0.8;
  background-color: red;
  padding: 2px 5px;
  border-radius: 5px;
}
.seccion_formulario_2 .c-hs-form .hs-form-booleancheckbox .hs-input {
  width: auto !important;
}
.seccion_formulario_2 .c-hs-form .hs-fieldtype-booleancheckbox a {
  color: #fff;
}
.seccion_formulario_2 .c-hs-form .hs-fieldtype-booleancheckbox ul {
  list-style: none;
  padding-left: 20px;
}
.seccion_formulario_2 .c-hs-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox input {
  position: absolute;
  margin-left: -20px;
  margin-top: 0;
}
.seccion_formulario_2 .c-hs-form .hs-submit {
  width: 29%;
  margin-left: 70%;
  position: relative;
}
.seccion_formulario_2 .c-hs-form .hs-submit .hs-button {
  background-color: transparent;
  background-image: url(https://github.com/enis190/assets_dev/blob/main/img/registrate.png?raw=true);
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  border: 0;
  padding: 15px 40px;
  border-radius: 28px;
  width: 96%;
  -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: 0px 0px 0px -10px rgba(0, 0, 0, 0.44);
  transition: 0.3s;
}
.seccion_formulario_2 .c-hs-form .hs-submit .hs-button:hover {
  background-color: transparent;
  /* background: linear-gradient(180deg, rgb(230, 139, 70) 0%, rgb(235, 67, 67) 100%); */
}
.seccion_formulario_2 .c-hs-form .hs-submit .hs-button {
  position: absolute;
  margin-top: -50px;
}
.seccion_formulario_2 .c-hs-form .form-columns-2,
.seccion_formulario_2 .c-hs-form .form-columns-1 {
  max-width: 100%;
}
.seccion_formulario_2 .hs_form___tipo_telefono .input ul {
  display: flex;
  padding: 0;
  list-style: none;
}
.seccion_formulario_2 .hs_form___tipo_telefono .input ul li {
  margin-right: 8px;
}
.seccion_formulario_2 .hs_form___tipo_telefono .input ul li label {
  display: flex;
  padding-top: 10px;
}
.seccion_formulario_2 .hs_form___tipo_telefono .input ul li input {
  margin-right: 5px;
}

@keyframes efectoFoco {
  0% {
    border-color: #f5d71f;
  }
  2% {
    border-color: transparent;
  }
  5% {
    border-color: #f5d71f;
  }
  10% {
    border-color: transparent;
  }
  12% {
    border-color: #fff;
  }
  48% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}
.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 rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 10px 10px 12px -7px rgba(0, 0, 0, 0);
    box-shadow: inset 10px 10px 12px -7px rgba(0, 0, 0, 0);
  }
  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 rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 10px 10px 12px -7px rgba(0, 0, 0, 0);
    box-shadow: inset 10px 10px 12px -7px rgba(0, 0, 0, 0);
  }
}
/* 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;
  }
  .seccion_formulario .contenedor_caja_form {
    padding: 20px;
    display: block;
  }
}
/* 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);
  }
  .seccion_formulario_2 .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 {
    background-image: url("https://github.com/enis190/assets_dev/blob/main/img/fondo_pink_mob.png?raw=true");
    background-size: cover;
    background-position: center top;
    padding: 0px 15px 80px;
  }
  .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;
    font-family: "IBMPlexSans-Regular";
  }
  .seccion_formulario .txt p.completa span {
    display: inline;
    /* font-family: 'IBMPlexSans-SemiBold';  */
  }
  .seccion_formulario .txt p.completa.completa_2 {
    text-align: left;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 20px;
    font-family: "IBMPlexSans-Regular";
  }
  .seccion_formulario .txt p.completa.completa_2 span {
    display: inline;
    font-size: 42px;
    font-family: "IBMPlexSans-BoldItalic";
    margin-left: 130px;
    position: relative;
    display: inline-block;
    /* background: #ef2d7b; */
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    line-height: 1;
  }
  .seccion_formulario .txt .tarjeta {
    width: 100%;
    max-width: 50px;
  }
  .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;
    border-radius: 14px;
    margin-left: 0px;
  }
  .seccion_formulario_2 {
    background-image: url("https://github.com/enis190/assets_dev/blob/main/img/portada_formulario.png?raw=true");
    background-size: cover;
    background-position: center top;
    padding: 40px 15px 80px;
  }
  .seccion_formulario_2 .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .seccion_formulario_2 .container-fluid .container-lg {
    padding-left: 0;
    padding-right: 0;
  }
  .seccion_formulario_2 .caja {
    border-radius: 18px;
    padding: 15px 20px 15px;
  }
  .seccion_formulario_2 .txt p.completa {
    font-size: 24px;
    line-height: 26px;
    font-family: "IBMPlexSans-Regular";
  }
  .seccion_formulario_2 .txt p.completa span {
    display: inline;
    /* font-family: 'IBMPlexSans-SemiBold';  */
  }
  .seccion_formulario_2 .txt p.completa.completa_2 {
    text-align: left;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 20px;
    font-family: "IBMPlexSans-Regular";
  }
  .seccion_formulario_2 .txt p.completa.completa_2 span {
    display: inline;
    font-size: 42px;
    font-family: "IBMPlexSans-BoldItalic";
    margin-left: 130px;
    position: relative;
    display: inline-block;
    background: #ef2d7b;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px 8px 16px;
    border-radius: 50px;
    line-height: 1;
  }
  .seccion_formulario_2 .txt .tarjeta {
    width: 100%;
    max-width: 50px;
  }
  .seccion_formulario_2 .txt .tarjeta img {
    width: 100%;
  }
  .seccion_formulario_2 .c-hs-form .hs_pe_tyc_1,
  .seccion_formulario_2 .c-hs-form .hs_pe_tyc_2 {
    width: 100%;
  }
  .seccion_formulario_2 .c-hs-form .hs-submit {
    width: 100%;
    margin-left: 0;
    padding-top: 15px;
  }
  .seccion_formulario_2 .c-hs-form .hs-submit .hs-button {
    margin-top: 0;
    position: relative;
    padding-top: 23px;
    padding-bottom: 5px;
    border-radius: 14px;
    width: 52.5%;
    margin-left: 100px;
  }
}
.phone-error {
  margin-top: 4px;
  background: #e53935;
  display: none;
  font-family: "IBMPlexSans-Regular";
  color: #ffffff !important;
  font-size: 0.6rem;
  opacity: 0.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: 0.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;
  }
}
.seccion-testimonios {
  width: 100%;
  padding: 45px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contenedor-testimonios {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.titulo-testimonios {
  margin: 0 0 35px;
  color: #0433FF;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  font-family: "IBMPlexSans-Regular";
}

.titulo-testimonios span {
  display: inline-block;
  padding: 4px 14px 7px;
  background-color: #ff2b72;
  border-radius: 30px;
  color: #ffffff;
  font-style: italic;
  font-weight: 700;
}

.lista-testimonios {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.testimonio {
  width: 100%;
}

.testimonio img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
}

.testimonio-derecha img {
  margin-left: auto;
  margin-right: 0;
}

.testimonio-izquierda img {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 767px) {
  .titulo-testimonios {
    font-size: 42px;
  }
  .seccion-testimonios {
    padding: 45px 20px 0px;
  }
}
.tyc {
  background-color: #004FEF;
  padding-bottom: 0px;
}
.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: #fff;
  padding: 50px 0 50px;
  position: relative;
}
.seccion_como_logramos .slider .item {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  font-family: "IBMPlexSans-Regular";
}
.seccion_como_logramos .slick-dots li button:before {
  font-size: 50px;
}
.seccion_como_logramos .titulo {
  padding-bottom: 40px;
  padding-top: 40px;
  text-align: center !important;
  display: block;
}
.seccion_como_logramos .titulo h2 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  font-family: "IBMPlexSans-MediumItalic";
  margin: 0 0 35px;
  color: #0433FF;
}
.seccion_como_logramos .titulo h2 img {
  max-height: 45px;
  margin-top: -20px;
}

.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;
}
.c-wsp.c-visible {
  scale: 1;
}
.c-wsp:hover {
  cursor: pointer;
}
.c-wsp.force-active-off {
  scale: 0 !important;
}
.c-wsp {
  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;
}
.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-wsp2,
.c-wsp3 {
  scale: 0 !important;
}

.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: 0.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;
  }
}
.cursos {
  background-image: url("https://github.com/enis190/assets_dev/blob/main/img/portada_cursos.png?raw=true");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #fff;
}

.seccion-modalidades {
  width: 100%;
  padding: 45px 20px 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.beneficios-mobile {
  display: none;
}

.contenedor-modalidades {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.titulo-modalidades {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  font-family: "IBMPlexSans-Regular";
}

.titulo-modalidades span {
  display: inline-block;
  padding: 4px 13px 7px;
  background-color: #ff2b72;
  border-radius: 30px;
  font-weight: 700;
  font-family: "IBMPlexSans_Condensed-Italic";
}

.beneficios-modalidades {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px 10px;
  border-radius: 70px;
  background-color: #0025C4;
  position: relative;
}
.beneficios-modalidades .item {
  padding-left: 40px;
  padding-right: 10px;
  position: relative;
}
.beneficios-modalidades .item h3 {
  font-family: "IBMPlexSans-MediumItalic";
  margin-bottom: 0px;
  font-size: 1.1rem;
  padding-left: 50px;
}
.beneficios-modalidades .item h3::after {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  top: -5px;
  left: 30px;
  scale: 0.7;
}
.beneficios-modalidades .item.item-1 h3 {
  padding-right: 40px;
}
.beneficios-modalidades .item.item-1 h3::after {
  content: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/Group%201463.png");
}
.beneficios-modalidades .item.item-2::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #FD2B73;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: -50px;
}
.beneficios-modalidades .item.item-2::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #FD2B73;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: -50px;
}
.beneficios-modalidades .item.item-2 h3::after {
  content: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/Group%201412.png");
}
.beneficios-modalidades .item.item-3 h3 {
  padding-left: 130px;
}
.beneficios-modalidades .item.item-3 h3::after {
  content: url("https://9068661.fs1.hubspotusercontent-na1.net/hubfs/9068661/Capa_1-1.png");
  left: 100px;
}

.cards-modalidades .slider .item {
  padding-left: 40px;
  padding-right: 40px;
}
.cards-modalidades .slider .item .block-img figure {
  margin-bottom: 0px;
  height: 280px;
  overflow: hidden;
  border-radius: 30px 30px 0px 0px;
  margin-bottom: 0px;
  position: relative;
  background-color: #FD2B73;
}
.cards-modalidades .slider .item .block-img figure img {
  position: absolute;
}
.cards-modalidades .slider .item .block-img figure .titulo {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
}
.cards-modalidades .slider .item .block-img figure .titulo .precio {
  background-color: #FFF;
  display: inline-block;
  padding: 15px 30px 10px 30px;
  border-radius: 0px 0px 40px 40px;
}
.cards-modalidades .slider .item .block-img figure .titulo .precio h2 {
  color: #0433FF;
  font-family: "IBMPlexSans-Regular";
  font-size: 1.1rem;
}
.cards-modalidades .slider .item .block-img figure .titulo .precio h2 span {
  display: block;
  font-family: "IBMPlexSans-Bold";
  font-size: 2.7rem;
}
.cards-modalidades .slider .item .block-img figure .curso {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
}
.cards-modalidades .slider .item .block-img figure .curso h3 {
  font-family: "IBMPlexSans-Bold";
  font-size: 2.7rem;
  margin-top: 170px;
}
.cards-modalidades .slider .item .block-txt-cont {
  background-color: #FFF;
  min-height: 320px;
  border-radius: 0px 0px 40px 40px;
}
.cards-modalidades .slider .item .block-txt {
  padding: 20px 15px;
  border-bottom: 2px solid #E6E6E5;
}
.cards-modalidades .slider .item .block-txt ul {
  font-family: "IBMPlexSans-Regular";
  color: #0433FF;
  font-size: 1.2rem;
  margin-bottom: 0px;
  padding-right: 30px;
}
.cards-modalidades .slider .item .block-txt ul li i {
  color: #fd2b74;
}
.cards-modalidades .slider .item .block-txt .c-sub {
  text-align: center;
  padding: 40px 0px 30px 0px;
}
.cards-modalidades .slider .item .block-txt .c-sub a {
  background-color: #FD2B73;
  border-radius: 10px;
  text-decoration: none;
  color: #FFF;
  padding: 15px 20px;
  font-family: "IBMPlexSans-Bold";
  transition: 0.3s;
}
.cards-modalidades .slider .item .block-txt .c-sub a:hover {
  background-color: #0433FF;
}
.cards-modalidades .slider .item .block-txt.block-txt-footer {
  border-bottom: 0px;
}

.card-modalidad {
  width: calc(50% - 35px);
  max-width: 390px;
}

.card-modalidad img {
  display: block;
  width: 100%;
  height: auto;
}

.beneficio-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 180px;
}

.icono-corazon img {
  width: 120px;
  height: auto;
}

.mensaje-final {
  border: 20px solid #ff2d75;
  border-radius: 100px;
  background: transparent;
  padding: 18px 45px;
  text-align: center;
}

.linea1 {
  display: block;
  color: #1138ff;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  font-family: "IBMPlexSans-Regular";
}

.mensaje-final h2 {
  margin: 6px 0;
  color: #ff2d75;
  font-family: "IBMPlexSans-Bold";
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.linea2 {
  display: block;
  color: #1138ff;
  font-size: 2.6rem;
  font-family: "IBMPlexSans-Regular";
  font-weight: 500;
  line-height: 1;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 180px 0px 0px;
}

.hero-title3 {
  width: 100%;
  padding: 0;
}

.texto-banner {
  color: #0327C5;
  font-size: 35px;
  line-height: 1.25;
}

.texto-banner .intro {
  margin-bottom: 12px;
  font-size: 2.2rem;
  color: #0327C5;
  font-family: "IBMPlexSans-Regular";
}

.item-texto {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: "IBMPlexSans-Bold";
}

.item-texto img {
  width: 42px;
  height: 42px;
}

.hero-title3 .titulo {
  width: 100%;
}

.hero-title3 .row {
  width: 100%;
  margin: 0;
  align-items: center;
}

.hero-title3 .col-6 {
  padding: 0;
}

.hero-title3 .col-6:last-child {
  display: flex;
  justify-content: flex-start;
}

.logo-berlitz {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 30px;
}

.titulo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.texto {
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #2854c5;
  line-height: 1;
}

.logo-berlitz {
  height: 650px;
  /* Ajusta según el tamaño de tu logo */
  width: 750px;
  display: block;
  margin-left: inherit;
}

.logo-berlitz2 {
  height: 330px;
  /* Ajusta según el tamaño de tu logo */
  width: auto;
  display: block;
  margin-left: auto;
}

.descuento {
  position: relative;
  display: inline-block;
  background: #ef2d7b;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px 8px 16px;
  border-radius: 4px;
  line-height: 1;
}

.hero-title2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.texto2 {
  font-family: Arial, sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.descuento2 {
  position: relative;
  display: inline-block;
  background: #163ff8;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px 8px 16px;
  border-radius: 50px;
  line-height: 1;
}

.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: 800px; */
}
.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 .barra_inferior_banner {
  width: 100%;
  min-height: 300px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .banner_principal .left_side.left_side_static {
    margin-top: 140px;
  }
}
.banner_principal .persona img.personas_mob {
  display: none;
  margin-top: 90px;
}
@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: 35px;
  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% - 1px);
  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: 250px;
  margin-bottom: 35px;
  z-index: 5;
  margin-left: -220px;
}
.banner_principal .left_side .cuotas {
  width: 439px;
  z-index: 5;
}
.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, rgb(1, 189, 255) 20%, rgb(2, 140, 253) 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;
  }
  .hero-title {
    align-items: center;
  }
  .hero-title2 {
    padding: 20px;
  }
  .logo-berlitz {
    height: 160px;
    /* Ajusta según el tamaño de tu logo */
    width: auto;
    display: block;
    margin: 43px;
  }
  .hero-title_mob {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .texto2 {
    font-size: 25px;
  }
  .descuento2 {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .cursos {
    background-image: url("https://github.com/enis190/assets_dev/blob/main/img/mobile_banner2.png?raw=true");
    /* background-size: cover; */
    background-size: 100% 100% !important;
    background-position: center top !important;
    overflow: hidden;
  }
  .seccion-modalidades {
    padding: 25px 15px 40px;
  }
  .contenedor-modalidades {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  /* Título */
  .titulo-modalidades {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 47px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
  }
  .titulo-modalidades span {
    display: block;
    width: fit-content;
    margin: 4px auto 0;
    padding: 3px 10px 5px;
    background: #ff2b72;
    border-radius: 20px;
    color: #ffffff;
    font-size: 45px;
    /* font-style: italic; */
    font-weight: 700;
  }
  /* Ocultar la barra única de escritorio */
  .beneficios-desk {
    display: none !important;
  }
  /* Mostrar las tres imágenes móviles */
  .beneficios-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
  }
  .beneficios-mobile img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  /* Tarjetas una debajo de otra */
  .card-modalidad {
    width: 100%;
    max-width: 230px;
  }
  .card-modalidad a {
    display: block;
    width: 100%;
  }
  .card-modalidad img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  /* Evita el espacio de 150px que tienes en el HTML */
  .barra_inferior_banner .col-md-6.col-12 {
    margin-top: 20px !important;
  }
  .barra_inferior_banner {
    background-size: cover !important;
    background-position: center top !important;
    overflow: hidden;
  }
  .hero-title3 {
    width: 100%;
    padding: 0 !important;
  }
  .hero-title3 .titulo {
    width: 100%;
  }
  .hero-title3 .row {
    margin: 0;
  }
  /* Imagen superior */
  .hero-title3 .col-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .logo-berlitz {
    display: block;
    width: 90%;
    max-width: none;
    height: auto;
    margin: 0;
    margin-top: 50px;
  }
  /* Texto debajo de la imagen */
  .texto-banner {
    width: 100%;
    padding: 0 20px;
    color: #0327C5;
    text-align: center;
  }
  .texto-banner .intro {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.25;
  }
  .item-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 7px;
  }
  .item-texto img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }
  .item-texto strong {
    font-size: 28px;
    white-space: nowrap;
  }
  /* Corazón y mensaje final */
  .beneficio-final {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 24px auto 85px;
    padding: 0 16px;
  }
  .icono-corazon {
    position: relative;
    z-index: 2;
    margin: 0 0 -2px;
  }
  .icono-corazon img {
    display: block;
    width: 45px;
    height: auto;
  }
  .mensaje-final {
    display: block !important;
    width: 100%;
    max-width: 300px;
    padding: 7px 10px 8px;
    border: 4px solid #ff2b72;
    border-radius: 26px;
    background: transparent;
    text-align: center;
  }
  .mensaje-final .linea1,
  .mensaje-final .linea2 {
    display: block;
    color: #003cff;
    font-size: 20px;
    line-height: 1;
  }
  .mensaje-final h2 {
    margin: 2px 0;
    color: #ff2b72;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .cards-modalidades .slider .item {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cards-modalidades .slider .item .block-img figure {
    height: 220px;
  }
  .cards-modalidades .slider .item .block-img figure .curso h3 {
    font-size: 1.5rem;
  }
  .cards-modalidades .slider .item .block-img figure img {
    scale: 1.5;
  }
  .seccion_como_logramos .slick-dots li button:before {
    font-size: 15px;
  }
  .item-texto {
    display: block;
  }
}
/* 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) */
.hero-title-intriga {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 0px 0px 0px;
}

.lhero-title3-intriga {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo-berlitz-intriga {
  height: 160px;
  /* Ajusta según el tamaño de tu logo */
  width: auto;
  display: block;
  margin-left: auto;
}

.logo-berlitz2-intriga {
  height: 330px;
  /* Ajusta según el tamaño de tu logo */
  width: auto;
  display: block;
  margin-left: auto;
}

.hero-title2-intriga {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
}

.banner_principal-old {
  width: 100%;
  height: auto;
  /*max-height: 720px;*/
  position: relative;
  overflow: hidden;
  background-color: #0292FD;
}
.banner_principal-old .fondo {
  background-size: cover;
  background-position: center top;
  /* padding-top: 800px; */
}
.banner_principal-old .container {
  max-width: 1200px;
}
.banner_principal-old * {
  box-sizing: border-box;
}
.banner_principal-old img {
  width: 100%;
  display: block;
  height: auto;
}
.banner_principal-old .tienes_el_talento {
  padding-top: 110px;
  width: 482px;
  margin: 0 auto;
}
.banner_principal-old .muneco {
  width: 172px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  /*transform: translateY(50%);*/
}
@media (min-width: 768px) {
  .banner_principal-old .left_side.left_side_static {
    margin-top: 140px;
  }
}
.banner_principal-old .persona img.personas_mob {
  display: none;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .banner_principal-old .persona img.personas_dsk {
    display: none;
  }
  .banner_principal-old .persona img.personas_mob {
    display: block;
  }
}
.banner_principal-old .left_side {
  width: 100%;
  margin-top: -960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner_principal-old .left_side .subtitulo {
  width: 100%;
  color: #ffffff;
  font-size: 65px;
  font-family: "IBMPlexSans-Bold";
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  z-index: 5;
  line-height: 46px;
}
.banner_principal-old .left_side .subtitulo img {
  display: inline;
}
.banner_principal-old .left_side .subtitulo img.palabra_ingles {
  max-width: 221px;
}
.banner_principal-old .left_side .subtitulo span {
  font-family: "IBMPlexSans-BoldItalic";
  display: inline;
  position: relative;
}
.banner_principal-old .left_side .subtitulo span .flecha {
  width: 235px;
  height: auto;
  position: absolute;
  top: calc(100% - 1px);
  right: -30px;
}
.banner_principal-old .left_side .subtitulo span .flecha img {
  display: block;
}
.banner_principal-old .left_side .logo {
  width: 269px;
  margin-bottom: 15px;
  z-index: 5;
}
.banner_principal-old .left_side .hashtag {
  width: 250px;
  margin-bottom: 35px;
  z-index: 5;
  margin-left: -220px;
}
.banner_principal-old .left_side .cuotas {
  width: 439px;
  z-index: 5;
}
.banner_principal-old .lazo_left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner_principal-old .lazo_central {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .banner_principal-old .left_side .subtitulo {
    width: 100%;
    color: #ffffff;
    font-size: 44px;
  }
  .banner_principal-old .left_side .subtitulo img.palabra_ingles {
    max-width: 121px;
  }
  .banner_principal-old .left_side.left_side_static {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .banner_principal-old {
    height: auto;
  }
  .banner_principal-old .fondo {
    padding-top: 0px;
  }
  .banner_principal-old .container {
    padding-left: 0;
    padding-right: 0;
  }
  .banner_principal-old .tienes_el_talento {
    width: 90%;
    max-width: 395px;
  }
  .banner_principal-old .persona {
    z-index: 3;
  }
  .banner_principal-old .left_side {
    margin-top: -2px;
    position: relative;
    padding-top: 10px;
  }
  .banner_principal-old .left_side:before {
    content: "";
    width: 120%;
    height: 350px;
    background: #01BDFF;
    background: linear-gradient(181deg, rgb(1, 189, 255) 20%, rgb(2, 140, 253) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
  .banner_principal-old .left_side .subtitulo {
    font-size: 46px;
    line-height: 37px;
  }
  .banner_principal-old .left_side .subtitulo img.palabra_ingles {
    max-width: 122px;
  }
  .banner_principal-old .left_side .subtitulo span .flecha {
    width: 140px;
    top: calc(100% - 7px);
    right: -5px;
  }
  .banner_principal-old .left_side .logo {
    width: 220px;
  }
  .banner_principal-old .left_side .cta {
    margin-bottom: 30px;
  }
  .banner_principal-old .left_side .hashtag {
    width: 206px;
  }
  .banner_principal-old .left_side.left_side_static {
    margin-top: 0;
  }
  .banner_principal-old .muneco {
    display: none;
  }
  .banner_principal-old .lazo_left {
    left: -72px;
    width: 150px;
    bottom: 30px;
  }
  .banner_principal-old .barra_inferior_banner {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .banner_principal-old .fondo {
    padding-top: 93px;
  }
  .hero-title-intriga {
    align-items: center;
  }
  .hero-title2-intriga {
    padding: 40px;
    text-align: center;
  }
  .hero-title_mob-intriga {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .logo-berlitz-intriga {
    display: inline;
    max-height: 100px;
    max-height: 130px;
  }
}
@media only screen and (max-width: 867px) and (orientation: landscape) {
  .logo-berlitz-intriga {
    max-height: 100px;
    display: inline;
  }
  .lhero-title3-intriga {
    padding-right: 0;
  }
  .logo-berlitz2-intriga {
    height: 250px;
  }
}
/* 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) */
.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 span {
  margin-left: 5px;
}
form .inputs-list li label {
  display: inline-flex !important;
}
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;
}
@media (max-width: 768px) {
  .seccion_sabias_que .texto_img {
    position: relative;
    bottom: auto;
  }
}
.seccion_sabias_que .texto_img {
  /*&: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;
  }*/
}
.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 0.25s ease;
  }
  /* ====== Zoom suave sin chocar con Bootstrap ====== */
  .sabias-que-carousel .sabias-zoom {
    transform: scale(0.92);
    opacity: 0.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: 0.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 */
