.site-banner {
    height: 100%;
    min-height: 280px;
    background: var(--main-color-theme);
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.site-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}
.site-banner .wrapper {
    padding: 0 20px;
    box-sizing: border-box;
}
.site-banner .wrapper .page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 54px;
    margin: 0 0 24px;
}
.site-banner .wrapper .page-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #e9e8ed;
    width: 100%;
    max-width: 700px;
}
.site-banner .wrapper .custom-button-groups {
    margin-top: 32px;
}
.site-banner .wrapper .custom-button-groups a {
    color: #000;
    background-color: #fff;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.site-banner .wrapper .custom-button-groups a.view_online-btn {
    background-color: var(--primary-btn-color);
    color: #fff;
}
.site-banner .wrapper .custom-button-groups a:not(:first-child) {
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    .site-banner {
        margin-top: 65px;
    }
    .site-banner .wrapper {
        padding: 0 10px;
        min-height: 120px;
        width: auto;
    }
    .site-banner .wrapper .page-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0.3px;
        height: 30px;
    }
}