:root {
    --main-color: #494949;
    --second-color: #313131;
    --third-color: #faf9f6;
    --text-color: #494949;
    --title-color: #494949;
    --link-color: #494949;
}
html{
    margin: 0 !important;
}
body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
    background: var(--third-color);
    padding: 0 !important;
    font-weight: 400;
}
a{
    text-decoration: none;
    color: var(--link-color);
}
a:hover{
    color: #000;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6{
    color: var(--title-color);
}

*{
    transition: all 0.2s ease-out;
}

.placehold{
    padding: 500px 0;
}

section{
    padding: 60px 0;
}

header{
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
}
header .top{
    background: var(--second-color);
    padding: 10px 0;
}
header .top a{
    color: #fff;
    font-size: 15px;
}
header .top a:hover{
    color: #e1e1e1;
}
header ul.social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
header ul.social a{
    font-size: 18px;
}

header .logo{
    display: block;
    margin: 30px auto;
    max-width: 375px;
}

ul.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
ul.menu li a:hover{
    color: #000;
}

section.home{
    text-align: center;
    height: calc(100vh - 200px);
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 500px;
}
header .menu-open{
    display: none;
}

section.about p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}
section.about img{
    border-radius: 12px;
}
h2.title{
    margin-bottom: 30px;
}
.form-group{
    margin-bottom: 15px;
}
.btn-theme{
    background: var(--main-color);
    color: #fff;
}
.btn-theme:hover{
    background: #000;
    color: #fff;
}
ul.menu li.active a{
    color: #000;
}

.post-item{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;

}
.post-item img{
    width: 30%;
}

.product-item img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    display: block;
}
.product-item h4{
    margin: 10px 0;
    font-size: 16px;
}
.product-item {
    text-align: center;
    margin-bottom: 2rem;
}
.page-white{
    margin-top: 3rem;
    padding-top: 3rem;
    background: #fff;
}

section.about .reverse{
    flex-direction: row-reverse;
}


section.home img{
    max-height: calc(100vh - 270px);
}
@media(max-width:768px){
    section.about img{
        margin-bottom: 30px;
    }
    section.about .reverse{
        flex-direction: column;
    }
    .product-item h4{
        margin: 10px 0;
        font-size: 13px;
    }
    .page-white{
        margin-top: 2rem;
        padding-top: 2rem;
        background: #fff;
    }
    .post-item{
        flex-wrap: wrap;
        gap: 15px;
    }
    ul.menu li.active a{
        color: #e1e1e1;
    }
    .post-item img{
        width: 100%;
    }
    section{
        padding: 30px 0;
    }
    section.home{
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
    }
    header .top .row{
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }
    header .justify-content-end{
        justify-content: center !important;
    }
    header .top a{
        font-size: 13px;
    }
    header ul.social a{
        font-size: 15px;
    }
    header .alt .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header .menu-open{
        display: block;
        font-size: 24px;
        margin: 15px 0;
    }
    header .logo{
        margin: 15px 0;
        max-width: 240px;
    }
    ul.menu{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        background: var(--second-color);
        padding: 10px;
        gap: 10px;
    }
    ul.menu.show{
        display: flex;
    }
    ul.menu li a{
        color: #fff;
    }
    ul.menu li a:hover{
        color: #e1e1e1;
    }
}