#section__hero {
  margin-top: 0;
  padding: 0;
  position: relative;
  height: 100vh;
  z-index: 1;
  &::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006b;
    z-index: 1;
    pointer-events: none;
  }
  .accentDivider {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .flex__row {
    display: flex;
    flex-direction: row;
  }
  .flex__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .text__align__c {
    text-align: center;
  }
  h1 {
    color: var(--color-white);
    width: 100%;
    text-align: center;
    transform-origin: top center;
  }
  h2,
  h2 > strong {
    color: var(--color-white);
    width: 100%;
    text-align: center;
    transform-origin: top center;
    font-size: var(--size-2xl);
  }
  .column__2__hero {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  .btn__hero__container {
    margin-top: 2em;
    display: flex;
    gap: 1px;
    .btn:first-child {
      border-radius: 8px;
    }
    .btn:last-child {
      border-radius: 8px;
    }
  }
  .img__hero {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    video {
      height: 100%;
      object-fit: cover;
    }
  }
}

#section__happyPlace {
  background: var(--bg-cream);
  overflow: hidden;
  padding: 5% 10% 8%;
  &::before {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    bottom: -10%;
    right: 0;
    background-image: url(/images/textura_manuscrito.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
  }
  .column__1:nth-child(2) {
    max-width: 1600px;
    align-self: center;
  }
  .happyPlace__richText {
    width: 100%;
    align-self: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    h2 {
      width: 100%;
      display: flex;
      strong {
        transform-origin: top center;
      }
    }
  }
  .intro__imgWrapper {
    position: relative;
    height: 60vh;
    width: 100%;
  }
  .intro__imgInner {
    width: 100%;
    height: 100%;
  }
  .width__55{
    align-self: center;
  }
  .column__1:nth-child(3){
    max-width: 40%;
    padding-top: 8%;
  }
}

#section__experiencias{
  padding: 8% 10%;
  background-color: #ECEBEA;
  .column__1:first-child{
    align-items: center;
    margin-bottom: 5%;
    .accentDivider{
      background-color: var(--color-accent);
    }
    h2{
      text-align: center;
      strong{
        transform-origin: top center;
      }
    }
    .inner__p{
      margin-top: 3%;
      max-width: 50%;
    }
  }
  .column__1:last-child{
    .experiencia{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
      img{
        width: 100px;
        height: auto;
        margin-bottom: 30px;
      }
      h3{
        text-align: center;
      }
      p{
        text-align: center;
      }
    }
  }
}

#section__actividades{
  padding: 8% 0%;
  overflow: hidden;
  background-color: #ECEBE9;
  .column__1:first-child{
    padding: 0 10% 3%;
    .accentDivider{
      margin-top: 20px;
      margin-bottom: 0px;
    }
    h2{
      display: inline-block;
      strong{
        display: inline-block;
        transform-origin: left center;
      }
    }
  }
  .column__1:last-child{
    .splide{
      padding: 0px;
      .splide__pagination{
        .splide__pagination__page{
          background-color: var(--color-secondary-light);
        }
        .splide__pagination__page.is-active{
          background: var(--color-accent);
        }
      }
      .splide__slide{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
        img{
          min-height: 50vh;
          object-fit: cover;
          width: 100%;
          height: 100%;
        }
        h3{
          margin-top: 20px;
          font-size: var(--size-sm);
          opacity: 1 !important;
          transform: translate(0px) !important;
        }
      }
      .splide__arrows{
        position: absolute;
        top: calc((5% + 85px)*-1);
        right: 10%;
        width: 120px;
        .splide__arrow--prev{
          background-image: url(/images/prev_outline.svg);
        }
        .splide__arrow--next{
          background-image: url(/images/next_outline.svg);
        }
      }
    }
  }
}

