/*==================================================
        INTERMEDIATE COURSES
===================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

:root{

    --gold:#FFD54A;

    --gold-dark:#d4a800;

    --dark:#090909;

    --card:#1b1b1b;

    --text:#dddddd;

    --white:#ffffff;

    --shadow:0 20px 45px rgba(0,0,0,.28);

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--dark);

    color:white;

    overflow-x:hidden;

}

section{

    padding:100px 8%;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

/*==================================================
                HERO
===================================================*/

.hero{

    position:relative;

    min-height:100vh;

    padding:170px 8% 120px;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.78),

    rgba(0,0,0,.82)

    );

}


/*==================================================
                NAVBAR
===================================================*/

.navbar{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(12px);

    z-index:999;

}

.logo img{

    width:145px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar ul li{

    position:relative;

}

.navbar ul li a{

    color:white;

    font-weight:600;

    transition:.35s;

}

.navbar ul li a:hover{

    color:var(--gold);

}

.navbar ul li::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--gold);

    border-radius:20px;

    transform:translateX(-50%);

    transition:.35s;

}

.navbar ul li:hover::after{

    width:100%;

}


/*==================================================
            HERO CONTENT
===================================================*/

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.hero-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:35px;

    background:rgba(255,213,74,.15);

    color:var(--gold);

    font-weight:bold;

    margin-bottom:15px;

}

.hero-content h1{

    font-size:68px;

    margin-bottom:15px;

    line-height:1.15;

}

.hero-content p{

    max-width:780px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#dddddd;

}


/*==================================================
                BUTTONS
===================================================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}

.primary-btn{

    display:inline-block;

    padding:18px 38px;

    border-radius:45px;

    background:

    linear-gradient(

    135deg,

    var(--gold),

    var(--gold-dark)

    );

    color:#111;

    font-weight:bold;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 15px 30px rgba(255,213,74,.3);

}

.secondary-btn{

    display:inline-block;

    padding:18px 38px;

    border:2px solid white;

    border-radius:45px;

    color:white;

    transition:.35s;

}

.secondary-btn:hover{

    background:white;

    color:#111;

}


/*==================================================
            COURSE PROGRESS
===================================================*/

.progress-card{

    background:var(--card);

    border-radius:25px;

    padding:40px;

    box-shadow:var(--shadow);

}

.progress-card h2{

    font-size:38px;

}

.progress-bar{

    width:100%;

    height:18px;

    background:#333;

    border-radius:30px;

    overflow:hidden;

    margin:30px 0;

}

.progress-fill{

    width:35%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    var(--gold),

    var(--gold-dark)

    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#111;

    font-weight:bold;

}

.progress-info{

    display:flex;

    justify-content:space-between;

}

/*==================================================
            PREREQUISITE
===================================================*/

.prerequisite{

    display:flex;

    align-items:center;

    gap:35px;

    background:#101010;

}

.check{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#16a34a;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    font-weight:bold;

}

.prerequisite h2{

    margin-bottom:12px;

    font-size:34px;

}

.prerequisite p{

    color:#d5d5d5;

    line-height:1.8;

}


/*==================================================
                ROADMAP
===================================================*/

.roadmap-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.road-item{

    background:var(--card);

    border-radius:25px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.road-item:hover{

    transform:translateY(-10px);

}

.number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    font-size:28px;

    font-weight:bold;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.road-item h3{

    margin-bottom:20px;

    font-size:28px;

}

.road-item p{

    color:#d5d5d5;

    line-height:1.8;

}


/*==================================================
                MODULES
===================================================*/


    .course-module{

    background:#101010;

    padding-top:45px;

    padding-bottom:45px;

}

.title-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.title-row h2{

    font-size:42px;

    line-height:1.3;

}

.title-row a{

    color:var(--gold);

    font-weight:700;

    transition:.3s;

}

.title-row a:hover{

    letter-spacing:1px;

}



/*==================================================
                COURSE TRACK
===================================================*/

.course-track{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:20px;

    scrollbar-width:none;

}

.course-track::-webkit-scrollbar{

    display:none;

}



/*==================================================
                COURSE CARD
===================================================*/

.course-card{

    min-width:340px;

    background:var(--card);

    border-radius:25px;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow);

    flex-shrink:0;

}

.course-card:hover{

    transform:translateY(-12px);

}



/*==================================================
                THUMBNAIL
===================================================*/

.thumbnail{

    position:relative;

    width:100%;

    height:190px;

    overflow:hidden;

}

.thumbnail a{

    display:block;

    width:100%;

    height:100%;

    position:relative;

}

.thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.course-card{

    flex:0 0 320px;

    width:320px;

    background:#171717;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

.course-card:hover .thumbnail img{

    transform:scale(1.08);

}



/*==================================================
                OVERLAY
===================================================*/

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    font-weight:bold;

    opacity:0;

    transition:.35s;

}

