/*==================================
      REACT HERO SECTION
===================================*/

.react-hero{
    padding:100px 0;   
}

.react-container{
width:90%;
max-width:1250px;
margin:auto;

display:grid;
grid-template-columns:repeat(2,1fr);

gap:60px;
align-items:center;
}

.react-content .react-tag{
display:inline-block;
padding:10px 22px;
background-color: greenyellow;
color:black;
border-radius:30px;
font-size: 11px;
font-weight:600;
margin-bottom:25px;
}

/* Left */

.react-content h1{
    font-size:50px;
    line-height:1.2;
    color:whitesmoke;
    margin-bottom:25px;
}

.react-content h1 span{
    display:block;
    color:greenyellow;
}

.react-content p{
    font-size:18px;
    line-height:1.9;
    color:white;
    margin-bottom:40px;
}

/* Info Cards */

.react-info{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:35px;
}

.info-box{
display:flex;
align-items:center;
gap:15px;
padding:18px 20px;
border-radius:15px;
box-shadow:0 10px 30px black;
transition:.3s;
}

.info-box:hover{
transform:translateY(-8px);
box-shadow:1px 1px 10px greenyellow;  
border:0;
}

.info-box i{
font-size:28px;
color:greenyellow;
}

.info-box strong{
display:block;
color:greenyellow;
text-align: left;
}

.info-box span{
font-size:14px;
color:white;
text-align: left;
}

/* Buttons */

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:35px;
}

