.hero {
    position: relative;
}

.hero--wrapper {
    position: relative;
    z-index: 1;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

@media screen and (min-width: 992px) {
    .hero--wrapper {
        padding: clamp(120px, 12.5vw, 180px) clamp(40px, 8.33vw, 120px) 80px;
        gap: 80px;
    }
}

.hero--wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(178deg, rgba(255, 255, 255, 0) -3.31%, rgba(0, 0, 0, 0.5) 111.15%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
}

.hero--content {
    max-width: 836px;
    z-index: 1;
}

.hero--content h1 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: white;
    margin-bottom: 28px;
}

@media screen and (min-width: 992px) {
    .hero--content h1 {
        font-size: 4.375rem;
        line-height: 70px;
    }
}

.hero--content h1 strong {
    font-family: var(--play);
    font-style: italic;
}

.hero--content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}

@media screen and (min-width: 992px) {
    .hero--content p {
        font-size: 17px;
    }
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.hero--search {
    padding: 32px 28px;
    background: var(--violet);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    z-index: 1;
    border-radius: 4px;
    margin: 0;
}

@media screen and (min-width: 992px) {
    .hero--search {
        width: auto;
        gap: clamp(16px, 2.22vw, 32px);
        border-radius: 8px;
        flex-direction: row;
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .hero--search {
        padding: 34px clamp(28px, 6.25vw, 90px);
    }
}

.hero--search .select-wrapper {
    width: 100%;
    position: relative;
}

@media screen and (min-width: 992px) {
    .hero--search .select-wrapper {
        width: -moz-max-content;
        width: max-content;
        max-width: 210px;
        flex-shrink: 0;
    }
}

.hero--search .select-wrapper::after {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 16px;
    width: 7px;
    height: 16px;
    background: url("images/chevron.svg") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

@media screen and (min-width: 992px) {
    .hero--search .select-wrapper::after {
        right: 28px;
    }

    .hero--search .select-wrapper:hover::after {
        transform: rotate(0.25turn);
        transition: transform 0.2s ease;
    }
}

.hero--search select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: var(--violet);
    width: 100%;
}

.hero--search select::-ms-expand {
    display: none;
}

.hero--search select:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

@media screen and (min-width: 992px) {
    .hero--search select {
        padding: 16px 50px 16px 28px;
        font-size: 1.125rem;
    }
}

.hero--search button {
    padding: 12px 16px;
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .hero--search button {
        font-size: 18px;
        padding: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .hero--search button {
        padding: 16px 28px;
    }
}

.hero--search button:hover {
    color: var(--violet);
    background: white;
}

.hero--keynum {
    background: var(--violet);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 768px) {
    .hero--keynum {
        gap: 48px;
        row-gap: 32px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 992px) {
    .hero--keynum {
        padding: 36px clamp(40px, 8.33vw, 120px);
    }
}

@media screen and (min-width: 1280px) {
    .hero--keynum {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.hero--keynum .keynum-item {
    color: white;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .hero--keynum .keynum-item {
        width: calc(50% - 24px);
    }
}

@media screen and (min-width: 1280px) {
    .hero--keynum .keynum-item {
        width: auto;
    }
}

.hero--keynum .keynum-item p {
    font-family: var(--play);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    max-width: 140px;
    margin-inline: auto;
    text-wrap: balance;
}

@media screen and (min-width: 992px) {
    .hero--keynum .keynum-item p {
        font-size: 1.75rem;
        line-height: 30px;
    }
}

.hero--keynum .keynum-item div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero--keynum .keynum-item div p,
.hero--keynum .keynum-item div span {
    font-family: var(--roboto);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    max-width: unset;
    margin-inline: unset;
}

@media screen and (min-width: 992px) {

    .hero--keynum .keynum-item div p,
    .hero--keynum .keynum-item div span {
        font-size: 4.375rem;
        line-height: 4.375rem;
    }
}

/*# sourceMappingURL=style.css.map */


.acf-block-preview .hero--wrapper {
    position: relative;
    z-index: 1;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--wrapper {
        padding: clamp(120px, 12.5vw, 180px) clamp(40px, 8.33vw, 120px) 80px;
        gap: 80px;
    }
}

.acf-block-preview .hero--wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(178deg, rgba(255, 255, 255, 0) -3.31%, rgba(0, 0, 0, 0.5) 111.15%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
}

.acf-block-preview .hero--content {
    max-width: 836px;
    z-index: 1;
}

.acf-block-preview .hero--content h1 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: white;
    margin-bottom: 28px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--content h1 {
        font-size: 4.375rem;
        line-height: 70px;
    }
}

.acf-block-preview .hero--content h1 strong {
    font-family: var(--play);
    font-style: italic;
}

.acf-block-preview .hero--content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--content p {
        font-size: 17px;
    }
}

.acf-block-preview .hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.acf-block-preview .hero--search {
    padding: 32px 28px;
    background: var(--violet);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    z-index: 1;
    border-radius: 4px;
    margin: 0;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--search {
        width: auto;
        gap: clamp(16px, 2.22vw, 32px);
        border-radius: 8px;
        flex-direction: row;
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .acf-block-preview .hero--search {
        padding: 34px clamp(28px, 6.25vw, 90px);
    }
}

.acf-block-preview .hero--search .select-wrapper {
    width: 100%;
    position: relative;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--search .select-wrapper {
        width: -moz-max-content;
        width: max-content;
        max-width: 210px;
        flex-shrink: 0;
    }
}

.acf-block-preview .hero--search .select-wrapper::after {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    right: 16px;
    width: 7px;
    height: 16px;
    background: url("../images/chevron.svg") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--search .select-wrapper::after {
        right: 28px;
    }
}

.acf-block-preview .hero--search select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: var(--violet);
    width: 100%;
}

.acf-block-preview .hero--search select::-ms-expand {
    display: none;
}

.acf-block-preview .hero--search select:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--search select {
        padding: 16px 50px 16px 28px;
        font-size: 1.125rem;
    }
}

.acf-block-preview .hero--search button {
    padding: 12px 16px;
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--search button {
        font-size: 18px;
        padding: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .acf-block-preview .hero--search button {
        padding: 16px 28px;
    }
}

.acf-block-preview .hero--search button:hover {
    color: var(--violet);
    background: white;
}

.acf-block-preview .hero--keynum {
    background: var(--violet);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 768px) {
    .acf-block-preview .hero--keynum {
        gap: 48px;
        row-gap: 32px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--keynum {
        padding: 36px clamp(40px, 8.33vw, 120px);
    }
}

@media screen and (min-width: 1280px) {
    .acf-block-preview .hero--keynum {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.acf-block-preview .hero--keynum .keynum-item {
    color: white;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .acf-block-preview .hero--keynum .keynum-item {
        width: calc(50% - 24px);
    }
}

@media screen and (min-width: 1280px) {
    .acf-block-preview .hero--keynum .keynum-item {
        width: auto;
    }
}

.acf-block-preview .hero--keynum .keynum-item p {
    font-family: var(--play);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    max-width: 140px;
    margin-inline: auto;
    text-wrap: balance;
}

@media screen and (min-width: 992px) {
    .acf-block-preview .hero--keynum .keynum-item p {
        font-size: 1.75rem;
        line-height: 30px;
    }
}

.acf-block-preview .hero--keynum .keynum-item div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.acf-block-preview .hero--keynum .keynum-item div p,
.acf-block-preview .hero--keynum .keynum-item div span {
    font-family: var(--roboto);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    max-width: unset;
    margin-inline: unset;
}

@media screen and (min-width: 992px) {

    .acf-block-preview .hero--keynum .keynum-item div p,
    .acf-block-preview .hero--keynum .keynum-item div span {
        font-size: 4.375rem;
        line-height: 4.375rem;
    }
}

/*# sourceMappingURL=style.css.map */