:root{
    --base-green: #007853;
    --dark-green: #032821;
    --nav-text: #6DC600;
    --lighter-green: #00AA80;
    --black: #4A4A4A;
    --white: #FFFFFF;
    --grey: #EFEFEF;
    --dark-grey: #DBDBDB;
    --yellow: #FFCF00;
    --openSans: "Open Sans";
    --gochiHand: "Gochi Hand";
    --dark-black: #032821;
}

header{
    height: 120px;
    background-color: var(--base-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed !important;
    top: 0;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 16px;
    z-index: 10;
}
nav{
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.nav-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.navb{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.burger {
    font-size: 1.2em;
    display: none;
  }


#logo-container{
    margin-bottom: 20px;
}

#nav-list{
    display: flex;
    flex-direction: row;
    color: var(--nav-text);
    list-style: none;
    gap: 80px;
    justify-content: center;
}

.nav-item{
    text-decoration: none;
    color: var(--nav-text);
    font-family: var(--openSans);
    font-size: 14px;
    font-weight: 600;
}

.nav-item:hover{
    scale: 1.1;
}

#bar-container {
    position: fixed;
    width: 100%;
    top: 120px;
    height: 7px;
    z-index: 10;
  }
  
  #bar {
    width: 0;
    height: 100%;
    background: rgb(13,164,118);
    background: linear-gradient(90deg, rgba(13,164,118,1) 0%, rgba(27,184,145,1) 44%, rgba(59,226,185,1) 85%);
  }
  

#intro{
    min-height: calc(80vh - 120px);
    margin-top: 120px;
    background-image: url("../assets/first-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
    display: flex;
    align-items: center;
    padding-left: 20%;
    font-family: var(--openSans);
    color: var(--white);
    margin-top: 120px;
}

#intro-text{
    width: 50%;
    max-width: 400px;
}

#intro-text-pretitle{
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

#intro-text-title{
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

#intro-text-paragraph{
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 2rem;
}

#intro-text-button{
    border: none;
    background-color: var(--lighter-green);
    border-radius: 31px;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    padding: 16px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#intro-text-button:hover{
    scale: 1.1;
}

.basic-features{
    min-height: 100vh;
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
}

.basic-features--dark{
    background-color: #004B3A;
    padding-top: 150px;
    position: relative;
}

.basic-features-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 65px;
    text-align: center;
}

.basic-features-header--title{
    font-family: var(--gochiHand);
    font-size: 58px;
    margin-bottom: 2rem;
    color: var(--lighter-green);

}

.basic-features-header--title--dark{
    color: var(--lighter-green)
}

.basic-features-header--paragraph{
    font-family: var(--openSans);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 46px;
    max-width: 680px;
    text-align: center;
    color: var(--black);
}

.basic-features-header--paragraph--dark{
    color: var(--white);
}

.basic-features-container{
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
   
}

.basic-feature{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding-bottom: 20px;
    max-width: 1000px;
   
}

.basic-feature--right{
    display: flex;
    /* flex-direction: row-reverse; */
}


.basic-feature-text{
display: flex;
flex-direction: column;
font-family: var(--openSans);
width: 30%;
align-items: center;
text-align: start;
}

.basic-feature-title{
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight: 300;

}

.basic-feature-title--dark{
    color: var(--white)
}

.basic-feature-text--title{
    font-weight: 900;
    font-size: 36px;
    color: var(--base-green);
    margin-bottom: 20px;
    text-align: start;
    width: 100%;
}
.basic-feature-text--title--dark{
    color: var(--white);
}

.basic-feature-text--paragraph{
    font-size: 18px;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 300;
}

.basic-feature-text--paragraph--dark{
    color: var(--white);
}

.basic-feature-text--list{
    list-style: none;
    padding-left: unset !important;
}

.basic-feature-text--list--dark{
    color: var(--white)
}


.basic-feature-text--list-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 4;
    text-align: center;
    align-items: center;
}


