.hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50svh;
    padding: 140px 0 60px;
}
.hero__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    margin: 0 auto;
}
@media all and (max-width: 1024px) {
    .hero{
        padding: 100px 0 40px;
    }
    .hero__wrapper{
        max-width: 80%;
    }
}
@media all and (max-width: 768px) {
    .hero__wrapper{
        max-width: 100%;
    }
}
.hero__wrapper__title {
    font-size: clamp(2.25rem, 2.5vw, 3.5rem);
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    font-family: var(--font-family-primary);
}
.hero__wrapper__subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 125%;
    color: var(--grey);
    text-align: center;
    font-family: var(--font-family-primary);
}
.hero__wrapper__subtitle strong,
.hero__wrapper__subtitle a {
    color: var(--black);
    font-family: var(--font-family-primary);
}
.hero__wrapper__subtitle a:hover {
    color: var(--black);
}
.form {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-bottom: 80px;
}
.form__container {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    width: 100%;
}
.form__wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.form__wrapper form {
    font-family: var(--font-family-primary);
}
@media all and (max-width: 768px) {
    .form {
        padding-bottom: 40px;
    }
}
