.product-slider-image {
    display: block;
    width: 100%;
    margin: auto;
    object-fit: cover;
}
.section-image.hero-img img {
    height: 70vh;
}
#productDetailContent {
    display: flex;
    align-items: center;
}
#productDetailContent > div {
    flex: 1;
}
#productDetailContent > div:first-child {
    transform: translateY(-25%);
}
.section-content .description {
    width: 80%;
    font-size: 23px;
    margin-bottom: 30px;
}
.section-cta-btn {
    background-color: #ffffff;
}
.section-cta-btn span {
    font-weight: 600;
    color: #5d853f;
}
.section-cta-btn:hover {
    background-color: #5d853f;
}
.section-cta-btn:hover span {
    color: #fff;
}
.swiper-wrapper {
    align-items: center;
}
@media only screen and (max-width: 876px) {
    #productDetailContent {
        display: block;
    }
    #productDetailContent > div:first-child {
        transform: translateY(0px);
    }
    .section-content .description {
        width: 100%;
    }
}
@media (max-width: 603px) {
    .product-slider-image {
        height: auto !important;
        width: 100%;
        object-fit: contain;
    }
}
