﻿@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Lexend", sans-serif !important;
}

.mobile_hide {
    display: none;
}

a {
    text-decoration: none;
}

ul {
    padding-left: 0px;
    list-style: none;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
/*========================= Navigation =================================
*/
.menu-toggle {
    display: none;
}

.my_custom_navigation .logo-f {
    width: 40px;
}

.my_custom_navigation.sticky {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgb(31, 31, 31);
    color: white;
    transition: background 200ms, box-shadow 200ms;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 24px;
    z-index: 1000;
}

.my_custom_navigation {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    color: white;
    z-index: 99999999999;
    transition: background 200ms, box-shadow 200ms;
}

    .my_custom_navigation .logo-f a {
        color: white;
        font-size: 16px;
        font-weight: 700;
        font-family: "Lexend", sans-serif;
    }

    .my_custom_navigation .nav_ .d-flex {
        gap: 30px;
    }

        .my_custom_navigation .nav_ .d-flex li a {
            color: #ffffffb8;
            font-size: .875rem;
            font-weight: 300;
            transition: 0.5s;
        }

            .my_custom_navigation .nav_ .d-flex li a:hover {
                color: white;
            }

    .my_custom_navigation .log_sign .d-flex {
        gap: 12px;
    }

        .my_custom_navigation .log_sign .d-flex li {
            font-size: .875rem;
            cursor: pointer;
        }

            .my_custom_navigation .log_sign .d-flex li a {
                color: white;
            }

            .my_custom_navigation .log_sign .d-flex li .fa {
                margin-left: 7px;
                transform: rotate(48deg);
                font-size: 10px;
                color: #ffffffb3;
            }

    .my_custom_navigation nav {
        padding: 10px 40px;
    }

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
}

/* MOBILE */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .my_custom_navigation .nav_,
    .my_custom_navigation .log_sign {
        position: absolute;
        left: 0;
        width: 100%;
        background: #1f1f1f;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    /* nav menu */
    .my_custom_navigation .nav_ {
        top: 63px;
        padding: 0 20px;
    }

    /* login/signup */
    .my_custom_navigation .log_sign {
        top: 260px;
        padding: 0 20px 20px;
        display: none;
    }

    /* active state */
    .my_custom_navigation.active .nav_ {
        max-height: 400px;
        border-top: 1px solid #5e5e5e;
    }

    .my_custom_navigation.active .log_sign {
        max-height: 200px;
    }

    .my_custom_navigation .nav_ .d-flex,
    .my_custom_navigation .log_sign .d-flex {
        flex-direction: column;
        gap: 0px;
        padding: 15px 0 20px 0;
        align-items: flex-start;
    }

    .my_custom_navigation .nav_inner {
        align-items: center;
    }
}


/*========================= Navigation =================================
*/



/*========================= Hero Section =================================
*/
.hero_back {
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 60%)), url(../../images/hero_back.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    animation: bgZoom 10s ease-in-out infinite alternate;
}

/* Background zoom animation */
@keyframes bgZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

.hero_back .hero_content {
    padding: 16% 15px;
}

