/* =========================================================
   COURSE BANNER - LEFT SIDE REDESIGN
   Parent ID: #course_banner
   Theme Color: #bb2929
   ========================================================= */

#course_banner {
    background: #fdf7f7;
    --ms-primary: #bb2929;
    --ms-primary-dark: #951f1f;
    --ms-primary-soft: #fff4f4;
    --ms-text: #151515;
    --ms-text-light: #555;
    --ms-border: #ead6d6;
    --ms-star: #ffb000;
}

/* Left Side Main Area */
#course_banner .col-lg-8 .course_banner_content {
    position: relative;
    padding: 34px 0 38px;
    max-width: 850px;
}

/* Small Training Badge */
#course_banner .col-lg-8 .course_banner_content::before {
    content: "Instructor-Led Live Online Training";
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    margin-bottom: 20px;

    background: var(--ms-primary);
    color: #fff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    border-radius: 7px;

    box-shadow: 0 6px 18px rgba(187, 41, 41, 0.15);
}

/* =========================
   COURSE TITLE
   ========================= */

#course_banner .col-lg-8 .course_banner_content .title {
    max-width: 820px;
    margin: 0 0 22px;

    color: var(--ms-text);
    font-size: clamp(36px, 3.1vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

/* =========================
   RATING + LEARNERS
   ========================= */

#course_banner .col-lg-8 .course_banner_content > .row {
    align-items: center;
    margin-bottom: 27px;
    --bs-gutter-x: 0;
}

#course_banner .col-lg-8 .course_banner_content > .row > .col-auto {
    display: flex;
    align-items: center;
    padding: 0;
}

#course_banner .col-lg-8 .course_banner_content > .row > .col-auto + .col-auto {
    position: relative;
    margin-left: 28px;
    padding-left: 29px;
}

#course_banner .col-lg-8 .course_banner_content > .row > .col-auto + .col-auto::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;

    width: 1px;
    height: 22px;

    background: #c9b6b6;
    transform: translateY(-50%);
}

/* Rating blocks */
#course_banner .col-lg-8 .rating-main {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 !important;
}

/* Remove Bootstrap inline spacing */
#course_banner .col-lg-8 .rating-main ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

#course_banner .col-lg-8 .rating-main ul li {
    margin: 0 !important;
    line-height: 1;
}

/* Stars */
#course_banner .col-lg-8 .rating-main .fa-star {
    color: var(--ms-star);
    font-size: 18px;
}

/* User Icon */
#course_banner .col-lg-8 .rating-main .fa-user {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    color: var(--ms-primary);
    font-size: 17px;
}

/* Rating / Learners Text */
#course_banner .col-lg-8 .rating-main span {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* =========================
   DESCRIPTION
   If there is a paragraph in banner
   ========================= */

#course_banner .col-lg-8 .course_banner_content > p {
    max-width: 790px;
    margin: -4px 0 29px;

    color: var(--ms-text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* =========================
   ACTION BUTTONS
   ========================= */

#course_banner .col-lg-8 .cls_an_btn {
    justify-content: flex-start !important;
    align-items: center;
    gap: 18px;

    margin-top: 0;
    margin-bottom: 28px;
}

/* Reset both buttons */
#course_banner .col-lg-8 .cls_an_btn > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 27px;

    border-radius: 7px;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Download Brochure */
#course_banner .col-lg-8 .cls_an_btn .animated-arrow {
    min-width: 250px;

    background: var(--ms-primary);
    border: 1px solid var(--ms-primary);
    color: #fff;

    box-shadow: 0 8px 22px rgba(187, 41, 41, 0.16);
}

/* Remove previous arrow animation styling */
#course_banner .col-lg-8 .cls_an_btn .animated-arrow .the-arrow {
    display: none;
}

#course_banner .col-lg-8 .cls_an_btn .animated-arrow .main {
    display: flex;
    align-items: center;
    justify-content: center;
}

#course_banner .col-lg-8 .cls_an_btn .animated-arrow .text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* Download Icon */
#course_banner .col-lg-8 .cls_an_btn .animated-arrow .main::before {
    content: "\f019";
    margin-right: 11px;

    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    font-weight: 900;
}

/* Second CTA */
#course_banner .col-lg-8 .cls_an_btn > a:last-child {
    min-width: 210px;

    background: #fff;
    border: 1px solid var(--ms-primary);
    color: var(--ms-primary);
}

/* Change Interview Questions visually to Talk to Expert */
#course_banner .col-lg-8 .cls_an_btn > a:last-child {
    font-size: 0;
}

#course_banner .col-lg-8 .cls_an_btn > a:last-child::before {
    content: "Talk to an Expert";
    font-size: 15px;
    font-weight: 600;
}

#course_banner .col-lg-8 .cls_an_btn > a:last-child::after {
    content: "\f095";
    margin-left: 23px;

    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900;
}

