* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    transition: .25s ease-in-out;
    box-sizing: border-box;
    text-transform: capitalize;
    border: none; 
    outline: none;
}
:root{
    --main-color:#d3ad7f;
    --hovered: #d3ad7f6b;
    --black:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255,.3);
}
html {
    scroll-behavior: smooth;
    scroll-margin-top: 1rem;

}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}
body {
    width: auto;
    background-color: var(--bg);
    font-family: 'Roboto', sans-serif;
}
button {
    cursor: pointer;
    border-radius: 5px;
}
#ulClose0 {
    display: none;
}
header nav {
    background-color: var(--bg);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    color: #fff;
    position: relative;
    border-bottom: var(--border);
}
header nav .img {
    width: 100px;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav .img img {
    width: 80%;
    height: 93%;
} 
header nav ul, header .stuffs section.cart  {
    position: absolute;
    top: 70px;
    right: 0;
    width: 50%;
    height: calc(100vh - 70px);
    background-color: #fff;
    padding: 40px;
    font-size: 1.5rem;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%); /* close */
}
header nav ul {
    position: fixed;
    top: 0;
    height: 100vh;
}
header nav ul.active {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); /* open */
    z-index: 500;
}
header nav ul i {
    color: #000;
    float: right;
}
header nav ul li {
    width: 100%;
    height: 9%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header nav ul li a {
    color: #000;
    font-weight: 600;
    width: 100%;
    height: 100%;
}
header nav .space{
    width: 150px;
}
header .stuffs ul{
    position: fixed;
    height: 100vh;
    top: 70px;
    right: 0;
    width: 50%;
    height: calc(100vh - 70px);
    background-color: #fff;
    padding: 40px;
    font-size: 1.5rem;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%); /* close */
}
header .stuffs ul.active {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); /* open */
}
header .stuffs ul i {
    color: #000;
    float: right;
}
header .stuffs ul li {
    width: 100%;
    height: 9%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .stuffs ul li a {
    color: #000;
    font-weight: 600;
    width: 100%;
    height: 100%;
}
header nav .icons {
    position: fixed;
    z-index: 999;
    right: 10px;
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000;
    border-bottom-left-radius: 10px;
}
header nav .icons i {
    font-size: 1.3rem;
    cursor: pointer;
}
header nav .icons i:hover {
    color: var(--main-color);
}
header nav .icons #barIcons0 {
    display: none;
}
header nav .icons div{
    position: relative;
}
header nav .icons div p {
    right: 0;
    position: absolute;
}
header .stuffs {
    position: fixed;
    width: 100%;
    z-index: 996;
}
header .stuffs .search{
    position: fixed;
    left: 0;
    width: 98%;
    height: 70px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0); /* close */
}
header .stuffs .search.active {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%); /* open */
}
header .stuffs .search input {
    width: 90%;
    height: 100%;
    padding: 20px;
    font-size: 1.2rem;
}
header .stuffs .search input::placeholder {
    font-size: 1.2rem;
}
header .stuffs .search #label {
    position: absolute;
    top: 40%;
    right: 10px;
    font-size: 1.3rem;
}
header .stuffs section.cart {
    width: 100%;
    padding: 5px;
    position: fixed;
    top: 70px;
    overflow-y: scroll;
}
header .stuffs section.cart::-webkit-scrollbar{
    width: .7rem;
}

header .stuffs section.cart::-webkit-scrollbar-track{
    background: transparent;
}

