.integration-hero {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    @media (max-width: 768px) {
        margin-top: 50px;
    }
    .container {
        .title {
            padding-bottom: 20%;
            @media (max-width: 1024px) {
                padding-bottom: 0;
            }
            h1 {
                font-size: var(--fs-6xl);
                margin: 0 0 50px;
                line-height: 80%;
                max-width: 1100px;
                letter-spacing: -6px;
                @media (max-width: 1024px) {
                    font-size: var(--fs-5xl);
                    padding-bottom: 240px;
                    letter-spacing: -3px;
                }
            }
            .text {
                margin-bottom: 64px;
                max-width: 550px;
                @media (max-width: 1024px) {
                    margin-bottom: 20px;
                }
            }
        }
    }
    .shoe {
        position: absolute;
        right: 0vw;
        top: 64%;
        transform: translateY(-50%);
        width: 60vw;
        max-width: 1200px;
        aspect-ratio: 1/1;
        height: auto;
        z-index: 1;
        pointer-events: none;
        @media (max-width: 1024px) {
            width: 580px;
            left: -180px;
            top: 200px;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
