.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70svh;
    padding: 140px 0 60px;
}
.home-hero__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home-hero__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
}
.home-hero__wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    z-index: 2;
    margin-right: 40vw;
}
.home-hero__wrapper__title{
    font-size: 3.25rem;
    line-height: 100%;
    font-weight: 400;
    color: var(--white);
}
.home-hero__wrapper__subtitle{
    font-size: 1.25rem;
    line-height: 125%;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--white);
}
@media all and (max-width: 1024px) {
    .home-hero__wrapper{
        margin-right: 33vw;
    }
}
@media all and (max-width: 810px) {
    .home-hero {
        min-height: 60svh;
    }
    .home-hero__wrapper{
        margin-right: 0;
    }   
    .home-hero__wrapper__title{
        font-size: 2.5rem;
    }
    .home-hero__wrapper__subtitle{
        font-size: 1rem;
    }
}
.home__objetivos__wrapper{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    padding: 70px 0 120px;
}
.home__objetivos__wrapper__title{
    font-size: 2rem;
    line-height: 150%;
    font-weight: 500;
    color: var(--black);
    margin-right: 30vw;
}
.home__objetivos__wrapper__subtitle{
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    color: var(--black);
    margin-right: 30vw;
}
.home__objetivos__wrapper__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
}
.home__objetivos__wrapper__list__item{
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    border-radius: 8px;
    background-color: var(--white);
    padding: 24px 32px;
    border: 2px solid var(--black);
}
.home__objetivos__wrapper__list__item__icon{
    width: 38px;
    height: 38px;
    margin-bottom: .5rem;
}
.home__objetivos__wrapper__list__item__title{    
    font-size: 1rem;
    line-height: 150%;
    font-weight: 700;
    color: var(--black);
}   
.home__objetivos__wrapper__list__item__subtitle{
    font-size: 1rem;
    line-height: 150%;
    color: var(--black);
}
.home__objetivos__wrapper__button{
    width: fit-content;
    align-self: center;
}
@media all and (max-width: 810px) {
    .home__objetivos__wrapper{
        row-gap: 1.5rem;
        padding: 40px 0 80px;
    }
    .home__objetivos__wrapper__title{
        font-size: 1.75rem;

    }
    .home__objetivos__wrapper__title,
    .home__objetivos__wrapper__subtitle{
        margin-right: 10vw;
    }
    .home__objetivos__wrapper__list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media all and (max-width: 580px) {
    .home__objetivos__wrapper__title,
    .home__objetivos__wrapper__subtitle{
        margin-right: 0;
    }
    .home__objetivos__wrapper__list{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}
.page__callout{
    position: relative;
    padding: 0 0 6.6rem;
    background-color: var(--black);
    color: var(--white);
}

.page__callout:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vw;
    background-color: #fff;
    z-index: 0;
}

.page__callout__media{
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1.875rem;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 60px;
}

.page__callout__wrapper {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page__callout__wrapper__testimonial{
    font-size: 1.5rem;
    line-height: 1.2;
    font-style: italic;
    text-align: center;
}

.page__callout__wrapper__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.page__callout__wrapper__card__image{
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

.page__callout__wrapper__card__title{
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.page__callout__wrapper__card__subtitle{
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 400;
    color: #A4A4A4;
}

@media all and (max-width: 768px){
    .page__callout__media{
        margin-bottom: 30px;
    }

    .page__callout__wrapper{
        max-width: 100%;
    }

    .page__callout__wrapper__testimonial{
        font-size: 1.25rem;
    }
}