* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: 'futura';
    src: url(./fonts/futura/futura\ medium\ bt.ttf);
}

.header {
    width: 100%;
    height: 70px;
    background-color: rgb(189, 189, 189);
    padding: 0px 8%;
    display: flex;
    justify-content: space-between;
}

.logo {
    /* background-color: violet; */
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'futura';
    font-weight: bold;
    font-size: 25px;
}

.navigation {
    /* background-color: blue; */
    height: 100%;
    width: 30%;
}

.utils {
    /* background-color: yellow; */
    /* height: 100%; */
    width: 12%;
}

.nav-links {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    font-family: 'futura';
    /* font-weight: bold; */
    font-size: 20px;
}

.nav-link {
    cursor: pointer;
    padding: 8px;
    border-radius: 20px;
    transition: .2s;
}

.nav-link:hover {
    /* padding: 4px; */
    color: white;
    background-color: black;
    /* border-radius: 50%; */

}

.nav-links>.nav-link>i {
    font-size: 20px;
}

.banner {
    width: 100%;
    height: 750px;
    background-color: grey;
}

.slide {
    width: 100%;
    height: 100%;
    background-color: red;
    background-image: url(./images/h1-slide-show-1_1_1.webp);
    display: flex;
    align-items: center;
    padding-left: 20%;
}

.slide-details {
    width: 27%;
    padding: 40px;
    /* background-color: aqua; */
    font-family: 'futura';
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
}

.slide-details>h1 {
    font-size: 60px;
}

