@media (max-width: 1700px) {
    header{
        padding: 18px 8%;
    }
    header.sticky{
        padding: 7px 8%;
    }
    section{
        padding: 50px 8% 40px;
    }
}
@media (max-width: 1200px) {
    header{
        padding: 14px 5%;
    }
    header.sticky{
        padding: 7px 5%;
    }
    section{
        padding: 45px 5% 35px;
    }
    :root{
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }
    .home{
        height: 90vh;
    }
}

@media (max-width: 1050px) {
    .feature-content{
        gap: 1.5rem;
    }
    .about{
        gap: 3rem;
    }
    .culture, .contact{
        gap: 3rem;
    }
}
@media (max-width: 800px) {
    .about, .culture, .contact{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 750px) {
    #menu-icon{
        display: block;
    }
    #menu-close{
        display: none;
    }
    .navbar{
        position: absolute;
        width: 100%;
        height: 70vh;
        padding: 50px 60px;
        top: 0;
        bottom: 0;
        left: 100%;
        right: 0;
        display: flex;
        flex-direction: column;
        background: rgba(60, 45, 25, 0.2);
        backdrop-filter: blur(35px);
       
        transition: all .50s ease;
    }
    .navbar a{
        display: block;
        color: var(--main-color);
        padding: 0;
        margin: 0px 0px 20px 0px;
        font-size: 1.6rem;
        font-weight: 400;
    }
    .navbar.open{
        left: 0;
    }
    .services-row{
        display: flex;
        flex-direction: column;
        gap: 3rem;
        background-color: transparent;
        align-items: center;
        text-align: center;
    }
    .home-services{
        height: 100vh;
    }
    .home-price{
        height: 100vh;
    }
    .price-row{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background-color: transparent;
        align-items: center;
        text-align: center;
    }
    .price-row .row-img{
        overflow: hidden;
        width: 150px;
        height: 150px;
        margin: 0 auto;
        margin-bottom: 20px;
        margin-top: 20px;
        border-radius: 50%;
        cursor: pointer;
    }
    .price-row .price-col-right{
        text-align: center;
    }
    .price-row .promotion{
        text-align: left;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    :root{
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .home{
        height: 85vh;
    }
}

@media (max-width: 450px) {
    header{
        padding: 12px 3%;
    }
    header.sticky{
        padding: 7px 3%;
    }
    section{
        padding: 60px 3% 50px;
    }
    :root{
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .home{
        height: 90vh;
    }
}

@media (min-width: 350px) and (max-width: 449px) {
    header{
        padding: 10px 3%;
    }
    header.sticky{
        padding: 10px 3%;
    }
    .home{
        height: 100vh;
    }
    :root{
        --h1-font: 2.5rem;
        --h2-font: 1.8rem;
    }
}