.rsg-featured-offers {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 70px 15px;
}

.rsg-featured-offers-intro {
    width: 100%;
}

.rsg-featured-offers[data-heading-align="left"] .rsg-featured-offers-intro {
    margin-right: auto;
    margin-left: 0;
}

.rsg-featured-offers[data-heading-align="center"] .rsg-featured-offers-intro {
    margin-right: auto;
    margin-left: auto;
}

.rsg-featured-offers[data-heading-align="right"] .rsg-featured-offers-intro {
    margin-right: 0;
    margin-left: auto;
}
.rsg-featured-offers-intro {
    margin-bottom: 50px;
}
.rsg-featured-offers-heading {
    margin: 0;
    color: #0055A6;
    font-family: "Open Sans" !important;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 3%;
    text-transform: uppercase;
}

.rsg-featured-offers-description,
.rsg-featured-offers-description p {
    margin: 0;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

.rsg-featured-offers-description p + p {
    margin-top: 12px;
}

/* Grid */
.rsg-featured-offers-grid {
    --rsg-offers-grid-gap: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}


.rsg-featured-offers-grid[style*="repeat(2"] .rsg-featured-offers-item:last-child:nth-child(odd),
.rsg-featured-offers-grid .rsg-featured-offers-item:last-child:nth-child(odd):nth-child(n+3) {
    grid-column: 1 / -1;
    width: calc((100% - var(--rsg-offers-grid-gap, 28px)) / 2);
    justify-self: center;
}

/* Card */
.rsg-featured-offers-item,
.rsg-featured-offers-slide {
    display: flex;
    min-width: 0;
    height: auto;
}

.rsg-featured-offers-card {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    border: 2px dashed #0055A6;
    background: transparent;
    padding: 18px;
}

.rsg-featured-offers-card-inner {
    display: flex;padding: 34px 32px 26px;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    background: #0055A6;
    text-align: center;
}

.rsg-featured-offers-card-main {
    width: 100%;
}

.rsg-featured-offers-card-heading {
    color: #fff;
    margin-bottom: 15px;
    font-family: "Open Sans" !important;
    font-weight: 700;
    font-size: 30px;
}

.rsg-featured-offers-card-description, .rsg-featured-offers-card-description p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.rsg-featured-offers-card-description p + p {
    margin-top: 10px;
}

.rsg-featured-offers-button-wrap {
    margin-top: 26px;
}

.rsg-featured-offers-button:hover, .rsg-featured-offers-button:focus {
	
    color: #000000 !important;
    background-color: #fff !important;
    border-color: #fff !important;
}

.rsg-featured-offers-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rsg-featured-offers-button:hover,
.rsg-featured-offers-button:focus {
    text-decoration: none; background-color: #fff;
}

.rsg-featured-offers-card-sub-description, .rsg-featured-offers-card-sub-description p {
    margin: 28px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
}

.rsg-featured-offers-card-sub-description p + p {
    margin-top: 8px;
}


.rsg-featured-offers-slider {
    --rsg-offers-gap: 28px;
    --rsg-offers-per-view: 2;
    position: relative;
    width: 100%;
    padding: 0 52px;
}

.rsg-featured-offers-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.rsg-featured-offers-slider-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
    transition: transform .45s ease;    gap: 28px;
}


.rsg-featured-offers-slider-track > .rsg-featured-offers-slide {
    align-self: stretch;
}

.rsg-featured-offers-slide {
    flex: 0 0 calc(
        (100% - (var(--rsg-offers-gap) * (var(--rsg-offers-per-view) - 1)))
        / var(--rsg-offers-per-view)
    );
}

.rsg-featured-offers-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #0055A6;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, transform .2s ease;
}

.rsg-featured-offers-arrow:hover,
.rsg-featured-offers-arrow:focus {
    transform: translateY(-50%) scale(1.06);
}

.rsg-featured-offers-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.rsg-featured-offers-arrow-prev {
    left: 0;
}

.rsg-featured-offers-arrow-next {
    right: 0;
}

.rsg-featured-offers-dots {
    display: flex;
    min-height: 16px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}

.rsg-featured-offers-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b7c7d9;
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background-color .2s ease;
}

.rsg-featured-offers-dot.is-active {
    width: 26px;
    border-radius: 999px;
    background: #0055A6;
}

@media (max-width: 1024px) {
    .rsg-featured-offers-slider {
        padding-right: 46px;
        padding-left: 46px;
    }
}

@media (max-width: 767px) {

    .rsg-featured-offers-grid {
        grid-template-columns: 100%;
    }

    .rsg-featured-offers-grid .rsg-featured-offers-item:last-child:nth-child(odd):nth-child(n+3) {
        grid-column: auto;
        width: 100%;
    }

    .rsg-featured-offers-slider {
        padding-right: 0;
        padding-left: 0;
    }

    .rsg-featured-offers-arrow {
        top: auto;
        bottom: -2px;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .rsg-featured-offers-arrow:hover,
    .rsg-featured-offers-arrow:focus {
        transform: scale(1.05);
    }

    .rsg-featured-offers-dots {
        min-height: 38px;
        padding: 0 52px;
    }

    .rsg-featured-offers-card-inner {
        min-height: 290px;
        height: auto;
    }
}