.productsBanner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50vh;
    border-bottom: 8px solid #c8a96a;
    border-top: 8px solid #c8a96a;
    box-sizing: border-box;
}

.productsBannerLeft {
    width: 25%;
    height: 100%;
    background-color: rgb(15, 42, 68);
    position: relative;
}

.productsBannerSwiper {
    width: 75%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(245, 242, 234);
}

.productsBannerLeftText {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    box-sizing: border-box;
}

.productsBannerLeftText h2 {
    margin: 0;
    font-size: 3.5em;
    color: rgb(245, 242, 234);
    font-family: 'Playfair Display';
    font-weight: 600;
    line-height: 120%;
}

.productsBannerLeftImage svg {
    width: 100%;
    height: 100%;
    display: block;
}

.productsBannerLeftImage svg * {
    fill: rgb(255 255 255) !important;
}

.productsBannerLeftImage {
    width: 280px;
    height: 280px;
    position: absolute;
    top: 0;
    left: 100%;
    transform: translate(-87%, 9%);
}

.swiperProduct {
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.spText {
    width: 100%;
    height: 30%;
    text-align: center;
    color: rgb(15, 42, 68);
}

.spImage {
    height: 70%;
    width: 100%;
    padding-top: 30px;
    box-sizing: border-box;
    filter: drop-shadow(10px 10px 24px rgba(0, 0, 0, 0.6));
}

.spImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.spCircle {
    width: 160px;
    height: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    border-radius: 50%;
    background-color: rgb(200, 169, 106);
    z-index: -1;
}

.spText {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spMainText h2 {
    margin: 0;
    padding-top: 15px;
    font-family: 'Playfair Display';
    font-size: 1.2em;
    font-weight: 800;
    line-height: 100%;
}

.spMainText p {
    margin: 0;
    padding-top: 4px;
    font-family: 'Playfair Display';
    font-weight: 600;
    font-style: italic;
    font-size: 1.1em;
    line-height: 100%;
}

.spPrice {
    width: fit-content;
    margin: 0 auto;
    background-color: rgb(200, 169, 106);
    transform: translateY(2px);
}

.spPrice p {
    margin: 0;
    padding: 8px 20px;
    font-family: 'Montserrat';
    font-weight: bold;
    color: rgb(245, 242, 234);
    font-size: 1em;
    box-sizing: border-box;
}

@media only screen and (max-width: 1600px) {
    .productsBannerLeftText h2 {
        font-size: 3em;
    }
    .productsBannerLeftImage {
        width: 250px;
        height: 250px;
    }
    .spMainText h2 {
        font-size: 1.1em;
    }
    .spMainText p {
        font-size: 1em;
    }
}

@media only screen and (max-width: 1200px) {
    .productsBannerLeftText h2 {
        font-size: 2.5em;
    }
    .spPrice p {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 1000px) {
    .productsBannerLeftText h2 {
        font-size: 2em;
    }
    .spMainText h2 {
        font-size: 1em;
    }
    .spMainText p {
        font-size: 0.9em;
    }
    .spPrice p {
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 800px) {
    .productsBanner {
        flex-direction: column;
        height: 60vh;
    }
    .productsBannerLeft {
        width: 100%;
        height: 30%;
    }
    .productsBannerLeftText {
        padding-left: 0;
        align-items: center;
    }
    .productsBannerLeftText h2 {
        font-size: 2.5em;
    }
    .productsBannerLeftText br {
        display: none;
    }
    .productsBannerLeftImage {
        width: 200px;
        height: 200px;
        transform: translate(-100%, 0);
    }
    .productsBannerSwiper {
        width: 100%;
        height: 70%;
    }
}

@media only screen and (max-width: 600px) {
    .spCircle {
        width: 120px;
        height: 120px;
    }
}

@media only screen and (max-width: 400px) {
    .productsBannerLeftText h2 {
        font-size: 2em;
    }
    .spMainText h2 {
        font-size: 0.9em;
    }
    .spMainText p {
        font-size: 0.8em;
    }
    .spPrice p {
        font-size: 0.75em;
    }
}