/* Button Hover */
#course_banner .col-lg-8 .cls_an_btn .animated-arrow:hover {
    background: var(--ms-primary-dark);
    border-color: var(--ms-primary-dark);
    color: #fff;

    box-shadow: 0 11px 28px rgba(187, 41, 41, 0.22);
    transform: translateY(-2px);
}

#course_banner .col-lg-8 .cls_an_btn > a:last-child:hover {
    background: var(--ms-primary-soft);
    color: var(--ms-primary);
    transform: translateY(-2px);
}

/* =========================
   GOOGLE REVIEW +
   FREE CONSULTATION CARD
   ========================= */

#course_banner .col-lg-8 .gy-wrap {
    display: flex !important;
    align-items: stretch !important;

    width: 100%;
    max-width: 660px;
    min-height: 98px;

    margin-top: 0;
    padding: 0;

    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 10px;

    box-shadow: 0 10px 35px rgba(48, 20, 20, 0.045);

    overflow: hidden;
}

/* Both Review Links */
#course_banner .col-lg-8 .gy-wrap > a {
    position: relative;

    display: flex !important;
    align-items: center !important;
    justify-content: center;

    margin: 0;
    padding: 20px 30px;

    color: #181818;
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

/* Google side */
#course_banner .col-lg-8 .gy-wrap > a:first-child {
    flex: 1.1;
    justify-content: flex-start;
    gap: 19px;
}

/* Divider */
#course_banner .col-lg-8 .gy-wrap > a:first-child::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;

    width: 1px;

    background: var(--ms-border);
}

/* Google image */
#course_banner .col-lg-8 .gy-wrap .img-2 {
    width: 115px;
    max-height: 50px;
    object-fit: contain;
    margin: 0;
}

/* Consultation Side */
#course_banner .col-lg-8 .gy-wrap > a:last-child {
    flex: 0.9;
    gap: 15px;
    text-align: left !important;
}

/* Calendar Icon */
#course_banner .col-lg-8 .gy-wrap > a:last-child::before {
    content: "\f073";

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;
    width: 42px;
    height: 42px;

    color: var(--ms-primary);

    font-family: "Font Awesome 6 Free";
    font-size: 24px;
    font-weight: 900;
}

/* Hover */
#course_banner .col-lg-8 .gy-wrap > a:hover {
    background: #fffafa;
}

/* =========================
   BREADCRUMB
   ========================= */

#course_banner .breadcrumb_domain_wrap {
    margin-bottom: 12px;
}

#course_banner .breadcrumb_domain_wrap ul {
    gap: 0;
    align-items: center;
}

#course_banner .breadcrumb_domain_wrap li {
    position: relative;

    color: #333;
    font-size: 13px;
    font-weight: 500;

    list-style: none;
}

#course_banner .breadcrumb_domain_wrap li:not(:last-child) {
    margin-right: 22px;
}

#course_banner .breadcrumb_domain_wrap li:not(:last-child)::after {
    content: "\f054";

    position: absolute;
    top: 50%;
    right: -14px;

    color: var(--ms-primary);

    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;

    transform: translateY(-50%);
}

#course_banner .breadcrumb_domain_wrap a {
    color: #333;
    text-decoration: none;
}

#course_banner .breadcrumb_domain_wrap a:hover {
    color: var(--ms-primary);
}

/* Home icon before first breadcrumb */
#course_banner .breadcrumb_domain_wrap li:first-child a::before {
    content: "\f015";
    margin-right: 9px;

    color: #333;

    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 991.98px) {

    #course_banner .col-lg-8 .course_banner_content {
        max-width: 100%;
        padding: 28px 0 34px;
    }

    #course_banner .col-lg-8 .course_banner_content .title {
        max-width: 700px;
        font-size: 42px;
    }

    #course_banner .col-lg-8 .gy-wrap {
        max-width: 650px;
    }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 767.98px) {

    #course_banner .col-lg-8 .course_banner_content {
        padding: 23px 0 28px;
    }

    #course_banner .col-lg-8 .course_banner_content::before {
        margin-bottom: 17px;
        padding: 7px 12px;

        font-size: 11px;
    }

    #course_banner .col-lg-8 .course_banner_content .title {
        margin-bottom: 18px;

        font-size: 33px;
        line-height: 1.14;
        letter-spacing: -0.6px;
    }

    #course_banner .col-lg-8 .course_banner_content > .row {
        gap: 11px;
        margin-bottom: 22px;
    }

    #course_banner .col-lg-8 .course_banner_content > .row > .col-auto + .col-auto {
        margin-left: 0;
        padding-left: 0;
    }

    #course_banner .col-lg-8 .course_banner_content > .row > .col-auto + .col-auto::before {
        display: none;
    }

    #course_banner .col-lg-8 .rating-main {
        gap: 8px;
    }

    #course_banner .col-lg-8 .rating-main .fa-star {
        font-size: 15px;
    }

    #course_banner .col-lg-8 .rating-main span {
        font-size: 13px;
    }

    #course_banner .col-lg-8 .cls_an_btn {
        gap: 12px;
    }

    #course_banner .col-lg-8 .cls_an_btn > a,
    #course_banner .col-lg-8 .cls_an_btn .animated-arrow {
        width: 100%;
        min-width: 0;
    }

    #course_banner .col-lg-8 .gy-wrap {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    #course_banner .col-lg-8 .gy-wrap > a {
        min-height: 88px;
        padding: 17px 20px;
    }

    #course_banner .col-lg-8 .gy-wrap > a:first-child::after {
        top: auto;
        right: 18px;
        bottom: 0;
        left: 18px;

        width: auto;
        height: 1px;
    }

    #course_banner .col-lg-8 .gy-wrap .img-2 {
        width: 105px;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    #course_banner .col-lg-8 .course_banner_content .title {
        font-size: 29px;
    }

    #course_banner .col-lg-8 .course_banner_content > .row {
        flex-direction: column;
        align-items: flex-start;
    }

    #course_banner .col-lg-8 .gy-wrap > a:first-child {
        gap: 12px;
        padding-left: 16px;
        padding-right: 16px;
    }

    #course_banner .col-lg-8 .gy-wrap > a {
        font-size: 15px;
    }
}


