* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    font-family: 'Poppins' , sans-serif;
}
nav {
    min-width: 100%;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50%;
    background-color: #fff;
    transition: 0.2s;
}
nav h1 {
    font-size: 25px;
    text-transform: uppercase;
}
nav h1 span {
    color:green;
}
nav i {
    font-size: 20px;
    cursor: pointer;
    padding: 5px 20px;
}
.active {
    position: fixed;
    max-width: 100%;
    background-color: rgb(11, 63, 31);
    transition: 0.2s;
    z-index: 1;
}
.active h1 {
    color: #fff;
}
.active #bar {color: #fff;}
.active .mennu ul li a {
    color: #fff;
}
.active  i {
    color: #fff;
}
#goTop {
    position: fixed;
    top: 90%;
    left: 88%;
    padding: 8px 12px;
    color: #fff;
    background-color: rgb(15, 143, 47);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0;
}
.mennu {
    display: none;
}
.mennu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
}
.mennu ul li {
    margin: 10px 0;
    list-style: none;
}
.mennu ul li a {
    padding: 8px 20px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}
.mennu ul li a:hover {
    background-color: rgb(15, 143, 47);
    color: #fff;
}
.menu {
    position: fixed;
    background: rgb(30, 114, 62);
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    overflow: hidden;
    transition: 0.5s;
    z-index: 5;
}
.menu .options {
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35%;
    background: transparent;
    color: #fff;
}
.menu .options h1 {
    font-size: 25px;
    text-transform: uppercase;
}
.menu .options i {
    font-size: 20px;
    cursor: pointer;
    padding: 5px 20px;
}
.menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 50px;
}
.menu ul li {
    margin: 10px 0;
    list-style: none;
}
.menu ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}
.search {
    display: flex;
    padding: 20px 0;
}
.search input {
    font-size: 18px;
    padding: 10px 20px;
    outline: none;
    border: none;
    background: transparent;
    color: #fff;
    border-bottom: 2px solid #fff;
}
.search button {
    font-size: 15px;
    padding: 10px 20px;
    cursor: pointer;
}
.menu p {
    font-size: 14px;
    color: #fff;
    font-family: sans-serif;
    text-align: justify;
}
.sci {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    padding: 15px 20px;
    margin-left: 3%;
}
.sci a {
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
}

