@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
.fs.fs12 {
  font-size: 12px;
  line-height: 14px;
}
.fs.fs14 {
  font-size: 14px;
  line-height: 17px;
}
.fs.fs15 {
  font-size: 15px;
  line-height: 16px;
}
.fs.fs16 {
  font-size: 16px;
  line-height: 18px;
}
.fs.fs17 {
  font-size: 17px;
  line-height: 20px;
}
.fs.fs18 {
  font-size: 18px;
  line-height: 24px;
}
.fs.fs19 {
  font-size: 19px;
  line-height: 21px;
}
.fs.fs20 {
  font-size: 20px;
  line-height: 24px;
}
.fs.fs21 {
  font-size: 21px;
  line-height: 18px;
}
.fs.fs22 {
  font-size: 22px;
  line-height: 26px;
}
.fs.fs24 {
  font-size: 24px;
  line-height: 25px;
}
.fs.fs25 {
  font-size: 25px;
  line-height: 28px;
}
.fs.fs26 {
  font-size: 26px;
  line-height: 30px;
}
.fs.fs28 {
  font-size: 28px;
  line-height: 34px;
}
.fs.fs30 {
  font-size: 30px;
  line-height: 35px;
}
.fs.fs31 {
  font-size: 31px;
  line-height: 32px;
}
.fs.fs32 {
  font-size: 32px;
  line-height: 36px;
}
.fs.fs35 {
  font-size: 35px;
  line-height: 37px;
}
.fs.fs36 {
  font-size: 36px;
  line-height: 45px;
}
.fs.fs38 {
  font-size: 38px;
  line-height: 32px;
}
.fs.fs40 {
  font-size: 40px;
  line-height: 45px;
}
.fs.fs42 {
  font-size: 42px;
  line-height: 45px;
}
.fs.fs45 {
  font-size: 45px;
  line-height: 50px;
}
.fs.fs47 {
  font-size: 47px;
  line-height: 60px;
}
.fs.fs48 {
  font-size: 48px;
  line-height: 52px;
}
.fs.fs50 {
  font-size: 50px;
  line-height: 52px;
}
.fs.fs55 {
  font-size: 55px;
  line-height: 58px;
}
.fs.fs60 {
  font-size: 60px;
  line-height: 65px;
}
.fs.fs70 {
  font-size: 70px;
  line-height: 70px;
}
.fs.fs80 {
  font-size: 80px;
  line-height: 90px;
}
.fs.fs120 {
  font-size: 120px;
  line-height: 84px;
}
.fs.fs150 {
  font-size: 150px;
  line-height: 150px;
}
.fs.fs200 {
  font-size: 200px;
  line-height: 180px;
}

.fw.fw100 {
  font-weight: 100;
}
.fw.fw200 {
  font-weight: 200;
}
.fw.fw300 {
  font-weight: 300;
}
.fw.fw400 {
  font-weight: 400;
}
.fw.fw500 {
  font-weight: 500;
}
.fw.fw600 {
  font-weight: 600;
}
.fw.fw700 {
  font-weight: 700;
}
.fw.fw800 {
  font-weight: 800;
}
.fw.fw900 {
  font-weight: 900;
}

/* COLORS  ********************************/
.blackColor {
  color: #000000;
}

.blackColorBg {
  background-color: #000000;
}

.whiteColor {
  color: #ffffff;
}

.whiteColorBg {
  background-color: #ffffff;
}

.whiteColor2 {
  color: #f3fdff;
}

.whiteColor2Bg {
  background-color: #f3fdff;
}

.whiteAlpha60Color {
  color: rgba(255, 255, 255, 0.6);
}

.whiteAlpha60ColorBg {
  background-color: rgba(255, 255, 255, 0.6);
}

.blueColorLight {
  color: #c8e2ed;
}

.blueColorLightBg {
  background-color: #c8e2ed;
}

.blueColor {
  color: #4a749e;
}

.blueColorBg {
  background-color: #4a749e;
}

.blueColor2 {
  color: #8bbfd6;
}

.blueColor2Bg {
  background-color: #8bbfd6;
}

.greenColor {
  color: #97d3d3;
}

.greenColorBg {
  background-color: #97d3d3;
}

.violetColor {
  color: #c59bdd;
}

.violetColorBg {
  background-color: #c59bdd;
}

.redColor {
  color: #f48989;
}

.redColorBg {
  background-color: #f48989;
}

.softBlueColor {
  color: #DFF2FB;
}

.softBlueColorBg {
  background-color: #DFF2FB;
}

.midBlueColor {
  color: #29a7e3;
}

.midBlueColorBg {
  background-color: #29a7e3;
}

