/* lighten($color-primary-dark, 15%); */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
/* 
uso:

.my-box {
    padding: 20px;

    @include tablet {
        padding: 10px;
    }
} */
.header {
  width: 100%;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
          box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
  font-family: "Work Sans";
  position: fixed;
  z-index: 2;
  top: 0;
  background-color: #FFFFFF;
}

.header__logo {
  vertical-align: center;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1500px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .header__container {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__login {
    display: none;
  }
}

.burger {
  top: 40px;
  right: 55px;
  border-radius: 19px;
  z-index: 2;
}

.container-burger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .container-burger {
    display: inline-block;
  }
}

.bar1,
.bar2,
.bar3 {
  width: 30px;
  height: 3px;
  background-color: #000000;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
  background-color: black;
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-7px, -7px);
  background-color: black;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: white;
  overflow-y: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  overflow-y: hidden;
}

.overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay-content a {
  padding: 8px;
  position: relative;
  text-decoration: none;
  font-size: 26px;
  font-weight: bolder;
  color: black;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.overlay-content hr {
  width: 50%;
  margin-top: 40px;
  margin-bottom: 40px;
  height: 0.1px;
  opacity: 0.5;
}

.overlay-content a:hover {
  opacity: 0.5;
}

.mostrar {
  height: 100%;
}

.heading-1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

@media screen and (max-width: 767px) {
  .heading-1 {
    width: 100%;
    font-size: 35px;
    line-height: 48px;
  }
}

.heading-2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .heading-2 {
    width: 80%;
    font-size: 30px;
    line-height: 38px;
  }
}

.heading-3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

@media screen and (max-width: 767px) {
  .heading-3 {
    width: 80%;
    font-size: 30px;
    line-height: 30px;
  }
}

.heading-4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .heading-4 {
    font-size: 30px;
    line-height: 26px;
  }
}

/* 
.heading-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    h1{
        font-size: 3rem; //48px
        font-weight: $font-weight-bold;
        margin-bottom: 0;
        line-height: 60px;
    }
    p{
        font-size:16px;
    }
} */
.menu-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-principal a {
  text-decoration: none;
  padding: 20px;
  color: #1E0028;
  font-weight: 600;
}

.menu-principal a:hover {
  background-color: #FFF3D5;
  border-radius: 5rem;
}

.blog-nav {
  padding: .5rem;
  background-color: #1E0028;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  z-index: 2;
}

.blog-nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .blog-nav__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.blog-nav__logo {
  padding-right: 2rem;
  margin-right: 3rem;
  border-right: 1px solid white;
}

@media screen and (max-width: 767px) {
  .blog-nav__logo {
    margin-right: 0rem;
  }
}

.blog-nav__menu-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .blog-nav__menu-blog {
    display: none;
  }
}

.blog-nav__menu-blog a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
}

.blog-nav__menu-blog a:hover {
  color: #FFC944;
}

.blog-nav__menu-blog__item {
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 16px;
  margin-right: 1em;
}

.blog-nav__search {
  margin-left: 6rem;
  right: 0;
  margin-left: auto;
}

.blog-nav__search input {
  border: 1px solid #E4E4E4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30.8px;
  position: static;
  position: static;
  width: 255px;
  height: 29px;
  left: 0px;
  top: 0px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .blog-nav__search input {
    display: none;
  }
}

.blog-nav__search .lupa {
  display: none;
}

