/* =========================
   GLOBAL CSS START
========================= */
@import url('./gilroy.css');

:root {
    --font-body: 'Gilroy';
    --color-primary: #01A8E7;
    --color-white: #FCFCFC;
    --color-black: #000000;
    --body-color: #060606;
}

*,
*::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: var(--body-color);
    position: relative;
}

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-style: normal;
    font-weight: 700;
    font-size: 128px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    background: linear-gradient(80.76deg, #FFFFFF 19.75%, #8DE0F8 55.95%, #FFFFFF 87.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: rotate(0.11deg);
}

@media (max-width: 1599px) {
    .banner-heading {
        font-size: 96px;
    }
}

@media (max-width: 1199px) {
    .banner-heading {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .banner-heading {
        font-size: 56px;
        line-height: 1.08;
    }
}

@media (max-width: 767px) {
    .banner-heading {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 16px;
    }
}


.banner-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 0;

    @media(max-width: 991px) {
        font-size: 20px;
    }

    @media(max-width: 767px) {
        font-size: 18px;
    }
}


.section-title {
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #71717A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1399px) {
    .section-title {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 38px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 30px;
        line-height: 1.2;
    }
}


.section-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 20%;
    margin-bottom: 20px;
    display: block;
    color: var(--color-white);


    @media(max-width: 991px) {
        font-size: 18px;
    }

    @media(max-width: 991px) {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.section-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white);

    @media(max-width: 991px) {
        font-size: 16px;
        line-height: 1.4;
    }
}


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
========================= */
.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 645px;
    background-image: url("../img/wyse-banner-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.banner-bg-image::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 560px;
    border-radius: 1100px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(1, 168, 231, 0.34) 0%, rgba(1, 168, 231, 0.16) 38%, rgba(1, 168, 231, 0) 100%);
    filter: blur(30px);
    opacity: 0.9;
}

