.search-form {
    align-items: center;
    display: flex;
    gap: var(--s-sm);
    justify-content: center;
}

.container.home-search {
    border-bottom: 1px solid var(--light-grey);
}

.search-form__input {
    min-width: 315px;
    text-align: left;
}

.search-form__submit {
    align-items: center;
    display: flex;
    height: var(--s-lg);
    justify-content: center;
}

.who-are-we {
    text-align: center;
    margin: 1.5rem auto !important;
    max-width: 33rem;
    position: relative;
    z-index: 0;
}

.who-are-we svg {
    width: 100%;
    height: 100%;
    margin-top: -2rem;
    position: absolute;
    z-index: -1;
}

.who-are-we__title {
    color: inherit;
    font-size: var(--font-xl);
}

.who-are-we__text {
    margin: 1.2rem auto;
    max-width: 800px;
}

.who-are-we .btn-primary {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container.home-search {
        padding: 1.5rem 0.5rem !important;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form__submit {
        background-color: var(--brand-primary-light);
        border-radius: var(--s-s);
        color: var(--brand-primary);
        gap: 0.8rem;
        padding: 0 2rem;
    }
}

@media (min-width: 769px) {
    .container.home-search {
        padding: 1.5rem 0 2.5rem 0 !important;
    }

    .search-form > *:first-child {
        flex: 1;
    }

    .search-form > *:not(:first-child):not(:last-child) {
        flex: 2;
    }

    .search-form__submit {
        background-color: var(--brand-primary);
        border-radius: var(--s-ssm);
        color: var(--white);
        width: var(--s-lg);
    }
}