.hardBlueColor {
  color: #35579f;
}

.hardBlueColorBg {
  background-color: #35579f;
}

.hardRedColor {
  color: #cd0000;
}

.hardRedColorBg {
  background-color: #cd0000;
}

.greyColor {
  color: #92abbb;
}

.greyColorBg {
  background-color: #92abbb;
}

/* VARIOS  **************************************************************************/
* {
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 700;
}

.upper {
  text-transform: uppercase;
}

.under {
  text-decoration: underline;
}

.alignCenter {
  text-align: center;
}

img {
  width: 100%;
}

.flex {
  display: flex;
}
.flex__between {
  justify-content: space-between;
}
.flex__end {
  justify-content: flex-end;
}
.flex__center {
  justify-content: center;
}
.flex__Aligncenter {
  align-items: center;
}
.flex__Alignend {
  align-items: flex-end;
}
.flex__Alignstart {
  align-items: flex-start;
}
.flex__wrap {
  flex-wrap: wrap;
}

.cta-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cta-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0.2906976744vw;
  left: -0.1162790698vw;
  border-radius: 2.9069767442vw;
  z-index: 0;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
}
.cta-btn a {
  font-size: 1.1627906977vw;
  font-weight: 500;
  color: #ffffff;
  padding: 0.4651162791vw 1.8604651163vw;
  border-radius: 2.9069767442vw;
  background-color: #97d3d3;
  position: relative;
  z-index: 10;
}
.image-banner-section{
  background-color:#BAEAF4;
}

@media (max-width: 768px) {
  .cta-btn:before {
    top: 0.5263157895vw;
    left: -0.5263157895vw;
    border-radius: 13.1578947368vw;
  }
  .cta-btn a {
    font-size: 3.6842105263vw;
    padding: 1.0526315789vw 4.7368421053vw;
    border-radius: 5.2631578947vw;
  }
}
@media (min-width: 1720px) {
  .cta-btn:before {
    top: 5px;
    left: -2px;
    border-radius: 50px;
  }
  .cta-btn a {
    font-size: 20px;
    padding: 8px 32px;
    border-radius: 50px;
  }
}
/* CSS  ********************************/
body,
html {
  height: 100%;
}

body {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  line-height: 1.3;
}

.page-template-template-bab-home #page {
  padding-top: 90px !important;
  background-color: #c8e2ed;
}

