/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --red: #ff3b30;
    --red-light: #ff554b;
    --black: #050505;
    --card: #111111;
    --white: #ffffff;
    --gray: #888888;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}


/* =========================
   BACKGROUND GLOW
========================= */

body::before {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    top: -200px;
    left: -200px;

    background: var(--red);

    opacity: 0.07;

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;
}

body::after {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    right: -200px;
    bottom: -200px;

    background: var(--red);

    opacity: 0.06;

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;
}


/* =========================
   NAVBAR
========================= */

.navbar {

    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: min(1300px, 92%);

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 55px;

    background: rgba(20, 20, 20, 0.88);

    backdrop-filter: blur(15px);

    border-radius: 0 0 38px 38px;

    border: 1px solid rgba(255,255,255,0.05);

    z-index: 1000;
}


.logo {

    text-decoration: none;

    font-family: "Orbitron", sans-serif;

    font-size: 35px;

    font-weight: 800;

    color: var(--red);

    text-shadow:
        0 0 10px rgba(255, 50, 40, .5),
        0 0 25px rgba(255, 50, 40, .2);
}

.logo span {
    color: var(--red-light);
}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 50px;
}


.nav-menu a {

    position: relative;

    color: #ddd;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: .3s;
}


.nav-menu a::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    left: 0;

    bottom: -8px;

    background: var(--red);

    transition: .3s;
}


.nav-menu a:hover,
.nav-menu a.active {

    color: var(--red);
}


.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;
}


/* MOBILE BUTTON */

.menu-btn {

    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {

    width: min(1300px, 92%);

    min-height: 100vh;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 60px;

    padding-top: 100px;
}


/* LEFT */

.hero-content {

    padding-top: 30px;

    animation: fadeLeft 1s ease forwards;
}


.welcome {

    font-size: 20px;

    font-weight: 600;

    color: #ddd;

    margin-bottom: 15px;
}


.hero h1 {

    font-family: "Orbitron", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.12;

    margin-bottom: 25px;
}


.hero h1 span {

    color: var(--red);

    text-shadow:
        0 0 15px rgba(255,50,40,.3);
}


.description {

    max-width: 610px;

    color: #999;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 30px;
}


/* =========================
   STATS
========================= */

.stats {

    display: flex;

    gap: 20px;

    margin-bottom: 42px;
}


.stat-card {

    width: 175px;

    height: 110px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        145deg,
        #151515,
        #0b0b0b
    );

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    transition: .3s;
}


.stat-card:hover {

    transform: translateY(-8px);

    border-color: var(--red);

    box-shadow:
        0 0 30px rgba(255,50,40,.15);
}


.stat-card h2 {

    font-family: "Orbitron", sans-serif;

    color: var(--red);

    font-size: 30px;
}


.stat-card p {

    color: #777;

    font-size: 12px;

    margin-top: 5px;
}


/* =========================
   BUTTONS
========================= */

.buttons {

    display: flex;

    gap: 16px;

    margin-bottom: 35px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px 28px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}


.hire-btn {

    color: white;

    background: var(--red);

    border: none;

    box-shadow:
        0 0 25px rgba(255,40,30,.2);
}


.hire-btn:hover {

    transform: translateY(-5px);

    box-shadow:
        0 0 35px rgba(255,40,30,.5);
}


.cv-btn {

    color: white;

    background: transparent;

    border: 1px solid var(--red);
}


.cv-btn:hover {

    color: white;

    background: var(--red);

    transform: translateY(-5px);
}


/* =========================
   SOCIAL
========================= */

.social {

    display: flex;

    gap: 15px;
}


.social a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #aaa;

    text-decoration: none;

    border: 1px solid #333;

    border-radius: 50%;

    font-size: 11px;

    transition: .3s;
}


.social a:hover {

    color: var(--red);

    border-color: var(--red);

    box-shadow:
        0 0 15px rgba(255,40,30,.3);

    transform: translateY(-4px);
}


/* =========================
   VIDEO
========================= */

.hero-video {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    animation: fadeRight 1s ease forwards;
}


