section.intro {
    height: 90vh;
}
@media (max-width: 992px) {
    section.intro {
        height: fit-content;
        min-height: 100vh;
    }
}
.intro .images {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: 10vw;
    height: 30vw;
    width: 30vw;
}
.intro .images figure {
    position: absolute;
    height: 20vw;
    width: 20vw;
    bottom: 0;
    overflow: hidden;
    box-shadow: 0 0 12px #00000050;
}
.intro .images figure:nth-child(2) {
    bottom: unset;
    right: 0;
}
.intro .images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.intro .images figure:nth-child(1) img {
    object-position: right center;
}
@media (max-width: 992px) {
    section.intro {
        padding-top: 5rem;
        margin-bottom: 5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
    }
    .intro .images {
        position: relative;
        width: 100%;
        transform: unset;
        flex-grow: 1;
        height: unset;
        top: unset;
        right: unset;
        flex-shrink: 0;
        height: 70vw;
        margin-top: var(--spacing-xl);
    }
    .intro .images figure {
        position: absolute;
        height: 55vw;
        width: 55vw;
        bottom: 0;
        overflow: hidden;
        box-shadow: 0 0 12px #00000050;
    }
}


.container-call-steps {
    max-width: 1250px;
}
.call-steps {
    counter-reset: steps;
}
.call-step {
    counter-increment: steps;
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.call-step .title {
    position: relative;
    text-transform: capitalize;
    font-size: 21px;
    height: 64px;
    padding-left: 48px;
    line-height: 1.2;
}
.call-step .title::before {
    content: counter(steps);
    left: 0;
    display: block;
    position: absolute;
    font-weight: bold;
    font-size: 64px;
    line-height: .8;
}
.call-step .title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 50px;
    background: linear-gradient(150deg, var(--colorN3) 0%, var(--colorN5) 100%);
    mix-blend-mode: lighten;
}
@media (max-width: 992px) {
    .call-step {
        margin-top: var(--spacing-md);
        width: 50%;
    }
    .call-step .title {
        font-size: 18px;
    }
}

#testimonials {
    height: 30vh;
}

.who-she-is figure {
    min-height: 50vh;
}

.who-she-is figure,
#schedule figure {
    position: relative;
    right: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    margin: 0;
}
.who-she-is figure img,
#schedule figure img {
    object-position: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}