.c20-sec-banner {
    position: relative;
    padding: 60px 0 80px;
}

.home-banner-title {
    font-size: 74px;
    letter-spacing: -2px;
}

.banner-review-ticker {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-service-lineup {
    font-size: 23px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    line-height: 1;
}

.banner-service-lineup span + span {
    border-left: 2px solid #c0392b;
    padding-left: 16px;
}

/*About*/
/* About Section */
.ohm-eyebrow {
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ohm-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.ohm-checklist li {
    position: relative;
    padding-left: 35px;
}

.ohm-checklist li:not(:last-child) {
    margin-bottom: 15px;
}

.ohm-checklist li strong {
    display: block;
}

.ohm-checklist li:before {
    content: '✓';
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    top: 2px;
    text-align: center;
    line-height: 28px;
    background: #FCEBEE;
    color: rgb(var(--primary-color));
    border-radius: 20px;
}

.ohm-btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ohm-link-arrow {
    color: #1a2e4a;
    font-weight: 600;
    text-decoration: none;
}

.ohm-link-arrow:hover {
    text-decoration: underline;
}
/*End About*/

/*Stats*/
.ohm-stats-section {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.ohm-stat-number {
    color: rgb(var(--primary-color));
    line-height: 1;
    margin-bottom: 8px;
}

.ohm-stat-label {
    color: #3B4A5E;
    line-height: 1.5;
    margin-bottom: 0;
}
/*End Stats*/


/*Five Pillars*/
.ohm-pillars-section {
    background: linear-gradient(135deg, #072F87 0%, #008295 100%);
}

.ohm-pillars-title {
    color: #fff;
    margin: 12px 0 0;
}

.ohm-pillars-list {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 50px;
}

.ohm-pillars-list .row {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ohm-pillar-heading {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.ohm-pillar-heading {
    padding-left: 80px;
    position: relative;
}

.ohm-pillar-heading:before {
    content: attr(data-order);
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, .4);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -15px;
    width: 40px;
    height: 24px;
}

.ohm-pillar-desc {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding-right: 130px;
}


.ohm-pillar-link {
    margin-left: auto;
    color: #F7CE3C;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s;
}

.ohm-pillar-link {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.ohm-pillar-link:hover {
    text-decoration: underline;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .ohm-pillar-row {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .ohm-pillars-title {
        font-size: 32px;
    }

    .ohm-pillar-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 28px 0;
    }

    .ohm-pillar-link {
        margin-left: 0;
    }
}
/*End Five Pillars*/

/* ================================================
   Video Thumbnails
   ================================================ */

.ohm-video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.ohm-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.ohm-video-thumb:hover img {
    transform: scale(1.04);
    filter: brightness(.85);
}

.ohm-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, transform .3s ease;
    pointer-events: none;
}

.ohm-video-thumb:hover .ohm-play-btn {
    background: rgba(0, 0, 0, .8);
    transform: scale(1.1);
}

.ohm-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

/* Large thumb — bigger play button */
.col-lg-6 > .ohm-video-thumb .ohm-play-btn {
    width: 80px;
    height: 80px;
}

.col-lg-6 > .ohm-video-thumb .ohm-play-btn svg {
    width: 38px;
    height: 38px;
}

/* ================================================
   Video Modal
   ================================================ */
.ohm-video-modal .modal-dialog,
.ohm-video-modal-dialog {
    position: relative;
    max-width: min(1100px, 92vw);
    width: 92vw;
    overflow: visible; /* allow close btn to sit above */
}

.ohm-video-modal .modal-content {
    border-radius: 6px;
    overflow: hidden;
    position: relative; /* not static */
}

.ohm-video-close {
    position: absolute;
    top: -44px;
    right: 0;
    z-index: 9999;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease, transform .2s ease;
}

.ohm-video-close:hover {
    opacity: .7;
    transform: scale(1.15);
}

.ohm-video-close svg {
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 991px) {
    .ohm-video-thumb-lg {
        min-height: 280px;
    }

    .ohm-video-thumb {
        min-height: 150px;
    }

    .ohm-video-modal-dialog {
        width: 94%;
    }
}
/* ================================================
   Video section End 
   ================================================ */

/*Join QSC CTA*/
.ohm-cta-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ohm-cta-phone {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    text-align: center;
    margin: 8px 0 0;
    font-weight: 700;
}

.ohm-cta-phone a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.ohm-cta-phone a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {

}

@media (max-width: 576px) {

}



/*End Join QSC CTA*/


/*Partner Logos*/
.ohm-logos-heading {
    color: #6B7888;
    font-weight: 600;
    letter-spacing: .5px;
    margin: 0 auto 40px;
}

.ohm-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    height: 130px;
    border-radius: 2px;
    border: 1px solid #E8ECF1;
}

.ohm-logo-card img {
    width: auto;
    max-width: 98%;
    max-height: 98%;
}

@media screen and (max-width: 576px) {

}
/*End Partner Logos*/


/*News*/
.ohm-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ohm-news-title {
    color: #1a2e4a;
    margin: 12px 0 0;
}

.ohm-news-card {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.ohm-news-img {
    height: 220px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.ohm-news-meta {
    color: rgb(var(--primary-color));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ohm-news-card-title {
    color: #1a2e4a;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: .3s;
}

.ohm-news-card:hover .ohm-news-card-title {
    color: rgb(var(--primary-color));
}

.ohm-news-excerpt {
    color: #222222;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 576px) {

}
/*End News*/


/*Testimonials*/
.ohm-testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ohm-testimonials-title {
    color: #1a2e4a;
    margin: 12px 0 0;
}

.ohm-testimonial-nav {
    display: flex;
    gap: 12px;
}

.ohm-testimonial-prev,
.ohm-testimonial-next {
    width: 60px;
    height: 48px;
    color: #0A1F36;
    background-color: #fff;
    border: 1px solid #D9DEE6;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    border-radius: 3px;
}

.ohm-testimonial-prev:hover,
.ohm-testimonial-next:hover {
    color: #fff;
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.js-testimonials {
    margin: 0 -12px;
}

.js-testimonials .slick-slide {
    height: auto;
}

.js-testimonials .slick-track {
    display: flex;
}

.ohm-testimonial-card {
    background-color: rgba(234, 234, 234, .5);
    border-radius: 12px;
    padding: 25px 30px 15px;
    border: 1px solid rgba(221, 221, 221, .4);
}

.ohm-testimonial-stars {
    color: #F6BB06;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.ohm-testimonial-quote {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

.ohm-testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ohm-testimonial-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background-color: rgb(var(--secondary-color));
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.ohm-testimonial-name {
    display: block;
    color: #1a2e4a;
    font-size: 15px;
}

.ohm-testimonial-company {
    display: block;
    color: #888;
    font-size: 13px;
}

.ohm-testimonial-quote .ohm-quote-rest {
    display: none;
}
.ohm-testimonial-quote.is-expanded .ohm-quote-rest {
    display: inline;
}

.ohm-testimonial-quote.is-expanded .ohm-quote-ellipsis {
    display: none;
}

.ohm-quote-toggle {
    display: inline;
    background: none;
    border: 0;
    padding: 0;
    margin-left: 4px;
    color: #e02b20;
    font: inherit;
    font-weight: 600;
    line-height: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.ohm-quote-toggle:hover,
.ohm-quote-toggle:focus-visible {
    text-decoration: underline;
}

@media screen and (max-width: 576px) {
    .ohm-testimonials-title {
        font-size: 28px;
    }

    .ohm-testimonial-quote {
        min-height: 0;
    }
}
/*End Testimonials*/


/*Coaching CTA*/

.ohm-cta-section {
    background: linear-gradient(135deg, #072F87 0%, #00B5E2 100%);
}

.ohm-coaching-title {
    color: #1a2e4a;
    font-size: 36px;
}

.ohm-coaching-desc {
    color: #3B4A5E;
    margin-bottom: 36px;
}

.ohm-coaching-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (max-width: 991px) {
  

}

@media screen and (max-width: 576px) {
    .ohm-coaching-title {
        font-size: 26px;
    }

    .ohm-coaching-content {
        padding: 32px 24px;
    }
}
/*End Coaching CTA*/


/*Footer*/
.c20-nap-item {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left 7px;
    font-size: 15px;
}


.ohm-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.ohm-footer-nav-list li a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 15px;
}

.ohm-footer-nav-list li a:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .ohm-footer-nav-list {
        justify-content: flex-end;
    }
}

/*=== copyright area start ===*/

.copyright-area {
    background: #222222;
}


@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1280px) {
    .ohm-pillar-heading {
        padding-left: 70px;
        font-size: 24px;
    }
}


@media screen and (max-width: 1199px) {

    .home-banner-title {
        font-size: 64px;
    }
}

@media screen and (max-width: 991px) {

    .site-content .container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .home-banner-title {
        font-size: 54px;
    }

    .ohm-pillars-list .row {
        padding: 25px 0;
    }

    .ohm-pillar-heading {
        padding-left: 60px;
        margin-bottom: 15px;
    }

    .ohm-pillar-link,
    .ohm-pillar-desc {
        padding-left: 60px;
    }

    .ohm-pillar-heading:before {
        top: 5px;
    }

    .ohm-pillar-desc {
        padding-right: 0;
        margin-bottom: 15px;
    }
    .ohm-pillar-link {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .c20-sec-banner {
        padding: 50px 0 50px;
    }

    .banner-service-lineup span + span {
        padding-left: 12px;
    }

    .banner-service-lineup {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {

    .home-banner-title {
        font-size: 40px;
    }
}


@media screen and (max-width: 480px) {}