#section-slides {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 45%, #F1EBFF 100%);
    padding-bottom: 260px;
}

#section-slides .slide {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
}

#section-slides .cols {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#section-slides .col{
    width: calc(50% - 30px);
}

#section-slides .col:first-of-type {
    display: flex;
    justify-content: flex-end;
}

#section-slides .col:first-of-type img {
    max-width: 50vw;
    height: auto;
}

.slide-content {
    max-width: 630px;
}

.slide-title {
    font-size: 25px;
    margin: 0 0 7px 0;
    font-family: var(--font-text);
    font-weight: 900;
}

.slide-subtitle {
    font-size: 60px;
    margin: 0 0 40px 0;
    font-family: var(--font-heading);
    font-weight: 900;
}

.slide-text {
    font-size: 16px;
    margin: 0 0 50px 0;
}


@media only screen and (max-width: 1280px) {
    #section-slides {
        margin-top: -100px;
    }

    #section-slides .cols {
        flex-direction: column;
    }

    #section-slides .col {
        width: 100%;
    }

    #section-slides .col:first-of-type img {
        max-width: 100%;
    }

    .slide-title {
        font-size: 18px;
        line-height: 32px;
    }

    .slide-subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .slide-text {
        font-size: 14px;
        line-height: 24px;
    }

    .slide-footer {
        font-size: 12px;
    }

}