.BannerHome {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--black-color);

    @media (max-width:762px) {
        height: auto;
        padding-top: 120px;
    }

    @media (max-width:576px) {
        padding-top: 100px;
        height: 100vh;
    }

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;

        background: linear-gradient(320deg,
                rgba(49, 190, 236, 0.4),
                rgba(27, 151, 192, 0.2),
                rgba(49, 190, 236, 0.05),
                transparent);
    }

    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        height: 90%;
        pointer-events: none;

        background-image:
            linear-gradient(to right, rgba(49, 190, 236, 0.25) 2px, transparent 2px),
            linear-gradient(to bottom, rgba(49, 190, 236, 0.25) 2px, transparent 2px);

        background-size: 120px 120px;

        mask-image:
            linear-gradient(to top, rgba(0, 0, 0, 1), transparent),
            linear-gradient(to left, rgba(0, 0, 0, 1), transparent);

        -webkit-mask-image:
            linear-gradient(to top, rgba(0, 0, 0, 1), transparent),
            linear-gradient(to left, rgba(0, 0, 0, 1), transparent);

        -webkit-mask-composite: destination-in;

        @media (max-width:992px) {
            background-size: 70px 70px;
        }

        @media (max-width:576px) {
            width: 100%;
        }
    }

    .BannerContentWrap {
        display: flex;
        align-items: center;
        gap: 24px;
        padding-top: 50px;

        @media (max-width:762px) {
            flex-flow: row wrap;
        }

        @media (max-width:576px) {
            gap: 0;
        }

        .Left,
        .Right {
            width: calc(50% - 12px);

            @media (max-width:762px) {
                width: 100%;
            }
        }

        .Left {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                left: -350px;
                top: 150px;
                width: 500px;
                height: 100px;
                background-color: var(--primary-color);
                border-radius: 50%;
                transform: rotate(25deg);
                filter: blur(100px);
                opacity: 0.9;
            }

            .Content {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 62vh;

                @media (max-width:576px) {
                    height: 38vh;
                }

                h1 {
                    font-size: 80px;
                    font-weight: 500;
                    color: var(--white-color);
                    line-height: 80px;
                    letter-spacing: -2px;
                    text-transform: capitalize;

                    span {
                        color: var(--primary-color);
                    }

                    @media (max-width:1550px) {
                        font-size: 65px;
                        line-height: 62px;
                    }

                    @media (max-width: 1333px) {
                        font-size: 60px;
                        line-height: 60px;
                    }

                    @media (max-width: 992px) {
                        font-size: 50px;
                        line-height: 50px;
                    }

                    @media (max-width: 576px) {
                        font-size: 45px;
                        line-height: 45px;
                    }
                }

                p {
                    color: var(--white-color);
                    opacity: 0.8;
                    max-width: 550px;
                }

                .primary-button {
                    margin-top: 30px;
                }
            }
        }

        .Right {
            position: relative;

            .ImageWrap {
                img {
                    width: 85%;
                    margin: auto;
                    margin-top: -45px;

                    @media (max-width:992px) {
                        width: 100%;
                        margin-left: auto;
                        margin-right: -30px;

                    }
                }
            }
        }
    }
}

/* HOME ABOUT */
.HomeAbout {
    margin: 180px 0;

    @media (max-width:1550px) {
        margin: 90px 0;
    }

    @media (max-width:1024px) {
        margin: 100px 0;
    }

    .Wrapper {
        display: flex;
        align-items: start;
        gap: 24px;

        @media (max-width:762px) {
            flex-flow: row wrap;
        }

        .Left {
            width: calc(50% - 12px);

            @media (max-width:762px) {
                width: 100%;
            }
        }

        .Right {
            width: calc(50% - 12px);

            @media (max-width:762px) {
                width: 100%;
            }

            p {
                color: var(--white-color);
                opacity: 0.8;
                font-size: 25px;


                @media (max-width: 1024px) {
                    font-size: 23px;
                }
            }
        }
    }
}

