:root {
    --cyan:     #6cb2eb;
    --orange:   #f6993f;
    --yellow:   #ffed4a;
    --black:    #000;
    --white:    #FFF;
}

.owl-history .owl-stage {
    display: flex;
}

.owl-history .item {
    display: flex;
    height: 100%;
}

.contact-banner .contact-banner-background {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: unset!important;
    overflow: unset!important;
}


    .contact-banner-background::after {
        position: absolute;
        content: '';
        background-color: #388B99;
        opacity: 0.9;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
    }

.history .owl-carousel .carousel-photo img {
    object-fit: cover;
    object-position: center;
}

.hamburger {
    border: 2px solid #fff;
    border-radius: 5px;
}

.employee-card {
    flex-grow: 1;
}

.review-form .contact-form {

    background-color: var(--cyan);

    & h2 {
        color: var(--white);
    }

    & h3 {
        color: var(--white);
    }

    & input,
    & textarea {
        border: 0;
        color: var(--black);
        font-size: 16px;
        line-height: 30px;
        border-radius: 0;
    }

    & input::placeholder,
    & textarea::placeholder {
        color: var(--black);
        font-size: 16px;
        line-height: 30px;
        opacity: 0.5;
    }

    & button {
        bottom: 10px;
        right: 10px;
        color: var(--orange);
        font-size: 12px;
        background-color: transparent;
        line-height: 16px;
        letter-spacing: 1.2px;
        font-weight: bold;
        border-radius: 0;

        & span {
            border-bottom: 2px solid var(--orange);
        }

    }

}

.review-form__selector {
    color: var(--white);
}

.review-form__stars {
    gap: 5px;

    & .star {
        cursor: pointer;

        & svg {
            width: 100%;
            max-width: 20px;
            height: 20px;

            & path {
                fill: var(--white);
                transition: all 350ms ease;
            }
        }

        &.is-hovered {
            & svg {
                & path {
                    fill: var(--yellow) !important;
                }
            }
        }

        &.is-active {

            & svg {
                & path {
                    fill: var(--orange);
                }
            }
        }
    }
}