.course-card:hover .overlay{

    opacity:1;

}



/*==================================================
                BADGE
===================================================*/

.badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:bold;

    z-index:5;

}

.intermediate{

    background:#f59e0b;

    color:white;

}



/*==================================================
                COURSE INFO
===================================================*/

.course-info{

    padding:28px;

}

.course-info h3{

    font-size:26px;

    margin-bottom:18px;

    line-height:1.4;

}

.course-info p{

    color:#d5d5d5;

    line-height:1.8;

    margin-bottom:25px;

}



/*==================================================
                COURSE META
===================================================*/

.course-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:15px;

    color:#bbbbbb;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:18px;

}



/*==================================================
                CARD ANIMATION
===================================================*/

.course-card{

    position:relative;

}

.course-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--gold),

        #fff2a8

    );

    transition:.45s;

}

.course-card:hover::before{

    left:100%;

}



/*==================================================
                CARD SHADOW
===================================================*/

.course-card:hover{

    box-shadow:

    0 25px 45px rgba(255,213,74,.18);

}



/*==================================================
                MODULE BACKGROUNDS
===================================================*/

.course-module:nth-child(even){

    background:#101010;

}

.course-module:nth-child(odd){

    background:#090909;

}


/*==================================================
                SECTION TITLES
===================================================*/

.section-title{

    text-align:center;

    margin-bottom:20px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:15px;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:#d5d5d5;

    line-height:1.8;

}


/*==================================================
            DOWNLOAD CENTRE
===================================================*/

.downloads{

    background:#101010;

}

.download-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.download-card{

    background:linear-gradient(
        145deg,
        #1d1d1d,
        #252525
    );

    border-radius:25px;

    padding:45px;

    text-align:center;

    transition:.4s;

    box-shadow:var(--shadow);

}

.download-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 45px rgba(245,158,11,.25);

}

.download-card i{

    font-size:60px;

    color:#f59e0b;

    margin-bottom:25px;

}

.download-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.download-card p{

    color:#d5d5d5;

    margin-bottom:30px;

    line-height:1.8;

}



/*==================================================
            WEEKLY CHALLENGE
===================================================*/

.challenge{

    background:#090909;

}

.challenge-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    background:linear-gradient(
        135deg,
        #2c2000,
        #1b1b1b
    );

    padding:70px;

    border-radius:30px;

    box-shadow:var(--shadow);

}

.challenge-box h2{

    font-size:48px;

    color:#FFD54A;

    margin-bottom:25px;

}

.challenge-box p{

    font-size:20px;

    color:#dddddd;

    line-height:1.9;

    margin-bottom:40px;

}



/*==================================================
            NEXT LEVEL
===================================================*/

.next-level{

    background:#101010;

}

.next-content{

    max-width:950px;

    margin:auto;

    text-align:center;

}

.next-content h2{

    font-size:52px;

    margin-bottom:30px;

}

.next-content p{

    color:#d5d5d5;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

.level-features{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin-bottom:45px;

}

.level-features span{

    background:rgba(245,158,11,.12);

    color:#FFD54A;

    padding:12px 22px;

    border-radius:35px;

    font-weight:600;

}



/*==================================================
            ENCOURAGEMENT
===================================================*/

.encouragement{

    background:#090909;

    text-align:center;

}

.encouragement h2{

    font-size:48px;

    margin-bottom:25px;

}

.encouragement p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    color:#d5d5d5;

    line-height:2;

}



/*==================================================
            FADE ANIMATION
===================================================*/

.download-card,

.challenge-box,

.next-content,

.encouragement{

    transition:.4s;

}

.download-card:hover,

.challenge-box:hover{

    transform:translateY(-10px);

}



/*==================================================
        INTERMEDIATE ACCENT LINE
===================================================*/

.downloads::before,

.challenge::before,

.next-level::before{

    content:"";

    display:block;

    width:120px;

    height:5px;

    margin:0 auto 60px;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #FFD54A,
        #f59e0b
    );

}


/*==================================================
                RESPONSIVE
===================================================*/