.video-glow {

    position: absolute;

    width: 350px;

    height: 550px;

    background: var(--red);

    opacity: .13;

    filter: blur(80px);

    border-radius: 50%;
}


.video-container {

    position: relative;

    width: 390px;

    height: 570px;

    padding: 6px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,60,50,.9),
            rgba(255,255,255,.03),
            rgba(255,30,20,.7)
        );

    box-shadow:
        0 0 40px rgba(255,30,20,.18);
}


.video-container::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 30px;

    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,50,40,.5),
        transparent
    );

    z-index: -1;
}


video {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 25px;

    background: #090909;
}


/* =========================
   VIDEO LABEL
========================= */

.developer-label {

    position: absolute;

    top: 25px;
    right: 20px;

    padding: 10px 16px;

    background: rgba(0,0,0,.7);

    border: 1px solid rgba(255,50,40,.4);

    border-radius: 9px;

    color: var(--red);

    font-family: monospace;

    font-size: 12px;

    backdrop-filter: blur(10px);
}


.available-label {

    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    background: rgba(255,50,40,.75);

    border-radius: 9px;

    font-size: 12px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 20px rgba(255,40,30,.3);
}


.available-label span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 10px white;

    animation: blink 1.5s infinite;
}


/* =========================
   SECTIONS
========================= */

.section {

    width: min(1100px, 90%);

    margin: auto;

    padding: 120px 0;
}


.section-title {

    text-align: center;

    margin-bottom: 55px;
}


