.solution__finder--section {
    position: relative;
    overflow: hidden;
    background: -o-linear-gradient(11.37deg, #003D75 10.32%, #005EB4 73.06%);
    background: linear-gradient(78.63deg, #003D75 10.32%, #005EB4 73.06%);
    padding: 110px 0;
}

.solution__finder--section * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    outline: none;
}

.solution-finder__pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.solution-finder__pattern svg {
    display: block;
}

.solution-finder__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}


/* Media */
.solution-finder__media {
    position: relative;
    max-width: 616px;
    width: 100%;
}

.solution-finder__media-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 616/320;
    position: relative;
}

.solution-finder__media-frame img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

/* Content */
.solution-finder__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.solution-finder__desc,
.solution-finder__title {
    color: #FFF;
}

.solution-finder__title {
    margin: 0;
}

.solution-finder__desc {
    margin-top: 20px;
}

/* Form Fields */
.solution-finder__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
    position: relative;
    z-index: 3;
}


.solution-finder__label {
    display: none;
}

/* Custom Select */
.js-solution-finder-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.solution-finder__fields .solution-finder__field {
    width: calc(100% / 2);
}

.solution-finder__select-trigger {
    width: 100%;
    min-width: 278px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 11px 24px;
    padding-right: 50px;
    gap: 10px;
    background: #FFFFFF;
    border-radius: 28px;
}

.solution-finder__select-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: var(--color-text);
}

.solution-finder__select-icon {
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75L5.75 5.625L10.75 0.75' stroke='%23004789' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 24px;
    top: 20px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-solution-finder-select.open .solution-finder__select-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.solution-finder__select-wrapper {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    overflow: hidden;
    padding: 10px 0;
}

.js-solution-finder-select.open .solution-finder__select-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.solution-finder__select-options {
    list-style: none;
    max-height: 180px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}


/* Scrollbar styling for options */
.solution-finder__select-options::-webkit-scrollbar {
    width: 3px;
}

.solution-finder__select-options::-webkit-scrollbar-track {
    background: transparent;
}

.solution-finder__select-options::-webkit-scrollbar-thumb {
    background-color: #D1D5DB;
    border-radius: 3px;
}

.solution-finder__select-option {
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 10px 20px;
    font-weight: 500;
}

.solution-finder__select-option:last-child {
    margin-bottom: 0;
}

.solution-finder__select-option:hover,
.solution-finder__select-option.selected {
    color: var(--color-primary);
}

/* Button */
button.primary.solution-finder__btn {
    background: #003E77;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    gap: 10px;
}

.solution-finder__actions {
    text-align: right;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .solution-finder__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .solution-finder__select-trigger,
    .solution-finder__media {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .solution-finder__media {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .solution-finder__grid {
        gap: 42px;
    }

    .solution__finder--section {
        padding-top: 85px;
    }

    .solution-finder__pattern {
        right: -85px;
        bottom: -57px;
    }

    .solution-finder__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0;
    }

    .solution-finder__desc {
        margin-top: 15px;
    }

    .solution-finder__select-trigger {
        min-height: 46px;
    }
}

@media only screen and (max-width: 660px) {
    .solution-finder__fields {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 30px;
    }

    .solution-finder__fields .solution-finder__field {
        width: 100%;
    }

    .solution-finder__select-trigger {
        max-width: 100%;
        min-width: none;
    }

    .solution-finder__content {
        gap: 33px;
    }

    .solution-finder__select-text {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0;
    }

}