@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

* {
    margin: 0;
    bottom: 0;
    box-sizing: border-box;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

/* header section start */
.links {
    display: flex;
    gap: 20px;
}

.header button {
    border: 1px solid #E5BF4A;
    background-color: transparent;
    color: white;
    padding: 10px 22px;
}

.header button:hover {
    background-color: #E5BF4A;
}

.header {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header section end */
/* nav section start */
.nav ul {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    gap: 50px;
}

.nav ul li a {
    text-decoration: none;
    color: white;
}

.nav ul li a:hover {
    color: #E5BF4A;
}

.nav {
    position: sticky;
    top: 0;
}

/* nav section end */
/* hero section start */
.hero-section {
    background-image: url(istockphoto-1049186014-170667a.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    color: white;
    font-size: 70px;
}

.hero-content button {
    border: 1px solid #E5BF4A;
    background-color: #E5BF4A;
    color: white;
    padding: 10px 22px;
}

.hero-content button:hover {
    background-color: transparent;
    transition: 0.3s;
}

/* hero section end */
/* purchase section start */
.purchase {
    width: 50%;
    margin: 0 auto;
    line-height: 1.2;
}

.border {
    border: 2px solid #E5BF4A;
    background-color: #E5BF4A;
    width: 80px;
    display: flex;
    margin: 0 auto;
}

/* purchase section end */
/* purchase-img section start */

/* purchase-img section end */
.purchase-img img {
    width: 100%;
    object-fit: cover;
}

.row {
    display: flex;
    align-items: center;
}

/* card section start */
.card img {
    width: 100%;
}

/*  card section end */
/* video section start */

/* video section end */
/* feedback section start */
.name {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feedback {
    border: 1px solid silver;
    padding: 40px;
}

/* feedback section end */
/* blog button section start */
.blog-button button {
    border: 1px solid #E5BF4A;
    background-color: #E5BF4A;
    padding: 10px 22px;
    color: white;
}

.blog-button button:hover {
    background-color: transparent;
    transition: 0.3s;
}

.blog-button {
    display: flex;
    justify-content: space-between;
    color: white;
}

/* blog button section end */
/* blog-section start */
.blog {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section {
    width: 100%;
    margin: 0 auto;
}

.blog-content {
    width: 90%;
}

/* blog-section end */
/* instgram text start */
.instgram-text button {
    border: 1px solid #E5BF4A;
    background-color: transparent;
    color: white;
    padding: 10px 22px;
}

.instgram-text button:hover {
    background-color: #E5BF4A;
    color: black;
    transition: all 0.3;
}

.img-1 img {
    width: 100%;
    object-fit: cover;
}

.img-2 img {
    width: 100%;
    object-fit: cover;
}

.img-3 img {
    width: 100%;
    object-fit: cover;
}

.img-4 img {
    width: 100%;
    object-fit: cover;
}

/* instgram text end */
/* second logo start */
.second-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.second-content ul {
    display: flex;
    gap: 20px;
}

.second-content ul li a {
    text-decoration: none;
    color: white;
}

.second-content ul li a:hover {
    color: #E5BF4A;
}

/* second logo end */
/* footer section start */
.social button {
    padding: 10px 22px;
    border: 1px solid silver;
    background-color: transparent;
    color: white;
}

.contact a {
    text-decoration: none;
}

.social button:hover {
    border: 1px solid #E5BF4A;
    color: #E5BF4A;
}

.social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* footer section end */

/* responsive section  start*/
@media (max-width:991px) and (min-width:768px) {
    .header button {
        display: none;
    }

}

@media (max-width:767px) and (min-width:576px) {
    .header button {
        display: none;
    }

    .links {
        display: none;
    }

    .blog {
        display: flex;
        flex-direction: column;
    }

    .blog-img {
        width: 100%;
    }

    .blog-img img {
        width: 100%;
    }

    .second-logo {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }


}

@media (max-width:575px) and (min-width:320px) {
    .header button {
        display: none;
    }

    .links {
        display: none;
    }

    .hero-content h1 {
        font-size: 35px;
        color: black;
    }

    .purchase {
        width: 100%;
    }

    .video-section {
        height: 60vh;
    }

    .blog {
        display: flex;
        flex-direction: column;
    }

    .blog-img {
        width: 100%;
    }

    .blog-img img {
        width: 100%;
    }

    .second-logo {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }


}

/* responsive section  end*/