/* =========================
   GLOBAL CSS START
========================= */
@import url('./gilroy.css');

:root {
    --font-body: 'Gilroy';
    --color-primary: #FFBB46;
    --color-white: #ffffff;
    --color-black: #000000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: #ffffff;
}

main {
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

br {
    display: block;

    @media(max-width: 991px) {
        display: none;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.banner-heading {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
    margin-top: 0;

    @media(max-width: 1599px) {
        font-size: 65px;
    }

    @media(max-width: 1199px) {
        font-size: 55px;
    }

    @media(max-width: 991px) {
        font-size: 48px;
        line-height: 1.12;
    }

    @media(max-width: 767px) {
        font-size: 35px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
}

.banner-content {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;

    @media(max-width: 1399px) {
        font-size: 25px;
        font-weight: 500;
    }

    @media(max-width: 1199px) {
        font-size: 24px;
    }

    @media(max-width: 991px) {
        font-size: 20px;
    }

    @media(max-width: 767px) {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
}

.section-subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 20%;
    margin-bottom: 25px;
    display: block;

    @media(max-width: 1199px) {
        font-size: 22px;
    }

    @media(max-width: 991px) {
        font-size: 20px;
        margin-bottom: 22px;
    }

    @media(max-width: 767px) {
        font-size: 16px;
        margin-bottom: 18px;
    }
}

.section-title {
    font-size: 57px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 20px;

    @media(max-width: 1399px) {
        font-size: 52px;
    }

    @media(max-width: 1199px) {
        font-size: 46px;
    }

    @media(max-width: 991px) {
        font-size: 38px;
    }

    @media(max-width: 767px) {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

.section-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-black);

    @media(max-width: 1399px) {
        font-size: 22px;
    }

    @media(max-width: 1199px) {
        font-size: 20px;
    }

    @media(max-width: 991px) {
        font-size: 18px;
    }

    @media(max-width: 767px) {
        font-size: 16px;
        line-height: 1.6;
    }
}

section {
    padding-block: 100px;

    @media(max-width: 1399px) {
        padding-block: 80px;
    }

    @media(max-width: 991px) {
        padding-block: 70px;
    }

    @media(max-width: 767px) {
        padding-block: 55px;
    }
}

/* =========================
   GLOBAL CSS END
========================= */



/* =========================
   HEADER CSS START
========================= */
.circle-light-effect {
    position: absolute;
    top: -330px;
    right: -120px;
    width: 534.459px;
    height: 525.889px;
    border-radius: 534.459px;
    opacity: 0.95;
    background: rgba(255, 187, 70, 0.25);
    filter: blur(111px);
    z-index: 1;
    pointer-events: none;
}

.site-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;

    .header-navbar {
        position: relative;
        z-index: 2;
        padding: 0 22px 0;

        .header-inner {
            gap: 40px;
            position: relative;

            .navbar-brand {
                display: inline-flex;
                align-items: center;
                flex: 0 0 auto;
                position: relative;
                z-index: 12;

                img {
                    width: 100%;
                    max-width: 220px;
                    display: block;
                    object-fit: contain;
                }
            }

            .menu-toggle {
                width: 48px;
                height: 48px;
                border: 0;
                background: transparent;
                padding: 0;
                display: none;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 6px;
                cursor: pointer;
                position: relative;
                z-index: 12;

                span {
                    width: 26px;
                    height: 2px;
                    background: var(--color-white);
                    display: block;
                    transition: 0.3s ease;
                    border-radius: 30px;
                }

                &.active {
                    span {
                        &:nth-child(1) {
                            transform: translateY(8px) rotate(45deg);
                        }

                        &:nth-child(2) {
                            opacity: 0;
                        }

                        &:nth-child(3) {
                            transform: translateY(-8px) rotate(-45deg);
                        }
                    }
                }
            }

            .header-collapse {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                flex: 1 1 auto;
                gap: 32px;
            }

            .header-menu {
                list-style: none;
                gap: 38px;
                flex: 1 1 auto;

                li {
                    list-style: none;

                    a {
                        color: var(--color-white);
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 1;
                        letter-spacing: 0;
                        transition: 0.3s ease;

                        &:hover {
                            color: var(--color-primary);
                        }
                    }
                }
            }

            .header-action {
                flex: 0 0 auto;

                .login-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 20px 64px;
                    border-radius: 60px;
                    background: var(--color-primary);
                    color: var(--color-black);
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1;
                    transition: 0.3s ease;
                    box-shadow: 0 0 20px rgba(255, 187, 70, 0.18);

                    &:hover {
                        background: #ffc45a;
                        color: var(--color-black);
                    }
                }
            }
        }
    }

    @media(max-width: 1399px) {
        top: 24px;

        &::after {
            top: -300px;
            right: -100px;
            width: 470px;
            height: 470px;
        }

        .header-navbar {
            .header-inner {
                gap: 30px;

                .navbar-brand img {
                    max-width: 190px;
                }

                .header-collapse {
                    gap: 24px;
                }

                .header-menu {
                    gap: 26px;
                }

                .header-action {
                    .login-btn {
                        padding: 18px 48px;
                        font-size: 15px;
                    }
                }
            }
        }
    }

    @media(max-width: 1199px) {
        top: 18px;

        &::after {
            top: -260px;
            right: -90px;
            width: 410px;
            height: 410px;
            filter: blur(95px);
        }

        .header-navbar {
            padding: 18px 0;

            .header-inner {
                gap: 20px;

                .navbar-brand img {
                    max-width: 165px;
                }

                .header-collapse {
                    gap: 18px;
                }

                .header-menu {
                    gap: 18px;
                }

                .header-action {
                    .login-btn {
                        padding: 16px 34px;
                        font-size: 14px;
                    }
                }
            }
        }
    }

    @media(max-width: 991px) {
        top: 14px;

        &::after {
            top: -220px;
            right: -70px;
            width: 320px;
            height: 320px;
            filter: blur(80px);
        }

        .header-navbar {
            padding: 14px 0;

            .header-inner {
                gap: 14px;
                flex-wrap: wrap;

                .navbar-brand {
                    img {
                        max-width: 145px;
                    }
                }

                .menu-toggle {
                    display: inline-flex;
                    margin-left: auto;
                }

                .header-collapse {
                    position: absolute;
                    top: calc(100% + 14px);
                    left: 0;
                    right: 0;
                    display: none;
                    flex-direction: column;
                    align-items: stretch;
                    justify-content: flex-start;
                    gap: 18px;
                    padding: 20px;
                    border-radius: 20px;
                    background: rgba(0, 0, 0, 0.92);
                    backdrop-filter: blur(10px);
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

                    &.show {
                        display: flex;
                    }
                }

                .header-menu {
                    width: 100%;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: flex-start;
                    gap: 16px;

                    li {
                        width: 100%;

                        a {
                            font-size: 14px;
                            display: block;
                            width: 100%;
                        }
                    }
                }

                .header-action {
                    width: 100%;

                    .login-btn {
                        width: 100%;
                        padding: 15px 24px;
                        font-size: 14px;
                    }
                }
            }
        }
    }

    @media(max-width: 767px) {
        top: 10px;

        &::after {
            top: -170px;
            right: -55px;
            width: 240px;
            height: 240px;
            filter: blur(68px);
        }

        .header-navbar {
            padding: 10px 0;

            .header-inner {
                .navbar-brand img {
                    max-width: 118px;
                }

                .menu-toggle {
                    width: 42px;
                    height: 42px;

                    span {
                        width: 22px;
                    }

                    &.active {
                        span {
                            &:nth-child(1) {
                                transform: translateY(8px) rotate(45deg);
                            }

                            &:nth-child(3) {
                                transform: translateY(-8px) rotate(-45deg);
                            }
                        }
                    }
                }

                .header-collapse {
                    top: calc(100% + 10px);
                    padding: 16px;
                    border-radius: 16px;
                    gap: 14px;
                }

                .header-menu {
                    gap: 12px;

                    li a {
                        font-size: 13px;
                    }
                }

                .header-action {
                    .login-btn {
                        font-size: 13px;
                        padding: 14px 18px;
                        border-radius: 40px;
                    }
                }
            }
        }
    }
}

/* =========================
   HEADER CSS END
========================= */



/* =========================
   BANNER CSS START
========================= */
.banner-section {
    position: relative;
    /* background-image: url('../img/rider-alert-banner.webp'); */
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 290px;
    padding-bottom: 250px;
    overflow-x: hidden;

    .btns-wrappper {
        display: flex;
        align-items: center;
        gap: 38px;
        margin-top: 83px;

        a {
            display: inline-block;

            img {
                display: block;
            }
        }
    }

    @media(max-width: 1399px) {
        padding-top: 250px;
        padding-bottom: 210px;

        .btns-wrappper {
            gap: 28px;
            margin-top: 65px;

            a {
                img {
                    max-height: 58px;
                    width: auto;
                }
            }
        }
    }

    @media(max-width: 1199px) {
        padding-top: 220px;
        padding-bottom: 180px;

        .btns-wrappper {
            gap: 22px;
            margin-top: 48px;

            a {
                img {
                    max-height: 52px;
                    width: auto;
                }
            }
        }
    }

    @media(max-width: 991px) {
        padding-top: 190px;
        padding-bottom: 140px;
        background-position: 58% center;

        .btns-wrappper {
            gap: 18px;
            margin-top: 36px;
            flex-wrap: wrap;

            a {
                img {
                    max-height: 46px;
                }
            }
        }
    }

    @media(max-width: 767px) {
        padding-top: 150px;
        padding-bottom: 95px;
        background-position: 62% center;

        .btns-wrappper {
            gap: 14px;
            margin-top: 28px;
            align-items: flex-start;

            a {
                img {
                    max-height: 42px;
                }
            }
        }
    }
}

/* =========================
   BANNER CSS END
========================= */



/* =========================
   ABOUT SECTION CSS START
========================= */
.about-section {
    position: relative;
    background: #f8f8f8;
    background-image: url('../img/smart-tracking-rider-bg.webp');
    background-size: cover;
    background-position: center center;

    @media (max-width: 767px) {
        background-size: auto;
    }
}

.about-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url('../img/about-after-shadow.png');
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 20%;
    z-index: 1;

    @media (max-width: 991px) {
        display: none;
    }
}

/* =========================
   ABOUT SECTION CSS END
========================= */


/* =========================
   OUR FEATURES CSS START
========================= */
.our-features {
    background-image: url('../img/our-features-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        left: 300px;
        bottom: -150px;
        background-image: url(../img/elipse-shape-bg.webp);
        /* background-size: contain; */
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: 1;
        user-select: none;
        pointer-events: none;

        @media (max-width: 1199px) {
            left: 230px;
        }

        @media (max-width: 991px) {
            display: none;
        }
    }

    .gps-tracking-main-wrapper {
        display: flex;
        flex-direction: column;
        gap: 50px;

        @media (max-width: 1399px) {
            gap: 30px;
        }

        @media (max-width: 991px) {
            gap: 15px;
        }

        .gps-tracking-wrapper {
            .gps-tracking-title {
                font-size: 30px;
                font-weight: 600;
                line-height: 1.2;
                margin-bottom: 10px;
                color: var(--color-black);
                display: flex;
                align-items: center;
                gap: 12px;

                @media (max-width: 1199px) {
                    margin-bottom: 5px;
                    font-size: 24px;
                }

                @media (max-width: 991px) {
                    font-size: 20px;
                }

                &::before {
                    content: "";
                    display: inline-block;
                    width: 54px;
                    height: 25px;
                    background: url('../img/rad-logo.svg') no-repeat center / contain;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    flex-shrink: 0;
                }
            }

            .gps-tracking-content {
                font-size: 22px;
                font-weight: 400;
                line-height: 1.2;
                color: #1C1C1C;

                @media (max-width: 1199px) {
                    font-size: 20px;
                }

                @media (max-width: 991px) {
                    font-size: 18px;
                }
            }
        }
    }

    .img-cont {
        position: relative;
        z-index: 2;
    }
}

/* =========================
   OUR FEATURES CSS END
========================= */


/* =========================
   Built for Riders CSS START
========================= */
.built-for-rdiers {
    position: relative;
    background: #ffffff;
    overflow: hidden;

    .text-cont {
        position: relative;
        z-index: 9;
    }

    .built-for-rdiers-slider-wrap {
        position: relative;
        width: 100%;
        z-index: 2;
        padding-top: 50px;

        @media (max-width: 991px) {
            padding-top: 30px;
        }

        &::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(180deg);
            width: 100%;
            height: 1000px;
            background-image: url("../img/elipse-shape-bg.webp");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            z-index: 0;
            pointer-events: none;

            @media (max-width: 991px) {
                height: 900px;
            }

            @media (max-width: 767px) {
                height: 620px;
            }

            @media (max-width: 575px) {
                height: 420px;
            }
        }
    }

    .buildt-for-rdiers-slider {
        position: relative;
        z-index: 2;

        .owl-stage-outer {
            overflow: visible;
        }

        .owl-stage {
            display: flex;
            align-items: center;
        }

        .owl-item {
            transition: all 0.35s ease;
        }

        .item {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 35px 6px;
        }

        .screen-card {
            width: 100%;
            transition: transform 0.35s ease;

            img {
                display: block;
                width: 100%;
                height: auto;
            }
        }

        .owl-item.center {
            z-index: 2;

            @media (min-width: 1400px) {
                margin-right: 25px !important;
                margin-left: 10px !important;
            }

            .screen-card {
                transform: scale(1.12);
            }
        }
    }

}