/* Heading Animation */
.hero_back .heading h5 {
    font-size: 4.2rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

/* Text Animation */
.hero_back .hero_content_text {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_back .partner {
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero_back .custom-btn {
    width: 55%;
}

.hero_back .text- {
    width: 40%;
    font-size: 1.1rem;
    color: #ffffffd4;
    line-height: 30px;
    font-weight: 300;
}

/* Button Styling */
.hero_back button {
    font-size: 1.1rem;
    padding: 18px 30px;
    background: #fec72e;
    border: none;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

    /* Button Hover */
    .hero_back button:hover {
        background: #e7b425;
        transform: translateY(-3px);
    }

    /* Shine Effect */
    .hero_back button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
        transition: 0.6s;
    }

    .hero_back button:hover::before {
        left: 100%;
    }

/* Footer */
.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .2em;
    color: #ffffffd4;
}

    /* Scroll icon animation */
    .hero-footer i {
        margin-left: 5px;
        animation: bounce 1.5s infinite;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex {
    display: flex;
}

.hero_back {
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 37%)), url(../../images/hero_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

    .hero_back .hero_content {
        padding: 16% 15px;
    }

        .hero_back .hero_content .heading h5 {
            font-size: 4.20rem;
            font-weight: 600;
            color: white;
        }

        .hero_back .hero_content .hero_content_text .partner {
            align-items: flex-end;
            justify-content: space-between;
            display: flex;
        }

            .hero_back .hero_content .hero_content_text .partner .custom-btn {
                width: 58%;
            }

            .hero_back .hero_content .hero_content_text .partner .text- {
                width: 40%;
                font-size: 1.125rem;
                color: #ffffffd4;
                line-height: 30px;
                font-weight: 300;
            }

            .hero_back .hero_content .hero_content_text .partner button {
                font-size: 1.125rem;
                padding: 18px 30px;
                background: #FEC72E;
                border: none;
                outline: none;
                font-weight: 700;
                color: lab(16.132% -.318021 -14.6672);
                transition: 0.5s;
                cursor: pointer;
            }

                .hero_back .hero_content .hero_content_text .partner button:hover {
                    background: #e7b425;
                }

        .hero_back .hero_content .hero_content_text {
            margin: 25px 0;
        }

            .hero_back .hero_content .hero_content_text .hero-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: white;
                margin-top: 35px;
                text-transform: uppercase;
                font-weight: 300;
                font-size: .75rem;
                letter-spacing: .2em;
                color: #ffffffd4;
            }


/*========================= Hero Section =================================
*/


/*========================= About Section =================================
*/

.about-section {
    padding: 100px 0 0 0;
}

    .about-section .about-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    /* LEFT SIDE */
    .about-section .left h1 {
        font-size: 7vw;
        font-weight: 600;
        line-height: 88px;
        margin-bottom: 50px;
    }

    .about-section .circle-wrap {
        position: relative;
        width: 650px;
        height: 100%;
        margin-left: 65px;
    }

    .about-section .circle {
        width: 100%;
        height: 100%;
        border: 10px solid #222;
        border-radius: 50%;
        position: relative;
        animation: rotateCircle 10s linear infinite;
    }

    .about-section .inner-logo {
        position: absolute;
        width: 80px;
        height: 80px;
        background: #fff;
        border: 3px solid #222;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 30px;
        border-radius: 10px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* POINTS */
    .about-section .point {
        position: absolute;
        width: 220px;
        background: #222;
        color: #fff;
        padding: 15px;
        border-radius: 30px;
        font-size: 13px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s forwards;
    }

        .about-section .point .icon {
            background: #f4b400;
            padding: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-bottom: 8px;
        }


    /* RIGHT SIDE */
    .about-section .right {
        max-width: 500px;
    }

        .about-section .right p {
            margin-bottom: 20px;
            color: lab(5.06333% .00000745058 -.00000298023 / .65);
            line-height: 1.7;
            font-size: 1.125rem;
            font-weight: 300;
        }

.Brands_btn {
    display: block;
    text-align: center;
    margin: 20px 0;
}

    .Brands_btn button {
        font-size: 1rem;
        padding: 18px 30px;
        background: #FEC72E;
        border: none;
        outline: none;
        font-weight: 600;
        color: #111;
        transition: 0.5s;
        cursor: pointer;
        color: lab(16.132% -.318021 -14.6672);
    }

        .Brands_btn button:hover {
            background: #e7b425;
        }

    .Brands_btn .part_btn {
        margin-bottom: 15px;
    }

    .Brands_btn p {
        margin-bottom: 15px;
        color: #00000073;
        letter-spacing: .18em;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 300;
    }


/*========================= About Section =================================
*/



/*========================= Our Focus =================================
*/

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

/* TITLE */
.focus-section .title {
    text-align: center;
    font-size: 3.75rem;
    margin-bottom: 70px;
    font-weight: 600;
}

/* CARDS */
.focus-cards {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.focus-section {
    margin-bottom: -85px;
}

    .focus-section .card {
        width: 25%;
        padding: 25px;
        background: #eee;
        border-radius: 2px;
        transition: 0.4s;
        position: relative;
        overflow: hidden;
    }

.card:nth-child(1) {
    background: #eae5e1;
}

.card:nth-child(2) {
    background: #dfe4e4;
}

.card:nth-child(3) {
    background: #e6e7ea;
}

.card:nth-child(4) {
    background: #efe7e7;
}

.focus-cards .card h3 {
    font-size: 54px;
    margin-bottom: 10px;
    color: #232424;
}

.focus-cards .card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 300
}

.focus-cards .card p {
    font-size: 15px;
    font-weight: 300;
    height: 74px;
    color: #555;
}

.focus-cards .card span {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 15px;
    display: block;
    color: #888;
}

/* HOVER EFFECT */
.focus-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* WORKS SECTION */
.works-section {
    background: #1f1f1f;
    color: #fff;
    padding: 120px 40px;
}

    .works-section .heading-area {
        padding: 20px 0 0 0;
    }

    .works-section .flex-focus-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .works-section .left {
        max-width: 550px;
    }

        .works-section .left h2 {
            font-size: 50px;
            margin: 10px 0;
        }

    .works-section .desc {
        color: #aaa;
        margin-bottom: 30px;
        font-size: 1.125rem;
    }

    .works-section .block {
        margin-bottom: 30px;
    }

        .works-section .block h4 {
            margin-bottom: 5px;
            font-size: 1.875rem;
            font-weight: 300;
        }

        .works-section .block p {
            font-size: 1.25rem;
            font-weight: 300;
            margin-top: .25rem;
            color: #fffc;
        }

/* TIMELINE */
.timeline {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

    .timeline img {
        width: 100%;
    }

    .timeline::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 10px;
        background: #f4b400;
        transform: translateY(-50%);
        z-index: 0;
    }

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.circle {
    width: 90px;
    height: 90px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
    transition: 0.4s;
}

/* CENTER BIG */
.center .circle {
    width: 110px;
    height: 110px;
    background: #222;
}

/* HOVER */
.circle:hover {
    background: #f4b400;
    color: #000;
    transform: scale(1.1);
}

/* TEXT */
.step span {
    background: #111;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
}

/* ANIMATION */
.card, .block, .circle {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

    .card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .card:nth-child(4) {
        animation-delay: 0.8s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .works-section {
        flex-direction: column;
        gap: 40px;
    }

    .timeline {
        flex-direction: column;
    }

        .timeline::before {
            width: 10px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }
}

.works-section small {
    font-size: .75rem;
    letter-spacing: .22em;
    color: #ffffff80;
}

.works-section h2 {
    font-size: 6vw;
    font-weight: 700;
}


/*========================= Our Focus =================================
*/



/*========================= Back To Top =================================
*/

#backToTop {
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 50px;
    font-size: 22px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #FEC72E, #feb47b);
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

    /* Hover animation */
    #backToTop:hover {
        transform: translateY(0) scale(1.1);
    }

    /* Show button */
    #backToTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/*========================= Back To Top =================================
*/



/*========================= What Makes Fidora Different =================================
*/

.difference-section {
    padding: 80px 0%;
    background: #fff;
}

    /* TOP */
    .difference-section .top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

        .difference-section .top small {
            letter-spacing: 3px;
            color: #aaa;
            font-weight: 300;
            margin-bottom: 20px;
            display: block;
            text-transform: uppercase;
            font-size: 11px;
        }

        .difference-section .top h2 {
            font-size: 6vw;
            font-weight: 600;
            line-height: .95;
        }

        .difference-section .top .right {
            max-width: 400px;
            margin-top: 20px;
        }

            .difference-section .top .right p {
                font-size: 1.125rem;
                color: #11111180;
                font-weight: 300;
            }
    /* GRID */
    .difference-section .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* BOX */
    .difference-section .box {
        background: #fff;
        padding: 30px;
        border: 1px solid #ddd;
        position: relative;
        transition: 0.4s;
        opacity: 1;
        /*transform: translateY(40px);*/
        cursor: pointer;
    }

        /* NUMBER */
        .difference-section .box h3 {
            font-size: 54px;
            margin-bottom: 10px;
            color: #000000d9;
            font-weight: 600;
        }

        /* LINE */
        .difference-section .box hr {
            border: none;
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        /* TITLE */
        .difference-section .box h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 300;
        }

        /* TEXT */
        .difference-section .box p {
            color: #666666b8;
            font-size: 15px;
            line-height: 1.625;
            font-weight: 300;
        }

        /* FOOT */
        .difference-section .box span {
            display: block;
            margin-top: 25px;
            font-size: 11px;
            letter-spacing: .22em;
            color: #999;
            font-weight: 300;
        }

        /* HOVER */
        .difference-section .box:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        /* ANIMATION ACTIVE */
        .difference-section .box.show {
            opacity: 1;
            transform: translateY(0);
        }

/* RESPONSIVE */
@media(max-width:768px) {
    .difference-section .grid {
        grid-template-columns: 1fr;
    }

    .difference-section .top h2 {
        font-size: 36px;
    }
}


/*========================= What Makes Fidora Different =================================
*/




/*========================= FAQ =================================
*/
.faq-section {
    padding: 80px 0%;
    background: #fff;
}

/* TOP */
.faq-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: flex-end;
}

    .faq-top small {
        letter-spacing: 3px;
        color: #00000080;
        font-size: .75rem;
        font-weight: 300;
        margin-bottom: 16px;
        display: block;
    }

    .faq-top h2 {
        font-size: 6vw;
        line-height: 73px;
        font-weight: 600;
    }

    .faq-top .right {
        max-width: 400px;
        color: #777;
    }

        .faq-top .right p {
            font-size: 1.125rem;
            color: #11111180;
            font-weight: 300;
        }
/* ITEM */
.faq-item {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

/* HEAD */
.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

    .faq-head h4 {
        flex: 1;
        margin-left: 20px;
        font-size: 1.25rem;
        font-weight: 500;
        color: #111;
    }

.faq-section .num {
    color: #00000085;
    font-size: 12px;
    font-weight: 200;
    margin-right: 70px;
}

/* ICON */
.faq-section .icon {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* BODY */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-left: 102px;
}

    .faq-body p {
        font-size: 1rem;
        margin-top: 10px;
        color: #000000a6;
        font-weight: 300;
    }

/* ACTIVE */
.faq-item.active .faq-body {
    max-height: 150px;
}

.faq-item.active .icon {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* HOVER */
.faq-head:hover .icon {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .faq-top h2 {
        font-size: 36px;
    }

    .faq-body {
        padding-left: 0;
    }
}




/*========================= FAQ =================================
*/



/*========================= Promote Proven Products =================================
*/

.cta-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../../images/promote.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* CANVAS */
#bgCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* CONTENT */
.cta-section .content {
    position: relative;
    max-width: 950px;
    z-index: 2;
    animation: fadeUp 1.5s ease forwards;
}

    /* HEADING */
    .cta-section .content h1 {
        font-size: 3rem;
        font-weight: 500;
        margin-bottom: 20px;
    }

    /* TEXT */
    .cta-section .content p {
        color: #fff;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
        font-weight: 300;
    }

/* BUTTON */
.cta-section button {
    background: #f4b400;
    color: #000000c7;
    border: none;
    padding: 20px 55px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

    .cta-section button:hover {
        background: #f4b400db;
    }

/* TAGS */
.cta-section .tags {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #a1a1a1;
    font-weight: 300;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .cta-section .content h1 {
        font-size: 32px;
    }

    .cta-section .content p {
        font-size: 14px;
    }
}


/*========================= Promote Proven Products =================================
*/



/*========================= Footer =================================
*/
.hero_footer {
    background-color: #1f1f1f;
}

    .hero_footer .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        border-top: 1px solid #5e5e5e;
        max-width: 1280px;
        padding-top: 50px;
        padding-bottom: 50px;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero_footer .logo-text {
        font-size: 2.25rem;
        line-height: 25px;
        color: #fff;
        max-width: 600px;
        margin: 0 auto 40px;
        text-align: center;
        font-weight: 700;
    }

    .hero_footer .tagline {
        font-size: 1rem;
        line-height: 25px;
        color: #c9c7c7;
        max-width: 600px;
        margin: 0 auto 35px;
        font-weight: 300;
        text-align: center;
    }

    .hero_footer .container {
        border-top: 1px solid #464646;
    }

    .hero_footer .social-links a {
        color: #adadad;
        text-decoration: none;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin: 0 15px;
        transition: color 0.3s ease;
        font-size: 11px;
    }

        .hero_footer .social-links a:hover {
            color: #fff;
        }

    /* Tabs Animation Section */
    .hero_footer .tabs-section {
        padding-bottom: 50px;
    }

    .hero_footer .tab-container {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .hero_footer .tab-buttons {
        display: flex;
        justify-content: center;
        position: relative;
        background: #1e1e1e;
        border-radius: 30px;
        padding: 5px;
        margin-bottom: 30px;
    }

    .hero_footer .tab-btn {
        flex: 1;
        padding: 12px 20px;
        border: none;
        background: none;
        color: #888;
        cursor: pointer;
        z-index: 2;
        transition: color 0.3s;
        font-weight: 600;
    }

        .hero_footer .tab-btn.active {
            color: #000;
        }

    .hero_footer .tab-slider {
        position: absolute;
        width: calc(50% - 5px);
        height: calc(100% - 10px);
        background: #fff;
        border-radius: 25px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        left: 5px;
    }

    .hero_footer .tab-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }

        .hero_footer .tab-content.active {
            display: block;
        }

    .hero_footer .social-links {
        text-align: center;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.hero_footer .divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #1f1f1f;
}

.copyright {
    color: #ffffff52;
    letter-spacing: .22em;
    font-weight: 300;
    font-size: 11px;
}

.footer-nav a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 20px;
    opacity: 1;
    font-weight: 300;
    transition: 0.5s;
}

    .footer-nav a:hover {
        color: white;
    }

    .footer-nav a:hover {
        opacity: 1;
    }

/* Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-container .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1280px;
    padding: 25px 0;
    margin: 0 auto;
    border-top: 1px solid #5e5e5e;
}

/*========================= Footer =================================
*/


/*========================= About Us Page =================================
*/

.main-title {
    font-size: 8rem; /* Responsive font size */
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -2px;
    color: white;
}

.highlight {
    color: #FFC107; /* Yellowish Gold from screenshot */
}

.about-para {
    padding: 25px 0;
}

    .about-para p {
        font-size: 1.125rem;
        margin-bottom: 20px;
        color: #ffffffbf;
        line-height: 30px;
        font-weight: 300;
    }

.divider_div {
    border-top: 1px solid #5e5e5e;
    padding-bottom: 100px;
}

.focus-section {
    padding: 100px 0%;
    max-width: 1400px;
    margin: 0 auto;
}

.focus-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Left Heading Styling */
.focus-left h1 {
    font-size: 6vw;
    font-weight: 700;
    line-height: 1;
    color: #121212;
    letter-spacing: -2px;
}

/* Right Side List Styling */
.focus-right {
    flex: 1;
    max-width: 600px;
}

.focus-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: relative;
    cursor: pointer;
    padding-bottom: 0;
    transition: all 0.3s ease;
}

.about-what-we .num {
    font-size: 0.8rem;
    font-family: monospace;
    color: #a0a0a0c4;
    margin-right: 30px;
    letter-spacing: 2px;
}

.focus-item p {
    font-size: 1.25rem;
    color: #000000bf;
    font-weight: 300;
}

/* Animated Line Logic */
.about-what-we .line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px; /* Short line as per screenshot */
    height: 1px;
    background-color: #FFC107; /* Yellow Line */
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.focus-item:hover .line {
    width: 100%; /* Line grows on hover */
}

.focus-item:hover p {
    color: #000;
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .focus-container {
        flex-direction: column;
    }

    .focus-left h1 {
        font-size: 3.5rem;
    }
}

.about-what-we {
    background: white;
}

/*========================= About Us Page =================================
*/

/*========================= How IT Work =================================
*/

.trun_trusted small {
    letter-spacing: 3px;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 11px
}

.trun_trusted h1 {
    font-size: 3rem;
    letter-spacing: -.025em;
    font-weight: 600;
    margin-bottom: 20px;
}

.trun_trusted .focus-left p {
    font-size: 1.125rem;
    color: #000000a6;
    font-weight: 300;
}


/*========================= How IT Work =================================
*/


/*========================= Promoters =================================
*/


.process-section {
    padding: 80px 0%;
    background: #fff;
}

    .process-section .container-fluid {
        display: flex;
        align-items: center;
        gap: 13px;
        justify-content: space-around;
    }


    /* --- Cards Styling --- */
    .process-section .steps-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 700px;
    }

    .process-section .step-card {
        padding: 30px;
        border: 1px solid #eee;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .process-section .step-card h2 {
            font-size: 2.3rem;
            margin-bottom: 15px;
            color: #000000d9;
        }

        .process-section .step-card h3 {
            font-size: 1.125rem;
            margin-bottom: 10px;
            line-height: 1.4;
            font-weight: 300;
            margin-top: 10px;
        }

        .process-section .step-card p {
            font-size: .875rem;
            color: #666;
            line-height: 1.6;
            font-weight: 300;
        }

        .process-section .step-card:hover {
            background: #fafafa;
            transform: translateY(-5px);
            border-color: #FFC107;
        }

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .process-section {
        flex-direction: column;
    }

        .process-section .steps-grid {
            grid-template-columns: 1fr;
        }
}

.value-section {
    background-color: #1f1f1f;
    padding: 80px 0%;
}

    /* Top Layout */
    .value-section .top-row {
        display: flex;
        justify-content: space-between;
        gap: 60px;
        margin-bottom: 80px;
    }

    .value-section .heading-area {
        flex: 1.5;
    }

    .value-section .label {
        font-size: 0.75rem;
        letter-spacing: 3px;
        color: #888;
        display: block;
        margin-bottom: 20px;
    }

    .value-section h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -2px;
        color: white;
        font-size: 6vw;
    }

    .value-section .description-area {
        flex: 1;
        padding-top: 50px;
    }

        .value-section .description-area p {
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1.125rem;
            font-weight: 300;
        }

    .value-section .meta-links {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #333;
        padding-top: 15px;
        font-size: 0.75rem;
        color: #666;
        letter-spacing: 2px;
        font-size: 11px;
    }

    /* Bottom Box Animation */
    .value-section .promoter-box {
        background: #1a1a1a;
        border: 1px solid #333;
        padding: 40px;
        position: relative;
        border-radius: 4px;
        transition: all 0.4s ease;
        animation: fadeInUp 1s ease-out;
    }

        .value-section .promoter-box:hover {
            border-color: #FFC107;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

    .value-section .box-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #333;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .value-section .model-label {
        font-size: 0.7rem;
        color: #888;
        letter-spacing: 2px;
    }

    .value-section .dot {
        width: 8px;
        height: 8px;
        background: #FFC107;
        border-radius: 50%;
        box-shadow: 0 0 10px #FFC107;
    }

    .value-section .formula {
        font-size: 1.25rem;
        color: #e0e0e0;
        font-weight: 300;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .value-section .top-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .my_custom_navigation .nav_  ul li{
        width:100%;
    }

    .value-section .description-area {
        padding-top: 0;
    }
}

