@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root{
    --primary-color: #109285;
    --secondary-color: #232E6C;
    --text-color:#193431;
    --font-fam: "DM Sans", sans-serif;
}

body{
    font-family:var(--font-fam);
    font-size:16px;
    color:var(--text-color);
}

.container{
    padding:16px;
}

h1,h2,h3{
    font-weight:800;
}

h1, h2{
   color:var(--primary-color)
}


h1{
    font-size: clamp(3rem, 2.6087rem + 1.7391vw, 4rem);
}

h2{
    font-size: clamp(2rem, 1.7554rem + 1.087vw, 2.625rem);
}

h3{
    font-size: clamp(1.25rem, 1.1522rem + 0.4348vw, 1.5rem);
}

p{
    font-size:16px;
    line-height:1.6;
}

.hero-section{
    background:#F7FDEF url(/img/hero-img.jpg) no-repeat center center;
    background-size:cover;
}


.hero-section h1{
    font-size: clamp(3.75rem, 2.2826rem + 6.5217vw, 7.5rem);
    font-weight:800;
    color:var(--primary-color);
}

.favstore-logo{
    width:200px;
    padding:10px;
    background:#fff;
    border-radius:5px;
    margin-bottom:10px;
  }



.ingredients{
    background:#0EA597 url(img/ingredients-bg.jpg) no-repeat;
    background-size:cover;
    background-attachment:fixed;
}

.ingredients h2{
    color:#fff;
}

.ingredient-item{
background: rgba(255, 255, 255, 0.5);
border-radius: 25px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
margin-bottom:60px;
padding:60px 30px;
}

.ingredient-img{
    max-width:250px;
    object-fit:contain;
}

.benefits h3{
    color:var(--primary-color);
}

.orderbtn{
    text-decoration: none;
    font-size:20px;
    font-weight:700;
    background:var(--secondary-color);
    padding:15px 30px;
    margin:0 auto;
    color:#fff;
    border-radius:30px;
    text-align:center;
    transition:0.3s ease-in-out;
    margin-bottom:20px;
}

.orderbtn span{
    color:#fdec34;
}

.orderbtn:hover{
    background-color: var(--primary-color);
}

ul.list-style-check{
    list-style:none;
    padding-left:0
}

ul.list-style-check > li{
    display:flex;
    margin-bottom:10px;
    gap:5px;
}

ul.list-style-check > li:before{
    content:'';
    background:url(./img/check.png) no-repeat center center;
    width:18px;
    height:18px;
    background-size:cover;
    top:4px;
    position:relative;
}

.guarantee{
    background:#1E8178;
    color:#fff;
}

.guarantee h2{
    color:#fff;
}

footer{
    background:#063F39;
    color:#fff;
    padding-left:16px;
    padding-right:16px;
}

@media(min-width:680px){
    .hero-section img{
        max-width:500px;
    }
}

@media(max-width:1024px){
    .hero-section{
        background-position:85% 50%;
    }
}

@media(max-width:767px){
    .hero-section{
        background-position:left center;
        padding-bottom:0 !important;
    }

    .hero-section .logo{
        padding-left:16px;
        padding-right:16px;
    }

    .hero-section img {
        margin-top:0;
        margin-bottom:20px;
    }

    .hero-section > .container{
        padding:0;
        

    }
    .ingredient-item > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ingredient-img{
        max-width:180px;
    }

}