.demo-btn{
padding:16px 30px;
border:2px greenyellow solid;
color:white;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.demo-btn:hover{
background:greenyellow;
color:black;
}

.download-btn {
    padding: 16px 22px;
    border: 2px solid greenyellow;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover {
    background: greenyellow;
    color: black;
}

/* Badges */

.react-badges{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.react-badges span{
background-color: whitesmoke;
color: black;
padding:12px 18px;
border-radius:30px;
box-shadow:0 8px 20px black;
font-size:14px;
font-weight:600;
}

.react-badges span:hover{
        box-shadow:inset 0px 8px 20px #a68c55;
        color:black;
}

/* Right */

.react-image{
    position:relative;
}

.react-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

/* Floating Cards */

.react-image .floating-card{
    position:absolute;
    /* background:#0ea5e9; */
    color:white;
    padding:15px 22px;
    border-radius:15px;
    font-weight:600;
    box-shadow:0 18px 35px rgba(131, 233, 14, 0.25);
}

.react-image .top-card{
    top:25px;
    left:-35px;
}

.react-image .bottom-card{
    bottom:35px;
    right:-35px;
}

/* Hover */

.react-image img:hover{
    transform:scale(1.02);
    transition:.4s;
}

/* Floating Cards */

.react-image .floating-card{

    position:absolute;
    background:rgba(0,0,0,.50);
    color:white;
    padding:15px 20px;
    border-radius:15px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(110, 235, 37, 0.25);
}

.react-image .top-card{
    top:25px;
    left:-35px;
}

.react-image .bottom-card{
    bottom:35px;
    right:-30px;
}

/*==========================
      Responsive
==========================*/

@media(max-width:992px){

.react-content{
    text-align:center;
}

.react-image{
    margin-top:50px;
}

.react-image .top-card{
    left:10px;
}

.react-image .bottom-card{
    right:10px;
}

}

@media(max-width:768px){

.react-hero{
    padding:70px 0;
}

.react-container{
    grid-template-columns:1fr;
    text-align:center;
}

.react-content h1{
    font-size:40px;
}

.react-content p{
    font-size:16px;
}

.info-box{
    width: 80%;
}

}

@media(max-width:480px){

.react-content h1{
    font-size:32px;
}

.react-image .floating-card{
    display:none;
}

}

/* ==========================================
   SECTION 1 : SOFTWARE SKILLS ARE GROWING
========================================== */

.software-growth-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
========================================== */

.software-growth-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADING
========================================== */

.software-growth-heading {
    text-align: center;
    margin-bottom: 70px;
}

.software-growth-heading .software-growth-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.software-growth-heading h1 {
    margin: 0;
    color: whitesmoke;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.software-growth-heading h1 span {
    color: greenyellow;
}

/* ==========================================
   GRID
========================================== */

.software-growth-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

/* ==========================================
   CARDS
========================================== */

.software-growth-card {
    min-height: 430px;
    padding: 35px;
    box-shadow: 0 10px 20px black;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: .45s ease;
}

/* Top accent */

.software-growth-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: greenyellow;
    transform: scaleX(.25);
    transform-origin: left;
    transition: .45s ease;
}

/* ==========================================
   CARD HOVER
========================================== */

.software-growth-card:hover {
    transform: translateY(-12px);
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

.software-growth-card:hover::before {
    transform: scaleX(1);
}

/* ==========================================
   NUMBER
========================================== */

.software-growth-number {
    position: absolute;
    right: 25px;
    top: 22px;
    color: greenyellow;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ==========================================
   ICON
========================================== */

.software-growth-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: greenyellow;
    color: #000;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 45px;
    transition: .4s ease;
}

.software-growth-card:hover
.software-growth-icon {
    transform: rotate(-8deg) scale(1.08);
    background: yellowgreen;
}

/* ==========================================
   CARD HEADING
========================================== */

.software-growth-card h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}

.software-growth-card h2 span {
    display: block;
    color: greenyellow;
}

/* ==========================================
   CARD TEXT
========================================== */

.software-growth-card p {
    margin: 0;
    color: white;
    font-size: 15px;
    line-height: 1.85;
}

/* ==========================================
   STATISTICS
========================================== */

.software-stat {
    margin: 35px 0 25px;
}

.software-stat strong {
    display: block;
    color: greenyellow;
    font-size: 43px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.software-stat span {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* ==========================================
   DIVIDER
========================================== */

.software-divider {
    width: 55px;
    height: 2px;
    margin: 25px 0;
    background: yellowgreen;
}

/* ==========================================
   SALARY CARD
========================================== */

.salary-card {
    border-color: rgba(173,255,47,.28);
}

.salary-stat {
    margin-top: 45px;
    margin-bottom: 18px;
}

.salary-stat strong {
    font-size: 38px;
}

.salary-card h3 {
    margin: 0 0 20px;
    color: greenyellow;
    font-size: 17px;
    line-height: 1.5;
}

.salary-card .software-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: white;
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================
   FOOTER
========================================== */

.software-growth-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 55px;
    text-align: center;
}

.software-growth-footer span {
    width: 90px;
    height: 1px;
    background: greenyellow;
}

.software-growth-footer p {
    margin: 0;
    color: white;
    font-size: 12px;
    letter-spacing: .5px;
}

/* ==========================================
   BACKGROUND DECORATION
========================================== */

.software-growth-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(173,255,47,.1);
    border-radius: 50%;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
}

/* .software-growth-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(173,255,47,.025);
    filter: blur(90px);
    right: -200px;
    top: -150px;
} */

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .software-growth-section {
        padding: 90px 0;
    }

    .software-growth-heading h1 {
        font-size: 48px;
    }

    .software-growth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-growth-card:last-child {
        grid-column: 1 / -1;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .software-growth-section {
        padding: 70px 0;
    }

    .software-growth-container {
        width: 88%;
    }

    .software-growth-heading {
        margin-bottom: 45px;
    }

    .software-growth-heading h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .software-growth-tag {
        padding: 7px 15px;
        font-size: 8px;
    }

    .software-growth-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .software-growth-card:last-child {
        grid-column: auto;
    }

    .software-growth-card {
        min-height: auto;
        padding: 28px;
    }

    .software-growth-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 30px;
    }

    .software-growth-card h2 {
        font-size: 24px;
    }

    .software-stat strong {
        font-size: 38px;
    }

    .salary-stat strong {
        font-size: 32px;
    }

    .software-growth-footer {
        margin-top: 40px;
    }

    .software-growth-footer span {
        display: none;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {

    .software-growth-section {
        padding: 60px 0;
    }

    .software-growth-container {
        width: 90%;
    }

    .software-growth-heading h1 {
        font-size: 31px;
    }

    .software-growth-card {
        padding: 24px;
        border-radius: 20px;
    }

    .software-growth-card h2 {
        font-size: 21px;
    }

    .software-growth-card p {
        font-size: 13px;
    }

    .software-stat strong {
        font-size: 32px;
    }

    .salary-stat strong {
        font-size: 28px;
    }

    .software-growth-footer p {
        font-size: 10px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .software-growth-card,
    .software-growth-card::before,
    .software-growth-icon {
        transition: none;
    }

}

/* ==========================================
   SECTION 2 : WHY REACT?
========================================== */

.react-why-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
========================================== */

.react-why-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================================
   LEFT VISUAL
========================================== */

.react-visual {
    min-height: 470px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   REACT LOGO
========================================== */

.react-logo {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173,255,47,.05);
    border: 2px solid greenyellow;
    box-shadow:0 0 50px rgba(173,255,47,.08);
    position: relative;
    z-index: 3;
    animation: reactFloat 4s ease-in-out infinite;
}

.react-logo::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 55px;
    border: 2px solid yellowgreen;
    border-radius: 50%;
    transform: rotate(60deg);
}

.react-logo::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 55px;
    border: 2px solid yellowgreen;
    border-radius: 50%;
    transform: rotate(-60deg);
}

.react-logo span {
    color: greenyellow;
    font-size: 85px;
    line-height: 1;
    position: relative;
    z-index: 4;
}

/* ==========================================
   ORBITS
========================================== */

.react-orbit {
    position: absolute;
    border: 2px solid rgba(173,255,47,.15);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 350px;
    height: 350px;
    transform: rotate(35deg);
}

.orbit-two {
    width: 440px;
    height: 260px;
    transform: rotate(-35deg);
}

/* ==========================================
   CODE LABELS
========================================== */

.react-code-line {
    position: absolute;
    padding: 10px 17px;
    border: 1px solid rgba(173,255,47,.25);
    border-radius: 8px;
    color: greenyellow;
    font-size: 11px;
    /* font-family: monospace; */
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 5;
    animation: codeFloat 3s ease-in-out infinite;
}

.line-one {
    top: 70px;
    right: 5px;
}

.line-two {
    bottom: 75px;
    left: 0;
    animation-delay: 1s;
}

/* ==========================================
   CONTENT
========================================== */

.react-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.react-content h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
}

.react-content h2 span {
    color: greenyellow;
}

.react-content > p {
    color: white;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 20px;
    max-width: 650px;
}

/* ==========================================
   SUPPORT
========================================== */

.react-support {
    margin-top: 35px;
}

.react-support h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 15px;
}

/* ==========================================
   FEATURES
========================================== */

.react-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.react-feature {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 15px;
    border-left: 2px solid greenyellow;
    background: rgba(255,255,255,.025);
    box-shadow: 0 10px 20px black;
    transition: .35s ease;
    box-sizing: border-box;
}

.react-feature span {
    color: greenyellow;
    font-size: 9px;
    font-weight: 800;
}

.react-feature strong {
    color: white;
    font-size: 12px;
    line-height: 1.4;
}

.react-feature:hover {
    background: greenyellow;
    transform: translateX(7px);
    border-left-color: yellowgreen;
    border-left-width: 10px;
    box-shadow: 0 10px 20px black;

}

.react-feature:hover span,
.react-feature:hover strong {
    color: #000;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes reactFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes codeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {
    .react-why-section {
        padding: 90px 0;
    }

    .react-why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .react-visual {
        min-height: 380px;
    }

    .react-content {
        text-align: center;
    }

    .react-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .react-features {
        text-align: left;
    }

    .react-support {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .react-why-section {
        padding: 70px 0;
    }

    .react-why-container {
        width: 88%;
    }

    .react-visual {
        min-height: 290px;
    }

    .react-logo {
        width: 145px;
        height: 145px;
    }

    .react-logo span {
        font-size: 58px;
    }

    .react-logo::before,
    .react-logo::after {
        width: 100px;
        height: 40px;
    }

    .orbit-one {
        width: 250px;
        height: 250px;
    }

    .orbit-two {
        width: 310px;
        height: 190px;
    }

    .line-one {
        top: 20px;
        right: 0;
    }

    .line-two {
        bottom: 20px;
        left: 0;
    }

    .react-code-line {
        font-size: 9px;
        padding: 8px 12px;
    }

    .react-tag {
        font-size: 8px;
        padding: 7px 15px;
    }

    .react-content h2 {
        font-size: 40px;
    }

    .react-content > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .react-features {
        grid-template-columns: 1fr;
    }

    .react-feature {
        min-height: 52px;
    }
    .react-features .react-feature span{
        font-size: 11px;
        font-weight: 500;
    }
    .react-features .react-feature strong{
        font-size: 13px;
        font-weight: 500;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .react-why-section {
        padding: 60px 0;
    }

    .react-visual {
        min-height: 250px;
    }

    .react-logo {
        width: 120px;
        height: 120px;
    }

    .react-logo span {
        font-size: 48px;
    }

    .orbit-one {
        width: 210px;
        height: 210px;
    }

    .orbit-two {
        width: 260px;
        height: 160px;
    }

    .react-content h2 {
        font-size: 34px;
    }

    .react-content > p {
        font-size: 13px;
    }

    .react-feature strong {
        font-size: 11px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .react-logo,
    .react-code-line {
        animation: none;
    }

    .react-feature {
        transition: none;
    }

}

/* ==========================================
   SECTION 3 : FRONTEND FOUNDATION
========================================== */

.frontend-stack-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND
========================================== */

/* .frontend-stack-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(173,255,47,.3);
    filter: blur(100px);
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    pointer-events: none;
} */

.frontend-stack-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            greenyellow,
            transparent
        );
    pointer-events: none;
}

/* ==========================================
   CONTAINER
========================================== */

.frontend-stack-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADING
========================================== */

.frontend-stack-heading {
    text-align: center;
    margin-bottom: 80px;
}

.frontend-stack-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 25px;
}

.frontend-stack-heading h2 {
    margin: 0 0 20px;
    color: whitesmoke;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
}

.frontend-stack-heading h2 span {
    color: greenyellow;
    display: block;
}

.frontend-stack-heading p {
    max-width: 650px;
    margin: auto;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   MAIN STACK LAYOUT
========================================== */

.frontend-stack-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 35px;
    align-items: center;
    min-height: 430px;
}

/* ==========================================
   SIDE COLUMNS
========================================== */

.stack-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #2a2d32;
}

.stack-left {
    align-items: flex-end;
}

.stack-right {
    align-items: flex-start;
}

/* ==========================================
   STACK ITEMS
========================================== */

.stack-item {
    width: 100%;
    max-width: 280px;
    min-height: 90px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(173,255,47,.12);
    border-radius: 16px;
    box-sizing: border-box;
    transition: .4s ease;
    position: relative;
    box-shadow: 0 10px 20px black;
}

.stack-left .stack-item {
    text-align: right;
    justify-content:end;
    flex-direction: row-reverse;
}

.stack-right .stack-item {
    text-align: left;
}

