* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}
h1 {
    font-size: 3.5rem;
    padding-left: 2rem;
    padding-top: 2rem;
}
h2 {
    padding-left: 2rem;
}

html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}
main {
    border-bottom: 0;
    background-color: #e9e9e9;
    background-image: url("../images/wholesale.jpeg");
    min-height: 100dvh;
    padding-top: 100px;
}

.italic {
    font-style: italic;
}

.intro,
.about {
    margin-top: 25px;
    /* padding: 2rem; */
    color: #fff;
    min-height: 80dvh;
    padding: 1rem;
}
.about {
    background-color: #f0f0f0;
    color: #000;
}
.intro h1 {
    text-shadow: 2px 2px 2px #000;
}
.about h1 {
    color: #000;
}
.article {
    margin-block: 1rem;
    /* background-color: rgba(244, 244, 244, 0.3); */
    color: #fff;
    border-radius: 8px;
    padding: 1rem;
    text-shadow: none;
    font-size: 1.25rem;
    line-height: 1.5;
}
.button-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.intro-button {
    color: #fff;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 8px;
    margin-block: 3rem;
    padding: 1rem;
    transition: 800ms;
    border: none;
    cursor: pointer;
    /* width: 15vw; */
    background-color: #000;
}
.intro-button:hover {
    background-color: #fff;
    color: rgb(139, 43, 123);
}

h4 {
    margin-block: 1rem;
}
.quality-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    padding: 4.5rem;
    background-image: linear-gradient(
        90deg,
        rgb(255, 238, 0) 0%,
        rgb(200, 255, 0) 100%
    );
}

.quality-badge:hover {
    cursor: pointer;
    animation: rotate 400ms linear;
}
.badge-icon {
    width: 80px;
    height: 80px;
}
.badge-container {
    background-color: rgba(25, 25, 25, 0.8);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
    padding-block: 2rem;
}

.text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    /* text-align: justify; */
}

.flex {
    display: flex;
    flex-wrap: wrap;
    margin-block: 1rem;
}
.product-section {
    padding: 0 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
}
.product-section-image-left {
    height: 200px;
    object-fit: contain;
    float: left;
    margin: 0.5rem 1rem 0rem 0rem;
    border-radius: 8px;
}
.product-section-image-right {
    height: 200px;
    object-fit: contain;
    float: right;
    margin: 0.5rem 0rem 0rem 1rem;
    border-radius: 8px;
}
.product-section-heading {
    font-size: 1.5rem;
}
.product-section-text {
    font-size: 1.25rem;
    line-height: 1.5;
}
.about-right-container,
.about-left-container {
    flex: 1;
}
.about-article {
    margin-block: 2rem;
}
.about-image {
    float: right;
    object-fit: contain;
    height: 600px;
    border-radius: 8px;
    margin-left: 1rem;
}

@media screen and (min-width: 1200px) {
    .article,
    .button-box {
        width: 42.5%;
    }
}

@media screen and (max-width: 768px) {
    h3 {
        margin-block: 1rem;
    }

    .product-section-text {
        font-size: 1rem;
    }
    .text {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.4;
    }
    main {
        padding-inline: 0.75rem;
    }
    .about-right-container,
    .about-left-container {
        padding-inline: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .badge-container {
        justify-content: center;
    }
    .intro-button {
        width: 100%;
    }
    .about {
        padding-inline: 1rem;
    }

    .quality-badge {
        width: 50px;
        height: 50px;
        margin: 1rem;
    }
    .product-section {
        padding: 0;
    }
    .about-image {
        height: 300px;
        float: none;
        /* width: 100%; */
        border-radius: 8px;
        margin: 0;
    }
    .product-section-image-left,
    .product-section-image-right,
    .product-section-text {
        /* width: 100vw; */
        float: none;
        margin: 0;
        padding: 0;
    }
}