.section-title p {

    color: var(--red);

    font-family: "Orbitron", sans-serif;

    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.section-title h2 {

    font-family: "Orbitron", sans-serif;

    font-size: 36px;
}


/* =========================
   ABOUT
========================= */

.about-content {

    max-width: 800px;

    margin: auto;

    text-align: center;

    color: #888;

    line-height: 2;

    font-size: 16px;
}


.about-content p + p {

    margin-top: 20px;
}


/* =========================
   SERVICES
========================= */

.service-container {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.service-card {

    padding: 35px 28px;

    background: #101010;

    border: 1px solid #222;

    border-radius: 18px;

    transition: .3s;
}


.service-card:hover {

    transform: translateY(-10px);

    border-color: var(--red);

    box-shadow:
        0 0 30px rgba(255,40,30,.12);
}


.service-icon {

    color: var(--red);

    font-family: "Orbitron", sans-serif;

    font-size: 30px;

    margin-bottom: 20px;
}


.service-card h3 {

    margin-bottom: 12px;
}


.service-card p {

    color: #777;

    line-height: 1.8;

    font-size: 14px;
}


/* =========================
   PROJECT
========================= */

.project-container {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.project-card {

    overflow: hidden;

    background: #101010;

    border: 1px solid #222;

    border-radius: 18px;

    transition: .3s;
}


.project-card:hover {

    transform: translateY(-8px);

    border-color: var(--red);
}


.project-image {

    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255,40,30,.3),
            #080808 70%
        );

    color: var(--red);

    font-family: "Orbitron", sans-serif;

    font-size: 20px;
}


.project-info {

    padding: 25px;
}


.project-info h3 {

    margin-bottom: 10px;
}


.project-info p {

    color: #777;

    font-size: 13px;

    margin-bottom: 15px;
}


.project-info a {

    color: var(--red);

    text-decoration: none;

    font-size: 13px;
}


/* =========================
   SKILLS
========================= */

.skills {

    max-width: 800px;

    margin: auto;
}


.skill {

    margin-bottom: 30px;
}


.skill-header {

    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;

    color: #ccc;

    font-size: 14px;
}


.skill-bar {

    width: 100%;

    height: 8px;

    background: #1c1c1c;

    border-radius: 20px;

    overflow: hidden;
}


.skill-bar span {

    display: block;

    height: 100%;

    background: linear-gradient(
        90deg,
        #9c0000,
        var(--red)
    );

    border-radius: 20px;

    box-shadow:
        0 0 15px rgba(255,40,30,.5);
}


/* =========================
   CONTACT
========================= */

.contact form {

    max-width: 700px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.contact input,
.contact textarea {

    width: 100%;

    padding: 17px 20px;

    color: white;

    background: #101010;

    border: 1px solid #292929;

    border-radius: 10px;

    outline: none;

    font-family: inherit;

    transition: .3s;
}


.contact textarea {

    min-height: 180px;

    resize: vertical;
}


.contact input:focus,
.contact textarea:focus {

    border-color: var(--red);

    box-shadow:
        0 0 15px rgba(255,40,30,.1);
}


.contact button {

    align-self: flex-start;
}


/* =========================
   FOOTER
========================= */

footer {

    padding: 35px;

    text-align: center;

    color: #555;

    border-top: 1px solid #151515;

    font-size: 13px;
}


/* =========================
   ANIMATION
========================= */

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes blink {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .navbar {

        padding: 0 25px;
    }


    .nav-menu {

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: none;

        flex-direction: column;

        gap: 25px;

        text-align: center;

        background: rgba(15,15,15,.97);

        border-radius: 20px;

        border: 1px solid #222;
    }


    .nav-menu.show {

        display: flex;
    }


    .menu-btn {

        display: block;
    }


    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 140px;
    }


    .hero-content {

        padding-top: 0;
    }


    .description {

        margin-left: auto;
        margin-right: auto;
    }


    .stats {

        justify-content: center;

        flex-wrap: wrap;
    }


    .buttons {

        justify-content: center;
    }


    .social {

        justify-content: center;
    }


    .hero-video {

        margin-top: 20px;
    }


    .service-container,
    .project-container {

        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .navbar {

        top: 0;

        width: 100%;

        border-radius: 0 0 25px 25px;
    }


    .logo {

        font-size: 27px;
    }


    .hero h1 {

        font-size: 38px;
    }


    .description {

        font-size: 14px;
    }


    .stat-card {

        width: 140px;

        height: 100px;
    }


    .stat-card h2 {

        font-size: 24px;
    }


    .stat-card p {

        font-size: 10px;
    }


    .video-container {

        width: min(350px, 90vw);

        height: min(520px, 135vw);
    }


    .service-container,
    .project-container {

        grid-template-columns: 1fr;
    }


    .section {

        padding: 90px 0;
    }


    .section-title h2 {

        font-size: 28px;
    }
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    position: relative;

    min-height: 100vh;

    width: min(1250px, 92%);

    margin: auto;

    display: flex;

    align-items: center;

    padding: 140px 0;

    overflow: hidden;
}


/* Background glow */

.about-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -200px;
    top: 30%;

    background: #ff3025;

    opacity: .05;

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   ABOUT WRAPPER
===================================================== */

.about-wrapper {

    width: 100%;

    display: grid;

    grid-template-columns: .72fr 1.28fr;

    align-items: center;

    gap: 65px;
}


/* =====================================================
   LEFT VISUAL
===================================================== */

.about-visual {

    position: relative;

    display: flex;

    justify-content: center;

    will-change: transform;

    transition: transform .15s linear;
}


.about-frame {

    position: relative;

    width: 350px;

    height: 590px;

    padding: 6px;

    border-radius: 24px;

    border: 1px solid rgba(255, 55, 45, .65);

    background: #080808;

    box-shadow:
        0 0 30px rgba(255, 40, 30, .08);
}


/* video */

.about-video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 18px;

    background: #050505;
}


/* =====================================================
   EXPERIENCE BOX
===================================================== */

.experience-box {

    position: absolute;

    left: -15px;

    top: 75px;

    width: 185px;

    height: 90px;

    padding: 15px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #ff3830,
        #ff2720
    );

    box-shadow:
        0 10px 35px rgba(255, 30, 20, .3);

    z-index: 3;
}


.experience-box strong {

    font-family: "Orbitron", sans-serif;

    font-size: 27px;

    line-height: 1;

    color: white;
}