header .stuffs section.cart::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}
header .stuffs section.cart.active {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
header .stuffs section.cart .container {
    width: 100%;
    height: 150px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .stuffs section.cart .container div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .stuffs section.cart .container .img {
    width: 40%;
}
header .stuffs section.cart .container .img img {
    width: 70%;
    height: 70%;
}
header .stuffs section.cart .container .text {
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
}
header .stuffs section.cart .container .text h3 {
    font-size: 1.6rem;
}
header .stuffs section.cart .container .text p {
    font-size: 1.2rem;
    color: var(--main-color);
}
header .stuffs section.cart .container .delete {
    width: 10%;
}
header .stuffs section.cart .container .delete:hover {
    color: var(--main-color);
}
header .stuffs section.cart button {
    width: 100%;
    height: 40px;
    color: #fff;
    background-color: var(--main-color);
}
header section.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 100;
}
header section.whatsapp .main {
    width: calc(100vw - 20px);
    height: 400px;
    background-color: blue;
    margin-bottom: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}
header section.whatsapp .main.active{
    display: flex;
}
header section.whatsapp .main div {
    width: 100%;
}
header section.whatsapp .main div.header,
header section.whatsapp .main div.footer{
    height: 30%;
}
header section.whatsapp .main div.header{
    background-color: #0000ff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
}
header section.whatsapp .main div.header i{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: #fff;
}
header section.whatsapp .main div.header div.img{
    width: 100px;
    height: 80px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}
header section.whatsapp .main div.header div.img div.dot{
    position: absolute;
    bottom: 7px;
    right: 5px;
    width: 10px;
    height: 10px;
    background-color: rgb(81, 255, 0);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.411);
    border-top: none;
    border-right: none;
}
header section.whatsapp .main div.header div.img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
header section.whatsapp .main div.header div.tex{
    font-size: 1.1rem;
    color: #fff;
}
header section.whatsapp .main div.header div.tex h2{
    font-size: 1.5rem;
}
header section.whatsapp .main div.main1{
    height: 40%;
    background-color: rgba(221, 221, 221, 0.918);
    display: flex;
    justify-content: center;
    align-items: center;
}
header section.whatsapp .main div.main1 div.text{
    width: 90%;
    background-color: #fff;
    padding: 20px;
    position: relative;
    border-radius: 10px;
}
header section.whatsapp .main div.main1 div.text div.point{
    position: absolute;
    top: 0px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
}
header section.whatsapp .main div.main1 div.text span{
    position: absolute;
    bottom: 7px;
    right: 7px;
}
header section.whatsapp .main div.main1 div.text h4{
    font-size: 1rem;
    color: #006eff;
}
header section.whatsapp .main div.main1 div.text p{
    font-size: 1.1rem;
    margin-bottom: 4px;
}
header section.whatsapp .main div.footer{
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header section.whatsapp .main div.footer a{
    background-color: #006eff;
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
    color: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header section.whatsapp .main div.footer a i {
    font-size: 1.5rem;
    margin-right: .5rem;
}
header section.whatsapp .floatingIcons{
    position: relative;
    float: right;
    background-color: rgb(25, 13, 139);
    border-radius: 30px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: #fff;
    padding:  10px 15px;
    cursor: pointer;
}
header section.whatsapp .floatingIcons div.line{
    position: absolute;
    top: -2px;
    left: 0;
    width: 170px;
    height: 60px;
    content: '';
    border-radius: 30px;
    background-color: transparent;
    border: 2px solid var(--main-color);
    animation: line .5s ease-in-out infinite ;
}
@keyframes line {
    0%{
        opacity: 0;
    }
    100%{
        transform: scale(1.1);
        opacity: 1;
    }
}
header section.whatsapp .floatingIcons div.line.active{
    border-width: 0px;
}
header section.whatsapp .floatingIcons div{
    position: absolute;
    top: 7px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #f00;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.411);
    border-top: none;
    border-right: none;
}
header section.whatsapp .floatingIcons i{
    font-size: 2.3rem;
    margin-right: 10px;
}
header section.main {
    width: 100%;
    height: calc(100vh - 70px);
    background-image: url(images/home-img.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
header section.main div.container {
    color: #fff;
    width: 90%;
    height: auto;
    font-size: 1.2rem;
    padding: 5px;
}
header section.main div.container h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}
header section.main div.container a button {
    width: 150px;
    height: 50px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 1.1rem;
    margin-top: 5px;
    border: 2px solid transparent;
}
header section.main div.container a button:hover {
    background-color: var(--hovered);
    border: 2px solid var(--main-color);
    width: 33%;
}
/* about section style */
main section.about {
    background-color: #000;
    height: auto;
    padding: 10px;
}
/* about section div container style */
main section.about section.main div {
    width: 100%;
    height: 100%;
}
main section div.text{
    color: var(--main-color);
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
}
main section div.text h1,
main section div.text span{
    text-transform: uppercase;
}
main section div.text span{
    color: #fff;
}
main section.about section.main{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
}
main section.about section.main div {
    width: 100%;
    height: 50%;
}
main section.about section.main div.img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main section.about section.main div.txt {
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--black);
}
main section.about section.main div.txt h3{
    font-size: 2.2rem;
}
main section.about section.main div.txt p{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffffcb;
}
main section.about section.main div.txt button{
    width: 10rem;
    height: 50px;
    font-size: 1.1rem;
    background-color: var(--main-color);
    color: #fff;
}
main section.about section.main div.txt button:hover {
    width: 11rem;
    background-color: var(--hovered);
    border: 2px solid var(--main-color);
}
/* menu section style */
main section.margin {
    margin-bottom: 2rem;
}
main section.menu div.text, 
main section.products div.text,
main section.reviews div.text,
main section.blogs div.text{
    color: #fff;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}
main section.menu div.text span,
main section.products div.text span,
main section.reviews div.text span,
main section.blogs div.text span{
    color: var(--main-color);
}
main section.menu section.main1 {
    width: 100%;
    padding: 10px 5px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 98%);
    grid-template-rows: repeat(6, 350px);
    grid-gap: 20px;
    justify-content: center;
    position: relative;
}
main section.menu section.main1 .pop{
    position: fixed;
    left: 20px;
    top: 40%;
    z-index: 5;
    width: 150px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--main-color);
    background-color: var(--hovered);
    border-radius: 20px;
    color: #fff;
    font-size: 1.4rem;
}
main section.menu section.main1 .box {
    border: 1px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
/* main section.menu section.main1 .box:hover {
    background-color: #fff;
} */
main section.menu section.main1 .box .inner {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #f5fffa;
    text-align: center;
}
main section.menu section.main1 section.box .img img{
    width: 120px;
    height: 120px;
}
main section.menu section.main1 section.box .txt{
    font-size: 1.1rem;
    transition: all.1s;
}
/* main section.menu section.main1 .box:hover .txt {
    color: #000;
} */
main section.menu section.main1 section.box .txt p {
    font-size: 2rem;
}
/* main section.menu section.main1 section.box .txt p b,
main section.menu section.main1 section.box .txt p span
{
    transition: .0s;
} */
main section.menu section.main1 section.box .txt p span {
    font-size: 1.3rem;
    text-decoration: line-through;
}
main section.menu section.main1 section.box .txt button{
    width: 200px;
    height: 40px;
    color: #000;
    background-color: var(--main-color);
    border: 2px solid transparent;
    font-size: 1.2rem;
    position: relative;
}
main section.menu section.main1 section.box .txt button:hover {
    border-color: var(--main-color);
    background-color: var(--hovered);
}
main section.products section.main2 {
    width: 98%;
    padding: 10px 5px;
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 98%);
    grid-template-rows: repeat(3, 600px);
    grid-gap: 20px;
    justify-content: center;
}
main section.products section.main2 section.box{
    border: 1px solid #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px;
}
main section.products section.main2 section.box div {
    width: 100%;
}
main section.products section.main2 section.box .top {
    height: 20%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
main section.products section.main2 section.box .top button{
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.products section.main2 section.box .top button:hover {
    background-color: var(--hovered);
}
main section.products section.main2 section.box .middle{
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.products section.main2 section.box .middle img {
    width: 70%;
    height: 100%;
}
main section.products section.main2 section.box .bottom{
    height: 30%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem;
}
main section.products section.main2 section.box .bottom h3 {
    opacity: 0;
}
main section.products section.main2 section.box .bottom h3 span {
    text-decoration: line-through;
    font-size: 1.2rem;
}
main section.products section.main2 section.box .bottom section {
    margin: 10px 0;
    color: var(--main-color);
}
main section.reviews section.main3 {
    width: 98%;
    padding: 10px 5px;
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 98%);
    grid-template-rows: repeat(3, 600px);
    grid-gap: 20px;
    justify-content: center;
}
main section.reviews section.main3 div.box {
    border: 2px solid #fff;
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 1.2rem;
    clip-path: polygon(0 0, 100% 11%, 100% 91%, 0% 100%);
    background-color: transparent;
}
main section.reviews section.main3 div.box h1 {
    font-size: 9rem;
    height: 80px;
}
main section.reviews section.main3 div.box img {
    width: 120px;
    height: 120px;
    clip-path: polygon(0 0, 100% 8%, 100% 94%, 0% 100%);
}
main section.reviews section.main3 div.box section {
    font-size: 1.4rem;
    color: var(--main-color);
}
main section.contact section.main4 {
    width: 90%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
main section.contact section.main4 div.box{
    width: 100%;
    height: 50%;
}
main section.contact section.main4 .iframe iframe{
    width: 100%;
    height: 100%;
}
main section.contact section.main4 form {
    width: 100%;
    height: 100%;
}
main section.contact section.main4 .box.input{
    background-color: var(--black);
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 300px;
}
main section.contact section.main4 .input h1 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
}
main section.contact section.main4 .input .inputForm {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
main section.contact section.main4 .input .inputForm div.sm {
    border: var(--border);
    width: 100%;
    height: 30.3%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main section.contact section.main4 .input .inputForm div.sm i {
    font-size: 1.4rem;
}
main section.contact section.main4 .input .inputForm div.sm input {
    width: 93%;
    height: 50px;
    background-color: transparent;
    color: #fff;
    font-size: 1.3rem;
    text-transform: lowercase;
}
main section.contact section.main4 .input .inputForm div.sm input:focus{
    border-bottom: .1rem solid #fff;
    background-color: transparent;
}
main section.contact section.main4 .input .inputForm div.sm ::placeholder {
    font-size: 1.3rem;
    text-transform: capitalize;
}
main section.contact section.main4 .input button{
    width: 150px;
    height: 40px;
    background-color: var(--main-color);
    border: 2px solid transparent;
    color: #fff;
    font-size: 1.1rem;
}
main section.contact section.main4 .input button:hover {
    border-color: var(--main-color);
    background-color: var(--hovered);
}
main section.blogs section.main5 {
    width: 98%;
    padding: 10px 5px;
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 98%);
    grid-template-rows: repeat(3, 500px);
    grid-gap: 20px;
    justify-content: center;
}
main section.blogs section.main5 .box5{
    border: 1px solid #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
main section.blogs section.main5 .box5 .inner{
    width: 100%;
    height: 50%;
}
main section.blogs section.main5 .box5 .img{
    overflow: hidden;
}
main section.blogs section.main5 .box5 .inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main section.blogs section.main5 .box5 .inner img:hover {
    transform: scale(1.2);
}
main section.blogs section.main5 .box5 .text8{
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
}
main section.blogs section.main5 .box5 .text8 h1 {
    font-size: 1.6rem;
}
main section.blogs section.main5 .box5 .text8 h2 {
    font-size: 1.3rem;
    color: var(--main-color);
}
main section.blogs section.main5 .box5 .text8 p.blog__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
main section.blogs section.main5 .box5 .text8 button{
    width: 200px;
    height: 40px;
    background-color: var(--main-color);
    border: 2px solid transparent;
    color: #fff;
    font-size: 1.1rem;
}
main section.blogs section.main5 .box5 .text8 button:hover{
    width: 210px;
    background-color: var(--hovered);
    border-color: var(--main-color);
}
footer{
    width: 100%;
    height: 200px;
    background-color: var(--black);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
footer div.box{
    width: 100%;
    height: 30%;
}
footer div.box1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
footer div.box .in{
    width: auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer div.box .in a{
    padding: 15px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--main-color);
    font-size: 1.1rem;
    margin: 0 10px;
}
footer div.box .in a.fa-facebook-f{
    margin-left: 0;
}
footer div.box .in a:hover{
    background-color: var(--hovered);
    transform: rotate(50deg);
}
footer div.box3{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 5px;
}
footer div.box3 p span {
    color: var(--main-color);
}

@media screen and (min-width:410px) {
    
    footer div.box .in a{
        padding: 20px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 500px) {
    footer div.box2{
        display: none;
    }
}
@media screen and (min-width: 500px) {
    header section.whatsapp .main {
        width: 400px;
    }
    header .stuffs section.cart {
        width: 400px;
    }
    main section.about {
        padding: 30px;
    }
    main section.about section.main{
        width: 80%;
    }
    main section.menu section.main1 .pop{
        top: 15%;
    }
    main section.products section.main2 {
        width: 80%;
    }
}
@media screen and (min-width: 900px) {
    main section.contact section.main4 div.box,
    main section.contact section.main4 .box.input{
        width: 50%;
        height: 100%;
    }
    main section.contact section.main4 {
        width: 80%;
        flex-direction: row;
    }
    main section.contact section.main4 .input h1 {
        font-size: 3rem;
    }
    footer div.box3{
        font-size: 1.6rem;
    }

}
@media screen and (min-width: 550px) {
    main section.menu section.main1 {
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(3, 350px);
    }
    main section.products section.main2 {
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(2, 600px);
    }
    main section.reviews section.main3 {
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(1, 500px);
    }
    main section.blogs section.main5 {
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(2, 500px);
    }
}


@media screen and (min-width: 850px) {
    header nav ul {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        padding: .5rem 1rem;
        font-size: 1.2rem;
        display: flex;
        background-color: transparent;
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
    header nav ul.active {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); /* open */
    }
    header nav ul #ulClose {
        display: none;
    }
    header nav .icons #barIcons0 {
        display: block;
    }
    header nav ul li {
        display: inline;
        margin-left: 1.5rem;
    }
    header nav ul li div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: all .2s;
    }
    header nav ul li div a {
        color: #fff;
        transition: all .3s ease-in-out ;
        font-weight: normal;
    }
    header nav ul li div .underline {
        width: 3rem;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
        opacity: 0;
        transition: all .4s ease-in-out
    }
    header nav ul li div:hover .underline{
        background-color: var(--main-color);
        transform: translateY(5px);
        opacity: 1;
    }
    header nav ul li div:hover a {
        color: var(--main-color);
    }
    header nav .icons #barIcons {
        display: none;
    }
    header .stuffs .search{
        position: relative;
        left: 50%;
        width: 40%;
    }
    header section.main {
        display: flex;
        justify-content:flex-start;
        align-items: center;
        text-align: left;
        padding-left: 150px;
    }
    header section.main div.container {
        width: 600px;
    }
    header section.main div.container h1 {
        font-size: 4rem;
    }
    header section.main div.container p {
        font-size: 1.4rem;
    }
    header section.main div.container p,
    header section.main div.container a button {
        margin-top: 10px;
    }
    main section div.text{
        font-size: 2.3rem;
    }
    main section.about section.main{
        flex-direction: row;
    }
    main section.about section.main {
        display: flex;
        height: 400px;
    }
    main section.about section.main div {
        width: 50%;
        height: 100%;
    }
}
@media screen and (min-width: 1050px) {
    main section.menu section.main1 {
        grid-template-columns: repeat(3, 28%);
        grid-template-rows: repeat(2, 350px);
    }
    main section.products section.main2 {
        grid-template-columns: repeat(3, 28%);
        grid-template-rows: repeat(1, 600px);
    }
    main section.reviews section.main3 {
        grid-template-columns: repeat(3, 28%);
        grid-template-rows: repeat(1, 500px);
    }
    main section.blogs section.main5 {
        grid-template-columns: repeat(3, 29%);
        grid-template-rows: repeat(1, 500px);
    }
}























