.basic-feature-text--list-mark{
    width: 41px;
    height: 41px;
    min-width: 41px;
    background-color: var(--yellow);
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basic-feature-text-slider--paragraph{
    display: flex;
    align-items: center;
    font-size: 18px;

}
.basic-feature-text-slider--paragraph p{
    margin-bottom: unset;
    font-size: 16px;

}



.basic-feature-instructions{
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    max-width: 600px;
    max-height: 400px;
}

.basic-feature-instructions--container{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
    gap: 1rem;
}



.basic-feature-instructions--item{
    height: 260px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2rem;
}


.separator{
    height: 1px;
    width: 100%;
    background-color: var(--grey);
    margin-bottom: 40px;
}

.separator--dark{
    background-color: var(--base-green);
}

#card-container{
    width: 450px;
    height: 281.25px;
    border-radius: 20px;
    position: absolute;
    margin: auto;
    top: -170px;
    right: 0;
    left: 0;
    margin: auto;
}


.swiper-pagination-bullet{
    background-color: #9ff0ca;
    height: 10px;
    width: 10px;
}
.swiper-pagination-bullet-active{
    background-color: var(--base-green);
}
.swiper-section{
    max-width: 1200px;
}

.slider-section{
    padding-top: 100px;
    padding-bottom: 220px;
    background-color: var(--grey);

}

.slider-section--dark{
    padding-bottom: 80px;
    background-color: var(--dark-green);
}

.slider-section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

.slider-section-header--title{
    font-family: var(--openSans);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--base-green);
}

.slider-section-header--paragraph{
    font-family: var(--openSans);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 720px;
    text-align: center;
    color: var(--black);
    font-weight: 400;
}

.slider-section-header--paragraph--dark{
    color: var(--white);

}

.slider-section-slider{
    margin-bottom: 100px;
}

.swiper-button-prev{
    color: var(--base-green);
    font-size: 30px;
    font-weight: 900;
}



.slider-section-slider--dark{
    margin-bottom: unset;
}

.slider-section-slide{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.slider-section-slide--foto{
    width: 100%;
    height: 130px;
    max-width: 185px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    background-position: center;
}

.slider-section-slide--title{
    font-family: var(--openSans);
    color: var(--base-green);
    margin-bottom: 1rem;
    font-weight: 900;
    font-size: 18px;
}

.slider-section-slide--paragraph{
    max-width: 248px;
    font-weight: 300;
}

.slider-section-slide--paragraph--dark{
    color: var(--white);
}

.slider-buttons{
    position: absolute;
    width: 100%; 
    height: 10px;
    top: 90px;
}

.slider-buttons-features{
    position: absolute;
    width: 100%; 
    height: 50px;
    top: 45%;
}

.swiper-button-prev{
    color: var(--base-green);
}

.swiper-button-next{
    color: var(--base-green);
}

.swiper-button--dark{
    color: var(--white);
    font-size: 20px;
}

.swiper-pagination--dark > .swiper-pagination-bullet{
    background-color: var(--white);
}

.swiper-pagination--dark > .swiper-pagination-bullet-active{
    background-color: #6DC600;
}
#ventajas{
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, #EFEFEF 50%, #00AA81 50%);
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ventajas-header {
    display: flex;
    padding: 0 10%;
    flex-direction: column;
    align-items: center;
}

.ventajas-header > h2 {
    font-family: var(--gochiHand);
    font-size: 58px;
    margin-bottom: 2rem;
    color: var(--base-green);
    text-align: center;
}

.ventajas-header > p {
    font-family: var(--openSans);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 46px;
    max-width: 680px;
    text-align: center;
    color: var(--black);
}

.ventajasContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
}

.ventajasButtonsContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ventajasButton {
    border: none;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 300px;
    background-color: var(--base-green);
    color: var(--white);
    height: 100%;
    width: 100%;
    min-width: 300px;
}

.activeVentajasButton {
    background-color: var(--white);
    color: var(--base-green);
}

.domiciliaItem{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    height: 100%;
    padding: 3rem; 
    max-width: 1286.22px;
    background-color: white;
    justify-content: center;
    width: 100vw;
}
.ventaja{
    display: none;
}

.activeItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 260px;
    background-color: white;
    text-align: center;

}

.ventaja > img{
    width: 90px;
    height: 100px;
    margin-bottom: 20px;
}

.ventajaTitle{
    font-family: var(--gochiHand);
    color: var(--base-green);
    font-size: 30px;
    
}

.ventajaText{
    font-family: var(--openSans);
    font-size: 15px;

}
p.ventajaText{
    margin-bottom: unset;
}