section {
    max-width: 100%;
}
.home {
    background: url(pics/1.jpg);
    background-color: #555;
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    height: 60vh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 88%, 0% 100%);
}
.home h1 {
    color: #fff;
    font-size: 50px;
}
.home p {
    color: #eee;
    font-size: 16px;
    padding-bottom: 10px;
}
.home button {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: rgb(30, 114, 62);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.home button:hover {
    background-color: rgb(11, 63, 31);
    transition: 0.2s;
}
.card {
    margin: 20% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.card img {
    max-width: 90%;
    margin-top: 10%;
    margin-bottom: 5%;
    border-radius: 20px;
    border-radius: 50%;
    object-fit: fill;
}
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(30, 114, 62);
    max-width: 70%;
    border-radius: 12px;
    color: #fff;
    box-shadow: 1px 1px 10px 0 #222;
    margin-bottom: 8%;
}
.box:nth-child(2){
    background-color: rgb(240, 157, 33);
}
.box:nth-child(2) button {
    background-color: rgb(199, 122, 6);
}
.box:nth-child(3){
    background-color: rgb(90, 201, 26);
}
.box:nth-child(3) button {
    background-color: rgb(60, 151, 7);
}
.box h2 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5%;
}
.box button {
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
    text-transform: uppercase;
    background-color: rgb(11, 63, 31);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10%;
}
.category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
}
.category h1 {
    font-size: 25px;
    font-weight: 1000;
    text-align: center;
    color: rgb(79, 161, 31);
}
.category h4 {
    color: rgb(1, 85, 1);
    text-transform: uppercase;
    font-size: 18px;
    margin: 10px 0;
    padding-bottom: 5%;
}
.andBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: rgb(26, 131, 26);
    border-radius: 12px;
    margin-bottom: 8%;
}
.andBox i {
    padding-top: 20px;
    font-size: 60px;
    color: #fff;
}
.andBox h3 {
    padding: 20px 50px;
    font-size: 25px;
    color: #eee;
}
.add {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 10px 30px;
}
.add h1 {
    color: rgb(79, 161, 31);
    font-size: 25px;
}
.add p {
    color: rgb(30, 114, 62);
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
    font-weight: 700;
}
.saleBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 100%;
    margin: 10% 0;
}
.saleBox img {
    max-width: 80%;
    border-radius: 5px;
    padding-bottom: 5%;
}
.saleBox h2 {
    font-weight: 200;
    font-size: 20px;
    color: rgb(78, 78, 78);
}
.saleBox p {
    color: rgb(79, 161, 31);
}
.saleBox button {
    padding: 8px 20px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background-color: rgb(79, 161, 31);
    color: #fff;
    border-radius: 5px;
}
.saleBox button:hover {
    background-color: rgb(30, 114, 62);
}
.opt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 20px;
}
.opt ul {
    width: 100%;
}
.opt ul li {
    text-align: right;
    padding: 5px 20px;
    margin: 2px 0;
    line-height: 35px;
    list-style: none;
    font-size: 18px;
    background-color: rgb(220,220,220);
    cursor: pointer;
    color: rgb(11, 63, 31);
    font-weight: 500;
}
.tips {
    margin: 20% 0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.aBox {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    background-color: rgb(15, 143, 47);
    margin: 10px 0;
    border-radius: 7px;
}
.aBox h1 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    text-align: center;
    padding-top: 15%;
    padding-bottom: 5%;
}
.aBox button {
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    border: none;
    background: rgb(11, 63, 31);
    border-radius: 5px;
    margin-bottom: 15%;
    cursor: pointer;
}
.aBox:nth-child(2) {
    background-color: rgb(240, 157, 33);
}
.quality {
    background: url(pics/5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20% 0;
    background-color: #444;
    background-blend-mode: overlay;
}
.quality h1 {
    font-size: 45px;
    text-align: center;
    color: #fff;
    padding-bottom: 8%;
}
.quality button {
    padding: 10px 20px;
    background-color: rgb(15, 143, 47);
    color: #fff;
    border: none;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.quality button:hover {
    background-color: rgb(11, 63, 31);
    transition: 0.2s;
}
.articles {
    margin: 30px 0;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.articles h1 {
    color: rgb(83, 192, 20);
}
.articles p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    color: rgb(1, 85, 1);
}
.blog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    flex-direction: column;
    padding: 10px 40px;
    background: #eee;
    border-radius: 5px;
    margin: 10px 0;
}
.blog img {
    max-width: 100%;
    padding-top: 5%;
    border-radius: 5px;
}
.blog h2 {
    font-size: 18px;
    color: rgb(240, 157, 33);
    padding: 10px 0;
}
.blog p {
    font-size: 13px;
    font-weight: 100;
    text-transform: none;
    color: gray;
}
.blog button {
    padding: 8px 20px;
    border: none;
    background-color: rgb(11, 63, 31);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 5%;
}
#btn {
    font-size: 14px;
    background-color: rgb(240, 157, 33);
    color: #fff;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
}
.post {
    margin: 30px 0;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.postBox {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    flex-direction: column;
    padding: 10px 40px;
    background: rgb(45, 187, 80);
    border-radius: 5px;
    margin: 10px 0;
}
.postBox:nth-child(2) {
    background-color: rgb(240, 157, 33);
}
.postBox:nth-child(3) {
    background-color: #fff;
    border: 1px solid rgb(211, 211, 211);
    padding: 50px 0;
}
.postBox:nth-child(3) h2 {
    color: #000;
}
.postBox img {
    max-width: 100%;
    padding-top: 5%;
    border-radius: 10px;
}
.postBox h2 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}
.postBox input {
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    padding: 10px 20px;
    text-align: center;
    margin: 8%;
}
.postBox button {
    padding: 8px 20px;
    border: none;
    background-color: rgb(11, 63, 31);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 5%;
}




