/* =========================================================
   MSB HR Intro
   ========================================================= */
.msb-hr-intro {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Wave image - top */
.msb-hr-intro__wave {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 0;
    opacity: .3 !important;
}

.msb-hr-intro__inner {
    position: relative;
    margin: 0 auto;
}

/* Title */
.msb-hr-intro__title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #091E42;
    margin: 0 0 24px;
}

.msb-hr-intro__line1,
.msb-hr-intro__line2 {
    display: block;
}

.msb-hr-intro__highlight {
    font-weight: 700;
    background: linear-gradient(90deg,rgba(237, 28, 36, 1) 0%, rgba(255, 184, 28, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.msb-hr-intro__bold {
    font-weight: 700;
}

/* Description */
.msb-hr-intro__desc {
    font-size: 16px;
    color: #091E42;
    margin: 0 0 24px;
}

/* Quote */
.msb-hr-intro__quote {
    font-size: 16px;
    line-height: 1.7;
    color: #091E42;
    margin: 24px 0 0;
    padding: 0;
    border: none;
    font-style: inherit;
}

.msb-hr-intro__quote strong {
    display: block;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
    .msb-hr-intro {
        padding: 60px 24px;
    }

    .msb-hr-intro__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .msb-hr-intro {
        padding: 40px 16px;
        min-height: 500px;
    }

    .msb-hr-intro__title {  
        font-size: 40px;
        margin-bottom: 24px;
    }

    .msb-hr-intro__desc,
    .msb-hr-intro__quote {
        font-size: 16px;
    }
}