@media(max-width:1200px){

.roadmap-grid{

grid-template-columns:repeat(2,1fr);

}

.download-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:992px){

section{

padding:80px 6%;

}

.hero-content h1{

font-size:52px;

}

.hero-buttons{

flex-wrap:wrap;

justify-content:center;

}

.prerequisite{

flex-direction:column;

text-align:center;

}

.download-grid{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

.hero{

padding-top:150px;

padding-bottom:80px;

}

.navbar{

flex-direction:column;

gap:18px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.progress-info{

flex-direction:column;

gap:15px;

text-align:center;

}

.roadmap-grid{

grid-template-columns:1fr;

}

.title-row{

flex-direction:column;

gap:20px;

text-align:center;

}

.download-grid{

grid-template-columns:1fr;

}

.level-features{

flex-direction:column;

align-items:center;

}

.challenge-box{

padding:40px 25px;

}

.challenge-box h2{

font-size:36px;

}

.next-content h2{

font-size:38px;

}

.encouragement h2{

font-size:38px;

}

.encouragement p{

font-size:18px;

}

}






/*==================================================
                FADE UP
===================================================*/

.fade-up{

opacity:0;

transform:translateY(50px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}





/*==================================================
            BUTTON RIPPLE
===================================================*/

.primary-btn,

.secondary-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.4);

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}





/*==================================================
            SCROLL TO TOP
===================================================*/

.scrollTop{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--gold);

color:#111;

font-size:22px;

font-weight:bold;

cursor:pointer;

opacity:0;

pointer-events:none;

transition:.35s;

z-index:999;

}

.showTop{

opacity:1;

pointer-events:auto;

}





/*==================================================
            CUSTOM SCROLLBAR
===================================================*/

::-webkit-scrollbar{

width:10px;

height:10px;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(

180deg,

#FFD54A,

#f59e0b

);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}





/*==================================================
            TEXT SELECTION
===================================================*/

::selection{

background:#FFD54A;

color:#111;

}





/*==================================================
            SMOOTH HOVER
===================================================*/

button,

a,

.course-card,

.download-card,

.road-item,

.challenge-box{

transition:.35s ease;

}





/*==================================================
            IMAGE QUALITY
===================================================*/

img{

image-rendering:auto;

}





/*==================================================
            FINAL SHADOW
===================================================*/

.course-card,

.download-card,

.road-item,

.progress-card{

box-shadow:

0 20px 40px rgba(0,0,0,.25);

}





/*==================================================
            FOOTER
===================================================*/

footer{

background:#050505;

padding:80px 8% 30px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:45px;

}

.footer-logo{

width:160px;

margin-bottom:20px;

}

.footer-container h3{

color:#FFD54A;

margin-bottom:20px;

}

.footer-container ul{

list-style:none;

}

.footer-container li{

margin-bottom:12px;

}

.footer-container a{

color:#d5d5d5;

transition:.3s;

}

.footer-container a:hover{

color:#FFD54A;

padding-left:8px;

}

.social-links{

display:flex;

gap:15px;

margin-top:20px;

}

.social-links a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:#1b1b1b;

border-radius:50%;

}

.social-links a:hover{

background:#FFD54A;

color:#111;

}

.footer-bottom{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#999;

}


/*==================================================
                RESPONSIVE
===================================================*/

@media(max-width:1200px){

.roadmap-grid{

grid-template-columns:repeat(2,1fr);

}

.download-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:992px){

section{

padding:80px 6%;

}

.hero-content h1{

font-size:52px;

}

.hero-buttons{

flex-wrap:wrap;

justify-content:center;

}

.prerequisite{

flex-direction:column;

text-align:center;

}

.download-grid{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

.hero{

padding-top:150px;

padding-bottom:80px;

}

.navbar{

flex-direction:column;

gap:18px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.progress-info{

flex-direction:column;

gap:15px;

text-align:center;

}

.roadmap-grid{

grid-template-columns:1fr;

}

.title-row{

flex-direction:column;

gap:20px;

text-align:center;

}

.download-grid{

grid-template-columns:1fr;

}

.level-features{

flex-direction:column;

align-items:center;

}

.challenge-box{

padding:40px 25px;

}

.challenge-box h2{

font-size:36px;

}

.next-content h2{

font-size:38px;

}

.encouragement h2{

font-size:38px;

}

.encouragement p{

font-size:18px;

}

}






/*==================================================
                FADE UP
===================================================*/

.fade-up{

opacity:0;

transform:translateY(50px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}





/*==================================================
            BUTTON RIPPLE
===================================================*/

.primary-btn,

.secondary-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.4);

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}





/*==================================================
            SCROLL TO TOP
===================================================*/

.scrollTop{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--gold);

color:#111;

font-size:22px;

font-weight:bold;

cursor:pointer;

opacity:0;

pointer-events:none;

transition:.35s;

z-index:999;

}

.showTop{

opacity:1;

pointer-events:auto;

}





/*==================================================
            CUSTOM SCROLLBAR
===================================================*/

::-webkit-scrollbar{

width:10px;

height:10px;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(

180deg,

#FFD54A,

#f59e0b

);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}





/*==================================================
            TEXT SELECTION
===================================================*/

::selection{

background:#FFD54A;

color:#111;

}





/*==================================================
            SMOOTH HOVER
===================================================*/

button,

a,

.course-card,

.download-card,

.road-item,

.challenge-box{

transition:.35s ease;

}





/*==================================================
            IMAGE QUALITY
===================================================*/

img{

image-rendering:auto;

}





/*==================================================
            FINAL SHADOW
===================================================*/