/* HOME SERVICE */
.HomeServices {
    margin: 100px 0;

    @media (max-width:576px) {
        margin: 50px 0;
    }

    .TitleWrapper {
        display: flex;
        align-items: start;
        gap: 15px;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-bottom: 50px;

        .TitleWrapper {
            width: calc(10% - 33.33px);

            @media (max-width:762px) {
                width: 100%;
            }
        }

        .Title {
            width: calc(50% - 33.33px);
            margin-top: -4px;

            @media (max-width:762px) {
                width: 100%;
            }

        }

        p {
            width: calc(30% - 33.33px);

            @media (max-width:762px) {
                width: 85%;
            }
        }
    }

    ul {
        margin-left: 18%;

        @media (max-width: 1333px) {
            margin-left: 19%;
        }

        @media (max-width: 992px) {
            margin-left: 0;
        }

        li a {
            position: relative;
            display: flex;
            align-items: start;
            gap: 24px;
            justify-content: space-between;
            padding: 45px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-flow: row wrap;

            @media (max-width:767px) {
                gap: 15px;
                padding: 20px 0;
            }

            img {
                width: 170px;
                border-radius: 7px;

                @media (min-width:767px) {
                    position: absolute;
                    top: 0;
                    left: -240px;
                    z-index: 11;
                    transform: translateX(0) scale(0.6);
                    opacity: 0;
                    transition: transform 0.4s ease, opacity 0.3s ease;
                }

                @media (max-width:576px) {
                    width: 100%;
                }


            }

            .ItemTitle {
                h3 {
                    font-size: 55px;
                    font-weight: 500;
                    color: var(--white-color);
                    line-height: 45px;
                    transition: color 0.3s ease;

                    @media (max-width:1560px) {
                        font-size: 50px;
                    }

                    @media (max-width:1024px) {
                        font-size: 35px;
                    }

                    @media (max-width:992px) {
                        font-size: 31px;
                    }

                    @media (max-width:767px) {
                        font-size: 27px;
                    }

                    @media (max-width:576px) {
                        font-size: 24px;
                    }

                }

                width: calc(35% - 16px);

                @media (max-width:992px) {
                    width: 100%;
                }

            }

            .ItemDec {
                width: calc(40% - 16px);

                @media (max-width:1024px) {
                    width: calc(45% - 16px);
                }

                @media (max-width:767px) {
                    width: calc(70% - 16px);
                }

                @media (max-width:576px) {
                    width: calc(100% - 16px);
                }

                p {
                    font-size: 20px;

                    @media (max-width:1024px) {
                        font-size: 18px;
                    }
                }

            }

            .Icon {
                width: calc(20% - 16px);

                @media(max-width:576px) {
                    display: none;
                }

                i {
                    font-size: 25px;
                    color: #fff;
                    width: 50px;
                    height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    border: 1px solid #fff;
                    margin-right: 0;
                    margin-left: auto;
                    transition: all 0.3s ease;
                }
            }

            &:hover {
                img {
                    @media (min-width:768px) {
                        transform: scale(1);
                        opacity: 1;
                    }

                }

                i {
                    color: var(--primary-color);
                    border-color: var(--primary-color);
                }

                h3 {
                    color: var(--primary-color);
                }
            }
        }
    }
}

/* HOME TECHNOLOGY */
.HomeTechnology {
    padding: 140px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    position: relative;
    overflow: hidden;
    @media (max-width:1560px){
        padding: 100px 0;
    }

    @media (max-width:576px) {
        padding: 70px 0;
    }

    &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 700px;
        height: 700px;
        display: block;
        border-radius: 50%;
        z-index: -1;
        background: linear-gradient(to bottom,
                rgba(49, 190, 236, 0.9) 0%,
                rgba(49, 190, 236, 0.4) 40%,
                rgba(49, 190, 236, 0.0) 70%,
                transparent 100%);

        filter: blur(100px);
        opacity: 0.5;
    }

    .TitleWrap {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;

        p {
            max-width: 600px;
        }

        margin-bottom: 60px !important;
    }

    .ServiceSlider {
        li {
            background-color: var(--bg-color);
            padding: 30px;
            border-radius: 12px;
            margin: 0 20px;

            @media (max-width: 1333px) {
                margin: 0 15px;
            }

            @media (max-width: 576px) {
                margin: 0 7px;
            }

            .Content {
                height: 200px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                margin-bottom: 19px;

                @media (max-width: 576px) {
                    height: 150px;
                }

                .ItemTitleWrap {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;

                    h3 {
                        color: var(--white-color);
                        font-weight: 500;
                        font-size: 30px;

                        @media (max-width:1333px) {
                            font-size: 28px;
                        }

                        @media (max-width:992px) {
                            font-size: 25px;
                        }
                    }

                    span {
                        font-size: 23px;
                        color: var(--white-color);
                        width: 50px;
                        height: 50px;
                        font-weight: 600;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        background: linear-gradient(to bottom, #31BEEC, #000000);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        border: 1px solid rgba(255, 255, 255, 0.2);
                    }

                }

                p {
                    font-size: 20px;

                    @media (max-width:1560px) {
                        font-size: 19px;
                    }

                    @media (max-width:767px) {
                        font-size: 16px;
                    }
                }
            }

            img {
                border-radius: 12px;
                mix-blend-mode: difference;
            }
        }

        .slick-list {
            @media (max-width: 1200px) {
                padding: 0 20% 0 0 !important;
            }

            @media (max-width: 992px) {
                padding: 0 0% 0 0 !important;
            }

            @media (max-width: 768px) {
                padding: 0 20% 0 0 !important;
            }

            @media (max-width: 576px) {
                padding: 0 10% 0 0 !important;
            }
        }
    }
}

