.hero-page > .field {
    display: flex;
    align-items: center;

    border-radius: 2rem;
    background-color: white;
    padding: 0.4rem;
}

@media screen and (max-width: 767.9px) {
    .hero-page > .field > .search-button {
        display: none;
    }
}

.hero-page input {
    background-color: transparent;
    border: none !important;
}

.hero-page .search-button {
    padding: 0.75rem 3.5rem;
    color: white;
    font-weight: 700;
    border-bottom-left-radius: 0;
    background-color: hsla(356, 58%, 47%, 1);
}

.search-button.mobile-button {
    border-radius: 9999px;
    padding: 1rem;
    width: 100%;
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
    .search-button.mobile-button {
        display: none;
    }
}
@media screen and (max: 767.9px) {
    .search-button.mobile-button {
        display: block;
    }
}

.hero-page .search-button:hover {
    color: white;
    background-color: hsla(356, 58%, 42%, 1);
}

.hero-page button {
    border-radius: 1.3rem;
    background-color: hsla(240, 5%, 65%, 0.3);
    line-height: 1.15;
    color: whtite;
    border: none;
}

.hero-page button:hover {
    border: none !important;
    background-color: hsla(240, 5%, 65%, 0.5);
}

.hero-page .item {
    color: white;
    margin-right: 0.3rem;
}

.hero-page .item:last-child {
    margin-right: 0;
}

.hero-page .hero-page__mostsearch {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 1rem 0;
}

.hero-page i.hero-page__search-icon {
    background-image: url('../assets/search-alt.svg');

    margin-left: 0.75rem;

    height: 1.2rem;
    min-width: 1.2rem;
}
