/* Kaleo Photo Stack Widget - Webflow Style */

.section_about {
    position: relative;
}

.padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.container-large {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.track {
    position: relative;
}

.sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame {
    position: relative;
    width: 100%;
}

.sticky_element {
    position: relative;
}

/* Headings */
.page-headings {
    margin-bottom: 3.75rem;
}

.text-align-center {
    text-align: center;
}

.text-style-allcaps {
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.text-style-allcaps > div {
    position: relative;
    display: inline-block;
}

.heading-style-h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
}

.heading-style-h2 > div {
    position: relative;
    display: inline-block;
}

/* Photos */
.photos-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 31.25rem;
}

.photo-wrap {
    position: absolute;
    max-width: 25rem;
    width: 90%;
    will-change: transform;
}

.photo-wrap .photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.15);
}

/* Mobile */
@media screen and (max-width: 991px) {
    .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .heading-style-h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 767px) {
    .sticky {
        position: relative;
        height: auto;
    }

    .photos-wrap {
        flex-direction: column;
        gap: 1.875rem;
    }

    .photo-wrap {
        position: relative !important;
        max-width: 100%;
        transform: none !important;
    }

    .heading-style-h2 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 479px) {
    .heading-style-h2 {
        font-size: 1.5rem;
    }
}