/* CommonBanner.css */

.common_banner {
    background: transparent linear-gradient(90deg, #19a0dc 0%, #09558f 100%) 0% 0% no-repeat padding-box;
    padding: 28px 0;
}

.common_banner .banner_content {
    color: #fff;
}

.common_banner .small_text {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.common_banner .banner_title {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}



/* ================== Media Queries ================== */

@media (min-width:0px) and (max-width:575px) {
    .common_banner .banner_title {
        font-size: 18px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .common_banner .banner_title {
        font-size: 22px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .common_banner .banner_title {
        font-size: 24px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .common_banner .banner_title {
        font-size: 27px;
    }
}