/* HOME PORTFOLIO */
.HomePortfolio {
    margin: 100px 0;
    position: relative;
    @media (max-width:1566px) {
        margin: 50px 0;
    }
    @media (max-width:767px) {
        margin: 50px 0;
    }

    &::after {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        content: "";
        background-color: var(--primary-color);
        width: 800px;
        height: 800px;
        filter: blur(100px);
        z-index: -1;
        opacity: 0.2;

        @media (max-width:762px) {
            width: 400px;
            height: 400px;
        }
    }

    .TitleWrapper {
        display: flex;
        align-items: start;
        gap: 24px;
        justify-content: space-between;
        margin-bottom: 70px;

        @media (max-width:767px) {
            flex-direction: column;
            gap: 20px;
        }

        .TitleWrapper {
            width: calc(10% - 33.33px);

            @media (max-width:767px) {
                width: 100%;
            }
        }

        .Title {
            width: calc(50% - 33.33px);
            margin-top: -4px;

            @media (max-width:992px) {
                width: calc(45% - 33.33px);

                h2 {
                    br {
                        display: contents;
                    }
                }
            }

            @media (max-width:767px) {
                width: 100%;
            }
        }

        p {
            width: calc(30% - 33.33px);

            @media (max-width:767px) {
                width: 100%;
            }
        }
    }

    ul {
        display: flex;
        align-items: start;
        gap: 100px;
        flex-flow: row wrap;
        margin-bottom: 60px;

        @media (max-width:992px) {
            gap: 24px;
        }

        li,
        a {
            width: calc(50% - 50px);

            @media (max-width:992px) {
                width: calc(50% - 12px);
            }

            @media (max-width:767px) {
                width: 100%;
            }

            img {
                border-radius: 16px;
            }

            .Cnt {
                margin-top: 25px;
                display: flex;
                align-items: center;
                justify-content: space-between;

                >div {
                    width: 75%;

                    h3 {
                        color: var(--white-color);
                        font-weight: 500;
                        font-size: 24px;
                        margin-bottom: 10px;
                    }
                }

                i {
                    color: var(--white-color);
                    font-size: 20px;
                    background-color: rgba(255, 255, 255, 0.1);
                    width: 90px;
                    height: 90px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    transition: all 0.3s ease;
                }
            }

            &:hover {
                i {
                    background-color: var(--primary-color);
                }
            }
        }

        li:nth-child(even) {
            margin-top: 80px;

            @media (max-width:576px) {
                margin-top: 0;
            }
        }
    }

    .BtnWrapper {
        text-align: center;

        .AllShowButton {
            display: inline-flex;
            margin: 0 auto;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
            color: var(--white-color);
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 15px 30px;
            border-radius: 50px;

            @media (max-width:576px) {
                margin-top: 0;
            }

            i {
                font-size: 16px;
                transition: all 0.3s ease;
            }

            &:hover {
                background-color: var(--primary-color);

                i {}
            }
        }
    }
}