/* =========================
   Built for Riders CSS End
========================= */



/* =========================
   Join Community Today CSS START
========================= */
.join-community-today {
    position: relative;
    background-image: url('../img/download-app-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-top: 150px;
    margin-bottom: 100px;

    @media (max-width: 1199px) {
        margin-top: 0px;
        margin-bottom: 0px;
        background-size: cover;
    }

    .img-cont {

        img {
            position: absolute;
            top: -140px;

            @media (max-width: 1399px) {
                top: -120px;
                left: 40px;
            }

            @media (max-width: 1199px) {
                position: static;
            }

            @media (max-width: 991px) {
                height: 400px;
                margin-inline: auto;
            }

            @media (max-width: 767px) {
                height: 300px;
            }
        }
    }

    .community-subtitle {
        font-size: 32px;
        font-weight: 400;
        line-height: 1.2;
        color: #0A0A0A;
        margin-bottom: 7px;

        @media (max-width: 1399px) {
            font-size: 26px;
        }

        @media (max-width: 991px) {
            font-size: 20px;
            text-align: center;
        }
    }

    .section-title {
        @media (max-width: 991px) {
            text-align: center;
        }
    }

    .community-content {
        font-size: 24px;
        font-weight: 400;
        line-height: 1.2;
        color: #161616;
        margin-bottom: 50px;

        @media (max-width: 991px) {
            margin-bottom: 20px;
            font-size: 20px;
            text-align: center;
        }
    }

    .footer-store-btns {
        @media (max-width: 991px) {
            justify-content: center;
        }

        .store-btn {
            img {
                height: 60px;

                @media (max-width: 991px) {
                    height: 48px;
                }
            }
        }
    }

}

/* =========================
   Join Community Today CSS End
========================= */



/* =========================
   FAQ CSS START
========================= */
.faq-section {

    @media (max-width: 991px) {
        padding-bottom: 0px;
    }

    .faq-wrapper {
        border-top: 1px solid #00000066;
        width: 100%;
        max-width: 830px;
        margin: 0 auto;

        /* &:not(:last-child) */
        &:not(:first-child) {
            border-top: 0;
        }


        .faq-item {
            border-bottom: 1px solid #00000066;

            &.active {
                .faq-question {
                    padding-bottom: 18px;

                    .faq-icon {
                        svg {
                            transform: rotate(180deg);
                        }
                    }
                }
            }

            .faq-question {
                width: 100%;
                border: 0;
                outline: none;
                box-shadow: none;
                background: transparent;
                color: var(--color-black);
                padding: 24px 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                text-align: left;
                cursor: pointer;

                span {
                    &:first-child {
                        font-size: 20px;
                        font-weight: 500;
                        line-height: 1.2;
                        text-transform: uppercase;
                    }
                }

                .faq-icon {
                    width: 46px;
                    height: 46px;
                    min-width: 46px;
                    border: 1px solid var(--color-black);
                    border-radius: 50%;
                    color: var(--color-black);
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    transition: 0.35s ease;

                    svg {
                        transition: 0.35s ease;
                    }
                }
            }

            .faq-answer-wrap {
                height: 0;
                overflow: hidden;
                transition: height 0.4s ease;
            }

            .faq-answer {
                padding: 0 90px 24px 0;

                p {
                    margin: 0;
                    font-size: 16px;
                    line-height: 1.7;
                    font-weight: 400;
                    color: var(--color-black);
                }
            }
        }
    }

    @media (max-width: 1399px) {
        .faq-wrapper {
            .faq-item {
                .faq-question {
                    span {
                        &:first-child {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 1199px) {


        .faq-wrapper {
            .faq-item {
                .faq-question {
                    padding: 22px 0;
                }

                .faq-answer {
                    padding: 0 70px 22px 0;
                }
            }
        }
    }

    @media (max-width: 991px) {


        .faq-wrapper {
            .faq-item {
                .faq-question {
                    span {
                        &:first-child {
                            font-size: 16px;
                            line-height: 1.4;
                        }
                    }

                    .faq-icon {
                        width: 42px;
                        height: 42px;
                        min-width: 42px;
                    }
                }

                .faq-answer {
                    padding: 0 55px 20px 0;

                    p {
                        font-size: 16px;
                        line-height: 1.6;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {

        .faq-wrapper {
            .faq-item {
                &.active {
                    .faq-question {
                        padding-bottom: 14px;
                    }
                }

                .faq-question {
                    padding: 18px 0;
                    gap: 14px;
                    align-items: center;

                    .faq-icon {
                        width: 38px;
                        height: 38px;
                        min-width: 38px;
                    }
                }

                .faq-answer {
                    padding: 0 0 18px 0;
                }
            }
        }
    }
}

/* =========================
   FAQ CSS END
========================= */


/* =========================
   GET IN TOCUH CSS START
========================= */
.get-in-touch {
    background: var(--color-black);
    padding-top: 220px;
    padding-bottom: 105px;
    border-bottom: 10px solid var(--color-primary);
    overflow-x: hidden;

    @media (max-width: 1199px) {
        padding-top: 180px;
        padding-bottom: 100px;
    }

    @media (max-width: 991px) {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    @media (max-width: 767px) {
        padding-top: 120px;
    }

    .banner-heading {
        color: var(--color-primary);
        text-align: center;
    }

    .banner-content {
        text-align: center;
        font-size: 28px;
        font-weight: 500;

        @media(max-width: 1399px) {
            font-size: 25px;
        }

        @media(max-width: 1199px) {
            font-size: 24px;
        }

        @media(max-width: 991px) {
            font-size: 20px;
        }

        @media(max-width: 767px) {
            font-size: 18px;
            line-height: 1.4;
            margin-bottom: 16px;
        }
    }

}

/* =========================
   GET IN TOCUH CSS END
========================= */


/* =========================
   Need More Help CSS START
========================= */
.need-more-help-sec {
    background: transparent;

    .help-card {
        min-height: 145px;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 18px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 23px;
        text-align: center;
    }

    .help-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #ffbb46;
        box-shadow: 0 39.529px 37.647px rgba(0, 0, 0, 0.09);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: 40px;
        line-height: 1.1;
        text-align: center;

        @media(max-width: 991px) {
            font-size: 38px;
        }

        @media(max-width: 767px) {
            font-size: 30px;
            margin-bottom: 16px;
        }
    }

    .help-card-content {
        h3 {
            font-size: 24px;
            line-height: 1.2;
            font-weight: 600;
            color: #000000;
            margin: 0 0 10px;
        }

        p,
        a {
            font-size: 20px;
            line-height: 1.2;
            font-weight: 500;
            color: #1e1e1e;
            margin: 0;
            text-decoration: none;

            @media (max-width: 1199px) {
                font-size: 18px;
            }
        }

    }
}

/* =========================
   Need More Help CSS End
========================= */


/* =========================
   Let's Connect CSS START
========================= */
.lets-connect-sec {
    background: var(--color-white);
    overflow: hidden;

    .lets-connect-form-col {
        padding-top: 38px;

        @media (max-width: 1199px) {
            padding-top: 0px;
        }

        .sec-head {
            margin-bottom: 40px;

            @media (max-width: 1199px) {
                margin-bottom: 20px;
            }

            h2 {
                font-size: 45px;
                line-height: 1;
                font-weight: 700;
                text-transform: uppercase;
                color: var(--color-black);
                margin: 0 0 12px;

                @media (max-width: 1199px) {
                    font-size: 35px;
                }
            }

            p {
                font-size: 16px;
                line-height: 1.4;
                font-weight: 400;
                color: rgba(0, 0, 0, 0.8);
                margin: 0;
            }
        }

        .form-group {
            margin-bottom: 27px;

            @media (max-width: 1399px) {
                margin-bottom: 15px;
            }
        }

        .form-control {
            width: 100%;
            height: 60px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            background: rgba(0, 0, 0, 0.05);
            border-radius: 37px;
            padding: 12px 20px;
            font-size: 15px;
            line-height: 1.2;
            font-weight: 400;
            color: var(--color-black);
            box-shadow: none;
            outline: none;

            @media (max-width: 1399px) {
                height: 50px;
            }

            &::placeholder {
                color: rgba(0, 0, 0, 0.6);
            }

            &:focus {
                box-shadow: none;
                border-color: var(--color-primary);
                background: rgba(0, 0, 0, 0.05);
            }
        }

        textarea.form-control {
            height: 218px;
            border-radius: 21px;
            resize: none;
            padding-top: 16px;

            @media (max-width: 1199px) {
                height: 150px;
            }
        }

        .form-btn {
            .theme-btn {
                width: 100%;
                height: 60px;
                border: 0;
                border-radius: 60px;
                background: var(--color-primary);
                box-shadow: 0 -1px 26.6px 0 rgba(251, 188, 5, 0.25);
                font-size: 16px;
                line-height: 1;
                font-weight: 700;
                color: var(--color-black);
                transition: all 0.3s ease;
                cursor: pointer;

                @media (max-width: 1199px) {
                    height: 50px;
                }
            }
        }

    }

}

/* =========================
   Let's Connect CSS End
========================= */


/* =========================
   Privacy Policy CSS START
========================= */
.privacy-policy {

    .text-cont {

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 20px;
        }

        p,
        span,
        li {
            font-size: 20px;
            color: var(--color-black);
            line-height: 1.5;
        }

        p {
            margin-bottom: 20px;
        }

        span {
            display: inline-block;
        }

        ul,
        ol {
            margin: 0 0 20px 25px;
            padding: 0;
        }

        ul li {
            list-style: disc;
            margin-bottom: 10px;
        }

        ol li {
            list-style: decimal;
            margin-bottom: 10px;
        }

        a {
            color: var(--color-black);
            text-decoration: underline;
        }
    }

    @media (max-width: 991px) {

        .text-cont {

            p,
            span,
            li {
                font-size: 18px;
                line-height: 1.3;
            }
        }
    }
}

/* =========================
   Privacy Policy CSS END
========================= */


/* =========================
   FOOTER CSS START
========================= */
.site-footer {
    position: relative;
    background: url('../img/footer-bg.webp') no-repeat center center;
    background-size: cover;
    padding-top: 170px;
    padding-bottom: 38px;
    overflow: hidden;
    margin-top: 50px;

    @media (max-width: 1199px) {
        margin-top: 0;
        padding-top: 120px;
    }

    .footer-inner {
        position: relative;
        z-index: 2;
    }

    .footer-top-links {
        display: flex;
        align-items: center;
        gap: 46px;
        margin-bottom: 42px;
        flex-wrap: wrap;

        @media (max-width: 991px) {
            margin-bottom: 20px;
            gap: 20px;
        }

        a {
            font-size: 13px;
            font-weight: 400;
            line-height: 1.2;
            color: var(--color-black);
            transition: 0.3s ease;

            &:hover {
                color: var(--color-primary);
            }
        }
    }

    .footer-socials {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        margin-bottom: 42px;

        @media (max-width: 991px) {
            justify-content: start;
        }

        a {
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
    }

    .footer-main-row {
        align-items: center;
    }

    .footer-brand-block {
        padding-right: 30px;
    }

    .footer-logo {
        display: inline-block;
        margin-bottom: 28px;

        img {
            width: 120px;
        }
    }

    .footer-desc {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: var(--color-black);
    }

    .footer-app-block {
        text-align: start;

        h3 {
            margin: 0 0 6px;
            font-size: 24px;
            line-height: 1.2;
            font-weight: 400;
            color: #1c1c1c;
        }

        p {
            margin: 0 0 15px;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 400;
            color: var(--color-black);
        }
    }
}

.footer-store-btns {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    flex-wrap: wrap;

    .store-btn {
        display: inline-block;

        img {
            height: 42px;
            width: auto;
            display: block;
        }
    }
}

/* =========================
   FOOTER CSS END
========================= */