/* =========================================================
   NXTGENBUDDY
   COMMON COURSE OVERVIEW
   RESPONSIVE EDITORIAL DESIGN
========================================================= */

.ng-course-overview {

    --ng-muted: #9aa198;
    --ng-line: rgba(255,255,255,.10);

    width: 100%;
    padding: 110px 0;

    position: relative;
    overflow: hidden;

    color: white;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

/* =========================================================
   BACKGROUND
========================================================= */
/* 
.ng-course-overview::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -300px;
    right: -250px;
    border-radius: 50%; */
    /* background:
        radial-gradient(
            circle,
            rgba(173,255,47,.1),
            transparent 68%
        ); */
    /* pointer-events: none;
}

.ng-course-overview::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -280px;
    left: -250px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(173,255,47),
            transparent 70%
        );

    pointer-events: none;
} */


/* =========================================================
   CONTAINER
========================================================= */

.ng-course-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================================================
   HEADER
========================================================= */

.ng-course-header {
    max-width: 850px;
    margin-bottom: 80px;
}

.ng-course-eyebrow {

    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
}

/* .ng-course-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: greenyellow;
} */

.ng-course-header h2 {
    margin: 22px 0 22px;
    font-size:52px;
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 900;
    color: whitesmoke;
}

.ng-course-header h2 span {
    display: block;
    color: greenyellow;
}

.ng-course-header p {
    max-width: 720px;
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.9;
}

/* =========================================================
   COURSE LIST
========================================================= */

.ng-course-list {
    width: 100%;
}

/* =========================================================
   COURSE ITEM
========================================================= */

.ng-course-item {
    display: grid;
    grid-template-columns:
        60px
        70px
        1fr;
    gap: 30px;
    padding: 55px 0;
    border-top:
        1px solid var(--ng-line);
    position: relative;
    transition: .4s ease;
}

.ng-course-item:last-child {
    border-bottom:
        1px solid var(--ng-line);
}

/* =========================================================
   NUMBER
========================================================= */

.ng-course-number {
    padding-top: 8px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .3s ease;
}

/* =========================================================
   ICON
========================================================= */

.ng-course-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:2px solid greenyellow;
    color: greenyellow;
    font-size: 21px;
    transition: .4s ease;
}

/* =========================================================
   CONTENT
========================================================= */

.ng-course-content {
    max-width: 950px;
}

.ng-course-category {
    display: block;
    margin-bottom: 12px;
    color: greenyellow;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ng-course-content h3 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 800;
    color: whitesmoke;
    transition: .3s ease;
}


.ng-course-content p {
    max-width: 820px;
    margin: 0 0 28px;
    color: white;
    font-size: 15px;
    line-height: 1.9;
}

/* =========================================================
   TOPICS
========================================================= */

.ng-course-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
}

.ng-course-topics span {
    padding: 8px 12px;
    border:1px solid rgba(173,255,47,.18);
    border-radius: 30px;
    color: white;
    font-size: 11px;
    transition: .3s ease;
}

.ng-course-topics span:hover {
    border-color: greenyellow;
    color: greenyellow;
}


/* =========================================================
   LINK
========================================================= */

.ng-course-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: greenyellow;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease;
}

.ng-course-link i {
    transition: .3s ease;
}

.ng-course-link:hover {
    color: white;
}

.ng-course-link:hover i {
    transform: translateX(7px);
}

/* =========================================================
   HOVER
========================================================= */

.ng-course-item:hover
.ng-course-number {
    color: greenyellow;
}

.ng-course-item:hover
.ng-course-icon {
    background: greenyellow;
    color: black;
    transform:
        rotate(-8deg)
        scale(1.08);
}

