.products-section-images {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2rem;
    height: 400px;
}

@media screen and (max-width: 768px) {
    .products-section-images {
        flex-direction: column;
        height: auto;
    }

    .products-section-images img {
        width: 50%;
    }
}

.products-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 4rem;
}

.products-img-container {
    display: flex;
    place-content: center;
    background: rgb(6, 15, 74);
    padding: 1rem;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 0.5rem;
}

.products-img-container:hover {
    background: rgb(247, 220, 111);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.products-section-images img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#product-features {
    row-gap: 2rem;
}

#product-features img {
    object-fit: contain;
    max-height: 500px;
}

.slider {
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#product-features ul {
    list-style-type: disc;
    margin-left: 1rem;
}

footer img {
    object-fit: contain;
}

.product-section-images img {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
}

.product-presentations {
    margin-right: 4.5rem;
    margin-left: 4.5rem;
    grid-column: 2/-2;
}

@media screen and (max-width: 1000px) {
    .product-presentations {
        margin-right: 1rem;
        margin-left: 1rem;
        grid-column: 1/-1;
    }
    .product-presentation-section {
        flex-direction: column;
    }
}

@media screen and (max-width: 540px) {
    .product-presentation-section {
        flex-direction: column;
    }

    .product-presentation-img-container {
        flex: 1;
    }

    .product-presentation-data {
        flex: 2;
    }
}

.product-presentation-container {
    display: flex;
    flex-direction: column;
    border: 4px solid black;
    width: 100%;
    gap: 1rem;
}

.product-presentation-container ul {
    margin-left: 1rem;
}

.product-presentation-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.product-presentation-img-container {
    flex: 1;
    height: 150px;
}

.product-presentation-data {
    padding: 1rem;
    display: flex;
    flex: 4;
    flex-direction: column;
    gap: 0.5rem;
    width: fit-content;
    align-items: flex-start;
}

.product-presentation-text {
    font-size: 1.5rem;
    font-weight: semibold;
    text-align: left;
}

@media screen and (min-width: 1000px) {
    .product-presentation-container
        > .product-presentation-section:nth-of-type(odd) {
        display: flex;
        flex-direction: row-reverse;
    }
}

.certs-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
    height: 5rem;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .certs-container {
        height: 4rem;
    }
}