footer{
    background-color: var(--base-green);
    width: 100%;
    height: 80px;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 .footer-links{
    display: flex;
    flex-direction: row;
    gap: 60px;
  
  }

  .footer-link{
    color: #FCFCFC;
    text-decoration: none;
    font-family: var(--openSans);
    font-size: 14px;
    font-weight: bold;
  }

  @media(max-width: 1000px){
    #intro{
        background-position: 70%;
        

    }
    .basic-features-header{
        padding: 0 10%;
    } 
    .basic-feature{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .basic-feature-text{
        width: 100%;
        text-align: center;
    }

    .basic-feature-text--list{
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2em;
    }

    .basic-feature-text--title{
        text-align: center;
    }

    .basic-feature-text--list-item{
        float: left;
    }
    .basic-feature-instructions{
        width: 100%;

    }
    footer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 10px;
        height: 100px;
    }
    .footer-links{
        gap: 20px;
    }

    .footer-link{
        font-size: 10px;
    }
  }

  ul{
    padding-left: unset !important;
  }

  @media (max-width: 900px){
    .basic-features{
        padding-top: 80px;
    }
    .basic-features--dark{
        padding-top: 120px
    }
    .basic-features-header{
        margin-bottom: 40px;
    }
    .basic-feature{
        min-height: 600px;
        padding-bottom: 80px;
        gap: unset;
    }

    .basic-feature-text--paragraph{
        max-width: 500px;
    }


    .burger {
        display: block;
        font-size: 25px;
        position: absolute;
        right: 5%;
        top: 10%;
        color: var(--nav-text);
    }
    .burger:hover{
        scale: 1.1;
        cursor: pointer;
    }
    .navb {
        margin: 0;
        background: #FFFFFF;
        position: absolute;
        right: 100%;
        width: 100vw;
        top: 70px;
      }
      #nav-items {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
      }
      .nav-active {
        background-color: var(--base-green);
        width: 100vw;
        height: auto;
        left: 0%;
        top: 62px;
        padding-bottom: 20px;
        padding-top: 20px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.29);
        z-index: -1;

      }
      header{
        height: 80px;
        z-index: 10;
      }
      #intro{
        margin-top: 80px;
      }

      #nav-list{
        flex-direction: column;
        gap: 10px;
      }
      
      #bar-container{
        top: 80px;
      }

      #intro{
        padding-left: 10%;
        padding-top: 10%;
        padding-bottom: 10%;
        min-height: calc(100vh - 80px);
    }
      
  }


  @media (max-width: 600px){
    #intro-text{
        width: 60%;
    }
    .basic-feature-instructions{
        max-width: 550px;
    }
    .basic-feature-instructions--item{
        height: 220px;
    }

  }

  @media (max-width: 550px){

    .basic-feature{
        padding-bottom: 40px;
    }
    .basic-feature-text--list-item{
        flex-direction: column;
    }
    #card-container{
        width: 376px;
        height: 235px;;
        top: -130px
    }
    .slider-section{
        padding-bottom: 140px;
    }
    .slider-section-slide--foto{
        max-width: 250px;
    }

    .swiper-section{
        max-width: 100%;
    
    }
    .basic-feature-instructions{
        width: 100vw;
        max-width: unset;
    }
    .basic-feature-instructions--item{
        height: 45vw;
        width: 90vw;
    }

    .basic-feature-text{
        padding-left: 1rem;
        padding-right: 1rem;
    }

}

  @media (max-width: 460px) {
    .nav-item{
        font-size: 12px;
    }
  
    #intro-text{
        width: 80%;
    }
    #card-container{
        width: 280px;
        height: 175px;;
        top: -100px
    }
    h2{
        font-size: 38px !important;
    }
 
  }

  @media (max-width: 750px){
    .ventajasButtonsContainer{
        width: 100%;
    }
    .ventajasButton{
        min-width: unset;
    }
    .activeDomiciliaItem{
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .ventajasContainer{
        padding: 0;
    }
  }

  @media (max-width: 423px){
    .ventajasButton{
        height: 80px;
    }
    .ventaja{
        padding: 1rem;
        height: 320px;
    
    }

  }

  @media (max-width: 1200px){
    .swiper-section{
        max-width: 80%;
    }
  }

  