@charset "UTF-8";
@import url("NaturaAndCo.css"); /* titulo */
@import url("HelveticaNowDisplay.css"); /* titulo */
@import url("HelveticaNowText.css"); /* text normal */
@import url("HelveticaNowMicro.css"); /* pequeño */
/*$primary_color: #fe5f55;
$primary_color_slight: #faa39c;
$primary_color_light: rgba(254, 96, 85, 0.11);
$secondary_color: #413c58;
$secondary_light_color: #b7b1c4;
$secondary_mlight_color: rgba(196, 190, 209, 0.55);
$secondary_slight_color: #f5f1f6;
$tertiary_color: #48b4c6;
$tertiary_color_light: rgba(72, 180, 198, 0.11);
$font-bold: 700;*/
:root {
  --fs-xxs: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.75rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-xxl: 1.35rem;
  --fs-xxxl: clamp(1.875rem, 2vw + 1rem, 2.375rem);
}
@media (min-width: 576px) {
  :root {
    --fs-xxs: 0.625rem;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-xxl: 1.625rem;
  }
}
@media (min-width: 768px) {
  :root {
    --fs-xs: 0.625rem;
    --fs-sm: 0.75rem;
    --fs-md: 0.85rem;
    --fs-lg: 1rem;
    --fs-xl: 1.125rem;
    --fs-xxl: 1.3rem;
  }
}
@media (min-width: 992px) {
  :root {
    --fs-xs: 0.6875rem;
    --fs-sm: 0.8125rem;
    --fs-md: 0.9375rem;
    --fs-lg: 1rem;
    --fs-xl: 1.125rem;
    --fs-xxl: 1.5rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-xxl: 1.625rem;
  }
}
@media (min-width: 1400px) {
  :root {
    --fs-xs: 0.8rem;
    --fs-sm: 0.9375rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.4rem;
    --fs-xxl: 1.75rem;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

select,
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
  outline: 0 !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}

input[type=radio]:hover, input[type=radio]:focus, input[type=checkbox]:hover, input[type=checkbox]:focus {
  -webkit-appearance: auto !important;
}

.cbearg {
  background-color: white;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  /* Estilos para el overlay */
}
.cbearg strong {
  font-weight: 600 !important;
}
.cbearg section {
  min-height: 200px;
}
@media (min-width: 576px) {
  .cbearg section {
    min-height: 250px;
  }
}
@media (min-width: 768px) {
  .cbearg section {
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  .cbearg section {
    min-height: 350px;
  }
}
@media (min-width: 1200px) {
  .cbearg section {
    min-height: 400px;
  }
}
.cbearg .link-underlined,
.cbearg .link-underline {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.25) !important;
}
.cbearg .link-underline-hover:hover {
  text-decoration: underline;
  text-decoration-color: rgb(0, 0, 0) !important;
}
.cbearg h3 {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .cbearg h3 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .cbearg h3 {
    font-size: 42px;
  }
}
.cbearg h3.pink {
  color: #FF5BA4;
}
.cbearg h3.outline {
  color: white;
  text-shadow: -1px -1px 0 #FF5BA4, 1px -1px 0 #FF5BA4, -1px 1px 0 #FF5BA4, 1px 1px 0 #FF5BA4;
}
.cbearg h4 {
  font-size: 24px;
  font-weight: 800;
  color: #FF5BA4;
}
@media (min-width: 768px) {
  .cbearg h4 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .cbearg h4 {
    font-size: 28px;
  }
}
.cbearg h4.engranajes {
  display: inline-block;
  position: relative;
  margin: 0 auto 2em;
}
.cbearg h4.engranajes::after {
  content: "";
  display: inline-block;
  background-image: url("../img/cbe-arg/engranajes.svg"); /* Reemplaza con la ruta a tu SVG */
  background-size: contain; /* Ajusta el tamaño del SVG al contenedor */
  background-repeat: no-repeat;
  width: 45px; /* Ajusta el ancho según el tamaño de tu SVG */
  height: 40px; /* Ajusta el alto según el tamaño de tu SVG */
  position: absolute;
  top: 50%;
  transform: translate(160%, -50%);
  right: 0;
}
@media (min-width: 400px) {
  .cbearg h4.engranajes::after {
    width: 53px;
    height: 50px;
    transform: translate(200%, -50%);
  }
}
@media (min-width: 768px) {
  .cbearg h4.engranajes::after {
    width: 106px; /* Ajusta el ancho según el tamaño de tu SVG */
    height: 100px; /* Ajusta el alto según el tamaño de tu SVG */
  }
}
.cbearg h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cbearg h5 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .cbearg h5 {
    font-size: 24px;
  }
}
.cbearg h5.dotgridtitle {
  display: inline-block;
  clear: both;
  position: relative;
  margin: 0 auto 2em;
}
.cbearg h5.dotgridtitle::before {
  content: "";
  display: inline-block;
  background-image: url("../img/cbe-arg/grilla-puntos-titulo.svg"); /* Reemplaza con la ruta a tu SVG */
  background-size: contain; /* Ajusta el tamaño del SVG al contenedor */
  background-repeat: no-repeat;
  width: 51px; /* Ajusta el ancho según el tamaño de tu SVG */
  height: 31px; /* Ajusta el alto según el tamaño de tu SVG */
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Centra verticalmente el SVG */
  left: -55px; /* Ajusta la distancia a la derecha del texto */
}
.cbearg h5.recordar {
  color: white;
  position: relative;
  z-index: 1;
  margin-left: 3em;
  margin-bottom: -0.5em;
  margin-top: 0.25em;
  /*&:before{
    content: "";
    display: block;
    z-index: -1;
    background-image: url("../img/cbe-arg/trespuntos.svg"); !* Reemplaza con la ruta a tu SVG *!
    background-size: contain; !* Ajusta el tamaño del SVG al contenedor *!
    background-repeat: no-repeat;
    width: 40px; !* Ajusta el ancho según el tamaño de tu SVG *!
    height: 10px; !* Ajusta el alto según el tamaño de tu SVG *!
    position: absolute;
    transform:translate(-25%, -275%);

    @media (min-width: 768px) {
      width: 40px;
      height: 10px;
    }
    @media (min-width: 992px) {
      width: 60px;
      height: 15px;
    }
  }*/
}
@media (min-width: 768px) {
  .cbearg h5.recordar {
    margin-left: 2em;
  }
}
@media (min-width: 992px) {
  .cbearg h5.recordar {
    margin-left: 3em;
  }
}
.cbearg h5.recordar:after {
  content: "";
  display: inline-block;
  z-index: -1;
  background-image: url("../img/cbe-arg/globo-titulo.svg"); /* Reemplaza con la ruta a tu SVG */
  background-size: contain; /* Ajusta el tamaño del SVG al contenedor */
  background-repeat: no-repeat;
  position: absolute;
  width: 160px;
  height: 40px;
  transform: translate(-88%, -14%);
  /*@media (min-width: 1200px) {
    width: 62px; !* Ajusta el ancho según el tamaño de tu SVG *!
    height: 24px; !* Ajusta el alto según el tamaño de tu SVG *!
    transform:translate(-75%, -15%);
  }*/
}
@media (min-width: 768px) {
  .cbearg h5.recordar:after {
    width: 160px;
    height: 40px;
    transform: translate(-88%, -14%);
  }
}
@media (min-width: 992px) {
  .cbearg h5.recordar:after {
    width: 200px;
    height: 50px;
    transform: translate(-82%, -22%);
  }
}
.cbearg h6 {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cbearg h6 {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .cbearg h6 {
    font-size: 18px;
  }
}
.cbearg h6.bgh6 {
  display: inline-block;
  background-color: #FF5BA4;
  padding: 0.75em 2em;
  border-radius: 25px;
  color: white;
  margin-bottom: 1em;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 90%;
}
.cbearg h6.bgpill {
  color: white;
  max-width: 530px;
  background: url("../img/cbe-arg/bg-title.svg") left center no-repeat;
  background-size: contain;
  padding: 2em 1em 2em 3em;
  line-height: 1;
  min-height: 60px;
  font-size: 14px;
}
@media (max-width: 350px) {
  .cbearg h6.bgpill {
    background-size: 150%;
    font-size: 13px;
    padding: 2em 0 2em 3.5em;
  }
}
@media (min-width: 576px) {
  .cbearg h6.bgpill {
    padding: 2em 2em 2em 3.5em;
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .cbearg h6.bgpill {
    padding: 2em 2em 2em 3.5em;
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .cbearg h6.bgpill {
    padding: 2em 2em 2em 3.75em;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .cbearg h6.bgpill {
    padding: 2em 4em;
    font-size: 17px;
  }
}
.cbearg .bajada {
  font-size: 16px;
}
@media (min-width: 768px) {
  .cbearg .bajada {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .cbearg .bajada {
    font-size: 18px;
  }
}
.cbearg .cbe-submenu {
  background-color: #FF5BA4;
}
.cbearg .cbe-submenu .cbe-smenu-items .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 0.5rem 1rem;
}
.cbearg .cbe-submenu .cbe-smenu-items .nav-link.active,
.cbearg .cbe-submenu .cbe-smenu-items .nav-link :hover {
  color: #fccaca;
}
.cbearg #back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Hidden by default */
  background-color: transparent;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}
.cbearg #back-to-top img {
  width: 30px; /* You can adjust this value */
  height: 30px; /* You can adjust this value */
  transform: rotate(180deg);
  /*filter: invert(57%) sepia(40%) saturate(4611%) hue-rotate(233deg) brightness(86%) contrast(95%);*/
}
.cbearg .cbe-banner {
  background: linear-gradient(135deg, rgb(255, 194, 127) 0%, rgb(255, 142, 197) 100%), url("../img/na-main/grafismo_encuentro.svg");
  background-size: contain, 1400px 860px; /* Ajusta cómo se escala el SVG */
  background-position: center, 10% center;
  background-blend-mode: overlay; /* Mezcla ambas capas */
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
  position: relative;
  /*&:before{
    opacity: 50%;
    content: url('../img/cbe-arg/grilla-puntos-banner.svg');
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-20%);
    width: 125px;
    @media (min-width: 576px) {
      width: 148px;
    }
    @media (min-width: 768px) {
      width: 198px;
    }
    @media (min-width: 992px) {
      width: 256px;
    }
    @media (min-width: 1200px) {
      width: 310px;
    }
  }*/
}
.cbearg .cbe-banner:after {
  opacity: 50%;
  content: url("../img/cbe-arg/flechax3-banner.svg");
  display: block;
  position: absolute;
  bottom: 0;
  transform: translate(20%, -20%);
  width: 8px;
}
@media (min-width: 576px) {
  .cbearg .cbe-banner:after {
    width: 10px;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner:after {
    width: 12px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner:after {
    width: 14px;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner:after {
    width: 16px;
  }
}
.cbearg .cbe-banner .cbe-logo {
  margin-bottom: 0;
  overflow: visible;
  width: 213px;
  height: auto;
  position: relative;
}
@media (min-width: 768px) {
  .cbearg .cbe-banner .cbe-logo {
    width: 280px;
    /*height: 55px;*/
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner .cbe-logo {
    width: 280px;
    /*height: 72px;*/
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner .cbe-logo {
    width: 307px;
    /* height: 120px;*/
  }
}
.cbearg .cbe-banner #colcta {
  max-width: 280px;
}
@media (min-width: 576px) {
  .cbearg .cbe-banner #colcta {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner #colcta {
    max-width: none;
  }
}
.cbearg .cbe-banner .cta1 {
  font-weight: 600;
  color: #FF5BA4;
  font-size: 2em;
  line-height: 1;
  text-align: left;
  display: inline-block;
  /*&:before{
    content: url("../img/cbe-arg/tiro-al-blanco-banner.svg")!important;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 0.15em 0;

    @media (min-width: 576px) {
      width: 35px;
      height: 35px;
    }
    @media (min-width: 768px) {
      width: 40px;
      height: 40px;
    }
    @media (min-width: 992px) {
      width: 45px;
      height: 45px;
    }
    @media (min-width: 1200px) {
      width: 50px;
      height: 50px;
    }
  }*/
}
@media (min-width: 576px) {
  .cbearg .cbe-banner .cta1 {
    font-size: 2.75em;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner .cta1 {
    font-size: 3em;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner .cta1 {
    font-size: 2.75em;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner .cta1 {
    font-size: 2.75em;
  }
}
.cbearg .cbe-banner .cta2 {
  font-weight: 400;
  color: white;
  font-size: 0.85em;
  line-height: 1.1;
  margin-bottom: 0;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  .cbearg .cbe-banner .cta2 {
    font-size: 1em;
    height: 30px;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner .cta2 {
    font-size: 1.125em;
    height: 30px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner .cta2 {
    font-size: 1.25em;
    height: 110px;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner .cta2 {
    font-size: 1.25em;
    height: 110px;
  }
}
.cbearg .cbe-banner .cbe-hero {
  display: flex;
  overflow: visible;
  /*width: 130px;
  height: 245px;*/
  width: 140px;
  height: 256px;
  position: relative;
}
@media (min-width: 576px) {
  .cbearg .cbe-banner .cbe-hero {
    /* width: 130px;
     height: 245px;*/
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner .cbe-hero {
    width: 280px;
    height: 340px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner .cbe-hero {
    width: 300px;
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner .cbe-hero {
    width: 300px;
    height: 380px;
  }
}
.cbearg .cbe-banner .cbe-hero:after {
  content: url("../img/cbe-arg/illustracion-foto-banner.svg");
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, 1%);
  width: 280px;
}
@media (min-width: 576px) {
  .cbearg .cbe-banner .cbe-hero:after {
    /* width: 188px;*/
    width: 280px;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-banner .cbe-hero:after {
    width: 360px;
    transform: translate(10%, 5%);
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-banner .cbe-hero:after {
    width: 360px;
    transform: translate(0%, -5%);
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-banner .cbe-hero:after {
    width: 355px;
    transform: translateY(-15%);
  }
}
.cbearg .inicio {
  position: relative;
  overflow: hidden;
}
.cbearg .inicio:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-40%, 30%);
}
@media (min-width: 768px) {
  .cbearg .inicio:before {
    /*content: url("../img/cbe-arg/illustracion-programa-1.svg");*/
    content: url("../img/na-main/grafismo_escuela.svg");
    width: 40%;
  }
}
.cbearg .cbe-servicio {
  text-align: center;
}
.cbearg .cbe-servicio .circle-icn {
  max-width: 96px;
  margin: 1em auto;
}
.cbearg .cbe-servicio p {
  font-size: 11px;
  padding: 0 0.75em;
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio p {
    font-size: 11px;
    padding: 0 1em;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-servicio p {
    font-size: 12px;
    padding: 0 1.5em;
  }
}
.cbearg .cbe-servicio h6:before {
  content: "";
  display: block;
  width: 96px;
  height: 96px;
  margin: 1em auto;
}
.cbearg .cbe-servicio.rect {
  flex-basis: 80px;
  height: 80px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 576px) {
  .cbearg .cbe-servicio.rect {
    flex-basis: 90px;
    height: 90px;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect {
    flex-basis: 100px;
    height: 100px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect {
    flex-basis: 110px;
    height: 110px;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbe-servicio.rect {
    flex-basis: 115px;
    height: 115px;
  }
}
.cbearg .cbe-servicio.rect .cbe-serv-content {
  padding: 1em;
}
.cbearg .cbe-servicio.rect .cbe-serv-content h6 {
  font-weight: 300;
  color: white;
  font-size: 10px;
  line-height: 1;
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content h6 {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content h6 {
    font-size: 12px;
  }
}
.cbearg .cbe-servicio.rect .cbe-serv-content h6:before {
  content: "";
  display: block;
  width: 48%;
  height: 42%;
  /*width: 43px;
  height: 43px;*/
  margin: 0.75em auto 0.5em;
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content h6:before {
    height: 52%;
  }
}
.cbearg .cbe-servicio.rect .cbe-serv-content p.tit {
  font-weight: 300;
  color: white;
  font-size: 10px;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content p.tit {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content p.tit {
    font-size: 12px;
  }
}
.cbearg .cbe-servicio.rect .cbe-serv-content.split.clases {
  height: 85px;
  padding-bottom: 0.75em;
  padding-top: 0.65em;
  padding-left: 0;
  padding-right: 0;
}
.cbearg .cbe-servicio.rect .cbe-serv-content.split.clases h6 {
  color: white;
}
.cbearg .cbe-servicio.rect .cbe-serv-content.split.clases h6::before {
  width: 32%;
  height: 48%;
  margin: 0.5em auto 0.6em;
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.clases h6::before {
    margin: 0.75em auto 0.65em;
    width: 35%;
    height: 50%;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.clases h6::before {
    margin: 0.75em auto 0.75em;
    width: 35%;
    height: 50%;
  }
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.clases {
    height: 85px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.clases {
    height: 85px;
  }
}
.cbearg .cbe-servicio.rect .cbe-serv-content.split.agenda {
  background-color: #F44D9D;
  padding-top: 0.25em;
  bottom: 0;
  top: auto;
  /*border-top: 3px solid #F44D9D;*/
  height: 22px;
}
@media (min-width: 768px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.agenda {
    padding-top: 0.35em;
    height: 27px;
    /*border-top: 5px solid #F44D9D;*/
  }
}
@media (min-width: 992px) {
  .cbearg .cbe-servicio.rect .cbe-serv-content.split.agenda {
    padding-top: 0.5em;
    height: 30px;
    /*border-top: 5px solid #F44D9D;*/
  }
}
.cbearg .cbe-servicio.rect.si {
  background-color: #77985B;
}
.cbearg .cbe-servicio.rect.si.dark {
  background-color: #77985B;
}
.cbearg .cbe-servicio.rect.si h6:before {
  content: url("../img/cbe-arg/sesiones-individuales-icn.svg") !important;
}
.cbearg .cbe-servicio.rect.ep {
  background-color: #FF9526;
}
.cbearg .cbe-servicio.rect.ep h6:before {
  content: url("../img/cbe-arg/eventos-presenciales-icn.svg") !important;
}
.cbearg .cbe-servicio.rect.cel {
  background-color: #FF5BA4;
}
.cbearg .cbe-servicio.rect.cel h6:before {
  content: url("../img/cbe-arg/clases-en-linea-icn.svg") !important;
}
.cbearg .cbe-servicio.si h6:before {
  content: url("../img/cbe-arg/sesiones-individuales-circulo.svg") !important;
}
.cbearg .cbe-servicio.ep h6:before {
  content: url("../img/cbe-arg/eventos-presenciales-circulo.svg") !important;
}
.cbearg .cbe-servicio.cel h6:before {
  content: url("../img/cbe-arg/clases-en-linea-circulo.svg") !important;
}
.cbearg input.filtronombre::placeholder {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E");
  /* Icono de lupa de Bootstrap */
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.cbearg input.filtronombre:focus::placeholder {
  background-image: none;
  color: transparent;
}
.cbearg .overlay {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #bbbbbb;
  padding: 20px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cbearg .overlay h6 {
  font-size: 13px;
  color: white;
  font-weight: 300;
}
.cbearg .item:hover .overlay {
  opacity: 1;
}
.cbearg .item {
  width: calc(100% - 5px); /* Ajusta el 3 según el número de columnas deseado */
  margin: 2px 0;
  float: left; /* Asegura que los elementos se coloquen en línea */
}
@media (min-width: 577px) {
  .cbearg .item {
    width: calc(50% - 5px); /* Ajusta el 3 según el número de columnas deseado */
  }
}
@media (min-width: 768px) {
  .cbearg .item {
    width: calc(33.3333333333% - 5px); /* Ajusta el 3 según el número de columnas deseado */
  }
}
@media (min-width: 992px) {
  .cbearg .item {
    width: calc(25% - 5px); /* Ajusta el 3 según el número de columnas deseado */
  }
}
.cbearg .zoom-icon {
  font-size: 1.5em;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background-color: #606060;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.cbearg .nombre-cbe {
  font-size: 15px;
  color: white;
  font-weight: 300;
}
.cbearg .datos-cbe {
  font-size: 12px;
  color: #bbbbbb;
}
.cbearg .desc-cbe {
  font-size: 13px;
  color: white;
}
.cbearg .cbe-separador {
  text-align: center;
  margin: 20px 0;
  position: relative;
}
.cbearg .cbe-separador::before, .cbearg .cbe-separador::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background-color: #EBEBEB;
}
.cbearg .cbe-separador::before {
  left: 0;
  width: calc(50% - 50px);
}
.cbearg .cbe-separador::after {
  right: 0;
  width: calc(50% - 50px);
}
.cbearg .cbe-separador img {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
  height: auto;
  max-width: 66px;
}
.cbearg .bgrecordar {
  border: 1px solid #FF5BA4;
  border-image: linear-gradient(135deg, #FFC27F, #FF5BA4) 1;
  border-radius: 0 25px 0 25px;
  padding: 5em 2em 3em 2em;
  position: relative;
  /*margin-right: 5px;*/
  /* &:after{
     content: "";
     display: inline-block;
     background-image: url("../img/cbe-arg/lamparita.svg"); !* Reemplaza con la ruta a tu SVG *!
     background-size: contain; !* Ajusta el tamaño del SVG al contenedor *!
     background-repeat: no-repeat;
     width: 40px; !* Ajusta el ancho según el tamaño de tu SVG *!
     height: 40px; !* Ajusta el alto según el tamaño de tu SVG *!
     position: absolute;
     top: 0;
     transform: translateY(-115%); !* Centra verticalmente el SVG *!
     right: 0; !* Ajusta la distancia a la derecha del texto *!

     @media (min-width: 768px) {
       transform: translateY(-75%); !* Centra verticalmente el SVG *!
       width: 45px;
       height: 45px;
       right: -30px;
     }
     @media (min-width: 992px) {
       width: 80px;
       height: 80px;
       right: -80px;
     }
   }*/
}
@media (min-width: 768px) {
  .cbearg .bgrecordar {
    padding: 5em 2em 3em 2em;
    /* margin-right: 5px;*/
  }
}
@media (min-width: 992px) {
  .cbearg .bgrecordar {
    padding: 5em 4em 4em 3.5em;
    /* margin-right: 40px;*/
  }
}
@media (min-width: 1200px) {
  .cbearg .bgrecordar {
    padding: 5em 4em 4em 3.5em;
    /*margin-right: 80px;*/
  }
}
.cbearg .bgrecordar li {
  position: relative; /* Para posicionar la viñeta de forma absoluta */
  padding-left: 25px; /* Espacio para la viñeta */
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .cbearg .bgrecordar li {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .cbearg .bgrecordar li {
    padding-left: 25px;
  }
}
.cbearg .bgrecordar li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  transform: translateY(50%); /* Centra verticalmente la viñeta */
  width: 9px; /* Tamaño de la viñeta */
  height: 9px;
  border-radius: 50%; /* Hace que la viñeta sea circular */
  background-color: #FF5BA4; /* Color de la viñeta */
}
@media (min-width: 768px) {
  .cbearg .bgrecordar li:before {
    width: 9px;
    height: 9px;
  }
}
@media (min-width: 992px) {
  .cbearg .bgrecordar li:before {
    width: 12px;
    height: 12px;
  }
}
.cbearg .cbeol {
  position: relative;
  list-style: none; /* Eliminamos las viñetas por defecto */
  padding-left: 0; /* Eliminamos el padding izquierdo por defecto de las listas */
  counter-reset: item; /* Inicializamos un contador para los números de la lista */
}
.cbearg .cbeol li {
  position: relative; /* Para posicionar la viñeta de forma absoluta */
  padding-left: 4em; /* Espacio para la viñeta */
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .cbearg .cbeol li {
    padding-left: 4em;
  }
}
@media (min-width: 992px) {
  .cbearg .cbeol li {
    padding-left: 5em;
  }
}
.cbearg .cbeol li::before {
  content: counter(item);
  counter-increment: item;
  font-size: 1.25em;
  padding-right: 18px;
  position: absolute;
  left: 0;
  width: 50px;
  height: 55px;
  line-height: 45px;
  vertical-align: middle;
  text-align: center;
  background-image: url(../img/cbe-arg/bullet-numero.svg);
  background-size: cover;
  color: white;
  font-weight: bold;
}
@media (min-width: 768px) {
  .cbearg .cbeol li::before {
    width: 50px;
    height: 55px;
    line-height: 45px;
    font-size: 1.5em;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .cbearg .cbeol li::before {
    width: 65px;
    height: 72px;
    line-height: 52px;
    font-size: 1.75em;
  }
}
@media (min-width: 1200px) {
  .cbearg .cbeol li::before {
    width: 65px;
    height: 72px;
    line-height: 52px;
    font-size: 1.75em;
  }
}
.cbearg .bgglobograndecont {
  z-index: 1;
  padding: 1px;
  padding-right: 0;
}
.cbearg .bgglobograndecont:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-image: url("../img/cbe-arg/ps-elements.svg"); /* Reemplaza con la ruta a tu SVG */
  background-size: contain; /* Ajusta el tamaño del SVG al contenedor */
  background-repeat: no-repeat;
  width: 70%; /* Ajusta el ancho según el tamaño de tu SVG */
  height: 62px; /* Ajusta el alto según el tamaño de tu SVG */
  top: 0;
  transform: translate(25%, 35%);
}
.cbearg .bgglobograndecont .bgglobogrande {
  box-sizing: border-box;
  list-style: none; /* Eliminamos las viñetas por defecto */
  background-color: #FF5BA4;
  padding: 4em 2em 2em 2em;
  position: relative;
  margin-top: 4em;
  border-radius: 20px;
  margin-right: 5px;
  /*&:before {
    content: url("../img/cbe-arg/globo-grande-pointer.svg");
    display: block;
    position: absolute;
    z-index: -1;
    width: 20%;
    top: 0;
    right: 0;
    transform: translate(-40%, -80%);
  }*/
  /*&:after {
    content: '';
    position: absolute;
    bottom: -5px; !* Mueve el borde 1px hacia abajo *!
    right: -5px;  !* Mueve el borde 1px hacia la derecha *!
    width: 50%;  !* Aumenta el ancho en 2px (1px por cada lado) *!
    height: 50%; !* Aumenta el alto en 2px (1px por cada lado) *!
    border-bottom: 2px solid #FF5BA4; !* Borde inferior rojo *!
    border-right: 2px solid #FF5BA4;  !* Borde derecho rojo *!
    border-bottom-right-radius: 20px; !* Redondea la esquina del borde para que coincida con el rectángulo *!
  }*/
}
@media (max-width: 374px) {
  .cbearg .bgglobograndecont .bgglobogrande {
    padding: 3em 1.5em 1.5em 1.5em;
  }
}
@media (min-width: 400px) {
  .cbearg .bgglobograndecont .bgglobogrande {
    padding: 4em 2.5em 2.5em 2.5em;
  }
}
@media (min-width: 992px) {
  .cbearg .bgglobograndecont .bgglobogrande {
    margin-right: 35px; /* Solo ajusta el desplazamiento derecho */
    padding: 5em 2.5em 2.5em 3em;
  }
}
@media (min-width: 1200px) {
  .cbearg .bgglobograndecont .bgglobogrande {
    margin-right: 70px; /* Solo ajusta el desplazamiento derecho */
    padding: 5em 3.5em 3.5em 3.5em;
  }
}
.cbearg .bgglobograndecont .bgglobogrande li {
  font-size: 1em;
  position: relative;
  padding-left: 2em; /* Espacio para la viñeta */
  margin-bottom: 1em;
  color: white;
  line-height: 1.2;
}
@media (max-width: 374px) {
  .cbearg .bgglobograndecont .bgglobogrande li {
    padding-left: 1em; /* Espacio para la viñeta */
    font-size: 0.85em;
    margin-bottom: 1em;
  }
}
@media (min-width: 992px) {
  .cbearg .bgglobograndecont .bgglobogrande li {
    padding-left: 3em;
    margin-bottom: 1.25em;
  }
}
.cbearg .bgglobograndecont .bgglobogrande li::before {
  content: "";
  padding-right: 15px;
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  text-align: center;
  background-image: url(../img/cbe-arg/tiro-al-blanco-bullet.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 374px) {
  .cbearg .bgglobograndecont .bgglobogrande li::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .cbearg .bgglobograndecont .bgglobogrande li::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.cbearg .contacto {
  color: white;
  /* background: linear-gradient(135deg, rgba(255,194,127,1) 0%, rgba(255,142,197,1) 100%);*/
  background: linear-gradient(135deg, #FF9526 0%, #FF5BA4 100%);
}
.cbearg .contacto .btn-white-primary {
  color: #FF5BA4 !important;
  border: 1px solid white;
}
.cbearg .contacto .btn-white-primary.active, .cbearg .contacto .btn-white-primary:active, .cbearg .contacto .btn-white-primary:hover {
  color: white !important;
  background-color: #FF5BA4;
}
.cbearg .contacto .globoscontacto {
  background: url("../img/cbe-arg/globos-contacto.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  --bs-aspect-ratio: 75%;
}
@media (min-width: 768px) {
  .cbearg .contacto .globoscontacto {
    width: 200px;
    --bs-aspect-ratio: 120%;
  }
}
@media (min-width: 992px) {
  .cbearg .contacto .globoscontacto {
    width: 222px;
  }
}
.cbearg .ratio-6x5 {
  --bs-aspect-ratio: calc(6 / 5 * 100%);
}

/*# sourceMappingURL=cbearg.css.map */
