/* Greetings Page Styles */
.greetings-banner {
    width: 100%;
    height: 172px;
    background: url('/images/greeting_bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 47px 87px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(90deg, rgba(0, 58, 87, 0.8) 0%, rgba(0, 58, 87, 0.4) 100%); */
        z-index: 1;
    }

    .banner-text {
        position: relative;
        z-index: 2;
        color: #fff;

        h2 {
            color: #FFF;
            font-size: 22px;
            font-style: normal;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 15px;
            word-break: keep-all;
        }

        p {
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%;
            word-break: keep-all;
        }
    }

    .quote-icon {
        width: 35px;
        position: absolute;
        top: -10px;
        left: -55px;
        @media (max-width: 1300px) {
            display: none;
        }
    }

    .quote-icon-end {
        width: 35px;
        position: absolute;
        bottom: -8px;
        right: -55px;
        @media (max-width: 1300px) {
            display: none;
        }
    }
}

.greetings-content {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: #454545;
    padding: 0 10px;
    word-break: keep-all;

    p {
        margin-bottom: 15px;
    }
}

/* Greetings Responsive */
@media (max-width: 1300px) {
    .greetings-banner {
        padding: 0 30px;
        height: auto;
        min-height: 240px;
    }
}