.course-card,

.download-card,

.road-item,

.progress-card{

box-shadow:

0 20px 40px rgba(0,0,0,.25);

}





/*==================================================
            FOOTER
===================================================*/

footer{

background:#050505;

padding:80px 8% 30px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:45px;

}

.footer-logo{

width:160px;

margin-bottom:20px;

}

.footer-container h3{

color:#FFD54A;

margin-bottom:20px;

}

.footer-container ul{

list-style:none;

}

.footer-container li{

margin-bottom:12px;

}

.footer-container a{

color:#d5d5d5;

transition:.3s;

}

.footer-container a:hover{

color:#FFD54A;

padding-left:8px;

}

.social-links{

display:flex;

gap:15px;

margin-top:20px;

}

.social-links a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:#1b1b1b;

border-radius:50%;

}

.social-links a:hover{

background:#FFD54A;

color:#111;

}

.footer-bottom{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#999;

}




/*==================================================
            TODAY'S ASSIGNMENT
===================================================*/

.assignment{

    background:#090909;

}

.assignment-card{

    background:linear-gradient(
    135deg,
    #1d1d1d,
    #2c2000);

    border-radius:30px;

    padding:60px;

    text-align:center;

}

.assignment-badge{

    display:inline-block;

    background:#FFD54A;

    color:#111;

    padding:10px 22px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:25px;

}

.assignment-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:45px;

}

.assignment-grid div{

    background:#252525;

    padding:30px;

    border-radius:20px;

}



/*==================================================
            RECOMMENDED LESSON
===================================================*/

.recommended{

    background:#101010;

}

.recommended-card{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:50px;

    align-items:center;

}

.recommended-image img{

    border-radius:25px;

}

.recommended-content h2{

    font-size:42px;

    margin:20px 0;

}

.recommended-content p{

    line-height:1.9;

    margin-bottom:35px;

}



/*==================================================
            MODULE COMPLETED
===================================================*/

.completed{

    background:#090909;

}

.completed-box{

    max-width:850px;

    margin:auto;

    text-align:center;

    padding:70px;

    background:var(--card);

    border-radius:30px;

}

.completed-box i{

    font-size:80px;

    color:#FFD54A;

    margin-bottom:25px;

}

.completed-box h2{

    font-size:46px;

    margin-bottom:25px;

}

.completed-box p{

    line-height:1.9;

    margin-bottom:35px;

}



/*==================================================
            RESPONSIVE
===================================================*/

@media(max-width:900px){

.assignment-grid{

grid-template-columns:1fr;

}

.recommended-card{

grid-template-columns:1fr;

text-align:center;

}

}/*==================================================
            LEARNING JOURNEY
===================================================*/

.journey{

    background:#101010;

    padding:90px 8%;

}

.journey-title{

    text-align:center;

    margin-bottom:60px;

}

.journey-title h2{

    font-size:48px;

    margin-bottom:20px;

}

.journey-title p{

    color:#d5d5d5;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}



/* Road */

.journey-road{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

}



/* Step */

.journey-step{

    width:220px;

    text-align:center;

    transition:.4s;

}

.journey-step{

opacity:0;

transform:translateY(30px);

transition:.5s;

}

.journey-step:hover{

    transform:translateY(-12px);

}



/* Circle */

.journey-icon{

    width:95px;

    height:95px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    margin-bottom:20px;

    background:#242424;

    transition:.35s;

}



/* Line */

.journey-line{

    width:100px;

    height:6px;

    background:#333;

    border-radius:30px;

}



/* Completed */

.completed .journey-icon{

    background:#16a34a;

}

.completed h3{

    color:#16a34a;

}



/* Active */

.active .journey-icon{

    background:#FFD54A;

    color:#111;

    animation:pulse 2s infinite;

}

.active h3{

    color:#FFD54A;

}



/* Master */

.master .journey-icon{

    background:linear-gradient(

        135deg,

        #FFD54A,

        #f59e0b

    );

    color:#111;

}

.master h3{

    color:#FFD54A;

}



/* Text */

.journey-step h3{

    margin-bottom:10px;

    font-size:28px;

}

.journey-step p{

    color:#cccccc;

}



/* Pulse */

@keyframes pulse{

0%{

transform:scale(1);

box-shadow:0 0 0 rgba(255,213,74,.4);

}

50%{

transform:scale(1.08);

box-shadow:0 0 30px rgba(255,213,74,.5);

}

100%{

transform:scale(1);

box-shadow:0 0 0 rgba(255,213,74,.4);

}

}



/* Mobile */

@media(max-width:900px){

.journey-road{

flex-direction:column;

gap:35px;

}

.journey-line{

width:6px;

height:60px;

}

}
/*==================================================
            END OF FILE
===================================================*/


/*==================================================
            END OF FILE
===================================================*/