#section__placeToBe {
    background: var(--bg-primary);
    position: relative;
    padding: 10%;
    &:before{
      content: "";
      background: url('/images/greca_dorada.svg');
      width: 100%;
      height: 150px;
      position: absolute;
      top: -75px;
      left: 0;
      z-index: 5;
    }
    h2{
      color: var(--color-white);
      text-align: center;
      strong{
        color: var(--color-accent);
        transform-origin: top center;
      }
    }
    ul {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: calc(32% - 50px) 36% calc(32% - 50px);
      justify-items: center;
      align-items: center;
      gap: 50px;
      margin-top: 10%;
    }
    li{
      display: flex;
      height: 100%;
      flex-direction: column;
      justify-content: center;
      gap: 50px;
      picture{
        box-shadow: 5px 30px 20px rgba(0,0,0,0.4);
        border-radius: 15px;
        overflow: hidden;
      }
      h3{
        font-family: var(--font-title);
        font-weight: 400;
        text-transform: capitalize;
        font-size: var(--size-xl);
        color: var(--color-secondary-light);
        margin: 0px;
        line-height: 0px;
      }
      &:nth-child(1){
        align-items: flex-end;
        picture:first-child{
          width: 60%;
        }
        picture:last-child{
          width: 90%;
        }
      }
      &:nth-child(3){
        align-items: flex-start;
        picture:nth-child(2){
          width: 90%;
        }
        picture:nth-child(3){
          width: 60%;
        }
      }
    }
    
  }
  
  #section__recentArticles{
    background: url('../assets/img/bg_cream.jpg');
    h2{
      text-align: center;
      strong{
        transform-origin: top center;
      }
    }
    .recentblog__wrapper{
      margin-top: 3%;
      align-items: center;
    }
    .splide{
      margin-top: 2em;
      -webkit-box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.25);
      -moz-box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.25);
      box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.25);
      border: 20px solid white;
    }
    .splide, .splide__track, .splide__list{
      background-color: white;
    }
    .btn{
      margin-top: 2.5%;
    }
    .splide__pagination__page.is-active{
      background: var(--color-accent) !important;
    }
    .splide__arrows--ttb .splide__arrow{
      left: calc(100% - 70px);
      transform: rotate(90deg) translateY(-50%);
    }
    .splide__pagination--ttb{
      left: calc(100% - 30px);
    }
  }

  #section__discoverBenefits{
    height: 100vh;
    position: relative;
    .blackDisplayOverlay{
      background-color: rgba(0, 0, 0, 0.7);
    }
    .accentDivider{
      background-color: var(--color-accent) ;
    }
    .column__1{
      z-index: 2;
      align-items: center;
      justify-content: center;
      img{
        width: 100px;
        height: auto;
        margin-bottom: 50px;
      }
      h2{
        color: var(--color-white);
        strong{
          transform-origin: center center;
        }
      }
      p{
        text-align: center;
        color: var(--color-white)
      }
    }
    
    picture{
      z-index: -1;
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      img{
        width: 100%;
        height: 100%;
        object-fit: cover
     }
    }
  }

  #actividades{
    display: block;
  }
  #actividades__m{
    display: none;
  }








  
@media (max-width: 1024px) {

  #section__hero{
    height: 50vh;
    h2{
      font-size: var(--size-xl);
    }
    .img__hero, picture, img{
      height: 100%;
      img{
        object-fit: cover;
      }
      
    }
  }

  #section__happyPlace{
    padding: 10% 5%;
  }

  #section__experiencias {
    padding: 10% 5%;
    .column__1:last-child {
      .experiencia {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 5%;
        p{
          font-size: var(--size-sm);
        }
        img {
          width: 80px;
          height: auto;
          margin-bottom: 20px;
        }
      }
    }
  }

  #section__actividades {
    padding: 8% 5% calc(10% + 50px);
    h2{
      strong{
        position: relative;
        bottom: 5px;
      }
    }
    .column__1:first-child {
      padding: 0 5% 3%;
    }
    .column__1:last-child {
      padding: 0 5% 5%;
    }
  }

  #section__recentArticles{
    padding: 10% 5%;
  }
  #section__happyPlace{
    .column__1:nth-child(3) {
      max-width: 100%;
    }
  }

  #actividades{
    display: none;
  }
  #actividades__m{
    display: block;
    .splide__arrows{
      top: calc((5% + 40px)*-1) !important;
    }
  }

  #section__placeToBe {
    padding: calc(10% + 50px) 5% 10%;
    &::before {
      content: "";
      width: 100%;
      height: 100px;
      position: absolute;
      top: -50px;
      left: 0;
      z-index: 5;
    }
    ul{
      grid-template-columns: repeat(3, 3fr);
      grid-gap: 10px;
      li{
      gap: 10px;
        h3 {
          font-size: var(--size-md);
          color: var(--color-secondary-light);
          margin: 10px 0px;
          line-height: 0px;
        }
        picture{
          border-radius:  5px;
          box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
        }
        &:nth-child(3) {
          & picture:nth-child(2) {
            width: 100%;
          }
        }
      }
    }
  }

  #section__discoverBenefits {
    height: 50vh;
    position: relative;
    .column__1{
      img{
        width: 70px;
        margin-bottom: 30px;
      }
      h2{
        font-size: var(--size-lg);
      }
    }
  }

}



@media (max-width: 768px) {
  #section__actividades{
    overflow: inherit;
    .splide__arrows{
      position: absolute;
      top: unset !important;
      bottom: 0;
      width: 100% !important;
      height: 45px;
      left: 0;
    }
  }


}