.all {
    margin: 30px 0;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.allBox {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    flex-direction: column;
    padding: 60px 40px;
    border-radius: 5px;
    margin: 10px 0;
}
.allBox:nth-child(1){
    background: url(pics/4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #555;
    background-blend-mode: overlay;
}
.allBox:nth-child(2){
    background: url(pics/8.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #555;
    background-blend-mode: overlay;
}
.allBox:nth-child(3){
    background: url(pics/11.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #555;
    background-blend-mode: overlay;
}
.allBox img {
    max-width: 100%;
    padding-top: 5%;
    border-radius: 10px;
}
.allBox h2 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    padding: 25px 0;
}
.allBox input {
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    padding: 10px 20px;
    text-align: center;
    margin: 8%;
}
.allBox button {
    padding: 8px 20px;
    border: none;
    background-color: rgb(11, 63, 31);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 5%;
}
.ins {
    margin: 10% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ins h1 {
    color: rgb(40, 211, 83);
}
.ins p {
    color: rgb(11, 63, 31);
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 0;
}
.images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding: 10px 20px;
}
.images img {
    max-width: 45%;
    margin: 10px 0;
    cursor: pointer;
}
.ins button {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: rgb(240, 157, 33);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    margin-top: 5%;
    font-size: 18px;
    transition: 0.2s;
}
.ins button:hover {
    background-color: rgb(182, 113, 9);
    transition: 0.2s;
}
.ship {
    background-color: rgb(11, 63, 31);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 70px 50px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 100%, 70% 100%, 30% 100%, 0 82%, 0 0);
}
.ship h1 {
    text-align: center;
    color: #fff;
    padding-bottom: 10%;
}
.ship span {
    color: rgb(240, 157, 33);
}
.ship button {
    padding: 10px 20px;
    background-color: rgb(240, 157, 33);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}
footer {
    background-color: #eee;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
footer ul {
    margin-bottom: 50%;
}
footer ul li {
    list-style: none;
    text-align: center;
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
#numm {
    font-weight: 600;
}
#u {
    margin-left: -130px;
    display: none;
}
#b {
    display: none;   
}
html {
    scroll-behavior: smooth;
}

@media screen and (min-width: 1100px) {
    #bar {
        display: none;
    }
    #u {display: block;}
    #b {display: block;}
    body {
        background: #fff;
    }
    nav {
        gap: 10%;
    }
    section {
        min-height: 100vh;
    }
    .home {
        background-color: #333;
        align-items: center;
        height: auto;
    }
    .home p {
        max-width: 50%;
        font-size: 18px;
        text-align: center;
        padding: 20px;
    }
    .home h1 {
        font-size: 70px;
    }
    .home button {
        font-size: 20px;
    }
    .card {
        margin: 0;
        flex-direction: row;
        padding: 0 20px;
        gap: 5%;
        padding: 0 20px;
    }
    .category {
        height: auto;
        margin-top: -15%;
    }
    .box {
        box-shadow: 0 0 0 0;
    }
    .andBox {
        margin: 0;
    }
    .xyz {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5%;
    }
    .add {
        align-items: center;
    }
    .add h1 {
        font-size: 40px;
    }
    .sales {
        display: flex;
        margin: 0;
        gap: 0;
    }
    .saleBox {
        margin: 10px 0;
        padding: 0;
        min-width: auto;
    }
    .saleBox img {
        max-width: 70%;
        padding-bottom: 2%;
    }
    .opt {
        margin: 0;
    }
    .tips {
        margin: 0;
    }
    .quality {
        margin: 0;
        max-height: 50vh;
    }
    .quality h1 {
        font-size: 70px;
    }
    .bbox {
        display: flex;
        gap: 1%;
    }
    .blog {
        min-width: 40%;
    }
    .blog button {
        cursor: pointer;
    }
    .post {
        flex-direction: row;
        flex-grow: 1;
        justify-content: center;
        align-items: center;
        gap: 5%;
    }
    .postBox {
        min-width: 30%;
    }
    .postBox img {
        max-width: 80%;
    }
    .all {
        flex-direction: row;
        gap: 5%;
        align-items: center;
        justify-content: center;
    }
    .allBox {
        min-width: 25%;
        min-height: 50vh;
    }
    .ship {
        min-height: auto;
        clip-path: none;
    }
    footer {
        flex-direction: row;
        gap: 50%;
    }
    .mennu {
        display: block;
    }
    #goTop {
        left: 95%;
    }
}