.site-header {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.header-navbar {
    width: 100%;
    padding: 0;
}

.header-shell {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
}

.header-inner {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-nav-group {
    display: flex;
    align-items: center;
    gap: 44px;
    flex: 1 1 0;
}

.header-nav-group.header-nav-right {
    justify-content: flex-end;
}

.header-nav-link {
    position: relative;
    min-width: 136px;
    height: 38px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-white);
    transition: 0.3s ease;
}

.header-nav-link:hover {
    color: var(--color-primary);
}

.header-nav-link.is-active {
    background: rgba(26, 34, 45, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.header-nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(103, 162, 214, 0) 0%, #67A2D6 50%, rgba(103, 162, 214, 0) 100%);
}

.header-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 20px;
    background: var(--color-white);
    display: block;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1399px) {
    .site-header {
        top: 26px;
    }

    .header-shell {
        padding-left: 44px;
        padding-right: 44px;
    }

    .header-nav-group {
        gap: 24px;
    }

    .header-nav-link {
        min-width: 118px;
        padding: 0 18px;
    }
}

@media (max-width: 1199px) {
    .header-shell {
        padding-left: 28px;
        padding-right: 28px;
    }

    .header-nav {
        gap: 24px;
    }

    .header-nav-group {
        gap: 12px;
    }

    .header-nav-link {
        min-width: 102px;
        padding: 0 14px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .banner-bg-image {
        min-height: 760px;
        height: 760px;
        background-position: 58% top;
    }

    .banner-bg-image::before {
        width: 760px;
        height: 420px;
        top: -150px;
    }

    .site-header {
        top: 20px;
    }

    .header-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-inner {
        min-height: 54px;
        justify-content: space-between;
    }

    .header-brand {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        z-index: 3;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 3;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(8, 10, 14, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    }

    .header-nav.show {
        display: flex;
    }

    .header-nav-group,
    .header-nav-group.header-nav-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
    }

    .header-nav-link {
        width: 100%;
        min-width: 100%;
        justify-content: flex-start;
        padding: 0 18px;
    }

    .header-nav-link.is-active::after {
        left: 18px;
        right: 18px;
    }
}

@media (max-width: 767px) {
    .banner-bg-image {
        min-height: 640px;
        height: 640px;
        background-position: 62% top;
    }

    .banner-bg-image::before {
        width: 540px;
        height: 320px;
        top: -110px;
    }

    .site-header {
        top: 14px;
    }

    .header-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-nav {
        top: calc(100% + 10px);
        padding: 14px;
        border-radius: 16px;
    }

    .header-nav-link {
        height: 42px;
        font-size: 13px;
    }
}

/* =========================
   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: 50px;
        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
========================= */



/* =========================
   STREAM COMPANIES CSS START
========================= */
.stream-companies {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        width: 893.66px;
        height: 893.66px;
        border-radius: 50%;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(1, 168, 231, 0.20);
        filter: blur(120px);
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .stream-companies-content-wrapper {
        width: 100%;
        max-width: 1295px;
        margin-inline: auto;
        position: relative;
        z-index: 1;

        .companies-logo-wrapper {
            min-height: 186px;
            margin-bottom: 45px;

            @media (max-width: 991px) {
                min-height: 110px;
                margin-bottom: 15px;
            }
        }
    }
}

/* =========================
   STREAM COMPANIES CSS START
========================= */



/* =========================
   About BANNER CSS START
========================= */
.about-us {
    position: relative;
    background-image: url('../img/about-banner-bg.webp');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 190px;
    overflow-x: hidden;
}

.about-us .about-text-wrapper {
    position: relative;
    background: transparent;
    border: 2.014px solid var(--color-primary);
    border-radius: 22px;
    padding: 34px 34px 38px;
}

@media (max-width: 1399px) {
    .about-us {
        padding-block: 120px;
    }
}

/* =========================
   About 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 {

    .img-cont {
        position: relative;
        z-index: 2;
    }

    .img-cont::after {
        content: "";
        position: absolute;
        width: 440.66px;
        height: 430.66px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(1, 168, 231, 0.20);
        filter: blur(120px);
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .gps-tracking-main-wrapper {
        display: flex;
        flex-direction: column;
        gap: 45px;

        @media (max-width: 1399px) {
            gap: 30px;
        }

        @media (max-width: 991px) {
            gap: 15px;
        }

        .gps-tracking-wrapper {
            .gps-tracking-title {
                font-size: 24px;
                font-weight: 600;
                line-height: 1.2;
                margin-bottom: 18px;
                color: var(--color-white);
                display: flex;
                align-items: center;
                gap: 12px;

                @media (max-width: 1199px) {
                    margin-bottom: 10px;
                }

                @media (max-width: 991px) {
                    font-size: 20px;
                }

                &::before {
                    content: "";
                    display: inline-block;
                    width: 45px;
                    height: 34px;
                    background: url('../img/streamsyn-logo.svg') no-repeat center / contain;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    flex-shrink: 0;
                }
            }

            .gps-tracking-content {
                font-size: 18px;
                font-weight: 400;
                line-height: 1.2;
                color: var(--color-white);

                @media (max-width: 767px) {
                    font-size: 18px;
                }
            }
        }
    }

}

/* =========================
   OUR FEATURES CSS END
========================= */


/* =========================
   Built for Riders CSS START
========================= */
.built-for-rdiers {
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 577.02px;
        height: 562.42px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) matrix(-1, 0, 0, 1, 0, 0);
        background: rgba(1, 168, 231, 0.70);
        opacity: 0.45;
        filter: blur(157.3px);
        z-index: 0;
        pointer-events: none;
        user-select: none;
    }

    .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;
        }


        &::after {
            content: "";
            position: absolute;
            left: 0;
            top: 55%;
            transform: translateY(-50%);
            width: 38%;
            height: 90%;
            background: linear-gradient(270deg, rgba(7, 7, 7, 0) -77.28%, #070707 100%);
            z-index: 3;
            pointer-events: none;
            user-select: none;
        }

        &::before {
            content: "";
            position: absolute;
            right: 0;
            top: 55%;
            transform: translateY(-50%) matrix(-1, 0, 0, 1, 0, 0);
            width: 38%;
            height: 90%;
            background: linear-gradient(270deg, rgba(7, 7, 7, 0) -77.28%, #070707 100%);
            z-index: 3;
            pointer-events: none;
            user-select: none;
        }

    }




    .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;
                position: relative;
                z-index: 2;
            }
        }

        .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
========================= */