/* HERO SECTION ************************/
.hero-section {
  position: relative;
}
.hero-section:after {
  content: "";
  position: absolute;
  width: 50.5813953488vw;
  height: 53.488372093vw;
  background-image: url(../../images/bab/img-hero.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right center;
  top: 0;
  right: 0;
}
.hero-section .container .wrapper__top {
  padding-top: 9.5348837209vw;
  padding-bottom: 10.4651162791vw;
}
.hero-section .container .wrapper__top .logo-box {
  width: 100%;
  max-width: 29.0697674419vw;
  margin-bottom: 7.3255813953vw;
}
.hero-section .container .wrapper__top .text-box {
  width: 100%;
  max-width: 33.7209302326vw;
}
.hero-section .container .wrapper__top .text-box h1 {
  font-family: "Dosis", sans-serif;
  font-size: 2.3255813953vw;
  line-height: 1.2;
  font-weight: 700 !important;
  color: #4a749e;
  /* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
.hero-section .container .wrapper__top .img-box--mobile {
  display: none;
}
.hero-section .container .wrapper__top .box__right--mobile {
  display: none;
}
.hero-section .container .wrapper__bottom {
  padding-bottom: 4.6511627907vw;
}
.hero-section .container .wrapper__bottom .box__left {
  width: 60%;
}
.hero-section .container .wrapper__bottom .box__left > p {
  font-family: "Dosis", sans-serif;
  font-size: 1.8604651163vw;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hero-section .container .wrapper__bottom .box__left > p:after {
  content: "";
  position: absolute;
  width: 56%;
  height: 0.2325581395vw;
  background-color: #ffffff;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  bottom: -1.1627906977vw;
  left: -1.1627906977vw;
  border-radius: 0.2325581395vw;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list {
  margin-top: 7.5581395349vw;
  margin-left: 0;
  list-style: none;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  padding-bottom: 10.4651162791vw;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p {
  position: absolute;
  /* top: 50%; */
  /* top: 42%; */
  /* bottom: 55%; */
  /* right: 50%; */
  transform: translate(-50%, -50%);
  font-family: "Dosis", sans-serif;
  font-size: 1.2790697674vw;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p a {
  color: #ffffff;
  text-align: left;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p a:hover {
  opacity: 0.8;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(1) {
  max-width: 11.6279069767vw;
  background-image: url(../../images/bab/blob-01.png);
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(1) p {
  width: 55%;
  top: 56%;
  left: 56%;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(2) {
  max-width: 15.1162790698vw;
  background-image: url(../../images/bab/blob-02.png);
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(2) p {
  width: 32%;
  top: 55%;
  left: 54%;
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(3) {
  max-width: 15.1162790698vw;
  background-image: url(../../images/bab/blob-03.png);
}
.hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(3) p {
  width: 60%;
  top: 55%;
  left: 48%;
}
.hero-section .container .wrapper__bottom .box__right {
  width: 30%;
  max-width: 23.2558139535vw;
  position: relative;
  background-image: url(../../images/bab/blob-abc.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 13.9534883721vw;
}
.hero-section .container .wrapper__bottom .box__right p {
  font-family: "Dosis", sans-serif;
  font-size: 1.6279069767vw;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 43%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}
.hero-section .container .wrapper__bottom .box__right p a {
  color: #ffffff;
}
.hero-section .container .wrapper__bottom .box__right p a:hover {
  opacity: 0.8;
}

/* DESCARGA SECTION ************************/
.descarga-section {
  padding-top: 2.9069767442vw;
  padding-bottom: 2.9069767442vw;
}
.descarga-section .container {
  position: relative;
}
.descarga-section .container .img-box {
  width: 100%;
  max-width: 64.5348837209vw;
  margin: 0 auto;
}
.descarga-section .container .img-box--mobile {
  display: none;
}
.descarga-section .container .text-box {
  width: 100%;
  max-width: 20.9302325581vw;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 22%;
}
.descarga-section .container .text-box h2 {
  font-family: "Dosis", sans-serif;
  font-size: 2.0930232558vw;
  line-height: 1.2;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-align: center;
  color: #4a749e;
  margin-bottom: 0.9302325581vw;
}
.descarga-section .container .text-box p {
  font-family: "Dosis", sans-serif;
  font-size: 1.2790697674vw;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #8bbfd6;
  margin-bottom: 0;
}
.descarga-section .container .text-box .cta-btn {
  font-family: "Dosis", sans-serif;
  margin-top: 0.4651162791vw;
}

/* BANNER SECTION ************************/
.banner-section {
  padding-top: 2.9069767442vw;
  padding-bottom: 2.9069767442vw;
}
.banner-section .container {
  position: relative;
}
.banner-section .container .img-box {
  width: 100%;
  max-width: 64.5348837209vw;
  margin: 0 auto;
}
.banner-section .container .img-box--mobile {
  display: none;
}
.banner-section .container .text-box {
  width: 100%;
  max-width: 20.9302325581vw;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  right: 8%;
}
.banner-section .container .text-box h2 {
  font-family: "Dosis", sans-serif;
  font-size: 2.0930232558vw;
  line-height: 1.2;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-align: center;
  color: #4a749e;
  margin-bottom: 0.9302325581vw;
}
.banner-section .container .text-box p {
  font-family: "Dosis", sans-serif;
  font-size: 1.2790697674vw;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #8bbfd6;
  margin-bottom: 0;
}
.banner-section .container .text-box .cta-btn {
  font-family: "Dosis", sans-serif;
  margin-top: 0.4651162791vw;
}
.banner-section .container .text-box .cta-btn a {
  font-weight: 700;
  letter-spacing: -1px;
}

/* LO MAS VISTO SECTION ************************/
.slider-section {
  padding-top: 2.9069767442vw;
  padding-bottom: 2.9069767442vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.slider-section .container h2 {
  font-family: "Dosis", sans-serif;
  font-size: 1.8604651163vw;
  font-weight: 500 !important;
  color: #4a749e;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}
.slider-section .container h2:after {
  content: "";
  position: absolute;
  width: 6.3953488372vw;
  height: 0.2325581395vw;
  background-color: #4a749e;
  /* -webkit-box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.39); */
  /* -moz-box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.39); */
  /* box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.39); */
  bottom: -1.1627906977vw;
  left: -1.1627906977vw;
  border-radius: 0.2325581395vw;
}
.slider-section .slider {
  margin-top: 5.8139534884vw;
  cursor: pointer;
}
.slider-section .slider__container .slick-next,
.slider-section .slider__container .slick-prev {
  width: 20px;
  height: 20px;
  top: -25px;
}
.slider-section .slider__container .slick-next:before,
.slider-section .slider__container .slick-prev:before {
  color: #4a749e;
}
.slider-section .slider__container .slick-prev {
  left: 30px;
}
.slider-section .slider__container .slick-next {
  right: 30px;
}
.slider-section .slider__container .slick-list .slick-track .slider-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.slider-section .slider__container .slick-list .slick-track .slider-item a {
  width: 100%;
  text-align: left;
}
.slider-section .slider__container .slick-list .slick-track .slider-item a .img-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 90%;
  min-height: 14.5348837209vw;
  position: relative;
  margin-bottom: 0.6976744186vw;
  border-radius: 1.3953488372vw;
}
.slider-section .slider__container .slick-list .slick-track .slider-item a .img-box:after {
  content: "";
  position: absolute;
  width: 5.8139534884vw;
  height: 4.6511627907vw;
  background-image: url(../../images/bab/play-btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: all;
}
.slider-section .slider__container .slick-list .slick-track .slider-item a .img-box img {
  width: 100%;
  max-width: 100%;
  min-height: 14.5348837209vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1.3953488372vw;
}
.slider-section .slider__container .slick-list .slick-track .slider-item a h3 {
  font-family: "Dosis", sans-serif;
  font-size: 1.3953488372vw;
  color: #4a749e;
  margin-bottom: 0.6976744186vw;
  padding-right: 0.9302325581vw;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category p {
  font-size: 0.9302325581vw;
  color: #ffffff;
  padding: 0.2325581395vw 0.6976744186vw;
  border-radius: 2.3255813953vw;
  background-color: #e6d17f;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category p a {
  color: #ffffff;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category p a:hover {
  opacity: 0.8;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category--parto-y-posparto p {
  background-color: #c59bdd;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category--el-embarazo p {
  background-color: #f48989;
}
.slider-section .slider__container .slick-list .slick-track .slider-item .category--crianza-hasta-los-2-anos p {
  background-color: #97d3d3;
}

/* DESCUBRE SECTION ************************/
.descubre-section {
  padding-top: 2.9069767442vw;
  padding-bottom: 2.9069767442vw;
}
.descubre-section .container h2 {
  font-family: "Dosis", sans-serif;
  font-size: 1.8604651163vw;
  font-weight: 700 !important;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}
.descubre-section .container h2:after {
  content: "";
  position: absolute;
  width: 6.3953488372vw;
  height: 0.1162790698vw;
  background-color: #ffffff;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  bottom: -0.5813953488vw;
  left: -1.1627906977vw;
  border-radius: 0.2325581395vw;
}
.descubre-section .container .bottom-container {
  margin-top: 5.8139534884vw;
}
.descubre-section .container .bottom-container .wrapper {
  width: 48%;
}
.descubre-section .container .bottom-container .wrapper .img-box {
  width: 100%;
  max-width: 17.4418604651vw;
}
.descubre-section .container .bottom-container .wrapper .text-box {
  margin-left: 0.6976744186vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.descubre-section .container .bottom-container .wrapper .text-box h3 {
  font-family: "Dosis", sans-serif;
  font-size: 1.6279069767vw;
  font-weight: 700 !important;
  position: relative;
  color: #4a749e;
  margin-bottom: 0.4651162791vw;
}
.descubre-section .container .bottom-container .wrapper .text-box h3:after {
  content: "";
  position: absolute;
  width: 120%;
  height: 0.1162790698vw;
  background-color: #4a749e;
  bottom: -0.2325581395vw;
  left: 0;
}
.descubre-section .container .bottom-container .wrapper .text-box p {
  font-family: "Dosis", sans-serif;
  font-size: 0.9302325581vw;
  color: #4a749e;
}
.descubre-section .container .bottom-container .wrapper .text-box .cta-btn {
  font-family: "Dosis", sans-serif;
  margin-top: 1.8604651163vw;
}
.descubre-section .container .bottom-container .wrapper .text-box .cta-btn a {
  color: #ffffff;
  font-size: 0.9302325581vw;
  padding: 0.2325581395vw 1.3953488372vw;
  background-color: #8bbfd6;
}

/* ARTICULOS SECTION ************************/
.articulos-section {
  padding-bottom: 2.9069767442vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.articulos-section .container h3 {
  font-family: "Dosis", sans-serif;
  font-size: 1.6860465116vw;
  font-weight: 700 !important;
  color: #ffffff;
  display: inline-block;
  position: relative;
  margin-bottom: 2.3255813953vw;
}
.articulos-section .container h3:after {
  content: "";
  position: absolute;
  width: 6.3953488372vw;
  height: 0.1162790698vw;
  background-color: #ffffff;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  bottom: -0.5813953488vw;
  left: -1.1627906977vw;
  border-radius: 0.2325581395vw;
}
.articulos-section .slider__container .slick-next,
.articulos-section .slider__container .slick-prev {
  width: 20px;
  height: 20px;
  top: -25px;
}
.articulos-section .slider__container .slick-next:before,
.articulos-section .slider__container .slick-prev:before {
  color: #ffffff;
}
.articulos-section .slider__container .slick-prev {
  left: 30px;
}
.articulos-section .slider__container .slick-next {
  right: 30px;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1627906977vw;
  margin: 1.1627906977vw 0.9302325581vw;
  background-color: white;
  border-radius: 2.3255813953vw;
  position: relative;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
}
.articulos-section .slider__container .slick-list .slick-track .slider-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #8bbfd6;
  top: -0.6976744186vw;
  right: -0.6976744186vw;
  border-radius: 2.3255813953vw;
  z-index: -1;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 11.6279069767vw;
  margin-bottom: 0.9302325581vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 11.6279069767vw;
  position: relative;
  margin-bottom: 0.6976744186vw;
  border-radius: 1.3953488372vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box img {
  width: 100%;
  max-width: 100%;
  height: 11.6279069767vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1.3953488372vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p {
  font-family: "Dosis", sans-serif;
  font-size: 0.9302325581vw;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.4651162791vw 0.6976744186vw;
  border-radius: 1.1627906977vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p.crianza-hasta-los-2-anos {
  background-color: #97d3d3;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p.el-embarazo {
  background-color: #f48989;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p.parto-y-posparto {
  background-color: #c59bdd;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p a {
  color: #ffffff;
  white-space: nowrap;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p a:hover {
  opacity: 0.8;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item h4 {
  font-family: "Dosis", sans-serif;
  font-size: 1.2790697674vw;
  font-weight: 700 !important;
  color: #4a749e;
  margin-bottom: 0.6976744186vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item h4 a {
  text-align: left;
  color: #4a749e;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item h4 a:hover {
  opacity: 0.8;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item p {
  font-family: "Dosis", sans-serif;
  font-size: 1.0465116279vw;
  font-weight: 500;
  color: #8bbfd6;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  margin-top: 1.8604651163vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p {
  font-size: 0.9302325581vw;
  color: #4a749e;
  position: relative;
  padding-left: 1.7441860465vw;
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p:before {
  content: "";
  position: absolute;
  width: 1.3953488372vw;
  height: 1.3953488372vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p:first-child:before {
  background-image: url(../../images/bab/icon-calendar.png);
}
.articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p:last-child:before {
  background-image: url(../../images/bab/icon-relog.png);
}

@media (min-width: 1720px) {
  /* HERO SECTION ************************/
  .hero-section:after {
    width: 870px;
    height: 920px;
  }
  .hero-section .container .wrapper__top {
    padding-top: 164px;
    padding-bottom: 180px;
  }
  .hero-section .container .wrapper__top .logo-box {
    max-width: 500px;
    margin-bottom: 126px;
  }
  .hero-section .container .wrapper__top .text-box {
    max-width: 580px;
  }
  .hero-section .container .wrapper__top .text-box h1 {
    font-size: 40px;
  }
  .hero-section .container .wrapper__bottom {
    padding-bottom: 80px;
  }
  .hero-section .container .wrapper__bottom .box__left > p {
    font-size: 32px;
  }
  .hero-section .container .wrapper__bottom .box__left > p:after {
    height: 4px;
    bottom: -20px;
    left: -20px;
    border-radius: 4px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list {
    margin-top: 130px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item {
    padding-bottom: 180px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p {
    font-size: 22px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(1) {
    max-width: 200px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(2) {
    max-width: 260px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(3) {
    max-width: 260px;
  }
  .hero-section .container .wrapper__bottom .box__right {
    max-width: 400px;
    min-height: 240px;
  }
  .hero-section .container .wrapper__bottom .box__right p {
    font-size: 28px;
  }

  /* DESCARGA SECTION ************************/
  .descarga-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .descarga-section .container .img-box {
    max-width: 1110px;
  }
  .descarga-section .container .text-box {
    max-width: 360px;
    right: 20%;
  }
  .descarga-section .container .text-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .descarga-section .container .text-box p {
    font-size: 22px;
  }
  .descarga-section .container .text-box .cta-btn {
    margin-top: 18px;
  }

  /* BANNER SECTION ************************/
  .banner-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .banner-section .container .img-box {
    max-width: 1110px;
  }
  .banner-section .container .text-box {
    max-width: 360px;
    right: 7%;
  }
  .banner-section .container .text-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .banner-section .container .text-box p {
    font-size: 22px;
  }
  .banner-section .container .text-box .cta-btn {
    margin-top: 18px;
  }

  /* LO MAS VISTO SECTION ************************/
  .slider-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .slider-section .container h2 {
    font-size: 32px;
  }
  .slider-section .container h2:after {
    width: 110px;
    height: 2px;
    bottom: -20px;
    left: -20px;
    border-radius: 4px;
  }
  .slider-section .slider {
    margin-top: 100px;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item .img-box {
    min-height: 250px;
    margin-bottom: 12px;
    border-radius: 24px;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item .img-box:after {
    width: 100px;
    height: 80px;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item .img-box img {
    min-height: 250px;
    border-radius: 24px;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item .category p {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 40px;
  }

  /* DESCUBRE SECTION ************************/
  .descubre-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .descubre-section .container h2 {
    font-size: 32px;
  }
  .descubre-section .container h2:after {
    width: 110px;
    height: 2px;
    bottom: -10px;
    left: -20px;
    /* border-radius: 4px; */
  }
  .descubre-section .container .bottom-container {
    margin-top: 100px;
  }
  .descubre-section .container .bottom-container .wrapper .img-box {
    max-width: 300px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box {
    margin-left: 12px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box h3:after {
    height: 2px;
    bottom: -4px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box p {
    font-size: 16px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box .cta-btn {
    margin-top: 32px;
  }
  .descubre-section .container .bottom-container .wrapper .text-box .cta-btn a {
    font-size: 16px;
    padding: 4px 24px;
  }

  /* ARTICULOS SECTION ************************/
  .articulos-section {
    padding-bottom: 50px;
  }
  .articulos-section .container h3 {
    font-size: 29px;
    margin-bottom: 40px;
  }
  .articulos-section .container h3:after {
    width: 110px;
    height: 2px;
    bottom: -10px;
    left: -20px;
    /* border-radius: 4px; */
  }
  .articulos-section .slider__container {
    cursor: pointer;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item {
    padding: 20px;
    margin: 20px 16px;
    border-radius: 40px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item:before {
    top: -12px;
    right: -12px;
    border-radius: 40px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container {
    height: 200px;
    margin-bottom: 16px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box {
    height: 200px;
    margin-bottom: 12px;
    border-radius: 24px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box img {
    height: 200px;
    border-radius: 24px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 20px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item p {
    font-size: 18px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container {
    margin-top: 32px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p {
    font-size: 16px;
    padding-left: 30px;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p:before {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1340px) and (min-width: 1000px) {
  .descarga-section .container .text-box {
    right: 24%;
  }

  .banner-section .container .text-box {
    right: 17%;
  }
}
@media (max-width: 992px) {
  /* HERO SECTION MOBILE ************************/
  .hero-section {
    position: relative;
    overflow: hidden;
  }
  .hero-section:after {
    display: none;
  }
  .hero-section .container .wrapper__top {
    padding-top: 10.5263157895vw;
    padding-bottom: 10.5263157895vw;
  }
  .hero-section .container .wrapper__top .logo-box {
    max-width: 90.5263157895vw;
    margin-bottom: 10.5263157895vw;
  }
  .hero-section .container .wrapper__top .text-box {
    width: 100%;
    max-width: 90%;
  }
  .hero-section .container .wrapper__top .text-box h1 {
    font-size: 5.7894736842vw;
  }
  .hero-section .container .wrapper__top .img-box--mobile {
    display: block;
    width: 80%;
    margin-top: 5.2631578947vw;
    margin-left: calc((100vw - 150vw) / 2 * -1);
  }
  .hero-section .container .wrapper__top .box__right--mobile {
    display: block;
    width: 100%;
    max-width: 52.6315789474vw;
    position: relative;
    background-image: url(../../images/bab/blob-abc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 36.8421052632vw;
    margin-top: -5.2631578947vw;
  }
  .hero-section .container .wrapper__top .box__right--mobile p {
    font-family: "Dosis", sans-serif;
    font-size: 4.2105263158vw;
    font-weight: 700 !important;
    line-height: 1.2;
    position: absolute;
    top: 43%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    color: #ffffff;
    text-align: center;
  }
  .hero-section .container .wrapper__top .box__right--mobile p a {
    color: #ffffff;
  }
  .hero-section .container .wrapper__top .box__right--mobile p a:hover {
    opacity: 0.8;
  }
  .hero-section .container .wrapper__bottom {
    padding-bottom: 10.5263157895vw;
  }
  .hero-section .container .wrapper__bottom .box__left {
    width: 100%;
  }
  .hero-section .container .wrapper__bottom .box__left > p {
    font-size: 4.7368421053vw;
  }
  .hero-section .container .wrapper__bottom .box__left > p:after {
    height: 0.5263157895vw;
    background-color: #ffffff;
    bottom: -2.6315789474vw;
    left: -2.6315789474vw;
    border-radius: 1.0526315789vw;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list {
    margin-top: 5.2631578947vw;
    flex-direction: row;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item {
    margin-top: 3.1578947368vw;
    width: 80%;
    padding-bottom: 36.8421052632vw;
    position: relative;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p {
    font-size: 3.6842105263vw;
    text-align: center;
    display: block;
    position: absolute;
    transform: translateX(-50%);
    width: 65%;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item p a {
    font-size: 3.1578947368vw;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(1) {
    max-width: 100%;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(1) p {
    width: 65%;
    top: 50%;
    left: 50%;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(2) {
    max-width: 100%;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(2) p {
    width: 65%;
    top: 42%;
    left: 55%;
    margin-left: 3.1578947368vw;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(3) {
    max-width: 100%;
  }
  .hero-section .container .wrapper__bottom .box__left .etapas-list .etapas-item:nth-child(3) p {
    width: 65%;
    top: 42%;
    left: 50%;
  }
  .hero-section .container .wrapper__bottom .box__right {
    display: none;
  }

  /* DESCARGA SECTION ************************/
  .descarga-section {
    padding-top: 10.5263157895vw;
    padding-bottom: 10.5263157895vw;
  }
  .descarga-section .container .img-box {
    width: 100%;
    max-width: 100%;
  }
  .descarga-section .container .img-box--mobile {
    display: block;
  }
  .descarga-section .container .img-box--desktop {
    display: none;
  }
  .descarga-section .container .text-box {
    width: 100%;
    max-width: 60%;
    top: 7.8947368421vw;
    right: 50%;
    transform: translate(50%, 0);
    align-items: flex-end;
  }
  .descarga-section .container .text-box h2 {
    font-size: 4.7368421053vw;
    margin-bottom: 1.0526315789vw;
  }
  .descarga-section .container .text-box p {
    font-size: 3.6842105263vw;
  }
  .descarga-section .container .text-box .cta-btn {
    margin-top: 3.6842105263vw;
  }

  /* BANNER SECTION ************************/
  .banner-section {
    padding-top: 10.5263157895vw;
    padding-bottom: 10.5263157895vw;
  }
  .banner-section .container .img-box {
    width: 100%;
    max-width: 100%;
  }
  .banner-section .container .img-box--mobile {
    display: block;
  }
  .banner-section .container .img-box--desktop {
    display: none;
  }
  .banner-section .container .text-box {
    width: 100%;
    max-width: 60%;
    /* top: vWrwd(200); */
    top: auto;
    bottom: 7.8947368421vw;
    right: 50%;
    transform: translate(50%, 0);
    /* align-items:flex-end; */
  }
  .banner-section .container .text-box h2 {
    font-size: 4.7368421053vw;
    margin-bottom: 1.0526315789vw;
  }
  .banner-section .container .text-box p {
    font-size: 3.6842105263vw;
  }
  .banner-section .container .text-box .cta-btn {
    /* margin-top: vWrwd(14); */
    margin-top: 0;
  }
  .banner-section .container .text-box .cta-btn a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
  }

  /* LO MAS VISTO ************************/
  .slider-section {
    padding: 10.5263157895vw 0;
  }
  .slider-section .container h2 {
    font-size: 4.7368421053vw;
  }
  .slider-section .container h2:after {
    width: 21.0526315789vw;
    height: 0.5263157895vw;
    bottom: -3.1578947368vw;
    left: -1.1627906977vw;
    border-radius: 0.2325581395vw;
  }
  .slider-section .slider {
    margin-top: 10.5263157895vw;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item a .img-box {
    height: 31.5789473684vw;
    margin-bottom: 1.5789473684vw;
    border-radius: 3.1578947368vw;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item a .img-box:after {
    width: 15.7894736842vw;
    height: 10.5263157895vw;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item a .img-box img {
    height: 31.5789473684vw;
    border-radius: 3.1578947368vw;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item a h3 {
    font-size: 4.2105263158vw;
    margin-bottom: 1.5789473684vw;
    padding-right: 3.1578947368vw;
  }
  .slider-section .slider__container .slick-list .slick-track .slider-item .category p {
    font-size: 3.1578947368vw;
    padding: 0.7894736842vw 2.1052631579vw;
    border-radius: 5.2631578947vw;
  }

  /* DESCUBRE SECTION ************************/
  .descubre-section {
    padding-top: 10.5263157895vw;
    padding-bottom: 10.5263157895vw;
  }
  .descubre-section .container h2 {
    font-size: 4.7368421053vw;
  }
  .descubre-section .container h2:after {
    width: 21.0526315789vw;
    height: 0.5263157895vw;
    bottom: -3.1578947368vw;
    left: -1.1627906977vw;
    border-radius: 0.2325581395vw;
  }
  .descubre-section .container .bottom-container {
    margin-top: 13.1578947368vw;
    flex-wrap: wrap;
  }
  .descubre-section .container .bottom-container .wrapper {
    width: 100%;
    margin-top: 5.2631578947vw;
  }
  .descubre-section .container .bottom-container .wrapper .img-box {
    width: 100%;
    max-width: 46%;
  }
  .descubre-section .container .bottom-container .wrapper .text-box {
    margin-left: 1.5789473684vw;
  }
  .descubre-section .container .bottom-container .wrapper .text-box h3 {
    font-size: 4.7368421053vw;
    margin-bottom: 1.0526315789vw;
  }
  .descubre-section .container .bottom-container .wrapper .text-box h3:after {
    height: 0.5263157895vw;
    bottom: -0.5263157895vw;
    left: 0;
  }
  .descubre-section .container .bottom-container .wrapper .text-box p {
    font-size: 3.6842105263vw;
  }
  .descubre-section .container .bottom-container .wrapper .text-box .cta-btn {
    margin-top: 4.7368421053vw;
  }
  .descubre-section .container .bottom-container .wrapper .text-box .cta-btn a {
    font-size: 3.4210526316vw;
  }

  /* ARTICULOS SECTION ************************/
  .articulos-section {
    padding-bottom: 10.5263157895vw;
  }
  .articulos-section .container h3 {
    font-size: 7.6315789474vw;
  }
  .articulos-section .container h3:after {
    width: 21.0526315789vw;
    height: 0.5263157895vw;
    bottom: -3.1578947368vw;
    left: -1.1627906977vw;
    border-radius: 0.2325581395vw;
  }
  .articulos-section .slider__container {
    margin-top: 10.5263157895vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item {
    padding: 3.1578947368vw;
    margin: 3.1578947368vw 2.1052631579vw;
    border-radius: 5.2631578947vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item:before {
    top: -1.5789473684vw;
    right: -1.5789473684vw;
    border-radius: 5.2631578947vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container {
    height: 52.6315789474vw;
    margin-bottom: 2.1052631579vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box {
    height: 52.6315789474vw;
    margin-bottom: 2.1052631579vw;
    border-radius: 3.1578947368vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container .img-box img {
    height: 52.6315789474vw;
    border-radius: 3.1578947368vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .img-container p {
    font-size: 3.1578947368vw;
    padding: 1.0526315789vw 2.1052631579vw;
    border-radius: 3.1578947368vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item h4 a {
    font-size: 4.2105263158vw;
    margin-bottom: 1.5789473684vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item p {
    font-size: 3.6842105263vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container {
    margin-top: 4.7368421053vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p {
    font-size: 4.2105263158vw;
    padding-left: 4.2105263158vw;
  }
  .articulos-section .slider__container .slick-list .slick-track .slider-item .icons-container p:before {
    width: 3.1578947368vw;
    height: 3.1578947368vw;
  }
}
@media (max-width: 768px) and (min-width: 610px) {
  .hero-section .container .wrapper__top .img-box--mobile {
    margin-left: calc((100vw - 161.0526315789vw) / 2 * -1);
  }
}
@media (max-width: 575px) {
  .slider-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cta-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cta-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0.2906976744vw;
  left: -0.1162790698vw;
  border-radius: 2.9069767442vw;
  z-index: 0;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.39);
}
.cta-btn a {
  font-size: 1.1627906977vw;
  font-weight: 500;
  color: #ffffff !important;
  padding: 0.4651162791vw 1.8604651163vw;
  border-radius: 2.9069767442vw;
  background-color: #97d3d3;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .cta-btn:before {
    top: 0.5263157895vw;
    left: -0.5263157895vw;
    border-radius: 13.1578947368vw;
  }
  .cta-btn a {
    font-size: 3.6842105263vw;
    padding: 1.0526315789vw 4.7368421053vw;
    border-radius: 5.2631578947vw;
  }
}
@media (min-width: 1720px) {
  .cta-btn:before {
    top: 5px;
    left: -2px;
    border-radius: 50px;
  }
  .cta-btn a {
    font-size: 20px;
    padding: 8px 32px;
    border-radius: 50px;
  }
}

/*# sourceMappingURL=template-bab-home.css.map */