.experience-box span {

    margin-top: 8px;

    font-family: "Orbitron", sans-serif;

    font-size: 11px;

    color: white;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.about-info {

    will-change: transform;

    transition: transform .15s linear;
}


.about-heading {

    margin-bottom: 20px;
}


.about-heading > span {

    color: #ff3b30;

    font-family: "Orbitron", sans-serif;

    font-size: 13px;

    letter-spacing: 3px;
}


.about-heading h2 {

    margin-top: 8px;

    font-family: "Orbitron", sans-serif;

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.1;

    color: white;
}


.about-heading h2 b {

    color: #ff3b30;

    font-weight: 700;

    text-shadow:
        0 0 20px rgba(255, 40, 30, .2);
}


/* =====================================================
   ABOUT TEXT
===================================================== */

.about-text {

    max-width: 760px;

    color: #8b8b8b;

    font-size: 14px;

    line-height: 2;

    margin-bottom: 28px;
}


/* =====================================================
   INFO CARDS
===================================================== */

.about-card {

    width: 100%;

    min-height: 105px;

    margin-bottom: 15px;

    padding: 22px 25px;

    display: flex;

    align-items: center;

    gap: 25px;

    background: #111111;

    border: 1px solid #202020;

    border-radius: 14px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.about-card:hover {

    transform: translateX(8px);

    border-color: rgba(255, 50, 40, .6);

    box-shadow:
        0 0 25px rgba(255, 40, 30, .08);
}


/* ICON */

.about-card-icon {

    min-width: 45px;

    color: #ff3b30;

    font-size: 27px;

    text-align: center;

    filter:
        drop-shadow(0 0 8px rgba(255, 40, 30, .3));
}


/* TITLE */

.about-card h3 {

    font-family: "Orbitron", sans-serif;

    font-size: 17px;

    margin-bottom: 7px;

    color: #eee;
}


/* TEXT */

.about-card p {

    color: #777;

    font-size: 13px;
}


/* =====================================================
   DOWNLOAD CV
===================================================== */

.about-cv {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 20px;

    padding: 13px 28px;

    color: white;

    text-decoration: none;

    font-family: "Orbitron", sans-serif;

    font-size: 12px;

    border: 1px solid #ff3b30;

    border-radius: 30px;

    transition: .3s;
}


.about-cv:hover {

    color: white;

    background: #ff3b30;

    box-shadow:
        0 0 25px rgba(255, 40, 30, .3);

    transform: translateY(-4px);
}


/* =====================================================
   PARALLAX INITIAL STATE
===================================================== */

.about-visual {

    transform:
        translate3d(-30px, 40px, 0);
}


.about-info {

    transform:
        translate3d(30px, 20px, 0);
}


/* =====================================================
   ABOUT REVEAL
===================================================== */

.about-visual,
.about-info {

    opacity: 0;

    transition:
        opacity .8s ease,
        transform .15s linear;
}


.about-section.show .about-visual {

    opacity: 1;
}


.about-section.show .about-info {

    opacity: 1;
}


/* =====================================================
   RESPONSIVE ABOUT
===================================================== */

@media (max-width: 1000px) {

    .about-wrapper {

        grid-template-columns: 1fr;

        gap: 70px;

        text-align: center;
    }


    .about-visual {

        justify-content: center;
    }


    .about-text {

        margin-left: auto;
        margin-right: auto;
    }


    .about-card {

        text-align: left;
    }


    .about-cv {

        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 600px) {

    .about-section {

        padding: 100px 0;
    }


    .about-frame {

        width: min(330px, 88vw);

        height: 520px;
    }


    .experience-box {

        left: -5px;

        top: 60px;

        width: 160px;

        height: 80px;
    }


    .experience-box strong {

        font-size: 23px;
    }


    .experience-box span {

        font-size: 9px;
    }


    .about-heading h2 {

        font-size: 38px;
    }


    .about-text {

        font-size: 13px;

        line-height: 1.9;
    }


    .about-card {

        min-height: 90px;

        padding: 18px;

        gap: 15px;
    }


    .about-card h3 {

        font-size: 14px;
    }


    .about-card p {

        font-size: 11px;
    }

}

/* =====================================================
   TKJ SERVICE SECTION
===================================================== */

.service-section {

    position: relative;

    width: min(1100px, 90%);

    min-height: 100vh;

    margin: auto;

    padding: 130px 0;

}


/* =====================================================
   SERVICE TITLE
===================================================== */

.service-title {

    text-align: center;

    margin-bottom: 65px;

}


.service-title > span {

    display: block;

    color: #ff3b30;

    font-family: "Orbitron", sans-serif;

    font-size: 13px;

    letter-spacing: 4px;

    margin-bottom: 12px;

}


.service-title h2 {

    font-family: "Orbitron", sans-serif;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.2;

    color: white;

}


.service-title h2 b {

    color: #ff3b30;

    text-shadow:
        0 0 20px rgba(255, 45, 35, .3);

}


.service-title p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   SERVICE GRID
===================================================== */

.service-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {

    position: relative;

    min-height: 330px;

    padding: 42px 35px 35px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #131313,
            #0c0c0c
        );

    border: 1px solid #292929;

    border-radius: 3px;

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


/* garis merah di atas */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 0;

    height: 2px;

    background: #ff3b30;

    transform: translateX(-50%);

    transition: .4s;

}


.service-card:hover::before {

    width: 70%;

}


.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(255, 55, 45, .7);

    box-shadow:
        0 15px 45px rgba(255, 30, 20, .12),
        inset 0 0 30px rgba(255, 30, 20, .025);

}


/* =====================================================
   ICON
===================================================== */

.service-icon {

    width: 90px;

    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff3830,
            #ff2020
        );

    box-shadow:
        0 0 25px rgba(255, 40, 30, .25);

    transition: .4s;

}