/* =========================
   Download Our App CSS START
========================= */
.download-app {

    .img-cont {
        position: relative;
        z-index: 2;

        @media (max-width: 991px) {
            display: flex;
            justify-content: center;
            align-items: baseline;
        }
    }

    .img-cont::after {
        content: "";
        position: absolute;
        width: 440.66px;
        height: 430.66px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(1, 168, 231, 0.30);
        filter: blur(120px);
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .img-cont img {
        position: relative;
        z-index: 1;
    }
}

.download-app .text-cont .section-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.download-app .text-cont ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    gap: 20px;
}

.download-app .text-cont ul li {
    max-width: 30%;
}

.download-app .text-cont ul li a {
    text-decoration: none;
}

/* =========================
   Download Our App CSS End
========================= */


/* =========================
   FAQs section Start
========================= */

.faqs .text-cont {
    margin-bottom: 50px;
}

.faqs .text-cont .section-title {
    justify-content: center;
    margin-bottom: 14px;
}

.faqs .text-cont .section-content {
    text-align: center;
}

.faqs-accordion .accordion-item {
    background: transparent;
    border: 1px solid #243340;
    border-top: 0;
    padding: 25px 40px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.faqs-accordion .row>[class^="col"]:nth-child(odd) .accordion-item {
    border-left: 0;
}

.faqs-accordion .row>[class^="col"]:nth-child(even) .accordion-item {
    border-right: 0;
}

.faqs-accordion .accordion-header {
    margin: 0;
}

.faqs-accordion .accordion-button {
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--color-white);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faqs-accordion .accordion-button span {
    display: block;
    flex: 1 1 auto;
}

.faqs-accordion .accordion-button::after {
    content: "";
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid #243340;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px 7px;
    background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.4951 0.584009L5.53958 5.53955L0.584034 0.584009" stroke="%23CACACE" stroke-width="1.65185"/></svg>');
    transition: transform 0.3s ease;
}

.faqs-accordion .accordion-item.active .accordion-button::after {
    transform: rotate(180deg);
}

.faqs-accordion .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/* Collapse */
.faqs-accordion .accordion-collapse {
    display: none;
}

.faqs-accordion .accordion-body {
    padding: 25px 0 0;
}

.faqs-accordion .accordion-body p {
    color: #797C86;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .faqs-accordion .row>[class^="col"]:nth-last-child(-n+2) .accordion-item {
        border-bottom: 0;
    }
}

/* =========================
   FAQ CSS END
========================= */


/* =========================
   404 PAGE CSS END
========================= */
.error-404-page {
    background: var(--color-black);
    padding-top: 220px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-404-page .error-404-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.error-404-page .section-subtitle {
    color: var(--color-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.error-404-page .section-title {
    color: var(--color-white);
    margin-bottom: 20px;
}

.error-404-page .section-content {
    color: var(--color-white);
    max-width: 720px;
    margin: 0 auto 35px;
}

.error-404-page .error-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-page .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 18px 40px;
    border: 0;
    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 -1px 26.6px 0 rgba(251, 188, 5, 0.25);
}

.error-404-page .theme-btn:hover {
    color: var(--color-black);
    background: #ffc45a;
}

@media (max-width: 1199px) {
    .error-404-page {
        padding-top: 180px;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .error-404-page {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .error-404-page .theme-btn {
        min-height: 52px;
        padding: 16px 30px;
    }
}

@media (max-width: 767px) {
    .error-404-page {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .error-404-page .section-content {
        margin-bottom: 24px;
    }

    .error-404-page .theme-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================
   404 PAGE CSS END
========================= */



/* =========================
   FOOTER CSS START
========================= */
.site-footer {
    padding-bottom: 38px;
    margin-top: 50px;
    background-image: url('../img/footer-bg-shadow.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    padding-top: 340px;

    @media (max-width: 1399px) {
        padding-top: 100px;
    }


    .footer-inner {
        position: relative;
        z-index: 2;
        border-top: 1px solid #3F5060;
        padding-top: 170px;

    }

    .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-white);
            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: 186px;
        }
    }

    .footer-desc {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: var(--color-white);
    }

    .footer-app-block {
        text-align: start;

        h3 {
            margin: 0 0 6px;
            font-size: 24px;
            line-height: 1.2;
            font-weight: 400;
            color: var(--color-white);
        }

        p {
            margin: 0 0 15px;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 400;
            color: var(--color-white);
        }
    }
}

.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
========================= */