.ng-course-item:hover
.ng-course-content h3 {
    color: greenyellow;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .ng-course-overview {
        padding: 90px 0;
    }

    .ng-course-header {
        margin-bottom: 60px;
    }

    .ng-course-item {
        grid-template-columns:
            50px
            60px
            1fr;
        gap: 20px;
        padding: 45px 0;
    }

    .ng-course-icon {
        width: 52px;
        height: 52px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    .ng-course-overview {
        padding: 70px 0;
    }

    .ng-course-container {
        width: 88%;
    }

    .ng-course-header {
        margin-bottom: 45px;
    }

    .ng-course-header h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .ng-course-header p {
        font-size: 14px;
        line-height: 1.8;
    }

    .ng-course-item {
        display: block;
        padding: 45px 0;
    }

    .ng-course-number {
        margin-bottom: 18px;
    }

    .ng-course-icon {
        margin-bottom: 22px;
        width: 50px;
        height: 50px;
    }

    .ng-course-content h3 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .ng-course-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .ng-course-topics {
        gap: 7px;
    }

    .ng-course-topics span {
        font-size: 10px;
        padding: 7px 10px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .ng-course-header h2 {
        font-size: 37px;
    }

    .ng-course-content h3 {
        font-size: 27px;
    }

    .ng-course-content p {
        font-size: 13px;
    }
}

/* ==========================================
   SECTION 1 — MORE THAN A COURSE
   PREMIUM EDITORIAL DESIGN
========================================== */

.ngb-more-than-course {
    width: 100%;
    padding: 120px 0 45px;
    color: whitesmoke;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND DETAIL
========================================== */

.ngb-more-than-course::before {
    content: "01";
    position: absolute;
    top: -80px;
    left: -30px;
    color: rgba(82, 250, 82, 0.055);
    font-size: 320px;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
}

.ngb-more-than-course::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -300px;
    bottom: -300px;
    border-radius: 50%;    
    pointer-events: none;
}

/* ==========================================
   WRAPPER
========================================== */

.ngb-mtc-wrap {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   INTRO
========================================== */

.ngb-mtc-intro {
    position: sticky;
    top: 40px;
    align-self: start;
}

.ngb-mtc-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    
    margin-bottom: 22px;
}

.ngb-mtc-intro h2 {
    margin: 0;
    font-size: clamp(58px, 6vw, 88px);
    line-height: .82;
    letter-spacing: -5px;
    font-weight: 900;
}

.ngb-mtc-intro h2 span {
    display: block;
    color: greenyellow;
}

.ngb-mtc-divider {
    width: 70px;
    height: 4px;
    margin: 35px 0 25px;
    background: greenyellow;
}

.ngb-mtc-intro h3 {
    max-width: 400px;
    margin: 0;
    color: white;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.ngb-mtc-intro h3 strong {
    color: greenyellow;
    font-weight: 900;
}

.ngb-mtc-intro > p {
    max-width: 380px;
    margin: 22px 0 0;
    color: white;
    font-size: 15px;
    line-height: 1.85;
}

/* ==========================================
   BADGE
========================================== */

.ngb-mtc-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 55px;
}

.ngb-mtc-badge span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: white;
    font-family: monospace;
    font-size: 12px;
    font-weight: 900;
}

.ngb-mtc-badge div {
    width: 35px;
    height: 1px;
    background: #aab5aa;
}

.ngb-mtc-badge small {
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* ==========================================
   FEATURES
========================================== */

.ngb-mtc-features {
    border-top: 1px solid #cbd2c9;
}

/* ==========================================
   FEATURE
========================================== */

.ngb-mtc-feature {
    min-height: 145px;
    padding: 24px 55px 24px 0;
    border-bottom: 1px solid #cbd2c9;
    position: relative;
    box-sizing: border-box;
    transition:
        padding .3s ease,
        background .3s ease;
}

.ngb-mtc-feature::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: greenyellow;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s ease;
}

.ngb-mtc-feature:hover {
    padding-left: 20px;
    box-shadow: 0 10px 20px greenyellow;
}

.ngb-mtc-feature:hover::before {
    transform: scaleY(1);
}

/* ==========================================
   FEATURE TOP
========================================== */

.ngb-mtc-feature-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 13px;
}

.ngb-mtc-feature-number {
    color: greenyellow;
    font-family: monospace;
    font-size: 14px;
    font-weight: 900;
}