.btn {
    padding: 8px 10px;
    background-color: black;
    border: 1px solid black;
    color: white;
    font-family: 'futura';
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-white {
    background-color: white;
    border: 1px solid white;
    box-shadow: 0px 0px 2px black;
    color: black;
    z-index: 20;
}

.featured {
    width: 100%;
    /* height: 80vh; */
    padding: 10px 0px;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
}

.featured-box-1 {
    width: 33%;
    height: 580px;
    /* background-color: yellow; */
    position: relative;
}

.featured-box-2 {
    width: 33%;
    height: 580px;
    /* background-color: #0095ff; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featured-box-2-box-1 {
    width: 100%;
    height: 290px;
    /* background-color: palegoldenrod; */
    position: relative;
}

.featured-box-2-box-2 {
    width: 49%;
    height: 290px;
    /* background-color: aquamarine; */
    position: relative;
}

.featured-box-2-box-3 {
    width: 49%;
    height: 290px;
    /* background-color: aquamarine; */
    position: relative;
}

.featured-box-3 {
    width: 33%;
    height: 580px;
    /* background-color: #003cff; */
    position: relative;
}

.bg-image {
    width: 100%;
    height: 100%;
    /* background-color: yellow; */
    overflow: hidden;
}

.bg-image>img {
    width: 100%;
    transition: .2s;
}

.featured-box-1:hover img,
.featured-box-3:hover img {
    transform: scale(1.1);
}

.overlay {
    width: 100%;
    height: 100%;
    /* background-color: greenyellow; */
    position: absolute;
    display: flex;
    align-items: flex-end;
    padding: 6%;
    justify-content: center;
}

.featured-box-1:hover img,
.featured-box-3:hover img,
.featured-box-2-box-1:hover img,
.featured-box-2-box-2:hover img,
.featured-box-2-box-3:hover img {
    transform: scale(1.1);
}

.products {
    padding: 30px 20%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.section-tittle {
    font-family: 'futura';
}

.products-list {
    width: 100%;
    padding: 20px 0px;
    /* background-color: yellow; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 9px;
}

.product {
    width: 24.5%;
    height: 420px;
    /* background-color: green; */
    font-family: 'futura';
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    font-size: 17px;
    overflow: hidden;
    border: 1px solid gray;
    border-radius: 5px;
    /* padding: 3px; */
}

.product:hover .main-img {
    transform: scale(1.2);
    opacity: 0;
}

.product:hover .effect-img {
    opacity: 1;
    transform: scale(1);
}

.product:hover .overlay-img {
    margin-top: 0px;
}

.product-img {
    width: 100%;
    height: 370px;
    /* background-color: aquamarine; */
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
}

.main-img {
    width: 100%;
    height: 100%;
    /* background-color: purple; */
    position: absolute;
    transition: 2s;
    /* transition-delay: .1s; */
}

.effect-img {
    width: 100%;
    height: 100%;
    /* background-color: cyan; */
    position: absolute;
    opacity: 0;
    transform: scale(1.2);
    transition: .2s;
    /* transition-delay: .1s; */
    /* display: none; */
}

.overlay-img {
    width: 100%;
    height: 100%;
    /* background-color: brown; */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10%;
    margin-top: 100px;
    transition: .2s;
    /* display: none; */

}

.product-name {
    margin-left: 20px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-family: 'futura';
}

.categories {
    width: 100%;
    padding: 30px 20%;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
}

.category {
    width: 33%;
    background-color: rgb(225, 225, 225);
    border-radius: 5px;
    overflow: hidden;
}

.category:hover img {
    transform: scale(1.3);
}

.cat-img {
    width: 100%;
    height: 400px;
    /* background-color: blue; */
    overflow: hidden;

}

.cat-img img {
    width: 100%;
    transition: .2s;
}

.insta {
    width: 100%;
    padding: 30px 20%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    font-family: 'futura';
}

.posts {
    width: 100%;
    padding: 20px 0px;
    /* background-color: yellow; */
    display: flex;
    justify-content: space-between;

}

.post-image {
    width: 16%;
    height: 170px;
    position: relative;
    /* background-color: green; */
    overflow: hidden;
    display: flex;
    justify-content: flex-end;

}

.post-image img {
    width: 100%;
    transition: .2s;
}

.post-image:hover img {
    transform: scale(1.2);
}

.post-image i {
    position: absolute;
    font-size: 30px;
    margin-right: 10px;
    margin-top: 10px;
    z-index: 20;
}

.footer {
    width: 100%;
    padding: 30px 20%;
    background-color: #f6f5fa;
    font-family: 'futura';
    display: flex;
    justify-content: space-between;
    color: #1d1d1d;
}

.footer-section {
    /* background-color: red; */
    width: 32%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.border-list {
    margin-top: 20px;
    border-top: 1px solid lightgray;
    width: 70%;
}

.socials {

    margin-top: 20px;
    display: flex;
    font-size: 20px;
    column-gap: 30px;
}

.sub {
    margin-top: 30px;
}

input {
    height: 40px;
    width: 60%;
    border-radius: 30px;
    border: 1px solid lightgray;
    text-indent: 20px;
}

.menu-res {
    /* display: none; */
    opacity: 0;
    /* background-color: red; */
}


@media (max-width: 560px) {
    .header {
        height: 50px;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
        /* background-color: red; */
        display: block;
        overflow-y: hidden;
        transition: .2s;
        position: fixed;
        top: 0;
        background-color: white;
        z-index: 150;
    }

    .menu-res {
        opacity: 1;
    }

    .logo {
        /* margin-top: 10px; */
        /* margin-bottom: 10px; */
        width: 100%;
        height: 50px;
        /* background-color: yellow; */
        justify-content: space-between;
        font-size: 20px;
    }

    .navigation {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .utils {
        /* margin-top: -230px; */
        width: 70%;
    }

    .navigation>.nav-links {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 5px;
        padding: 2px;
        font-size: 15px;
        /* height: 100%; */
    }

    .banner {
        height: 200px;
        margin-top: 50px;
    }

    .slide {
        background-size: cover;
        padding-left: 0px;
    }

    .slide-details {
        width: 70%;
        padding-left: 5%;
        font-size: 15px;
    }

    .slide-details>h1 {
        font-size: 20px;
    }

    .btn {
        font-size: 10px;
    }

    .featured {
        flex-direction: column;
        row-gap: 5px;
    }

    .featured-box-1 {
        width: 100%;
        height: 300px;
    }

    .featured-box-1 img {
        margin-top: -100px;
    }

    .featured-box-2 {
        width: 100%;
        height: 350px;
        row-gap: 5px;
    }

    .featured-box-2-box-1,
    .featured-box-2-box-2,
    .featured-box-2-box-3 {
        height: 170.5px;
    }

    .featured-box-3 {
        width: 100%;
        height: 300px;
    }

    .featured-box-3 img {
        margin-top: -100px;
    }

    .products {
        padding: 30px 5%;
        align-items: flex-start;
        overflow-x: scroll;
    }

    .product {
        height: 300px;
        width: 200px;
    }

    .products-list {
        width: 250%;
    }

    .categories {
        padding: 30px 5%;
        flex-direction: column;

    }

    .category {
        width: 100%;
        background-color: white;
    }

    .cat-img {
        height: 300px;
        /* width: 250px; */
    }

    .insta {
        padding: 30px 5%;
    }

    .posts {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .post-image {
        width: 49%;
        height: 200px;
    }

    .footer {
        padding: 30px 5%;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .footer-section {
        width: 40%;
        font-size: 15px;
    }

    .socials {
        margin-top: 0px;
        column-gap: 10px;
    }

    .border-list {
        /* border: none; */
        width: 100%;
    }

    .footer-section>h1 {
        font-size: 20px;
    }

    .sub>input {
        width: 70%;
        height: 30px;
    }

    .respon-mob {
        width: 100%;
    }

}