/* SERVICE SLIDER */
.SliderMain {
    overflow: hidden;
    position: relative;
    transform: rotate(-4deg);
    margin-bottom: 150px;

    @media (max-width:767px) {
        margin-bottom: 80px;
    }

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    &::before {
        left: 0;
        background: linear-gradient(to right, #101010, transparent);
    }

    &::after {
        right: 0;
        background: linear-gradient(to left, #101010, transparent);
    }

    .SliderTrack {
        display: flex;
        width: max-content;
        animation: scroll 20s linear infinite;

        .SliderWrapeer {
            display: flex;
            align-items: center;
            gap: 100px;
            padding-right: 100px;

            div {
                flex: 0 0 auto;

                a {
                    text-decoration: none;

                    p {
                        font-size: 37px;
                        font-weight: 500;
                        position: relative;
                        padding-left: 30px;
                        white-space: nowrap;

                        background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0.1));
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        transition: 0.3s;

                        &::after {
                            content: "";
                            position: absolute;
                            top: 50%;
                            left: 0;
                            transform: translateY(-50%);
                            width: 10px;
                            height: 10px;
                            border-radius: 50%;
                            background-color: var(--white-color);
                        }
                    }

                    &:hover {
                        p {
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.HomeProces {
    padding: 150px 0;
    background: linear-gradient(to bottom,
            rgba(49, 190, 236, 0.05) 100%,
            rgba(49, 190, 236, 0.2) 50%,
            rgba(0, 0, 0, 1) 0%);

        @media (max-width:1566px) { 
            padding: 110px 0;
        }

    @media (max-width:576px) {
        padding: 70px 0;
    }

    .TitleWrap {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;

        p {
            max-width: 600px;
        }

        margin-bottom: 60px !important;
    }

    ul {
        display: flex;
        align-items: stretch;
        gap: 24px;
        flex-flow: row wrap;

        @media (max-width:992px) {
            justify-content: center;
        }

        li {
            width: calc(33.33% - 16px);
            background: linear-gradient(to bottom,
                    rgba(49, 190, 236, 0.05) 0%,
                    transparent 100%);
            padding: 50px;
            border-radius: 18px;

            @media (max-width:1560px) {
                padding: 45px;
            }

            @media (max-width:1333px) {
                padding: 42px;
            }

            @media (max-width:1024px) {
                padding: 25px;
            }

            @media (max-width:992px) {
                display: flex;
                gap: 24px;
                width: calc(50% - 12px);
            }

            @media (max-width:767px) {
                width: 100%;

            }

            @media (max-width:576px) {
                display: unset;
            }

            img {
                height: 60px;
                width: auto;

                @media (max-width:767px) {
                    height: 50px;
                    width: 50px;
                }
            }

            .cnt {
                @media (max-width:767px) {
                    width: 70%;

                }

                @media (max-width:576px) {
                    width: 100%;
                }
            }

            h3 {
                font-size: 32px;
                font-weight: 500;
                padding: 30px 0;

                background: linear-gradient(to right,
                        rgba(255, 255, 255, 1) 0%,
                        rgba(255, 255, 255, 0.9) 40%,
                        rgba(255, 255, 255, 0.4) 70%,
                        rgba(255, 255, 255, 0.1) 100%);

                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                color: #fff;

                transition: 0.3s;
                display: inline-block;

                @media (max-width:1333px) {
                    font-size: 29px;
                }

                @media (max-width:1024px) {
                    font-size: 24px;
                }

                @media (max-width:992px) {
                    padding: 0px 0;
                    margin-bottom: 15px;
                }

                @media (max-width:576px) {
                    padding: 20px 0;
                    margin-bottom: 0px;
                }
            }
        }
    }
}

/* TESTIMONIAL HOME */
.HomeTestimonial {
    padding: 150px 0;

    @media (max-width:1333px) {
        padding: 100px 0;
    }

    @media (max-width:1024px) {
        padding: 80px 0;
    }

    @media (max-width:767px) {
        padding: 60px 0;
    }

    .ContentWrap {
        display: flex;
        align-items: center;
        gap: 60px;
        position: relative;
        padding: 100px;
        border-radius: 16px;

        @media (max-width:1024px) {
            gap: 30px;
            padding: 50px;
            align-items: start;
        }

        @media (max-width:767px) {
            flex-flow: row wrap;
        }

        @media (max-width:576px) {
            padding: 30px;
        }

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;

            background: linear-gradient(to bottom,
                    rgba(49, 190, 236, 0),
                    rgba(49, 190, 236, 0.4));

            -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;

            pointer-events: none;
        }

        .Left {
            width: calc(30% - 12px);

            @media (max-width:767px) {
                width: 100%;
            }

            .Imag {
                width: 250px;
                margin: 0 auto;
                position: relative;

                @media (max-width:1024px) {
                    width: 190px;
                }

                @media (max-width:992px) {
                    width: 150px;
                }

                @media (max-width:767px) {
                    width: 200px;
                    margin: 0 0;
                }

                img {
                    width: 100%;
                    height: auto;
                    animation: rotateImg 12s linear infinite;
                }

                i {
                    color: var(--primary-color);
                    font-size: 38px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }

        .Right {
            width: calc(70% - 12px);
            max-width: 700px;
            margin-left: auto;
            margin-right: 0;
            position: relative;

            @media (max-width:767px) {
                width: 100%;
            }

            /* RIGHT SIDE (buttons) */
            .Navigation {
                display: flex;
                align-items: center;
                gap: 5px;
                position: absolute;
                bottom: 10px;
                right: 0;

                @media (max-width:576px) {
                    position: unset;
                    justify-content: center;
                    margin-top: 20px;
                }

                button {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    background: transparent;
                    color: #fff;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: 0.3s;

                    &:hover {
                        background: var(--primary-color);
                        border-color: var(--primary-color);
                    }
                }
            }

            p {
                font-size: 25px;
                line-height: 35px;
                color: #fff;
                margin-bottom: 30px;

                @media (max-width:992px) {
                    font-size: 21px;
                    line-height: 30px;
                }
            }

            .ClientInfo {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                padding-top: 25px;

                .AuthorWrap {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 20px;
                }

                /* LEFT SIDE (image + text) */
                .ClientImage {
                    width: 55px;
                    height: 55px;
                    border-radius: 50%;
                    overflow: hidden;
                    min-width: 55px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .ClientDetails {
                    flex: 1;

                    h4 {
                        font-size: 18px;
                        font-weight: 600;
                        color: #fff;
                        margin: 0;

                        @media (max-width:992px) {
                            font-size: 16px;
                        }
                    }

                    p {
                        font-size: 14px;
                        color: rgba(255, 255, 255, 0.6);
                        margin: 2px 0 0;

                        @media (max-width:992px) {
                            font-size: 13px;
                        }
                    }
                }

                /* align image + text inline */
                .AuthorWrap>div:first-child {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                }
            }

        }
    }
}

@keyframes rotateImg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* HOME BLOG */
.HomeBlog {
    padding: 100px 0;
    position: relative;

    @media (max-width:1024px) {
        padding: 80px 0;
    }

    @media (max-width:767px) {
        padding: 60px 0;
    }

    @media (max-width:576px) {
        padding: 50px 0;
    }

    &:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 400px;
        height: 400px;
        background-color: var(--primary-color);
        z-index: -1;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.3;
    }

    .TitleWrapper {
        display: flex;
        align-items: start;
        gap: 24px;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-bottom: 50px;

        @media (max-width:767px) {
            flex-flow: column;
        }

        .TitleWrapper {
            width: calc(10% - 33.33px);

            @media (max-width:767px) {
                width: 100%;
            }
        }

        .Title {
            width: calc(52% - 33.33px);
            margin-top: -4px;

            @media (max-width:767px) {
                width: 100%;

                h2 {
                    br {
                        display: contents;
                    }
                }
            }
        }
    }

    .BlogWrap {
        display: flex;
        align-items: start;
        gap: 24px;
        flex-flow: row wrap;
        margin-top: 100px;

        @media (max-width:767px) {
            margin-top: 80px;
        }

        @media (max-width:576px) {
            margin-top: 60px;
        }


        .Right {
            width: calc(70% - 12px);

            @media (max-width:992px) {
                width: calc(50% - 12px);
            }

            @media (max-width:767px) {
                width: 100%;
            }

            ul {
                display: flex;
                flex-direction: column;
                gap: 35px;

                li {
                    display: flex;
                    align-items: start;
                    justify-content: space-between;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    padding-bottom: 30px;

                    @media (max-width:992px) {
                        flex-direction: column;
                        gap: 20px;
                    }

                    @media (max-width:767px) {
                        flex-direction: row;
                        gap: 40px;
                    }

                    @media (max-width:576px) {
                        display: unset;
                    }

                    .Date {
                        width: 23%;
                        color: var(--white-color);
                        font-weight: 400;
                        font-size: 20px;

                        @media (max-width:992px) {
                            font-size: 17px;
                            width: 100%;
                        }

                        @media (max-width:767px) {
                            width: 30%;
                        }

                        @media (max-width:576px) {
                            width: auto !important;
                            border: 1px solid rgba(255, 255, 255, 0.3);
                            padding: 10px 18px;
                            border-radius: 50px;
                            display: inline-block;

                        }
                    }

                    .TitleDes {
                        width: 65%;

                        @media (max-width:992px) {
                            width: 100%;
                        }

                        h3 {
                            color: var(--white-color);
                            font-size: 25px;
                            font-weight: 500;
                            margin-bottom: 10px;

                            @media (max-width:992px) {
                                font-size: 22px;
                            }

                            @media (max-width:576px) {
                                margin-top: 15px;
                            }
                        }

                        p {
                            font-size: 18px;
                            display: -webkit-box;
                            -webkit-line-clamp: 3;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                            width: 100%;

                            @media (max-width:767px) {
                                display: block;
                                -webkit-line-clamp: unset;
                                -webkit-box-orient: unset;
                                overflow: visible;
                            }
                        }
                    }
                }
            }
        }

        .Left {
            width: calc(30% - 12px);
            margin-top: -110px;

            @media (max-width:992px) {
                width: calc(50% - 12px);
                position: relative;
                height: 700px;
            }

            @media (max-width:767px) {
                width: 100%;
                height: auto;
            }

            @media (max-width:576px) {
                margin-top: -50px;
            }

            .Image {
                width: 85%;
                position: sticky;
                top: 50px;

                @media (max-width:767px) {
                    position: relative;
                    top: 0;
                }
            }
        }
    }
}

/* FAQ HOME */

.faq-section {
    padding: 120px 0;
    color: #fff;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);

    @media (max-width: 991px) {
        padding: 80px 0;
    }

    @media (max-width: 767px) {
        padding: 60px 0;
    }

    .container {
        display: flex;
        align-items: start;
        flex-flow: row wrap;
        gap: 24px;
        justify-content: space-between;

        @media (max-width: 991px) {
            flex-direction: column;
        }
    }

    .faq-header {
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: start;
        text-align: start;
        gap: 15px;
        margin-bottom: 50px;
        width: calc(40% - 12px);

        @media (max-width: 991px) {
            width: 100%;
            margin-bottom: 20px;
        }

        @media (max-width: 767px) {
            gap: 10px;
        }
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: calc(50% - 12px);

        @media (max-width: 991px) {
            width: 100%;
        }

        @media (max-width: 767px) {
            gap: 12px;
        }

        .faq-item {
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            transition: 0.4s;

            @media (max-width: 767px) {
                border-radius: 12px;
            }

            &:hover {
                transform: translateY(-2px);
                border-color: rgba(255, 255, 255, 0.2);
            }

            &.active {
                border-color: rgba(255, 255, 255, 0.2);

                .faq-answer {
                    max-height: 300px;
                    opacity: 1;
                    padding: 0px 20px 20px;

                    @media (max-width: 767px) {
                        padding: 0px 15px 15px;
                    }
                }

                .icon {
                    transform: rotate(45deg);
                    background: linear-gradient(45deg, #131313, #31BEEC);
                    color: #fff;
                }
            }

            .faq-question {
                width: 100%;
                background: none;
                border: none;
                color: #fff;
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                gap: 20px;

                h6 {
                    line-height: 26px;
                    text-align: left;
                    font-size: 18px;
                    text-transform: capitalize;
                    font-weight: 500;
                    span {
                        display: inline-block;
                    }

                    @media (max-width: 767px) {
                        line-height: 22px;
                        font-size: 14px;
                    }
                }

                @media (max-width: 767px) {
                    padding: 15px;

                    gap: 15px;
                    align-items: start;

                }
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.4s ease;
                color: #bbb;
                padding: 0 20px;

                @media (max-width: 767px) {
                    padding: 0 15px;
                    font-size: 14px;
                    line-height: 1.7;
                }
            }

            .icon {
                width: 32px;
                height: 32px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.05);
                transition: 0.3s;
                flex-shrink: 0;

                @media (max-width: 767px) {
                    width: 28px;
                    height: 28px;
                    font-size: 14px;
                }
            }
        }
    }
}