/* ==========================================
   INDEX
========================================== */

.stack-index {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid yellowgreen;
    color: greenyellow;
    font-size: 11px;
    font-weight: 900;
    transition: .4s ease;
}

/* ==========================================
   ITEM TEXT
========================================== */

.stack-item h3 {
    margin: 0 0 5px;
    color: greenyellow;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
}

.stack-item p {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================
   ITEM HOVER
========================================== */

.stack-item:hover {
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
    transform: translateY(-5px);
}

.stack-item:hover .stack-index {
    background: greenyellow;
    color: #000;
    transform: scale(1.08);
}

/* ==========================================
   CENTER
========================================== */

.stack-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   BROWSER
========================================== */

.browser-window {
    width: 100%;
    max-width: 440px;
    border-radius: 18px;
    overflow: hidden;
    background: #2a2d32;
    border: 1px solid rgba(173,255,47,.25);
    box-shadow:0 10px 20px black;
    transition: .5s ease;
}

.browser-window:hover {
    transform: translateY(-8px);
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

/* ==========================================
   BROWSER TOP
========================================== */

.browser-top {
    height: 45px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2a2d32;
    border-bottom: 1px solid rgba(255,255,255,.05);
    box-sizing: border-box;
    box-shadow:0 10px 20px black;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: yellowgreen;
}

.browser-address {
    flex: 1;
    height: 25px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    color: white;
    font-size: 9px;
    /* font-family: monospace; */
}

/* ==========================================
   BROWSER CONTENT
========================================== */

.browser-content {
    min-height: 280px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.browser-code {
    display: flex;
    flex-direction: column;
    gap: 9px;
    /* font-family: monospace; */
    font-size: 13px;
}

.browser-code span {
    color: yellowgreen;
}

.browser-code strong {
    color: white;
    font-weight: 500;
    padding-left: 15px;
}

.browser-react {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: greenyellow;
    color: #000;
    box-shadow:
        0 0 45px rgba(173,255,47,.15);
    flex-shrink: 0;
}

.browser-react span {
    font-size: 43px;
    line-height: 1;
}

.browser-react small {
    margin-top: 7px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ==========================================
   CORE LABEL
========================================== */

.stack-core-label {
    margin-top: 18px;
    color: white;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* ==========================================
   REACT FOUNDATION BOX
========================================== */

.react-foundation-box {
    max-width: 700px;
    margin: 55px auto 0;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;    
    border: 1px solid rgba(173,255,47,.35);
    border-radius: 18px;
    box-sizing: border-box;
    transition: .4s ease;
    box-shadow: 0 10px 20px black;
}

.react-foundation-box:hover {
    transform: translateY(-5px);
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

.react-foundation-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: greenyellow;
    color: #000;
    font-size: 30px;
}

.react-foundation-text {
    flex: 1;
}

.react-foundation-text span {
    color: yellowgreen;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.react-foundation-text h3 {
    margin: 4px 0;
    color: #fff;
    font-size: 20px;
}

.react-foundation-text p {
    margin: 0;
    color: white;
    font-size: 13px;
}

.react-foundation-arrow {
    color: greenyellow;
    font-size: 25px;
    transition: .3s ease;
}

.react-foundation-box:hover
.react-foundation-arrow {
    transform: translateX(8px);
    color: yellowgreen;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .frontend-stack-section {
        padding: 90px 0;
    }

    .frontend-stack-heading {
        margin-bottom: 60px;
    }

    .frontend-stack-heading h2 {
        font-size: 48px;
    }

    .frontend-stack-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stack-left,
    .stack-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        align-items: stretch;
    }

    .stack-left .stack-item,
    .stack-right .stack-item {
        max-width: none;
        text-align: left;
        justify-content: flex-start;
        flex-direction: row;
    }

    .stack-center {
        order: -1;
        margin-bottom: 10px;
    }

    .stack-item {
        min-height: 100px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .frontend-stack-section {
        padding: 70px 0;
    }

    .frontend-stack-container {
        width: 88%;
    }

    .frontend-stack-heading {
        margin-bottom: 45px;
    }

    /* .frontend-stack-label {
        padding: 7px 15px;
        font-size: 8px;
    } */

    .frontend-stack-heading h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .frontend-stack-heading p {
        font-size: 15px;
    }

    .stack-left,
    .stack-right {
        grid-template-columns: 1fr;
    }

    .stack-item {
        max-width: none;
        min-height: 78px;
        padding: 14px;
    }

    .stack-center {
        margin-bottom: 5px;
    }

    .stack-left, .stack-right .stack-item p{
        font-size: 14px;
    }

    .browser-window {
        max-width: 100%;
    }

    .browser-content {
        min-height: 230px;
        padding: 25px;
    }

    .browser-code {
        font-size: 13px;
    }

    .browser-react {
        width: 75px;
        height: 75px;
    }

    .browser-react span {
        font-size: 32px;
    }

    .browser-react small {
        font-size: 10px;
    }

    .react-foundation-box {
        padding: 17px;
        gap: 14px;
        margin-top: 35px;
    }

    .react-foundation-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
    }

    .react-foundation-text h3 {
        font-size: 17px;
    }

    .react-foundation-text p {
        font-size: 14px;
    }

    .react-foundation-arrow {
        font-size: 20px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .frontend-stack-section {
        padding: 60px 0;
    }

    .frontend-stack-heading h2 {
        font-size: 31px;
    }

    .frontend-stack-heading p {
        font-size: 13px;
    }

    .browser-content {
        min-height: 200px;
        padding: 20px;
    }

    .browser-code {
        font-size: 9px;
    }

    .browser-react {
        width: 60px;
        height: 60px;
    }

    .browser-react span {
        font-size: 26px;
    }

    .stack-item h3 {
        font-size: 12px;
    }

    .stack-item p {
        font-size: 10px;
    }

    .react-foundation-text h3 {
        font-size: 15px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .stack-item,
    .browser-window,
    .react-foundation-box,
    .react-foundation-arrow {
        transition: none;
    }

}

/* ==========================================
   SECTION 4 : WHAT YOU WILL MASTER
========================================== */

.master-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND
========================================== */

.master-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    /* background-color:black; */
}

/* ==========================================
   CONTAINER
========================================== */

.master-container {
    width: 90%;
    max-width: 1050px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.master-header {
    text-align: center;
    margin-bottom: 90px;
}

.master-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 24px;
}

.master-header h2 {
    margin: 0 0 20px;
    color: whitesmoke;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
}

.master-header h2 span {
    display: block;
    color: greenyellow;
}

.master-header p {
    max-width: 680px;
    margin: auto;
    color: white;
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
   TIMELINE
========================================== */

.master-timeline {
    position: relative;
    padding: 20px 0;
}

/* CENTRAL LINE */

.master-timeline::before {
    content: "";
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            transparent,
            greenyellow 8%,
            yellowgreen 50%,
            greenyellow 92%,
            transparent
        );
    opacity: .5;
}

/* ==========================================
   STEP
========================================== */

.master-step {
    width: 50%;
    padding: 0 55px 55px 0;
    box-sizing: border-box;
    position: relative;
}

/* EVEN STEPS RIGHT */

.master-step:nth-child(even) {
    margin-left: 50%;
    padding:
        0
        0
        55px
        55px;
}

/* ==========================================
   NODE
========================================== */

.master-node {
    position: absolute;
    width: 52px;
    height: 52px;
    right: -26px;
    top: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2a2d32;
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 11px;
    font-weight: 900;
    z-index: 5;
    box-shadow: 0 10px 20px black;
    transition: .4s ease;
}

/* RIGHT NODE */

.master-step:nth-child(even) .master-node {
    left: -26px;
    right: auto;
}

/* ==========================================
   CONTENT CARD
========================================== */

.master-content {
    min-height: 145px;
    padding: 27px 30px;    
    border: 2px solid rgba(173,255,47,.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
    box-shadow: 0 10px 20px black;
}

.master-content::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(173,255,47,.035);
    right: -45px;
    bottom: -45px;
    pointer-events: none;
}

/* ==========================================
   CONNECTOR
========================================== */

.master-step:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 1px;
    background: rgba(173,255,47,.25);
    top: 41px;
    right: 0;
}

.master-step:nth-child(even):not(:last-child)::after {
    right: auto;
    left: 0;
}

/* ==========================================
   TEXT
========================================== */

.master-mini {
    display: block;
    color: greenyellow;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.master-content h3 {
    margin: 0 0 10px;
    color: greenyellow;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.master-content p {
    margin: 0;
    color: white;
    font-size: 13px;
    line-height: 1.7;
}

/* ==========================================
   HOVER
========================================== */

.master-content:hover {
    transform: translateY(-7px);
    border-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

/* ==========================================
   REACT FEATURE
========================================== */

.master-react-step .master-content {
    border-color: rgba(173,255,47,.38);
    box-shadow:0 10px 20px black;
}

.master-react-step .master-node {
    background: greenyellow;
    color: #000;
    border-color: greenyellow;
}

.master-step .master-content:hover {
    box-shadow:0 10px 20px greenyellow;
}

.master-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 11px;
    background: greenyellow;
    color: #000;
    border-radius: 20px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ==========================================
   FINAL STEP
========================================== */

.master-final-step .master-content {
    border-color: rgba(173,255,47,.28);
}

.master-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(173,255,47,.08);
    color: greenyellow;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

.master-launch span {
    font-size: 12px;
}

/* ==========================================
   FOOTER
========================================== */

.master-footer {
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    flex-wrap: wrap;
}

.master-footer-line {
    width: 75px;
    height: 1px;
    background: rgba(173,255,47,.25);
}

.master-footer b {
    color: yellowgreen;
    font-size: 13px;
}

.master-footer strong {
    color: greenyellow;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {
    .master-section {
        padding: 90px 0;
    }

    .master-header {
        margin-bottom: 65px;
    }

    .master-header h2 {
        font-size: 48px;
    }

    .master-step {
        padding-right: 40px;
    }

    .master-step:nth-child(even) {
        padding-left: 40px;
    }

    .master-step:not(:last-child)::after {
        width: 40px;
    }

    .master-content {
        padding: 23px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {
    .master-section {
        padding: 70px 0;
    }

    .master-container {
        width: 88%;
    }

    .master-header {
        margin-bottom: 50px;
    }

    .master-tag {
        padding: 7px 15px;
        font-size: 11px;
    }

    .master-header h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .master-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* MOBILE TIMELINE */

    .master-timeline {
        padding-left: 45px;
    }

    .master-timeline::before {
        left: 20px;
        transform: none;
    }

    .master-step,
    .master-step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding:
            0
            0
            25px
            25px;
    }

    .master-node,
    .master-step:nth-child(even) .master-node {
        left: -45px;
        right: auto;
        top: 18px;
        width: 42px;
        height: 42px;
        font-size: 11px;
        box-shadow:
            0 0 0 5px black;
    }

    .master-step:not(:last-child)::after,
    .master-step:nth-child(even):not(:last-child)::after {
        width: 25px;
        left: -25px;
        right: auto;
        top: 38px;
    }

    .master-content {
        min-height: 0;
        padding: 21px;
        border-radius: 16px;
    }

    .master-content h3 {
        font-size: 15px;
    }

    .master-content p {
        font-size: 14px;
    }

    .master-highlight {
        top: 15px;
        right: 15px;
    }

    .master-footer {
        margin-top: 40px;
        gap: 9px;
        font-size: 11px;
    }

    .master-footer-line {
        display: none;
    }

    .master-mini {
        font-size: 9px;
    }

    .master-launch{
        font-size: 9px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .master-section {
        padding: 60px 0;
    }

    .master-header h2 {
        font-size: 31px;
    }

    .master-header p {
        font-size: 13px;
    }

    .master-timeline {
        padding-left: 38px;
    }

    .master-timeline::before {
        left: 17px;
    }

    .master-node,
    .master-step:nth-child(even) .master-node {
        left: -38px;
        width: 36px;
        height: 36px;
        font-size: 8px;
    }

    .master-step:not(:last-child)::after,
    .master-step:nth-child(even):not(:last-child)::after {
        left: -21px;
        width: 21px;
    }

    .master-content {
        padding: 18px;
    }

    .master-content h3 {
        font-size: 13px;
    }

    .master-content p {
        font-size: 11px;
    }

    .master-highlight {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .master-content,
    .master-node {
        transition: none;
    }

}

/* ==========================================
   SECTION 5 : BUILD EVERY WEEK
========================================== */

.build-week-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND EFFECT
========================================== */
/* 
.build-week-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: black;
    filter: blur(120px);
    top: 20%;
    right: -150px;
    pointer-events: none;
}

.build-week-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: black;
    filter: blur(100px);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
} */

/* ==========================================
   CONTAINER
========================================== */

.build-week-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.build-week-header {
    text-align: center;
    margin-bottom: 75px;
}

.build-week-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 25px;
}

.build-week-header h2 {
    margin: 0 0 20px;
    color: whitesmoke;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
}

.build-week-header h2 span {
    color: greenyellow;
}

.build-week-header p {
    max-width: 700px;
    margin: auto;
    color: white;
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================
   PROJECT AREA
========================================== */

.build-project-area {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 45px;
    align-items: start;
}


/* ==========================================
   INTRO PANEL
========================================== */

.build-project-intro {
    padding: 35px;
    box-shadow: 0 10px 20px black;
    /* border: 1px solid rgba(173,255,47,.18); */
    border-radius: 25px;
    position: sticky;
    top: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.build-project-intro::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(173,255,47,.1);
    right: -70px;
    bottom: -70px;
}

/* ==========================================
   COUNTER
========================================== */

.project-counter {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 35px;
}

.project-counter span {
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    color: greenyellow;
}

.project-counter small {
    color: white;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* ==========================================
   INTRO TEXT
========================================== */

.build-project-intro h3 {
    margin: 0 0 18px;
    color: greenyellow;
    font-size: 27px;
    line-height: 1.25;
}

.build-project-intro p {
    margin: 0 0 30px;
    color: white;
    font-size: 13px;
    line-height: 1.8;
}

/* ==========================================
   BUTTON
========================================== */

.explore-projects-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 14px 17px;
    box-sizing: border-box;
    background: greenyellow;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: .35s ease;
}

.explore-projects-btn span {
    font-size: 18px;
    line-height: 1;
    transition: .3s ease;
}

.explore-projects-btn:hover {
    background: yellowgreen;
    box-shadow:
        0 12px 30px rgba(173,255,47,.15);
    transform: translateY(-3px);
}

.explore-projects-btn:hover span {
    transform: translateX(5px);
}

/* ==========================================
   PROJECT LIST
========================================== */

.build-project-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==========================================
   PROJECT ROW
========================================== */

.project-row {
    min-height: 82px;
    padding: 12px 18px;
    display: grid;
    grid-template-columns:
        35px
        50px
        1fr
        25px;
    align-items: center;
    gap: 16px;
    /* background: rgba(22,35,56,.72);
    border: 1px solid rgba(255,255,255,.04); */
    box-shadow: 0 10px 20px black;
    border-radius: 15px;
    box-sizing: border-box;
    transition:
        .35s ease;
}

.project-row:hover {
    transform: translateX(8px);
    box-shadow:
        -8px 15px 35px rgba(0,0,0,.18);
        box-shadow: 0 10px 20px greenyellow;
}

/* ==========================================
   NUMBER
========================================== */

.project-number {
    color: white;
    font-size: 10px;
    font-weight: 900;
    transition: .3s ease;
}

.project-row:hover .project-number {
    color: greenyellow;
}

/* ==========================================
   ICON
========================================== */

.project-icon {
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 11px;
    font-weight: 900;
    /* font-family: monospace; */
    transition: .35s ease;
}

.project-row:hover .project-icon {
    background: greenyellow;
    color: #000;
    border-color: greenyellow;
    transform: rotate(-4deg) scale(1.05);
}

/* ==========================================
   PROJECT INFO
========================================== */

.project-info h3 {
    margin: 0 0 4px;
    color: greenyellow;
    font-size: 17px;
    font-weight: 600;
}

.project-info p {
    margin: 0;
    color: white;
    font-size: 15px;
    line-height: 1.5;
}

/* ==========================================
   ARROW
========================================== */

.project-arrow {
    color: white;
    font-size: 18px;
    transition: .3s ease;
}

.project-row:hover .project-arrow {
    color: greenyellow;
    transform: translate(3px,-3px);
}

/* ==========================================
   BOTTOM
========================================== */

.build-week-bottom {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.build-week-bottom span {
    width: 100px;
    height: 1px;
    background: rgba(173,255,47,.2);
}

.build-week-bottom p {
    margin: 0;
    color: white;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.build-week-bottom strong {
    color: greenyellow;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .build-week-section {
        padding: 90px 0;
    }

    .build-project-area {
        grid-template-columns: 270px 1fr;
        gap: 25px;
    }

    .build-project-intro {
        padding: 25px;
    }

    .build-project-intro h3 {
        font-size: 23px;
    }

    .project-counter span {
        font-size: 48px;
    }

    .project-row {
        grid-template-columns:
            28px
            43px
            1fr
            20px;
        gap: 12px;
    }

    .project-info h3 {
        font-size: 13px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .build-week-section {
        padding: 70px 0;
    }

    .build-week-container {
        width: 88%;
    }

    .build-week-header {
        margin-bottom: 45px;
    }

    .build-week-tag {
        padding: 7px 15px;
        /* font-size: 8px; */
    }

    .build-week-header h2 {
        font-size: 38px;
    }

    .build-week-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* STACK INTRO ABOVE LIST */

    .build-project-area {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .build-project-intro {
        position: relative;
        top: auto;
        width: 100%;
        padding: 25px;
        border-radius: 20px;
    }

    .project-counter {
        margin-bottom: 20px;
    }

    .project-counter span {
        font-size: 45px;
    }

    .build-project-intro h3 {
        font-size: 24px;
    }

    .build-project-intro p {
        font-size: 13px;
    }

    .build-project-list {
        width: 100%;
    }

    .project-row {
        min-height: 75px;
        padding: 10px 13px;
        grid-template-columns:
            27px
            40px
            1fr
            18px;
        gap: 10px;
        border-radius: 13px;
    }

    .project-icon {
        width: 37px;
        height: 37px;
        border-radius: 10px;
        font-size: 11px;
    }

    .project-row .project-info h3 {
        font-size: 15px;
        line-height: 1.35;
    }

    .project-row .project-info p {
        font-size: 13px;
    }

    .project-arrow {
        font-size: 15px;
    }

    .build-week-bottom {
        margin-top: 40px;
        gap: 12px;
    }

    .build-week-bottom span {
        width: 35px;
    }

    .build-week-bottom p {
        font-size: 10px;
        letter-spacing: 1px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .build-week-section {
        padding: 60px 0;
    }

    .build-week-header h2 {
        font-size: 32px;
    }

    .build-week-header p {
        font-size: 13px;
    }

    .build-project-intro {
        padding: 21px;
    }

    .project-counter span {
        font-size: 40px;
    }

    .build-project-intro h3 {
        font-size: 21px;
    }

    .project-row {
        grid-template-columns:
            22px
            36px
            1fr
            15px;
        gap: 8px;
        padding: 9px 10px;
    }

    .project-icon {
        width: 34px;
        height: 34px;
    }

    .project-info h3 {
        font-size: 11px;
    }

    .project-info p {
        font-size: 8px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .project-row,
    .project-icon,
    .project-arrow,
    .project-number,
    .explore-projects-btn {
        transition: none;
    }

}

/* ==========================================
   SECTION 6 — PORTFOLIO JOURNEY
========================================== */

.portfolio-journey {
    width: 100%;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND
========================================== */

.portfolio-journey::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(173,255,47,.055) 0%,
            rgba(173,255,47,.015) 35%,
            transparent 70%
        );
    pointer-events: none;
}

/* .portfolio-journey::after {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:
        radial-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;
} */

/* ==========================================
   CONTAINER
========================================== */

.portfolio-journey-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.portfolio-journey-header {
    max-width: 720px;
    margin: 0 auto 90px;
    text-align: center;
}

.portfolio-journey-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 25px;
}

.portfolio-journey-header h2 {
    margin: 0 0 25px;
    color: whitesmoke;
    font-size: 65px;
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 850;
}

.portfolio-journey-header h2 em {
    color: greenyellow;
    font-style: normal;
}

.portfolio-journey-header p {
    max-width: 650px;
    margin: 8px auto;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   JOURNEY MAP
========================================== */

.portfolio-journey-map {
    min-height: 1050px;
    position: relative;
    padding: 10px 0;
}

/* ==========================================
   CENTRAL LINE
========================================== */

.portfolio-journey-line {
    position: absolute;
    top: -64px;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            transparent,
            greenyellow 8%,
            greenyellow 92%,
            transparent
        );
}

.journey-progress {
    position: absolute;
    left: -1px;
    top: 8%;
    width: 3px;
    height: 85%;
    background:
        linear-gradient(
            to bottom,
            greenyellow,
            rgba(173,255,47,.15)
        );
    box-shadow:
        0 0 15px black;
}

/* ==========================================
   JOURNEY ITEM
========================================== */

.journey-item {
    width: calc(50% - 45px);
    min-height: 115px;
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px black;
}

/* LEFT */

.journey-left {
    left: 0;
    text-align: right;
    flex-direction: row-reverse;
}

/* RIGHT */

.journey-right {
    right: 0;
    text-align: left;
}

/* ==========================================
   POINT
========================================== */

.journey-point {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px yellowgreen;
    border-radius: 50%;
    color: white;
    /* font-family: monospace; */
    font-size: 14px;
    font-weight: 900;
    position: relative;
    z-index: 3;
    transition: .3s ease;
}

.journey-item:hover .journey-point {
    border-color: greenyellow;
    background: greenyellow;
    color: #0b111b;
    box-shadow:
        0 0 0 7px rgba(173,255,47,.06),
        0 0 25px rgba(173,255,47,.2);
}

/* ==========================================
   TEXT
========================================== */

.journey-text {
    flex: 1;
    padding-top: 5px;
}

.journey-text > span {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.journey-item:hover .journey-text > span {
    color: greenyellow;
}


.journey-text h3 {
    margin: 0 0 10px;
    color: greenyellow;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 750;
    transition: .3s ease;
}

.journey-item:hover .journey-text h3 {
    color: greenyellow;
}

.journey-text p {
    max-width: 400px;
    margin: 0;
    color: white;
    font-size: 13px;
    line-height: 1.75;
}

/* ==========================================
   CONNECTOR
========================================== */

.journey-left::after,
.journey-right::after {
    content: "";
    position: absolute;
    top: 25px;
    width: 45px;
    height: 1px;
    background: rgb(83, 109, 30);
    transition: .3s ease;
}

.journey-left::after {
    right: -45px;
}

.journey-right::after {
    left: -45px;
}

.journey-item:hover::after {
    background: greenyellow;
    box-shadow: 0 0 10px rgba(173,255,47,.3);
}

/* ==========================================
   POSITIONING
========================================== */

.journey-01 {
    top: 0;
}

.journey-02 {
    top: 135px;
}

.journey-03 {
    top: 270px;
}

.journey-04 {
    top: 405px;
}

.journey-05 {
    top: 540px;
}

.journey-06 {
    top: 675px;
}

.journey-07 {
    top: 810px;
}

.journey-08 {
    top: 945px;
}

/* ==========================================
   FINAL
========================================== */

.journey-final .journey-point {
    border-color: greenyellow;
    color: greenyellow;
    box-shadow:
        0 0 20px rgba(173,255,47,.12);
}

.journey-final .journey-text h3 {
    color: greenyellow;
}

/* ==========================================
   RESULT
========================================== */

.portfolio-journey-result {
    max-width: 680px;
    margin: 30px auto 0;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    /* border: 1px solid rgba(173,255,47,.18); */
    box-shadow: 0 10px 20px black;
    border-radius: 14px;
    box-sizing: border-box;
}

.result-symbol {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: greenyellow;
    color: #0b111b;
    font-size: 17px;
    font-weight: 900;
}

.result-copy span {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.result-copy h3 {
    margin: 0;
    color: greenyellow;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.result-copy h3 strong {
    color: greenyellow;
    font-weight: 800;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {

    .portfolio-journey {
        padding: 90px 0;
    }

    .portfolio-journey-header h2 {
        font-size: 54px;
    }

    .portfolio-journey-map {
        min-height: 1050px;
    }

    .journey-item {
        width: calc(50% - 35px);
    }

    .journey-left::after {
        right: -35px;
        width: 35px;
    }

    .journey-right::after {
        left: -35px;
        width: 35px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .portfolio-journey {
        padding: 70px 0;
    }

    .portfolio-journey-container {
        width: 88%;
        font-size: 13px;
    }

    .portfolio-journey-header {
        margin-bottom: 55px;
    }

    .portfolio-journey-header h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .portfolio-journey-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* MAP */

    .portfolio-journey-map {
        min-height: auto;
        padding: 0 0 0 38px;
    }

    /* LINE */

    .portfolio-journey-line {
        left: 13px;
        transform: none;
        top: 10px;
        bottom: 10px;
    }

    .journey-progress {
        top: 0;
        height: 100%;
    }

    /* ITEMS */

    .journey-item,
    .journey-left,
    .journey-right {
        width: 100%;
        min-height: 110px;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .journey-left::after,
    .journey-right::after {
        display: none;
    }

    .journey-point {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .journey-text {
        padding-top: 2px;
    }

    .journey-text > span {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .journey-text h3 {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .journey-text p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.65;
    }

    .journey-08 {
        margin-bottom: 0;
    }

    /* RESULT */

    .portfolio-journey-result {
        margin-top: 35px;
        padding: 18px;
    }

    .result-symbol {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .result-copy h3 {
        font-size: 13px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .portfolio-journey-header h2 {
        font-size: 34px;
    }

    .portfolio-journey-header p {
        font-size: 12px;
    }

    .journey-item {
        min-height: 105px;
    }

    .journey-text h3 {
        font-size: 11px;
    }

    .journey-text p {
        font-size: 7.5px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .journey-point,
    .journey-text h3,
    .journey-item::after {
        transition: none;
    }

}

/* ==========================================
   SECTION 7 — RELATED CAREER PATHS
========================================== */

.career-paths {
    width: 100%;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   BACKGROUND
========================================== */

.career-paths::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(173,255,47,.045),
            transparent 68%
        );
    pointer-events: none;
}

.career-paths::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    pointer-events: none;
}

/* ==========================================
   CONTAINER
========================================== */

.career-paths-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.career-paths-header {
    max-width: 700px;
    margin: 0 auto 75px;
    text-align: center;
}

.career-paths-eyebrow {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 25px;
}

.career-paths-header h2 {
    margin: 0 0 25px;
    color: whitesmoke;
    font-size: 62px;
    line-height: .98;
    letter-spacing: -2.5px;
    font-weight: 850;
}

.career-paths-header h2 span {
    color: greenyellow;
}

.career-paths-header p {
    max-width: 600px;
    margin: auto;
    color: white;
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================
   CAREER TRACK
========================================== */

.career-paths-track {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    min-height: 400px;
    padding: 0 10px 20px;
    border-bottom: 1px solid greenyellow;
    box-sizing: border-box;
}

/* ==========================================
   STEP
========================================== */

.career-step {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 18px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 20px black;
    box-sizing: border-box;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

/* ==========================================
   DIFFERENT HEIGHTS
========================================== */

.career-step-1 {
    height: 190px;
}

.career-step-2 {
    height: 215px;
}

.career-step-3 {
    height: 240px;
}

.career-step-4 {
    height: 265px;
}

.career-step-5 {
    height: 290px;
}

.career-step-6 {
    height: 315px;
}

.career-step-7 {
    height: 340px;
}

.career-step-8 {
    height: 370px;
}

/* ==========================================
   HOVER
========================================== */

.career-step:hover {
    transform: translateY(-12px);
    border-color: greenyellow;
    box-shadow:
        0 20px 45px rgba(0,0,0,.4),
        0 0 25px rgba(173,255,47,.08);
}

/* ==========================================
   TOP NUMBER
========================================== */

.career-step-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 50%;
    border: 2px solid greenyellow;
    color: white;
    /* font-family: monospace; */
    font-size: 11px;
    font-weight: 900;
    transition: .3s ease;
}

.career-step:hover .career-step-number {
    border-color: greenyellow;
    background: greenyellow;
    color: black;
}

/* ==========================================
   STEP CONTENT
========================================== */

.career-step-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
}

.career-paths-track .career-step-content small {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.career-step:hover .career-step-content small {
    color: greenyellow;
}

.career-paths-track .career-step-content h3 {
    margin: 0;
    color: greenyellow;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 750;
}

.career-step:hover .career-step-content h3 {
    color: #ffffff;
}

.career-step-content p {
    margin: 8px 0 0;
    color: white;
    font-size: 7px;
    line-height: 1.6;
}

/* ==========================================
   STEP NUMBER INDICATOR
========================================== */

.career-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    transition: .3s ease;
}

.career-step:hover::before {
    background: greenyellow;
    box-shadow: 0 0 12px rgba(173,255,47,.4);
}

/* ==========================================
   FINAL STEP
========================================== */

.career-step-8 {

    background:
        linear-gradient(
            to top,
            rgba(173,255,47,.08),
            #0d1521
        );
}

.career-step-8 .career-step-number {
    border-color: greenyellow;
    color: greenyellow;
}

.career-step-8 .career-step-content h3 {
    color: greenyellow;
}

/* ==========================================
   DISCLAIMER
========================================== */

.career-paths-disclaimer {
    max-width: 850px;
    margin: 60px auto 0;
    padding: 22px 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 10px 20px black;
    border-radius: 12px;
    box-sizing: border-box;
}

.career-disclaimer-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 10px;
    font-weight: 900;
}

.career-disclaimer-content span {
    display: block;
    margin-bottom: 7px;
    color: greenyellow;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.career-disclaimer-content p {
    margin: 0;
    color: white;
    font-size: 12px;
    line-height: 1.75;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .career-paths {
        padding: 90px 0;
    }

    .career-paths-header h2 {
        font-size: 52px;
    }

    .career-paths-track {
        gap: 7px;
    }

    .career-step {
        padding: 13px;
    }

    .career-step-content {
        left: 13px;
        right: 13px;
    }

    .career-step-content h3 {
        font-size: 11px;
    }

    .career-step-content small {
        font-size: 5px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .career-paths {
        padding: 75px 0;
        
    }

    .career-paths-container {
        width: 88%;
    }

    .career-paths-header {
        margin-bottom: 50px;
    }

    .career-paths-header h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .career-paths-header p {
        font-size: 14px;
    }

    /* TRACK */

    .career-paths-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        min-height: auto;
        gap: 10px;
        padding: 0;
        border: 0;
    }

    /* RESET HEIGHT */

    .career-paths-track .career-step,
    .career-step-1,
    .career-step-2,
    .career-step-3,
    .career-step-4,
    .career-step-5,
    .career-step-6,
    .career-step-7,
    .career-step-8 {
        height: 150px;
    }

    .career-step {
        border-radius: 12px;
    }

    .career-step-number {
        margin-bottom: 20px;
    }

    .career-step-content h3 {
        font-size: 14px;
    }

    .career-step-content p {
        font-size: 13px;
    }

    .career-step-content small {
        font-size: 10px;
    }

    /* DISCLAIMER */

    .career-paths-disclaimer {
        margin-top: 40px;
        padding: 18px;
        gap: 12px;
    }

    .career-disclaimer-icon {
        width: 27px;
        height: 27px;
        font-size: 15px;
    }

    .career-paths-disclaimer .career-disclaimer-content span {
        font-size: 12px;
    }

    .career-paths-disclaimer .career-disclaimer-content p {
        font-size: 12.5px;
        line-height: 1.7;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .career-paths-header h2 {
        font-size: 34px;
    }

    .career-paths-track {
        gap: 8px;
    }

    .career-step,
    .career-step-1,
    .career-step-2,
    .career-step-3,
    .career-step-4,
    .career-step-5,
    .career-step-6,
    .career-step-7,
    .career-step-8 {
        height: 150px;
        padding: 11px;
    }

    .career-step-content {
        left: 11px;
        right: 11px;
        bottom: 16px;
    }

    .career-step-content h3 {
        font-size: 10px;
    }

    .career-step-content small {
        font-size: 4.5px;
    }

    .career-disclaimer-content p {
        font-size: 7.5px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .career-step {
        transition: none;
    }

}

/* ==========================================
   SECTION 8
   HORIZONTAL JOURNEY DESIGN
========================================== */

.ngb-journey {
    width: 100%;
    padding: 125px 0;
    color: white;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   WRAPPER
========================================== */

.ngb-journey-wrap {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

/* ==========================================
   HEADER
========================================== */

.ngb-journey-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 80px;
    padding-bottom: 55px;
    border-bottom: 1px solid greenyellow;
}


.ngb-journey-eyebrow {

    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.5px; */
    margin-bottom: 25px;
}


.ngb-journey-header h2 {
    margin: 0;
    font-size: 52px;
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.ngb-journey-header h2 span {
    color: greenyellow;
}

.ngb-journey-header p {
    max-width: 430px;
    margin: 0 0 5px;
    color: white;
    font-size: 13px;
    line-height: 1.8;
}

/* ==========================================
   LIST
========================================== */

.ngb-journey-list {
    border-bottom: 1px solid yellowgreen;
}


/* ==========================================
   ROW
========================================== */

.ngb-journey-row {
    min-height: 135px;
    display: grid;
    grid-template-columns:
        75px
        1.25fr
        1fr
        120px;
    align-items: center;
    column-gap: 35px;
    border-bottom: 1px solid rgb(51, 66, 29);
    position: relative;
    transition:
        background .3s ease,
        padding .3s ease;
}

.ngb-journey-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: greenyellow;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
}

.ngb-journey-row:hover {

    box-shadow: 0 10px 20px black;
    padding-left: 18px;
    padding-right: 18px;
}

.ngb-journey-row:hover::before {
    transform: scaleY(1);
}

.ngb-journey-last {
    border-bottom: 0;
}

/* ==========================================
   NUMBER
========================================== */

.ngb-journey-count {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    transition:
        background .3s ease,
        border-color .3s ease;
}

.ngb-journey-count span {
    color: white;
    /* font-family: monospace; */
    font-size: 14px;
    font-weight: 900;
}

.ngb-journey-row:hover .ngb-journey-count {
    color:black;
    border-color: greenyellow;
    box-shadow: 0 0px 20px greenyellow;
}

.ngb-journey-row:hover .ngb-journey-count span {
    color: greenyellow;
}

/* ==========================================
   TITLE
========================================== */

.ngb-journey-title {
    max-width: 360px;
    color: white;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 750;
}

.ngb-journey-title strong {
    color: greenyellow;
    font-weight: 900;
}

/* ==========================================
   DESCRIPTION
========================================== */

.ngb-journey-description {
    max-width: 360px;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   RIGHT LABEL
========================================== */

.ngb-journey-symbol {
    justify-self: end;
    color: greenyellow;
    /* font-family: monospace; */
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    transition: color .3s ease;
}

.ngb-journey-row:hover .ngb-journey-symbol {
    color: greenyellow;
}

/* ==========================================
   FOOTER
========================================== */

.ngb-journey-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

.ngb-journey-footer-line {
    width: 90px;
    height: 1px;
    background: rgb(88, 136, 17);
}

.ngb-journey-footer span {
    color: greenyellow;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ngb-journey-footer span:nth-of-type(3) {
    color: greenyellow;
}

.ngb-journey-footer b {
    color: white;
    font-size: 12px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .ngb-journey {
        padding: 90px 0;
    }

    .ngb-journey-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ngb-journey-header h2 {
        font-size: 58px;
    }

    .ngb-journey-row {
        grid-template-columns:
            60px
            1.2fr
            1fr;
        column-gap: 22px;
        padding: 20px 0;
    }

    .ngb-journey-symbol {
        display: none;
    }

    .ngb-journey-title {
        font-size: 17px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .ngb-journey {
        padding: 70px 0;
    }

    .ngb-journey-wrap {
        width: 88%;
    }

    .ngb-journey-header {
        padding-bottom: 38px;
    }

    /* .ngb-journey-eyebrow {
        font-size: 11px;
    } */

    .ngb-journey-header h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .ngb-journey-header p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* ROW */

    .ngb-journey-row {
        min-height: 0;
        grid-template-columns:1fr;
        gap: 15px;
        padding: 24px 30px;
        align-items: start;
    }

    .ngb-journey-row:hover {
        padding-left: 10px;
        padding-right: 0;
    }

    .ngb-journey-count {
        width: 31px;
        height: 31px;
    }

    .ngb-journey-count span {
        font-size: 10px;
    }

    .ngb-journey-title {
        font-size: 17px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .ngb-journey-description {
        font-size: 15px;
        line-height: 1.75;
    }

    /* FOOTER */

    .ngb-journey-footer {
        gap: 8px;
        flex-wrap: wrap;
    }

    .ngb-journey-footer-line {
        display: none;
    }

    .ngb-journey-footer span {
        font-size: 9.5px;
        letter-spacing: 1px;
    }

    .ngb-journey-footer b {
        font-size: 9px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .ngb-journey-header h2 {
        font-size: 37px;
    }

    .ngb-journey-title {
        font-size: 12px;
    }

    .ngb-journey-description {
        font-size: 7.5px;
    }

}

/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ngb-journey-row,
    .ngb-journey-row::before,
    .ngb-journey-count {
        transition: none;
    }

}

/* ==========================================
   SECTION 9 — PEOPLE WALL
========================================== */

/* .ngb-people {
    width: 100%;
    padding: 125px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
} */

/* ==========================================
   BACKGROUND SHAPE
========================================== */
/* 
.ngb-people::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -280px;
    top: 180px;
    border-radius: 50%;
    border: 1px solid rgba(60,80,60,.12);
    box-shadow:
        0 0 0 70px rgba(60,80,60,.025),
        0 0 0 140px rgba(60,80,60,.018);
    pointer-events: none;
}


.ngb-people::after {
    content: "WHO";
    position: absolute;
    left: -70px;
    bottom: -40px;
    color: rgba(30,50,35,.035);
    font-size: 240px;
    line-height: .8;
    font-weight: 900;
    pointer-events: none;
} */

/* ==========================================
   WRAPPER
========================================== */

/* .ngb-people-wrap {
    width: 90%;
    max-width: 1180px;
    margin: auto;
    position: relative;
    z-index: 2;
} */

/* ==========================================
   HEADER
========================================== */

/* .ngb-people-header {
    display: grid;
    grid-template-columns: 70px 1fr 360px;
    gap: 35px;
    align-items: end;
    padding-bottom: 65px;
    border-bottom: 2px solid #111811;
} */

/* .ngb-people-index {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid greenyellow;
    border-radius: 50%; */
    /* font-family: monospace; */
    /* font-size: 13px;
    font-weight: 900;
}

.ngb-people-title > span {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.ngb-people-title h2 {
    margin: 0;
    font-size: 62px;
    line-height: .78;
    font-weight: 900;
}

.ngb-people-title h2 i {
    color: greenyellow;
    font-style: normal;
}

.ngb-people-intro p {
    margin: 0;
    color: white;
    font-size: 15px;
    line-height: 1.85;
} */

/* ==========================================
   WALL
========================================== */
/* 
.ngb-people-wall {
    padding-top: 25px;
} */


/* ==========================================
   ROW
========================================== */
/* 
.ngb-person-row {
    width: 83%;
    min-height: 125px;
    display: grid;
    grid-template-columns: 75px 1fr 60px;
    align-items: center;
    gap: 30px;
    padding: 0 25px;
    border-bottom: 1px solid greenyellow;
    box-sizing: border-box;
    position: relative;
    transition:
        width .4s ease,
        background .35s ease,
        padding .35s ease;
}

.ngb-person-row:hover {
    width: 100%;
    box-shadow: 0 10px 20px black;
    padding-left: 35px;
    padding-right: 35px;
} */

/* ==========================================
   OFFSET
========================================== */
/* 
.ngb-person-offset {
    margin-left: 17%;
} */

/* ==========================================
   NUMBER
========================================== */

/* .ngb-person-number {
    color: white; */
    /* font-family: monospace; */
    /* font-size: 14px;
    font-weight: 900;
    transition: color .3s ease;
}

.ngb-person-row:hover .ngb-person-number {
    color: greenyellow;
} */

/* ==========================================
   MAIN
========================================== */
/* 
.ngb-person-main span {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ngb-person-main h3 {
    max-width: 700px;
    margin: 0;
    color: greenyellow;
    font-size: clamp(18px, 2.1vw, 27px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.5px;
}

.ngb-person-main h3 strong {
    color: greenyellow;
    font-weight: 900;
} */

/* ==========================================
   MARK
========================================== */
/* 
.ngb-person-mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: white;
    font-size: 15px;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.ngb-person-row:hover .ngb-person-mark {
    background:greenyellow;
    border-color: greenyellow;
    color: black;
    transform: rotate(45deg);
} */

/* ==========================================
   FINAL ROW
========================================== */
/* 
.ngb-person-final {
    border-bottom: 1px solid greenyellow;
}

.ngb-person-final .ngb-person-mark {
    background: #111811;
    border-color: #111811;
    color: greenyellow;
} */

/* ==========================================
   BOTTOM
========================================== */
/* 
.ngb-people-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 55px;
    position: relative;
}

.ngb-people-bottom-shape {
    width: 8px;
    height: 8px;
    background: greenyellow;
    transform: rotate(45deg);
}

.ngb-people-bottom p {
    max-width: 400px;
    margin: 0;
    color: greenyellow;
    font-size: 13px;
    line-height: 1.7;
    text-align: right;
}

.ngb-people-bottom strong {
    color: white;
    font-weight: 900;
} */

/* ==========================================
   TABLET
========================================== */
/* 
@media (max-width: 900px) {

    .ngb-people {
        padding: 95px 0 70px;
    }

    .ngb-people-header {
        grid-template-columns: 55px 1fr;
        gap: 25px;
    }

    .ngb-people-intro {
        grid-column: 2;
    }

    .ngb-person-row {
        width: 90%;
        min-height: 110px;
        grid-template-columns: 55px 1fr 45px;
        gap: 20px;
    }

    .ngb-person-offset {
        margin-left: 10%;
    }

    .ngb-person-main h3 {
        font-size: 18px;
    }

} */

/* ==========================================
   MOBILE
========================================== */
/* 
@media (max-width: 650px) {

    .ngb-people {
        padding: 70px 0 55px;
    }

    .ngb-people-wrap {
        width: 88%;
    }

    .ngb-people-header {
        display: block;
        padding-bottom: 40px;
    }

    .ngb-people-index {
        width: 35px;
        height: 35px;
        margin-bottom: 25px;
        font-size: 10px;
    }

    .ngb-people-title > span {
        font-size: 9px;
        margin-bottom: 12px;
    }

    .ngb-people-title h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .ngb-people-intro {
        margin-top: 25px;
    }

    .ngb-people-intro p {
        font-size: 14px;
        line-height: 1.75;
    } */

    /* RESET OFFSET */
/* 
    .ngb-person-row,
    .ngb-person-offset {
        width: 100%;
        margin-left: 0;
        min-height: 92px;
        grid-template-columns: 30px 1fr 30px;
        gap: 12px;
        padding: 0 5px;
    }

    .ngb-person-row:hover {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .ngb-person-number {
        font-size: 12px;
    }

    .ngb-person-main span {
        font-size: 9px;
        margin-bottom: 6px;
        letter-spacing: 1.2px;
    }

    .ngb-person-main h3 {
        font-size: 12px;
        letter-spacing: 0;
    }

    .ngb-person-mark {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .ngb-people-bottom {
        justify-content: center;
        margin-top: 40px;
    }

    .ngb-people-bottom p {
        font-size: 11px;
        text-align: left;
    }

    .ngb-people::after {
        font-size: 130px;
        left: -35px;
    }

} */

/* ==========================================
   SMALL MOBILE
========================================== */
/* 
@media (max-width: 380px) {

    .ngb-people-title h2 {
        font-size: 45px;
    }

    .ngb-person-row,
    .ngb-person-offset {
        min-height: 85px;
    }

    .ngb-person-main h3 {
        font-size: 11px;
    }

    .ngb-person-main span {
        font-size: 4.5px;
    }

} */

/* ==========================================
   REDUCED MOTION
========================================== */

/* @media (prefers-reduced-motion: reduce) {

    .ngb-person-row,
    .ngb-person-mark,
    .ngb-person-number {
        transition: none;
    }

} */