:root{ --green:#6E8A3C; }
*{
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s cubic-bezier(.38,1.15,.7,1.12);
    font-weight: normal;
    font-family: cursive;
}
*::selection{ background:var(--green); color:#fff; }

html{ font-size: 10px; overflow-x: hidden; scroll-behavior: smooth; }

section{
    min-height: 100vh;
    padding:0 7%;
    padding-top: 9rem;
}

.btn{
    padding:.7rem 2rem;
    font-size: 1.7rem;
    background:#666;
    color:#fff;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.btn:hover{ background:#444; }

.heading{
    text-align: center;
    padding:1rem;
    color: var(--green);
    font-size: 3.5rem;
}

header{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:2rem 7%;
    background:#fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo img{ height:4rem; }

header .navbar a{
    font-size: 2rem;
    color:#aaa;
    margin-left: 3rem;
}

header .navbar a:hover{ color:var(--green); }

#menu{
    font-size: 3rem;
    color:#666;
    cursor: pointer;
    padding:.5rem 1rem;
    border:.2rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    display: none;
}

.home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:url(images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{ padding-left: 10rem; width:75rem; }

.home .content h3{ font-size: 4.5rem; color:var(--green); }

.home .content p{
    font-size: 2rem;
    color:#aaa;
    padding:1rem 0;
}

.product .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product .box-container .box{
    border:.1rem solid rgba(0,0,0,.1);
    margin:2rem;
    padding:1rem;
    border-radius: .5rem;
    background:#fff;
    width: 30rem;
    text-align: center;
}

.product .box-container .box img{
    height:20rem;
    width:20rem;
    object-fit: cover;
}

.product .box-container .box h3{ font-size: 2rem; color:var(--green); }

.product .box-container .box .price{ font-size: 2rem; color:#666; }

.product .box-container .box .icons{ padding:1rem 0; }

.product .box-container .box .icons a{
    font-size: 1.5rem;
    color:#666;
    height:5rem;
    width:5rem;
    line-height: 5rem;
    border:.1rem solid rgba(0,0,0,.1);
    border-radius: .5rem;
    margin:.5rem;
}

.product .box-container .box .icons a:hover{ background:#eee; }

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .row .image{ flex:1 1 40rem; }

.about .row .image img{ width:100%; }

.about .row .content{ flex:1 1 40rem; padding: 2rem 1rem; }

.about .row .content h3{ color:var(--green); font-size: 2.5rem; }

.about .row .content p{
    color:#aaa;
    font-size: 1.7rem;
    padding:1rem 0;
}

.service .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.service .box-container .box{
    text-align: center;
    width:30rem;
    margin:2rem;
}

.service .box-container .box i{
    font-size: 5rem;
    color:#aaa;
    padding:1rem;
}

.service .box-container .box h3{ font-size: 2rem; color:var(--green); }

.service .box-container .box p{
    font-size: 1.5rem;
    color:#999;
    padding:1rem 0;
}

.review .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.review .box-container .box{
    margin:2rem;
    padding:1rem;
    flex:1 1 35rem;
}

.review .box-container .box .info{
    padding:1rem 0;
    display: flex;
    align-items: center;
}

.review .box-container .box .info img{
    height:7rem;
    width:7rem;
    object-fit: cover;
    border:.5rem solid var(--green);
    border-radius: 50%;
}

.review .box-container .box .info .user{ padding-left: 1rem; }

.review .box-container .box .info .user h3{ font-size: 2rem; color:var(--green); }

.review .box-container .box p{ font-size: 1.5rem; color:#999; }

.contact{ padding-bottom: 3rem; }

.contact .row{
    display: flex;
    flex-wrap: wrap;
    border-radius: 2rem;
    border:.1rem solid rgba(0,0,0,.1);
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.contact .row .image{ flex:1  1 40rem; }

.contact .row .image img{
    height:100%;
    width: 100%;
    object-fit: cover;
}

.contact .row form{ flex:1  1 40rem; padding:2rem 4rem; }

.contact .row form .inputBox{ padding:1rem 0; }

.contact .row form .inputBox h3{
    color:var(--green);
    padding:.5rem 0;
    font-size: 2rem;
}

.contact .row form .inputBox input, .contact .row form .inputBox textarea{
    width: 100%;
    padding:1.5rem;
    font-size: 1.5rem;
    border:.1rem solid rgba(0,0,0,.1);
}

.contact .row form .inputBox textarea{ resize: none; height: 15rem; }

.footer{
    min-height: auto;
    padding-top: 2rem;
}

.footer .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .box-container .box{ margin:2rem; flex:1 1 25rem; }

.footer .box-container .box img{ height:4rem; }

.footer .box-container .box p{
    font-size: 1.5rem;
    color:#999;
    padding: 1rem 0;
}

.footer .box-container .box p i{ padding-right: 1rem; color:var(--green); }

.footer .box-container .box h3{
    font-size: 2.5rem;
    color:var(--green);
    padding:1rem 0;
}

.footer .box-container .box a{
    height:5rem;
    width:5rem;
    line-height: 4.8rem;
    text-align: center;
    border:.1rem solid rgba(0,0,0,.1);
    border-radius: 50%;
    font-size: 2rem;
    color:#aaa;
    margin-right: 1rem;
}

.footer .box-container .box a:hover{ background:#999; color:#fff; }

/* media queries  */

@media (max-width:991px){
    html{ font-size: 55%; }

    .home .content{ padding:0; }
}

@media (max-width:788px){
    header{ padding: 5px 3%; flex-direction: column; row-gap: 10px; }

    section{ padding:0 3%; padding-top: 9rem; }

    .home{ background: none;}

    .home .content{ width: auto; }
}

@media (max-width:400px){
    html{ font-size: 50%; }
}