.hero-promoter {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: white;
}

    .hero-promoter .container-fluid {
        margin: 0 40px;
        border: 1px solid #ddd;
        padding: 30px;
    }

    .hero-promoter .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    /* Heading Styling */
    .hero-promoter .reveal-h1 {
        font-size: 3rem;
        font-weight: 600;
        line-height: 1.1;
        color: #000;
        letter-spacing: -2px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s forwards ease-out;
    }

    .hero-promoter .fade-in-text {
        font-size: 1.125rem;
        color: #111111a6;
        margin-top: 25px;
        max-width: 727px;
        opacity: 0;
        font-weight: 300;
        animation: fadeIn 1s 0.4s forwards ease-in;
    }

    /* Button Styling & Animation */
    .hero-promoter .btn-yellow {
        display: inline-block;
        background-color: #FFC107; /* Fidora Yellow */
        color: #000;
        padding: 20px 40px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

        .hero-promoter .btn-yellow:hover {
            background-color: #f0b400;
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }

    /* Bottom Divider & Meta */
    .hero-promoter .hero-footer {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .hero-promoter .meta-item {
        font-size: 11px;
        color: #bbb;
        letter-spacing: 2.5px;
        font-weight: 300;
    }

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-promoter .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-promoter .btn-yellow {
        width: 100%;
        text-align: center;
    }
}
/*========================= Promoters =================================
*/



/*========================= Brands Page =================================
*/

.promoter_act {
    background: white;
}

    .promoter_act .container-fluid {
        display: flex;
        flex-direction: row;
    }

    /* Left Side */
    .promoter_act .left-content {
        width: 70%;
        padding: 80px 0px;
    }

        .promoter_act .left-content h6 {
            font-size: 16px;
            font-weight: 300;
            color: #111111a6;
            margin-bottom: 40px;
        }

    .promoter_act .step {
        padding: 30px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        border-bottom: 1px solid #ddd;
        text-align: left;
        border-left: 1px solid #ddd;
    }

    .promoter_act .step-num {
        position: absolute;
        right: 0;
        font-size: 6rem;
        font-weight: bold;
        color: #eeeeee8c;
        z-index: -1;
        background: border-box;
    }

    .promoter_act .step h3 {
        letter-spacing: 3px;
        color: #aaa;
        font-weight: 300;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        font-size: 11px;
    }

    .promoter_act .tags span {
        background: #f5f5f5;
        color: #aaa;
        font-weight: 300;
        margin-bottom: 0px;
        display: block;
        text-transform: uppercase;
        font-size: 11px;
        border-radius: 0px;
    }

    .promoter_act .step h2 {
        font-size: 1.875rem;
        margin-bottom: 20px;
        max-width: 100%;
        font-weight: 600;
        line-height: 30px;
    }

    .promoter_act .step p {
        color: #111111b3;
        line-height: 1.6;
        max-width: 100%;
        font-weight: 300;
    }

    .promoter_act .tags .lines {
        background: #aaaaaaab;
        height: 1px;
        padding: 0;
        width: 36px;
        margin-bottom: 0px;
    }

    .promoter_act .tags {
        margin-top: 30px;
        display: flex;
        gap: 20px;
        font-size: 0.7rem;
        font-weight: bold;
        color: #bbb;
        align-items: center;
    }

    /* Right Side Sticky */
    .promoter_act .right-sticky {
        width: 50%;
        height: 100vh;
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: end;
        background: white;
        padding: 0px;
        text-align: end;
    }

    .promoter_act .sticky-box {
        max-width: 500px;
        text-align: right;
    }

    .promoter_act .brand-tag {
        letter-spacing: 3px;
        color: #aaa;
        font-weight: 300;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        font-size: 11px;
    }

    .promoter_act .sticky-box h1 {
        font-size: 3.75rem;
        line-height: 1.1;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .promoter_act .fade-text {
        font-size: 1.1rem;
        transition: opacity 0.5s ease-in-out;
    }

    .promoter_act .progress-bar {
        width: 100px;
        height: 4px;
        background: #eee;
        margin-top: 40px;
        float: inline-end;
    }

    .promoter_act .progress-fill {
        width: 25%;
        height: 100%;
        background: #333;
        transition: width 0.5s ease;
    }

/* Responsive */
@media (max-width: 900px) {
    .promoter_act .container {
        flex-direction: column-reverse;
    }

    .promoter_act .left-content, .right-sticky {
        width: 100%;
    }

    .promoter_act .right-sticky {
        height: 40vh;
        position: relative;
    }

    .promoter_act .step {
        height: auto;
        padding: 50px 0;
    }
}

.brand-process {
    padding: 100px 0%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #1f1f1f;
}

    .brand-process .process-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Columns */
    .brand-process .column {
        display: flex;
        flex-direction: column;
    }

    .brand-process .center {
        text-align: center;
        padding: 0 20px;
    }

    /* Step Styles */
    .brand-process .step-num {
        font-size: 0.65rem;
        color: #666;
        letter-spacing: 2px;
        display: block;
        background-color: transparent;
        margin-bottom: 10px;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .brand-process .step h3 {
        font-size: 1.25rem;
        font-weight: 300;
        color: white;
        margin-bottom: 15px;
    }

    .brand-process .step p {
        font-size: 1rem;
        color: #a0a0a0;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Step Footer with Lines */
    .brand-process .step-footer {
        font-size: 0.65rem;
        color: #444;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .brand-process .line {
        height: 1px;
        background: #333;
        padding: 0;
        width: 22px;
    }

    /* Center Styling */
    .brand-process .center-label {
        font-size: 0.75rem;
        color: #888;
        letter-spacing: 3px;
        display: block;
        margin-bottom: 25px;
    }

    .brand-process .center h2 {
        font-size: 1.875rem;
        font-weight: 700;
        line-height: 1.2;
        color: white;
        margin-bottom: 25px;
    }

    .brand-process .center-desc {
        font-size: 1rem;
        color: #bfbebe;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .brand-process .center-accent {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .brand-process .accent-line {
        width: 50px;
        height: 1px;
        background: #333;
    }

    .brand-process .yellow-dot {
        width: 6px;
        height: 6px;
        background: #FFC107;
        border-radius: 50%;
        box-shadow: 0 0 10px #FFC107;
        animation: pulse 2s infinite;
    }

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.brand-process .border-bottom {
    border-bottom: 1px solid #333;
    padding-bottom: 32px;
}

.brand-process .step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
    text-align: left;
    margin-bottom: 20px;
}

.brand-process .left .step:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-process .right .step:nth-child(1) {
    animation-delay: 0.4s;
}

.brand-process .right .step:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-process .process-wrapper {
        grid-template-columns: 1fr;
    }

    .brand-process .center {
        order: -1;
        margin-bottom: 50px;
    }

    .brand-process .column {
        gap: 40px;
    }
}

/*========================= Brands Page =================================
*/

/*========================= Privacy & Terms Page =================================
*/

.privacy_policy {
    text-align: center;
    margin-top: 16px;
}
    .privacy_policy a {
        color: #adadad;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 300;
    }
    .privacy_policy span {
        color: #adadad;
        font-size: 14px;
        letter-spacing: 2px;
    }

/*========================= Privacy & Terms Page =================================
*/


/*========================= Contact Page =================================
*/
.contact-section {
    background: white;
}

.contact-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 90px 0;
}

/* Left Info Styles */
.contact-section .label {
    font-size: .875rem;
    color: #000;
    display: block;
    margin-bottom: 20px;
    letter-spacing: .22em;
    font-weight: 700;
}

.contact-section .info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

    .contact-section .info-row strong {
        color: #000000b3;
        font-weight: 500;
        font-size: 16px;
    }

    .contact-section .info-row span {
        color: #00000080;
        letter-spacing: .22em;
        font-weight: 500;
        font-size: .75rem;
    }

.contact-section .social-group {
    margin-top: 60px;
}

.contact-section .social-links a {
    text-decoration: none;
    color: #aaa;
    font-size: .875rem;
    margin-right: 25px;
    letter-spacing: .22em;
    transition: 0.3s;
    font-weight: 300;
}

    .contact-section .social-links a:hover {
        color: #000;
    }

/* Right Card Styles */
.contact-section .contact-card .contact-card-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.contact-section .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section .red-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
}

