.rs-cards {
    /* display: flex;
    gap: 30px; */
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.rs-card {
    flex: 1;
}

.rs-group h2 {
    text-align: center;
    color: #FFD500;
}


.rs-group h2{
    font-family: "Open Sans", Sans-serif !important;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: bold;
}

.rs-card{
    background:transparent;
    padding:20px;
    text-align:center;
}

.rs-card img{
    width:100%;
    display:block;
    max-height: 308px;
    height: 100% !important;
}

.rs-card h3{
    margin-top:20px;
    margin-bottom: 10px;
}

.rs-card p, .rs-card h3{
    color: #fff;
    text-align: left;
    font-size: 24px;
    font-family: "Open Sans", Sans-serif !important;;
}

.rs-card p{
    margin-top:8px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#f2c300;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
}

.swiper-button-prev img,
.swiper-button-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-next{
    right: -50px !important;
    width: 45px !important;
}
.swiper-button-prev{
    left: -50px !important;
    width: 45px !important;
}

@media(max-width: 1500px){
    .rs-card img{
        object-fit: contain;
        max-height: 18vw;
    }
    .rs-card h3, .rs-card p{
        font-size: 20px !important;
    }
}

@media (max-width: 600px){
    .rs-cards {
        grid-template-columns: 1fr;
    }
    .rs-cards .rs-card:nth-child(2) {
        display: none;
    }
    .rs-card img {
        max-height: 40vw;
    }
    .swiper-button-prev {
        left: 0 !important;
    }
    .swiper-button-next {
        right: 0 !important;
    }
    .rs-card h3, .rs-card p{
        text-align: center;
    }
}