.ngb-mtc-feature-label {
    color: white;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* ==========================================
   FEATURE TITLE
========================================== */

.ngb-mtc-feature h4 {
    margin: 0 0 9px;
    color: greenyellow;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: .2px;
}

/* ==========================================
   FEATURE DESCRIPTION
========================================== */

.ngb-mtc-feature p {
    max-width: 600px;
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.75;
}

/* ==========================================
   ARROW
========================================== */

.ngb-mtc-feature-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: 600;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.ngb-mtc-feature:hover .ngb-mtc-feature-arrow {
    background: greenyellow;
    border-color: greenyellow;
    color: black;
    transform:
        translateY(-50%)
        rotate(45deg);
}

/* ==========================================
   BOTTOM
========================================== */

.ngb-mtc-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 65px auto 0;
    padding-top: 20px;
    border-top: 1px solid #cbd2c9;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.ngb-mtc-bottom span,
.ngb-mtc-bottom strong {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: white;
}

.ngb-mtc-bottom strong {
    color: greenyellow;
}

.ngb-mtc-bottom i {
    width: 4px;
    height: 4px;
    background: yellowgreen;
    border-radius: 50%;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .ngb-more-than-course {
        padding: 90px 0 40px;
    }

    .ngb-mtc-wrap {
        grid-template-columns: .75fr 1.25fr;
        gap: 50px;
    }

    .ngb-mtc-intro h2 {
        font-size: 58px;
    }

    .ngb-mtc-intro h3 {
        font-size: 20px;
    }

    .ngb-mtc-feature {
        min-height: 125px;
        padding-right: 45px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {
    .ngb-more-than-course {
        padding: 70px 0 40px;
    }

    .ngb-mtc-wrap {
        width: 88%;
        display: block;
    }

    .ngb-mtc-intro {
        position: relative;
        top: auto;
        margin-bottom: 55px;
    }

    .ngb-mtc-label {
        font-size: 11px;
        margin-bottom: 22px;
    }

    .ngb-mtc-intro h2 {
        font-size: 49px;
        letter-spacing: -3px;
    }

    .ngb-mtc-divider {
        width: 50px;
        height: 3px;
        margin: 25px 0 20px;
    }

    .ngb-mtc-intro h3 {
        font-size: 18px;
    }

    .ngb-mtc-intro > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .ngb-mtc-badge {
        margin-top: 30px;
    }

    /* FEATURES */

    .ngb-mtc-feature {
        min-height: 120px;
        padding: 20px 35px 20px 0;
    }

    .ngb-mtc-feature:hover {
        padding-left: 10px;
    }

    .ngb-mtc-feature::before {
        left: 0;
    }

    .ngb-mtc-feature-top {
        gap: 10px;
        margin-bottom: 10px;
    }

    .ngb-mtc-feature-number {
        font-size: 11px;
    }

    .ngb-mtc-feature-label {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .ngb-mtc-feature h4 {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .ngb-mtc-feature p {
        font-size: 13px;
        line-height: 1.7;
    }

    .ngb-mtc-feature-arrow {
        width: 25px;
        height: 25px;
        right: 0;
        font-size: 13px;
        
    }

    /* FOOTER */

    .ngb-mtc-bottom {
        width: 88%;
        margin-top: 45px;
        gap: 9px;
        flex-wrap: wrap;
    }

    .ngb-mtc-bottom span,
    .ngb-mtc-bottom strong {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .ngb-more-than-course::before {
        font-size: 160px;
        top: 20px;
        left: -20px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .ngb-mtc-intro h2 {
        font-size: 43px;
    }

    .ngb-mtc-feature {
        min-height: 112px;
    }

    .ngb-mtc-feature h4 {
        font-size: 10px;
    }

    .ngb-mtc-feature p {
        font-size: 7px;
    }

}

/* ==========================================
   ACCESSIBILITY
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ngb-mtc-feature,
    .ngb-mtc-feature::before,
    .ngb-mtc-feature-arrow {
        transition: none;
    }

}

/* ==========================================
   SECTION 2 — THE NXTGENBUDDY METHOD
   HORIZONTAL JOURNEY
========================================== */

.ngb-method {
    width: 100%;
    padding: 120px 0 70px;
    color:whitesmoke;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND DETAILS
========================================== */

.ngb-method::before {
    content: "METHOD";
    position: absolute;
    left: -20px;
    bottom: -30px;
    color: rgba(112, 199, 72, 0.055);
    font-size: 190px;
    line-height: .8;
    font-weight: 900;
    letter-spacing: -10px;
    pointer-events: none;
}

.ngb-method::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -300px;
    top: -250px;
    border-radius: 50%;
    border: 2px solid rgba(170,255,50,.099);
    box-shadow:
        0 0 0 70px rgba(170,255,50,.045),
        0 0 0 140px rgba(170,255,50,.035);
    pointer-events: none;
}

/* ==========================================
   WRAPPER
========================================== */

.ngb-method-wrap {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.ngb-method-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    padding-bottom: 75px;
    border-bottom: 1px solid #344038;
}

.ngb-method-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 30px;
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    width:250px; 
}

.ngb-method-header h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 100px);
    line-height: .8;
    letter-spacing: -6px;
    font-weight: 900;
}

.ngb-method-header h2 span {
    display: block;
    color: greenyellow;
    margin-left: 80px;
}

.ngb-method-header p {
    max-width: 420px;
    align-self: end;
    margin: 0 0 5px;
    color: white;
    font-size: 16px;
    line-height: 1.9;
}

/* ==========================================
   JOURNEY
========================================== */

.ngb-method-journey {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    padding-top: 70px;
}

/* ==========================================
   STEP
========================================== */

.ngb-method-step {
    position: relative;
    min-height: 285px;
    padding-right: 25px;
    box-sizing: border-box;
}

.ngb-method-step-top {
    height: 45px;
    display: flex;
    align-items: center;
    position: relative;
}

/* ==========================================
   NUMBER CIRCLE
========================================== */

.ngb-method-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: white;
    font-family: monospace;
    font-size: 13px;
    font-weight: 900;
    position: relative;
    z-index: 3;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

/* ==========================================
   CONNECTING LINE
========================================== */

.ngb-method-connector {
    position: absolute;
    left: 42px;
    right: -25px;
    height: 1px;
    background: rgb(93, 124, 32);
    z-index: 1;
}

/* ==========================================
   LAST CONNECTOR
========================================== */

.ngb-method-last .ngb-method-connector {
    display: none;
}

/* ==========================================
   STEP CONTENT
========================================== */

.ngb-method-step-content {
    padding-top: 38px;
    position: relative;
}

.ngb-method-label {
    display: block;
    margin-bottom: 12px;
    color: white;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ngb-method-step h3 {
    margin: 0 0 13px;
    color: greenyellow;
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -.3px;
    transition: color .3s ease;
}

.ngb-method-step p {
    max-width: 175px;
    margin: 0;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   HOVER
========================================== */

.ngb-method-step:hover .ngb-method-number {
    background: greenyellow;
    border-color: greenyellow;
    color: #111812;
    transform: scale(1.08);
}

.ngb-method-step:hover h3 {
    color: greenyellow;
}

.ngb-method-step:hover .ngb-method-label {
    color: white;
}

/* ==========================================
   FOOTER
========================================== */

.ngb-method-footer {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid #344038;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ngb-method-footer-line {
    display: none;
}

.ngb-method-footer span,
.ngb-method-footer strong {
    color: white;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.ngb-method-footer strong {
    color: greenyellow;
}

.ngb-method-footer i {
    color: white;
    font-size: 9px;
    font-style: normal;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .ngb-method {
        padding: 90px 0 55px;
    }

    .ngb-method-header {
        gap: 45px;
    }

    .ngb-method-header h2 {
        font-size: 65px;
    }

    .ngb-method-journey {
        grid-template-columns:
            repeat(3, 1fr);
        row-gap: 55px;
    }

    .ngb-method-step {
        min-height: 230px;
    }

    .ngb-method-step:nth-child(3) .ngb-method-connector {
        display: none;
    }

    .ngb-method-step p {
        max-width: 190px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .ngb-method {
        padding: 70px 0 45px;
    }

    .ngb-method-wrap {
        width: 88%;
    }

    /* HEADER */

    .ngb-method-header {
        display: block;
        padding-bottom: 45px;
    }

    .ngb-method-eyebrow {
        margin-bottom: 25px;
        font-size: 11px;
    }

    .ngb-method-header h2 {
        font-size: 51px;
        line-height: .82;
        letter-spacing: -3px;
    }

    .ngb-method-header h2 span {
        margin-left: 45px;
    }

    .ngb-method-header p {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.75;
    }

    /* JOURNEY */

    .ngb-method-journey {
        display: block;
        padding-top: 45px;
        padding-left: 5px;
    }

    .ngb-method-step,
    .ngb-method-step:nth-child(3) {
        min-height: 125px;
        padding: 0 0 0 65px;
    }

    /* VERTICAL LINE */

    .ngb-method-step::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 42px;
        bottom: -1px;
        width: 1px;
        background: #39443c;
    }

    .ngb-method-step:last-child::before {
        display: none;
    }

    .ngb-method-step-top {
        position: absolute;
        left: 0;
        top: 0;
        height: auto;
    }

    .ngb-method-number {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }

    .ngb-method-connector {
        display: none !important;
    }

    .ngb-method-step-content {
        padding-top: 2px;
    }

    .ngb-method-label {
        font-size: 11px;
        margin-bottom: 7px;
        letter-spacing: 1.3px;
    }

    .ngb-method-step h3 {
        font-size: 21px;
        margin-bottom: 7px;
    }

    .ngb-method-step p {
        max-width: 240px;
        font-size: 13px;
        line-height: 1.65;
    }

    /* FOOTER */

    .ngb-method-footer {
        margin-top: 35px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ngb-method-footer span,
    .ngb-method-footer strong {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .ngb-method-footer i {
        font-size: 14px;
    }

    .ngb-method::before {
        font-size: 120px;
        bottom: -10px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .ngb-method-header h2 {
        font-size: 45px;
    }

    .ngb-method-step,
    .ngb-method-step:nth-child(3) {
        min-height: 120px;
        padding-left: 58px;
    }

    .ngb-method-step::before {
        left: 18px;
    }

    .ngb-method-number {
        width: 36px;
        height: 36px;
    }

    .ngb-method-step h3 {
        font-size: 13px;
    }

    .ngb-method-step p {
        font-size: 11px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ngb-method-number,
    .ngb-method-step h3 {
        transition: none;
    }

}



/*==========================================
      SECTION 15 : FINAL CTA
==========================================*/

.final-cta{
    padding:50px 20px;
    background:yellowgreen;
    color:black;
    text-align:center;
}

.final-cta-container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.final-cta h2{
    font-size:46px;
    margin:20px 0;
    line-height:1.3;
    color:black;
}

.final-cta p{
    font-size:18px;
    color:black;
    line-height:1.8;
    max-width:750px;
    margin:0 auto 45px;
    /* text-align:justify; */
}

.final-cta .section-tag{
    display:inline-block;
    background:white;
    color:black;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    text-align: center;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Secondary */

.cta-primary, .cta-secondary{
    border:2px solid #fff;
    color:black;
    padding:16px 30px;
    border-radius:50px;
    font-size: 14px;
    font-weight:600;
    transition:.3s;
}

.cta-primary:hover, .cta-secondary:hover{
    background:#fff;
    color:black;
}

/* Icons */

.cta-buttons i{
    margin-right:8px;
}

/*=========================
      Tablet
=========================*/

@media(max-width:768px){

.final-cta{
padding:80px 20px;
}

.final-cta h2{
font-size:36px;
}

.final-cta p{
font-size:16px;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

.cta-primary,
.cta-whatsapp,
.cta-secondary{

width:100%;
max-width:350px;
text-align:center;
}
}

/*=========================
      Mobile
=========================*/

@media(max-width:480px){

.final-cta h2{
font-size:30px;
}

.final-cta p{
font-size:15px;
line-height:1.7;
}
}

/* ==========================================
   COMMON WEBSITE DISCLAIMER
   PREMIUM EDITORIAL / LEGAL DESIGN
========================================== */

.ngb-disclaimer {
    width: 100%;
    padding: 90px 0 35px;
    color: whitesmoke;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   WATERMARK
========================================== */

.ngb-disclaimer-watermark {
    position: absolute;
    right: -35px;
    bottom: -55px;
    color: rgba(125, 235, 35, 0.035);
    font-size: clamp(100px, 16vw, 230px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* ==========================================
   WRAPPER
========================================== */

.ngb-disclaimer-wrap {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   TOP
========================================== */

.ngb-disclaimer-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
}

.ngb-disclaimer-index {
    color: greenyellow;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.ngb-disclaimer-rule {
    height: 1px;
    flex: 1;
    background: #626b60;
}

.ngb-disclaimer-status {
    color: greenyellow;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* ==========================================
   MAIN
========================================== */

.ngb-disclaimer-main {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    padding-bottom: 70px;
    border-bottom: 1px solid #626b60;
}


/* ==========================================
   TITLE
========================================== */

.ngb-disclaimer-title {
    align-self: start;
}

.ngb-disclaimer-title > span {
    display: block;
    margin-bottom: 25px;
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ngb-disclaimer-title h2 {
    margin: 0;
    max-width: 500px;
    font-size: clamp(50px, 6vw, 78px);
    line-height: .86;
    letter-spacing: -5px;
    font-weight: 900;
}

.ngb-disclaimer-title h2 em {
    display: block;
    color: greenyellow;
    font-style: normal;
    margin-left: 45px;
}

/* ==========================================
   CONTENT
========================================== */

.ngb-disclaimer-content {
    border-top: 1px solid #626b60;
}


/* ==========================================
   DISCLAIMER ITEM
========================================== */

.ngb-disclaimer-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #626b60;
}


.ngb-disclaimer-number {
    color: greenyellow;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    padding-top: 3px;
}

.ngb-disclaimer-item p {
    max-width: 650px;
    margin: 0;
    color: white;
    font-size: 13px;
    line-height: 1.85;
}

/* ==========================================
   UPDATE BOX
========================================== */

.ngb-disclaimer-update {
    margin-top: 25px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px black;
    color: #ffffff;
}

.ngb-disclaimer-update-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 18px;
}

.ngb-disclaimer-update div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ngb-disclaimer-update span {
    color: greenyellow;
    font-family: monospace;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.ngb-disclaimer-update strong {
    color: white;
    font-size: 11px;
    font-weight: 700;
}

/* ==========================================
   BOTTOM
========================================== */

.ngb-disclaimer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.ngb-disclaimer-bottom span {
    color: white;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.ngb-disclaimer-bottom span:first-child {
    color: greenyellow;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .ngb-disclaimer {
        padding: 75px 0 30px;
    }

    .ngb-disclaimer-main {
        grid-template-columns: .8fr 1.2fr;
        gap: 50px;
    }

    .ngb-disclaimer-title h2 {
        font-size: 55px;
    }

    .ngb-disclaimer-item p {
        font-size: 10px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .ngb-disclaimer {
        padding: 65px 0 30px;
    }

    .ngb-disclaimer-wrap {
        width: 88%;
    }

    /* TOP */

    .ngb-disclaimer-top {
        gap: 9px;
        margin-bottom: 40px;
    }

    .ngb-disclaimer-index {
        font-size: 11px;
    }

    .ngb-disclaimer-status {
        font-size: 11px;
        letter-spacing: .8px;
    }

    /* MAIN */

    .ngb-disclaimer-main {
        display: block;
        padding-bottom: 45px;
    }

    /* TITLE */

    .ngb-disclaimer-title {
        margin-bottom: 45px;
    }

    .ngb-disclaimer-title > span {
        margin-bottom: 18px;
        color: greenyellow;
        font-size: 11px;
    }

    .ngb-disclaimer-title h2 {
        font-size: 47px;
        line-height: .86;
        letter-spacing: -3px;
    }

    .ngb-disclaimer-title h2 em {
        margin-left: 30px;
    }

    /* ITEMS */

    .ngb-disclaimer-item {
        grid-template-columns: 30px 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .ngb-disclaimer-number {
        font-size: 13px;
    }

    .ngb-disclaimer-item p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* UPDATE */

    .ngb-disclaimer-update {
        margin-top: 18px;
        padding: 14px;
        gap: 10px;
    }

    .ngb-disclaimer-update-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ngb-disclaimer-update span {
        font-size: 13px;
    }

    .ngb-disclaimer-update strong {
        font-size: 12px;
    }

    /* BOTTOM */

    .ngb-disclaimer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
        text-align: center;
    }

    .ngb-disclaimer-bottom span {
        font-size: 9px;
    }

    /* WATERMARK */

    .ngb-disclaimer-watermark {
        font-size: 100px;
        right: -15px;
        bottom: -15px;
        letter-spacing: -5px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .ngb-disclaimer-title h2 {
        font-size: 42px;
    }

    .ngb-disclaimer-item p {
        font-size: 8px;
    }

    .ngb-disclaimer-update strong {
        font-size: 6.5px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ngb-disclaimer * {
        scroll-behavior: auto;
    }

}