.contact-section h2 {
    font-size: 1.25rem;
    margin: 10px 0 40px;
    font-weight: 300;
}

.contact-section .card-header .label {
    margin-bottom: 5px;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .input-group {
    margin-bottom: 25px;
}

    .contact-section .input-group label {
        font-size: .875rem;
        font-weight: 500;
        letter-spacing: .22em;
        color: #000000b3;
    }

.contact-section label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.contact-section input, textarea[type="text"] {
}

.contact-section input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    font-weight: 100;
    color: #000c;
    border: 1px solid #0000001a;
    font-family: "Lexend", sans-serif !important;
    font-weight: 300;
}

    .contact-section input:focus, textarea:focus {
        outline: none;
        background: #fff;
        border-color: #000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.contact-section textarea {
    height: 120px;
    resize: none;
}

/* Footer & Button */
.contact-section .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-section .send-btn {
    background: #121212;
    color: #fff;
    padding: 18px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Lexend", sans-serif !important;
    font-size: 1rem;
}

    .contact-section .send-btn:hover {
        background: #333;
        transform: translateY(-2px);
    }

.contact-section .reply-time {
    font-size: 0.6rem;
    color: #bbb;
    letter-spacing: .22em;
    font-size: 11px;
    font-weight: 300;
    font-family: "Lexend", sans-serif !important;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-section .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-footer p {
    margin-top: 20px;
    color: #0000008c;
    font-weight: 300;
    line-height: 20px;
    font-size: .875rem;
}


/*========================= Contact Page =================================
*/



/*========================= Mobile Responsive =================================
*/

@media only screen and (max-width: 992px) {
    .hero_back {
        animation: none;
    }

    .my_custom_navigation nav {
        padding: 12px 0px;
    }
    /* .my_custom_navigation {
        background: #1f1f1f;
    }*/
    .mobile_hide {
        display: flex;
        width: auto;
        gap: 15px;
    }

        .mobile_hide a {
            color: white !important;
        }

            .mobile_hide a .fa {
                transform: rotate(42deg);
                font-size: 10px;
            }
    .my_custom_navigation .nav_ .d-flex li a {
        display: block;
        padding: 10px 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    /*  .footer-container .container-fluid{
        display:none;
    }*/
    .hero_back .hero_content {
        padding: 78px 0 0 0;
    }
   
   

    .hero_back .hero_content .heading h5 {
        font-size: 36px;
        line-height: 36px;
    }

        .hero_back .hero_content .hero_content_text .partner .custom-btn {
            width: 100%;
        }

        .hero_back .hero_content .hero_content_text .partner button {
            font-size: 18px;
        }

        .hero_back .hero_content .hero_content_text .partner .text- {
            width: 100%;
        }

            .hero_back .hero_content .hero_content_text .partner .text- p {
                font-size: 15px;
                line-height: 25px;
                font-weight: 400;
            }

    .about-section {
        padding: 40px 0 0 0;
    }

        .about-section .left h1 {
            font-size: 70px;
            font-weight: 600;
            line-height: 70px;
            margin-bottom: 11px;
        }

        .about-section .about-flex {
            flex-wrap: wrap;
        }

        .about-section .circle-wrap {
            width: 100%;
            margin-left: 0px;
        }

        .about-section .right p {
            font-size: 15px;
            font-weight: 300;
        }

    .focus-section {
        padding: 40px 0;
    }

        .focus-section .title {
            font-size: 36px;
            margin-bottom: 36px;
        }

    .focus-cards {
        flex-wrap: wrap;
    }

    .focus-section .card {
        width: 100%;
    }

    .focus-cards .card h3 {
        font-size: 36px;
    }

    .focus-cards .card p {
        height: 60px;
    }

    .works-section {
        padding: 40px 15px;
    }

        .works-section h2 {
            font-size: 24px;
            margin: 7px 0;
        }

        .works-section .desc {
            font-size: 15px;
        }

        .works-section .block h4 {
            font-size: 18px;
            font-weight: 400;
        }

        .works-section .flex-focus-div {
            flex-wrap: wrap;
        }

        .works-section .block p {
            font-size: 15px;
        }

        .works-section .timeline {
            margin: 14px 0 10px 0;
        }

    .difference-section {
        padding: 40px 0%;
    }

        .difference-section .top .right p {
            font-size: 15px!important;
        }

        .difference-section .top {
            margin-bottom: 40px;
        }

        .difference-section .box h3 {
            font-size: 36px;
        }

        .difference-section .box h4 {
            font-weight: 500;
        }

    .faq-top {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

        .faq-top h2 {
            line-height: 36px;
        }

        .faq-top .right p {
            font-size: 15px;
        }

    .faq-section .num {
        margin-right: 0px;
    }

    .faq-item.active .faq-body {
        padding: 0 34px;
    }

    .faq-body p {
        font-size: 15px;
    }

    .faq-head h4 {
        font-size: 18px;
        margin-right: 5px;
    }

    .faq-section {
        padding: 40px 0%;
    }

    .faq-top .right {
        margin-top: 10px;
    }

    .cta-section {
        height: auto;
        padding: 40px 0;
    }

        .cta-section .content {
            padding: 0 15px;
        }

            .cta-section .content p {
                margin-bottom: 15px;
            }

            .cta-section .content h1 {
                margin-bottom: 15px;
            }

        .cta-section button {
            font-size: 15px;
        }

        .cta-section .tags {
            margin-top: 20px;
        }

    .hero_footer .logo-text {
        margin: 0 auto 20px;
    }

    .hero_footer .container-fluid {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-container .container-fluid {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 10px;
        padding: 10px 0 10px 0;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-nav {
        gap: 4px;
    }

    #backToTop {
        bottom: 15px;
        right: 15px;
    }

    .hero_footer .tagline {
        margin: 0 auto 15px;
        font-size: 15px;
    }

    .main-title {
        font-size: 48px !important;
        line-height: 48px;
    }

    .about-section {
        padding: 65px 0 10px 0;
    }

    .about-para p {
        font-size: 15px;
        line-height: 25px;
    }

    .divider_div {
        padding-bottom: 30px;
    }

    .focus-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .focus-left h1 {
        font-size: 36px;
    }

    .focus-item {
        padding: 15px 0;
    }

        .focus-item p {
            font-size: 15px;
        }

    .trun_trusted .focus-left p {
        font-size: 15px;
    }
    .about-what-we .num {
        margin-right: 15px;
    }
    .repeat .focus-left {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .repeat{
        padding-top:0px;
    }
        .repeat .focus-right {
            padding-top: 0px;
        }
    .difference-section .top h2 {
        font-size: 36px!important;
        line-height: 36px!important;
    }
    .process-section {
        padding: 40px 0%;
    }
        .process-section .container-fluid{
            flex-wrap:wrap;
        }
        .process-section .step-card h2 {
            font-size: 36px;
        }
    .value-section h1 {
        font-size: 28px;
    }
    .value-section .description-area p{
        font-size:15px;
    }
    .value-section .formula {
        font-size: 15px;
    }
    .hero-promoter .reveal-h1 {
        font-size: 24px;
        letter-spacing: 0.25px;
    }
    .hero-promoter .fade-in-text {
        margin-top: 13px;
        font-size: 15px;
    }
    .hero-promoter .hero-content {
        gap: 25px;
        margin-bottom: 21px;
    }
    .hero-promoter .btn-yellow {
        padding: 20px 34px;
        font-size: 15px;
    }
    .promoter_act .container-fluid {
        flex-wrap: wrap;
        padding: 40px 0px;
    }
    .promoter_act .left-content h6 {
        font-size: 15px;
    }
    .promoter_act .step {
        padding: 20px 20px;
    }
    .promoter_act .left-content {
        padding: 40px 15px;
    }
    .promoter_act .step h2 {
        font-size: 28px;
    }
    .promoter_act .step p {
        font-size: 15px;
    }
    .promoter_act .right-sticky {
        height: auto;
        width: 100%;
        padding: 0 24px;
    }
    .promoter_act .sticky-box {
        max-width: 100%;
        text-align:center;
    }
        .promoter_act .sticky-box h1 {
            font-size: 28px;
            margin-bottom: 20px;
        }
    .promoter_act .fade-text {
        font-size: 15px;
    }
    .brand-process {
        padding: 40px 0%;
    }
        .brand-process .column {
            gap: 0px;
        }
        .brand-process .center-desc {
            font-size: 15px;
        }
        .brand-process .process-wrapper {
            gap: 0px;
        }
        .brand-process .step p{
            font-size:15px;
        }
    .hero-promoter {
        padding: 40px 0;
    }
        .hero-promoter .container-fluid {
            margin: 0 15px;
        }
        .hero-promoter .hero-content {
            align-items: anchor-center;
        }
    .contact-container {
        padding: 40px 0;
        gap: 20px;
    }
    .contact-section .info-row span {
        font-size: 11px;
    }
    .contact-section .info-row {
        align-items: center;
    }
        .contact-section .info-row strong {
            font-size: 14px;
        }
    .contact-section .social-group {
        margin-top: 20px;
    }
    .contact-section .label {
        margin-bottom: 10px;
    }
    .contact-section .social-links a {
        font-size: 11px;
    }
    .contact-section .contact-card .contact-card-inner{
        padding:20px;
    }
    .contact-section h2 {
        font-size: 15px;
        margin: 10px 0 29px;
    }
    .contact-section .input-group label {
        font-size: 14px;
    }
    .contact-section .input-group{
        margin-bottom:10px;
    }
    .contact-section .form-row {
        margin-bottom: 10px;
    }
    .contact-section input, textarea {
        font-size: 15px;
    }
    .contact-section .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .contact-section .reply-time {
        line-height: 18px;
    }
    .contact-footer p{
        font-size:15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px){
    .hero_back{
        height:auto;
    }
        .hero_back .hero_content .hero_content_text .partner .text-{
            width:100%;
        }
    .about-section .about-flex{
        flex-wrap:wrap;
    }
    .about-section .right{
        width:100%;
        max-width:100%;
    }
    .focus-cards {
        flex-wrap: wrap;
    }
    .focus-section .card {
        width: 30%;
    }
    .footer-container .container-fluid {
        padding: 25px 15px;
    }
    .main-title {
        font-size: 5rem;
    }
    .cta-section {
        padding: 0 15px;
    }
    .process-section .container-fluid{
        flex-wrap:wrap;
    }
    .process-section .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .promoter_act .right-sticky {
        height: auto;
        width: 100%;
        padding-bottom: 28px;
    }
    .promoter_act .container-fluid{
        display:block;
    }
    .promoter_act .step {
        padding: 50px 15px;
    }
    .promoter_act .sticky-box{
        max-width:100%;
    }
    .brand-process .column {
        gap: 0px;
    }
}

/*========================= Mobile Responsive =================================
*/