@media screen and (max-width: 767px) {
  .blog-nav__search .lupa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu-blog-responsive {
  display: none;
}

@media screen and (max-width: 767px) {
  .menu-blog-responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-blog-responsive a {
    text-decoration: none;
    color: #FFFFFF;
  }
}

.header__login {
  color: #1E0028;
}

.header__login .button {
  text-decoration: none;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body {
  font-family: "Work Sans";
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  /* Slideshow container */
  /* Caption text */
  /* Number text (1/3 etc) */
  /* The dots/bullets/indicators */
  /* Fading animation */
  /* On smaller screens, decrease text size */
}

body .mySlides {
  display: none;
}

body img {
  vertical-align: middle;
}

body .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

body .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

body .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

body .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

body .active {
  background-color: #717171;
}

body .fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  body .text {
    font-size: 11px;
  }
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  margin-top: 75px;
  background-color: #FFC944;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.hero__container {
  top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .hero__container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

@media screen and (max-width: 767px) {
  .hero__texto {
    width: 90%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .hero__texto .button {
    width: 90%;
  }
}

.hero__imagen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .hero__imagen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.hero__imagen img {
  height: 95%;
}

@media screen and (max-width: 767px) {
  .hero__imagen img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 400px;
    margin: 0 auto;
  }
}

.container-tiendas {
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}

.container-tiendas h5 {
  font-size: 16px;
  margin-bottom: 64px;
}

.container-tiendas__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 25px;
}

.container-tiendas__items img {
  max-width: 200px;
  height: auto;
  max-height: auto;
}

@media screen and (max-width: 767px) {
  .container-tiendas__items img {
    max-width: 100px;
  }
}

.container-lista {
  display: block;
  margin-top: 64px;
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .container-lista {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.container-lista h1 {
  font-size: 35px;
  line-height: 48px;
}

.container-lista__contenido {
  padding: 2rem;
}

.container-lista__contenido-img {
  /* display: flex;
            justify-content:center; */
  max-width: 550px;
}

@media screen and (max-width: 767px) {
  .container-lista__contenido-img {
    max-height: 250px;
  }
}

.container-lista__contenido-items {
  /*   display: flex;
            flex-direction: row;
            justify-content: space-around; 
            gap:100px;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .container-lista__contenido-items {
    -ms-grid-columns: 90%;
        grid-template-columns: 90%;
    gap: 0;
  }
}

.container-lista__contenido-items:nth-child(2) {
  /* display: flex;
            flex-direction: row; */
}

@media screen and (max-width: 767px) {
  .container-lista__contenido-items:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.container-lista__contenido-item {
  /*  display: flex;
            flex-direction: column;
            justify-content: center; */
}

@media screen and (max-width: 767px) {
  .container-lista__contenido-item {
    margin-bottom: 40px;
  }
}

.container-pide {
  display: block;
  background-color: #1E0028;
  padding-top: 64px;
  padding-bottom: 64px;
}

.container-pide-contenido {
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .container-pide-contenido {
    height: auto;
  }
}

.container-pide-contenido__texto {
  padding-bottom: 64px;
  width: 50%;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .container-pide-contenido__texto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.container-pide-contenido__texto h2 {
  font-weight: 600;
  font-size: 48px;
}

.container-pide-contenido__articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .container-pide-contenido__articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.container-pide-contenido__articles-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .container-pide-contenido__articles-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
  }
}

.container-cards-index {
  background-image: url("/assets/img/rectangle90.png");
  background-size: contain;
  padding-top: 80px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (max-width: 767px) {
  .container-cards-index {
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container-cards-index__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}

@media screen and (max-width: 767px) {
  .container-cards-index__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
  }
}

.container-cards-index__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-queremos {
  background-color: #F5F5F5;
  padding-top: 80px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .container-queremos {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.container-queremos__contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .container-queremos__contenido {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.container-queremos__text {
  width: 40%;
  min-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
}

@media screen and (max-width: 767px) {
  .container-queremos__text {
    width: 90%;
    padding: 0;
  }
}

.container-queremos__text h1 {
  padding: 10px;
}

.container-queremos__text p {
  padding: 10px;
}

.container-queremos__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: auto;
}

@media screen and (max-width: 767px) {
  .container-queremos__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}

.container-queremos__cards-item {
  margin: 20px;
}

.container-ytu {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .container-ytu {
    width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
}

.container-ytu__seccion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFC944;
  border-radius: 40px;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .container-ytu__seccion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
}

.container-ytu__seccion-text {
  width: 50%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 767px) {
  .container-ytu__seccion-text {
    width: 90%;
    text-align: center;
  }
}

.container-ytu__seccion-text h1 {
  font-weight: 600;
  font-size: 35px;
  line-height: 48px;
}

.container-ytu__seccion-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .container-ytu__seccion-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.container-ytu__seccion-img img {
  height: 80%;
}

@media screen and (max-width: 767px) {
  .container-ytu__seccion-img img {
    width: 330px;
    margin-top: 2rem;
  }
}

.container-ytu__tittle {
  text-align: center;
  margin-top: 50px;
}

.container-ytu__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-ytu__icons img {
  max-width: 120px;
  height: auto;
  max-height: 30px;
  padding: 30px;
  opacity: 0.7;
}

.container-blog {
  background-image: url("/assets/img/fondo-blog.svg");
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding-top: 80px;
  margin: 0 auto;
}

.container-blog--articulo {
  background-image: none;
}

.container-blog--articulo .pie-articulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
  background-color: #F5F5F5;
  width: 100%;
}

.container-blog--articulo .pie-articulo .pie-articulo__contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-blog--articulo .pie-articulo .pie-articulo__contenido .container-cards-pie {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .container-blog--articulo .pie-articulo .pie-articulo__contenido .container-cards-pie {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .container-blog--articulo .pie-articulo .pie-articulo__contenido .container-cards-pie {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container-blog--articulo .pie-articulo .pie-articulo__contenido .container-cards-pie {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

.container-blog-destacado {
  height: auto;
  width: 100%;
}

.container-blog-card-destacada {
  padding: 0 0 50px 0;
}

.container-seccion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .container-seccion {
    width: 100%;
  }
}

.container-seccion__h1 {
  margin-bottom: 30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media screen and (max-width: 767px) {
  .container-seccion__h1 {
    width: 100%;
  }
}

.container-caja-accent {
  padding-top: 24px;
  margin-bottom: 64px;
}

.container-caja-accent__contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 920px;
  height: auto;
  background-color: #5D50C6;
  border-radius: 20px;
  margin: 0 auto;
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .container-caja-accent__contenido {
    max-width: 80%;
    height: auto;
    padding-bottom: 40px;
  }
}

.container-caja-accent__contenido h1 {
  color: #FFFFFF;
  line-height: 34px;
}

.container-caja-accent__contenido p {
  color: #FFFFFF;
  line-height: 24px;
}

.container-caja-accent__contenido .button {
  margin-top: 30px;
}

.container-caja-yellow {
  margin-bottom: 64px;
}

.container-caja-yellow__contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 920px;
  height: auto;
  background-color: #FFC944;
  background-image: url("/assets/img/fondo-amarillo.svg");
  background-size: cover;
  background-position-y: center;
  border-radius: 20px;
  margin: auto;
  padding: 3rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .container-caja-yellow__contenido {
    max-width: 80%;
    height: auto;
    padding: 1rem;
  }
}

.container-caja-yellow__contenido-h1 h1 {
  color: black;
  width: 60%;
  line-height: 50px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .container-caja-yellow__contenido-h1 h1 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .container-caja-yellow__contenido-h1 {
    padding: 1rem;
  }
}

.container-caja-yellow__contenido-button {
  padding-top: 0rem;
  padding-left: 1rem;
}

@media screen and (max-width: 767px) {
  .container-caja-yellow__contenido-button {
    padding-left: 1rem;
  }
}

.container-caja-yellow__contenido-img {
  position: absolute;
  -ms-flex-item-align: end;
      align-self: flex-end;
  top: 0px;
  padding: 3em;
}

@media screen and (max-width: 767px) {
  .container-caja-yellow__contenido-img {
    visibility: hidden;
  }
}

.container-articulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  width: 100%;
}

.container-articulo .cuerpo-articulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 730px;
}

@media screen and (max-width: 767px) {
  .container-articulo .cuerpo-articulo {
    width: 90%;
  }
}

.container-articulo .cuerpo-articulo .img-blog {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .container-articulo .cuerpo-articulo .img-blog {
    width: 90%;
  }
}

.container-articulo .cuerpo-articulo .separador {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.container-articulo .cuerpo-articulo .container-hr-separador {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
  height: 0;
}

.container-articulo .cuerpo-articulo .container-hr-separador .hr-separador {
  width: 100px;
  position: absolute;
  left: 0px;
  border: solid 3px #FFC944;
  border-radius: 4px;
}

.container-articulo .cuerpo-articulo hr {
  width: 100%;
  border: 1px solid;
  margin-top: 40px;
}

.container-articulo .cuerpo-articulo .container-button-articulo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.container-articulo .p-intro {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #7F7F7F;
  text-align: left;
}

.container-articulo .p-cuerpo {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #424142;
}

.container-redes {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 20px;
  margin-bottom: 64px;
}

.container-redes p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.container-cards {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin-bottom: 64px;
}

@media (max-width: 1100px) {
  .container-cards {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  .container-cards {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 600px) {
  .container-cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 3;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 40%;
  border-radius: .5rem;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -400px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -400px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 38px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #FFD56E;
  color: black;
  border-top-right-radius: .5rem;
  border-top-left-radius: .5rem;
}

.modal-body {
  padding: 2px 16px;
  overflow: scroll;
  max-height: 40vh;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #FFD56E;
  color: black;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

footer {
  width: 100%;
  background-color: #1E0028;
  color: #FFFFFF;
}

footer .footer-cols {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
}

@media screen and (max-width: 767px) {
  footer .footer-cols {
    -ms-grid-columns: 90%;
        grid-template-columns: 90%;
    height: auto;
    gap: 2rem;
  }
}

footer .footer-cols__col {
  color: #FFFFFF;
}

footer .footer-cols__col a {
  text-decoration: none;
  color: white;
}

footer .footer-cols__col ul {
  list-style: none;
  padding: 0;
}

footer .footer-cols__col li {
  list-style: none;
  border-width: 0;
  line-height: 2.4em;
  color: white;
}

footer .footer-cols__col__redes img {
  padding: 10px;
}

footer .container-descargate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .container-descargate .img-app {
  padding: 10px;
  width: 100px;
}

footer .cr {
  font-size: 11px;
  padding-bottom: 2rem;
}

.button {
  padding: .8rem 1rem;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  border: 1px;
  border-style: solid;
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 80%;
  /*  
    @media screen and (max-width: 767px){
        height: 30px;
        width: auto;
        align-self: center;
    } */
}

.button--accent {
  background-color: #5D50C6;
  color: #FFFFFF !important;
  border-color: #5D50C6;
  text-decoration: none;
  max-width: 100%;
}

.button--accent-outline {
  background-color: transparent;
  color: #5D50C6 !important;
  border-color: #5D50C6;
}

.button--overlay {
  width: 50%;
}

.button--black-outline {
  background-color: transparent;
  color: black;
  border-color: black;
  max-width: 100%;
  text-decoration: none;
}

.button--yellow {
  background-color: #FFD56E;
  color: black;
  border-color: #FFC944;
  text-decoration: none;
  max-width: 100%;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  gap: 18;
  max-width: 330px;
  left: 0px;
  background-color: #FFFFFF;
  border-radius: 8px;
  font-size: 19px;
  -webkit-box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
          box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
}

@media screen and (max-width: 767px) {
  .card {
    max-width: 90%;
  }
}

.card img {
  width: 60px;
}

.card--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  width: 200px;
  max-height: 250px;
}

@media screen and (max-width: 767px) {
  .card--center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 50%;
    padding: 1rem;
  }
}

.blog-card--horizontal-destacada {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 1fr;
      grid-template-columns: 50% 1fr;
  position: relative;
  height: 24rem;
  overflow: hidden;
  border-radius: .6rem;
  -webkit-box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
          box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
  color: black;
}

@media (max-width: 1100px) {
  .blog-card--horizontal-destacada {
    height: 20rem;
  }
}

@media (max-width: 767px) {
  .blog-card--horizontal-destacada {
    height: 16rem;
  }
}

@media (max-width: 600px) {
  .blog-card--horizontal-destacada {
    height: 13rem;
  }
}

.blog-card--horizontal-destacada__img {
  left: 0px;
  position: relative;
  height: 100%;
  z-index: 1;
  aspect-ratio: 600/300;
}

.blog-card--horizontal-destacada__img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-card--horizontal-destacada__container-text {
  position: absolute;
  right: 0px;
  height: 100%;
  width: 50%;
  background-color: white;
  -webkit-clip-path: ellipse(100% 140% at 100% 50%);
          clip-path: ellipse(100% 140% at 100% 50%);
  z-index: 1;
  padding: 2rem 4rem 2rem 6rem;
}

@media (max-width: 1100px) {
  .blog-card--horizontal-destacada__container-text {
    padding: 3rem 1rem 1rem 4rem;
  }
}

@media (max-width: 767px) {
  .blog-card--horizontal-destacada__container-text {
    padding: 3rem 1rem 1rem 3rem;
  }
}

@media (max-width: 600px) {
  .blog-card--horizontal-destacada__container-text {
    padding: 3rem 2rem 2rem 2rem;
  }
}

.blog-card--horizontal-destacada__container-text__text h1 {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .blog-card--horizontal-destacada__container-text__text h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .blog-card--horizontal-destacada__container-text__text h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .blog-card--horizontal-destacada__container-text__text h1 {
    font-size: 1rem;
  }
}

.blog-card--horizontal-destacada__container-text__text p {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}

@media (max-width: 1100px) {
  .blog-card--horizontal-destacada__container-text__text p {
    display: none;
  }
}

.blog-card--horizontal-destacada__container-text__text small {
  color: #7F7F7F;
}

/* .blog-card{
    display: grid;
    grid-template-rows: 45% 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: $regular-shadow;
    border-radius: 8px;
    height: 26rem;
    color:black;
    &__img {
      top:0px;
      position: relative;
      max-width: 100%;
      aspect-ratio: 1.6;
      
      img{
        width: 100%;
        
      }
      
    }
    &__container-text {
      position: absolute;
      //overflow: hidden;
      bottom: 0px;
      height: 60%;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background-color: #fff;
      clip-path: ellipse(90% 70% at 50% 75%);
      //border:1px solid;
      
      &__text {
        padding-left: 2rem;
        padding-top: 0rem;
        padding-right: 2rem;
    
        p {
          font-size: 24px;
          font-weight: 500;
          line-height: 30px;
        }
    
        small {
          color: #7F7F7F;
        }
      }
    
    }
 } */
.blog-card--horizontal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 1fr;
      grid-template-columns: 50% 1fr;
  position: relative;
  overflow: hidden;
  border-radius: .6rem;
  -webkit-box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
          box-shadow: 0px 8px 16px rgba(30, 0, 40, 0.08);
  color: black;
  text-decoration: none;
}

.blog-card--horizontal__img {
  left: 0px;
  position: relative;
  height: 100%;
  width: auto;
  overflow: hidden;
}

.blog-card--horizontal__img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-card--horizontal__img::before {
  content: "";
  position: absolute;
  left: initial;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
  -webkit-clip-path: ellipse(90% 60% at 130% 50%);
          clip-path: ellipse(90% 60% at 130% 50%);
  background: white;
  z-index: 1;
  height: 100%;
  width: 30px;
}

.blog-card--horizontal__container-text {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
  background-color: #fff;
  padding: 1rem;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-card--horizontal__container-text__text h2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}

@media (max-width: 1100px) {
  .blog-card--horizontal__container-text__text h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .blog-card--horizontal__container-text__text h2 {
    font-size: .8rem;
  }
}

.blog-card--horizontal__container-text__text small {
  color: #7F7F7F;
}

.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 16px 48px rgba(30, 0, 40, 0.1);
          box-shadow: 0px 16px 48px rgba(30, 0, 40, 0.1);
  border-radius: 8px;
  color: black;
  text-decoration: none;
}

.blog-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 600/300;
}

.blog-card__img img {
  width: 100%;
  height: auto;
}

.blog-card__img::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0px;
  right: 0px;
  display: block;
  -webkit-clip-path: ellipse(60% 91% at 50% 127%);
          clip-path: ellipse(60% 91% at 50% 127%);
  background: #fff;
  height: 40px;
  width: 100%;
}

.blog-card__container-text {
  position: relative;
  bottom: 0px;
  height: auto;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .blog-card__container-text {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .blog-card__container-text {
    padding: 1.5rem;
  }
}

.blog-card__container-text__text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

@media (max-width: 1100px) {
  .blog-card__container-text__text h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-card__container-text__text h2 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .blog-card__container-text__text h2 {
    font-size: 15px;
  }
}

.blog-card__container-text__text small {
  color: #7F7F7F;
}

.blog-cardf {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 27rem;
  text-decoration: none;
  color: black;
  overflow: hidden;
}

.blog-cardf:hover {
  -webkit-box-shadow: 0px 0px 20px 1px #c7c7c7;
          box-shadow: 0px 0px 20px 1px #c7c7c7;
}

.blog-cardf a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.blog-cardf a:focus {
  outline: none;
  text-decoration: underline;
}

.blog-cardf__container-text {
  padding: 3rem 2rem 3rem 2rem;
  -webkit-clip-path: ellipse(115% 100% at 50% 100%);
          clip-path: ellipse(115% 100% at 50% 100%);
  background-color: white;
  z-index: 1;
  position: absolute;
  bottom: 0;
  height: 9rem;
  overflow: hidden;
}

.blog-cardf__container-text__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 9rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.blog-cardf__container-text__text h2 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.blog-cardf__container-text__text small {
  margin-top: auto;
  color: #7F7F7F;
}

.blog-cardf__img {
  height: 12rem;
  width: auto;
  position: relative;
}

.blog-cardf__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
  padding: 0rem 1rem;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: transparent;
  padding-right: 1.5rem;
  margin-right: .8rem;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* Point the arrow upwards when the select box is open (active): */
/* .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
    
  } */
/* style the items (options), including the selected item: */
.select-items div {
  color: black;
  padding: 8px 16px;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.select-selected {
  color: white;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.select-selected:hover {
  color: #FFC944;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 30px;
  right: 0;
  z-index: 99;
  border-radius: 4px;
  width: 240px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #FFC94426;
}
/*# sourceMappingURL=main.css.map */