@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.os-block-hero-finder {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--os-base);
    background: var(--os-base-gradient);
}
.os-section.os-block-hero-finder {
    padding-top: calc(var(--os-section-padding) * 0.6);
    padding-bottom: 3rem;
    position: relative;
    overflow: visible;   
}
.os-section.os-block-hero-finder::after {
    content: "";
    height: clamp(3rem, 1.912vw + 2.388rem, 5rem);
    background-color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0%);
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}
.editor-styles-wrapper .os-section.os-block-hero-finder {
    min-height: auto;
}

.os-block-hero-finder .os-container {
}
.os-block-hero-finder__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(var(--os-content-gap) * 0.8);
}
.os-block-hero-finder h1.os-h1 {
    font-size: calc(var(--os-h1) * 1);
    color: white;
    margin: 0;
}
.os-block-hero-finder p {
    font-size: var(--os-text-m);
    color: var(--os-white);
    margin: 0;
}
.os-block-hero-finder__images-wrapper {
    position: relative;
    overflow: visible;
    width: 80%;
    float: right;
    z-index: 1;
}
.os-block-hero-finder__image {
    border-radius: var(--os-radius-l);
    max-width: 100%;
    box-shadow: var(--os-box-shadow-l);
    object-fit: cover;
}
.os-block-hero-finder__image {
    aspect-ratio: 6 / 4;
    width: 100%;
    height: auto;
}
.os-block-hero-finder__image-overlay {
    width: 70px;
    height: 70px;
    background-color: var(--os-accent-trans-60);
    border-radius: var(--os-radius-s);
    box-shadow: var(--os-box-shadow-l);
    position: absolute;
    right: 60px;
    bottom: -35px;
}
.os-block-hero-finder__image-overlay:first-of-type {
    position: absolute;
    top: 60px;
    left: -35px;
}
@media screen and (max-width: 960px) {
    .os-block-hero-finder__image-overlay {
        width: 60px;
        height: 60px;
        bottom: -30px;
        right: 30px;
    }
    .os-block-hero-finder__image-overlay:first-of-type {
        top: 30px;
        left: -30px;
    }
}
.os-single-image .os-block-hero-finder__images-wrapper {
    width: 90%;
}
@media screen and (max-width: 960px) {
    .os-single-image .os-block-hero-finder__images-wrapper {
    width: 100%;
    }
}
.os-block-hero-finder__image {
    opacity: 0;
    animation: fade-in 1s ease-in-out 0.5s forwards;
}
.os-block-hero-finder__image-overlay {
    opacity: 0;
    animation: fade-in 1s ease-in-out 0.8s forwards;
}
.os-block-hero-finder__image-overlay:first-of-type {
    opacity: 0;
    animation: fade-in 1s ease-in-out 1.2s forwards;
}
.os-hero-finder__search {
    margin-top: calc(var(--os-content-gap) + 2rem);
    margin-bottom: -5rem;
    z-index: 1;
}
.os-hero-finder__search-form {
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 1200px;
    background-color: var(--os-base);
    border-radius: var(--os-radius-m);
    box-shadow: var(--os-box-shadow-m);
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}
.os-hero-finder__search-form select,
.os-hero-finder__search-form submit,
.os-hero-finder__search-form button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.os-hero-finder__search-form-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.os-hero-finder__search-form label {
    color: var(--os-accent);
    line-height: 1;
}
.os-hero-finder__search-form .os-form-placeholder {
    color: var(--os-base-light);
}
.os-hero-finder__search-form select {
    height: 4rem;
    padding: 1rem 4rem 1rem 2rem;
    display: flex;
    border-radius: var(--os-radius-m);
    font-size: 1.6rem;
    width: 25rem;
}
.os-hero-finder__search-form-field select {
    background-image: url(../../img/menu-chevron.svg);
    background-repeat: no-repeat;
    background-size: 1.5rem auto;
    background-position: right 1.5rem center;
}
.os-hero-finder__search-form input[type=submit] {  
    cursor: pointer;
    border: none;
    border-radius: var(--os-radius-m);
    height: 4rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    color: var(--os-base);
    background-color: var(--os-accent);
    border: 2px var(--os-accent) solid;
}
@media screen and (max-width: 1300px) {
    .os-hero-finder__search-form {
        align-items: flex-end;
    }
    .os-hero-finder__search-form-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
@media screen and (max-width: 1100px) {
    .os-hero-finder__search-form select {
        max-width: 20rem;
    }
}
@media screen and (max-width: 900px) {
    .os-hero-finder__search-form {
        flex-direction: column;
        align-items: flex-start;
    }
    .os-hero-finder__search-form-field {
        width: 100%;
    }
    .os-hero-finder__search-form-field select {
        width: 100%;
        max-width: 100%;
    }
}