/* =========================================================
   RIGHT SIDE BANNER FEATURE STRIP
   Parent: #course_banner
   Theme: #bb2929
   ========================================================= */

#course_banner .banner-feature-strip {
    width: 100%;
    margin-top: 18px;
    padding: 17px 10px 15px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;

    background: linear-gradient(
        135deg,
        #8f1c22 0%,
        #bb2929 52%,
        #a51f24 100%
    );

    border-radius: 16px;

    box-shadow:
        0 12px 28px rgba(187, 41, 41, 0.18);

    overflow: hidden;
}


/* Each Feature */

#course_banner .banner-feature-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-width: 0;
    padding: 0 8px;

    text-align: center;
}


/* Vertical Divider */

#course_banner .banner-feature-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 2px;
    right: 0;

    width: 1px;
    height: calc(100% - 4px);

    background: rgba(255, 255, 255, 0.55);
}


/* Icon White Circle */

#course_banner .banner-feature-strip .feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    background: #fff;
    border-radius: 50%;

    color: #bb2929;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Icons */

#course_banner .banner-feature-strip .feature-icon i {
    font-size: 21px;
    line-height: 1;
}


/* Feature Text */

#course_banner .banner-feature-strip .feature-title {
    color: #fff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;

    letter-spacing: 0;
}


/* Hover */

#course_banner .banner-feature-item:hover .feature-icon {
    transform: translateY(-3px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    #course_banner .banner-feature-strip {
        padding: 18px 10px 16px;
    }

    #course_banner .banner-feature-strip .feature-icon {
        width: 50px;
        height: 50px;
    }

    #course_banner .banner-feature-strip .feature-title {
        font-size: 13px;
    }
}


/* =========================================================
   LAPTOP
   col-lg-4 width gets smaller
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    #course_banner .banner-feature-strip {
        padding: 15px 5px 14px;
        border-radius: 13px;
    }

    #course_banner .banner-feature-item {
        padding: 0 5px;
    }

    #course_banner .banner-feature-strip .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    #course_banner .banner-feature-strip .feature-icon i {
        font-size: 18px;
    }

    #course_banner .banner-feature-strip .feature-title {
        font-size: 11px;
        line-height: 1.3;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    #course_banner .banner-feature-strip {
        max-width: 650px;
        margin: 18px auto 0;

        padding: 18px 10px;

        grid-template-columns: repeat(4, 1fr);
    }

    #course_banner .banner-feature-strip .feature-title {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
   2 x 2 Layout
   ========================================================= */

@media (max-width: 575.98px) {

    #course_banner .banner-feature-strip {
        grid-template-columns: repeat(2, 1fr);

        padding: 8px;

        border-radius: 14px;
    }

    #course_banner .banner-feature-item {
        padding: 15px 8px;
    }

    /* remove desktop dividers */
    #course_banner .banner-feature-item:not(:last-child)::after {
        display: none;
    }

    /* Vertical divider between columns */
    #course_banner .banner-feature-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.35);
    }

    /* Horizontal divider */
    #course_banner .banner-feature-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }

    #course_banner .banner-feature-strip .feature-icon {
        width: 44px;
        height: 44px;

        margin-bottom: 8px;
    }

    #course_banner .banner-feature-strip .feature-icon i {
        font-size: 19px;
    }

    #course_banner .banner-feature-strip .feature-title {
        font-size: 12px;
    }
}