.service-icon span {

    color: white;

    font-family: "Orbitron", sans-serif;

    font-size: 35px;

    font-weight: 700;

}


.service-card:hover .service-icon {

    transform:
        scale(1.08)
        rotate(5deg);

    box-shadow:
        0 0 35px rgba(255, 40, 30, .45);

}


/* =====================================================
   CARD TITLE
===================================================== */

.service-card h3 {

    font-family: "Orbitron", sans-serif;

    font-size: 21px;

    color: #eee;

    margin-bottom: 14px;

}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.service-card > p {

    max-width: 470px;

    margin: auto;

    color: #777;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   TAGS
===================================================== */

.service-tags {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;

}


.service-tags span {

    padding: 8px 14px;

    border-radius: 20px;

    color: #ff3b30;

    background:
        rgba(255, 35, 30, .09);

    border:
        1px solid rgba(255, 40, 30, .25);

    font-size: 11px;

    transition: .3s;

}


.service-tags span:hover {

    color: white;

    background: #ff3b30;

    border-color: #ff3b30;

    box-shadow:
        0 0 15px rgba(255, 40, 30, .25);

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.tkj-card {

    opacity: 0;

    transform:
        translateY(60px)
        scale(.96);

}


.tkj-card.show {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

}


.tkj-card:nth-child(1) {
    transition-delay: .05s;
}

.tkj-card:nth-child(2) {
    transition-delay: .12s;
}

.tkj-card:nth-child(3) {
    transition-delay: .19s;
}

.tkj-card:nth-child(4) {
    transition-delay: .26s;
}

.tkj-card:nth-child(5) {
    transition-delay: .33s;
}

.tkj-card:nth-child(6) {
    transition-delay: .40s;
}


/* =====================================================
   PARALLAX
===================================================== */

.service-grid {

    will-change: transform;

}


.service-title {

    will-change: transform;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 800px) {

    .service-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .service-card {

        min-height: 300px;

    }

}


@media (max-width: 500px) {

    .service-section {

        width: 90%;

        padding: 100px 0;

    }


    .service-title {

        margin-bottom: 45px;

    }


    .service-title h2 {

        font-size: 35px;

    }


    .service-title p {

        font-size: 12px;

    }


    .service-card {

        padding:
            35px 22px 28px;

    }


    .service-icon {

        width: 75px;

        height: 75px;

    }


    .service-icon span {

        font-size: 28px;

    }


    .service-card h3 {

        font-size: 17px;

    }


    .service-card > p {

        font-size: 12px;

    }

}
