.themes-outer {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px 0;
    background: radial-gradient(50% 50% at 50% 50%,
            var(--blue) 0%,
            var(--dark-navy) 100%);
}

.themes-outer__title {
    position: relative;
    text-align: center;
    padding: 0 16px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.64px;
}

.themes {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.themes__wrapper {
    align-items: center;
}

.themes__slide {
    position: relative;
    display: flex !important;
    justify-content: center !important;
    overflow: hidden;
    height: 100% !important;
    max-height: 522px !important;
}

.themes__slide-wrapper-image {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: center;
    width: 100%;
    max-width: 266px;
    border-radius: 32px;
    transition: all 0.5s ease-in-out;
}

.themes__button-wrapper {
    padding: 0 32px;
}

.themes__button-prev,
.themes__button-next {
    position: absolute;
    width: 56px !important;
    height: 56px !important;
    background-color: var(--white);
    border-radius: 16px;
}

.themes__button-cta {
    background-color: var(--white);
    color: var(--dark-navy);
}

@media (min-width: 700px) {
    .themes-outer {
        gap: 48px;
        padding: 72px 0;
    }

    .themes-outer__title {
        font-size: 32px;
        margin: 0 72px;
    }

    .themes__slide {
        max-height: 475px !important;
    }

    .themes__slide .themes__slide-wrapper-image {
        max-width: 242px;
    }
}

@media (min-width: 1200px) {
    .themes-outer {
        padding: 72px 0;
        gap: 48px;
    }

    .themes__slide {
        max-height: 624px !important;
    }

    .themes__slide .themes__slide-wrapper-image {
        max-width: 318px;
    }

    .themes__button-prev {
        left: 29% !important;
    }

    .themes__button-next {
        right: 29% !important;
    }
}

@media (min-width: 1800px) {
    .themes-outer {
        padding: 104px 72px;
    }

    .themes-outer__title {
        font-size: 32px;
        margin: 0;
    }

    .themes__slide-image {
        margin: auto 0;
        height: 773px;
        width: 394px;
    }

    .themes__slide {
        max-height: 774px !important;
    }

    .themes__slide .themes__slide-wrapper-image {
        max-width: 394px;
    }

    .themes__button-prev {
        left: 31% !important;
    }

    .themes__button-next {
        right: 31% !important;
    }
}

@media (min-width: 2400px) {
    .themes-outer {
        min-height: auto;
    }
}