.dark-top-content {
    background: #000;
    padding: 1vw 13vw;
}

.introduction {
    padding: 3vw 11vw;
    background: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

.introduction h4 {
    width: 60%;
    font-size: 23px;
    line-height: 1.9em;
}

.introduction img {
    height: 420px;
}

.content {
    background: #000;
    display: flex;
    flex-direction: column;
}

.content-text {
    padding: 1vw 13vw;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-text p {
    font-weight: 300;
}

.content-text p a {
    color: #E30613;
}

.products {
    display: flex;
    flex-direction: column;
}

.products h6 {
    color: black;
    margin: 1.3em 0;
}

.product-gallery {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background: white;
    padding: 1vw 4vw 10vw;
    margin-bottom: 5px;
}

.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 18%;
    gap: 20px;
}

.product h6 {
    margin: 0.2em 0;
    color: #E30613;
    font-size: 14px;
}

.product h6:after {
    display: none;
}
.product p {
    margin: 0;
    color: rgb(129, 129, 128);
    font-size: 13px;
    max-width: 80%;
    text-align: center;
    line-height: 1.6em;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
}

.product-image {
    max-width: 100%;
}

.product-image img {
    width: 100%;
}

.product-button {
    border-radius: 10px;
    background: rgb(78, 78, 77);
    display: flex;
}

.product-button a {
    color: white;
    text-decoration: none;
    padding: 1vw 2vw;
}

.product-button:hover {
    background: #E30613;
    cursor: pointer;
}

@media (max-width: 1268px) {
    .product {
        max-width: 25%;
    }
}

@media (max-width: 880px) {
    .product {
        max-width: 35%;
    }
    .introduction img {
        height: 320px;
    }
    .introduction h4 {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .product {
        max-width: 100%;
    }
}
@media (max-width: 1018px) {
    .dark-top-content {
        background: #000;
        padding: 1vw 10vw;
    }

    .introduction {
        padding: 3vw 10vw;
        background: white;
    }

    .introduction h4 {
        width: 100%;
        line-height: 1.9em;
        margin-bottom: 40px;
    }

    h6::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 25%;
        height: 3px;
        background: red;
    }
}
