@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectThin.otf');
    font-weight: 200;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectLight.otf');
    font-weight: 300;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectRegular.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectMedium.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectSemiBold.otf');
    font-weight: 600;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectBold.otf');
    font-weight: 700;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectExtraBold.otf');
    font-weight: 800;
}

@font-face {
    font-family: 'Konnect';
    src: url('../fonts/KonnectBlack.otf');
    font-weight: 900;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --font-primary: "Darker Grotesque", sans-serif;
    --font-secondary: 'Konnect';
    --primary-color: #CC9900;
    --secondary-color: #74512D;
    --text-color: #262626;
    --text-lable: #898989;
    --text-disabled: #BDBBB8;
    --text-white: #ffffff;
    --bg-dark: #262626;
    --bg-white: #ffffff;
    --bg-primary: #CC9900;
    --bg-secondary: #74512D;
    --bg-light: #cc990046;
    --border-color: #E8E9EB;
    --border-dark: #DFC57B;
    --transition: all 0.4s;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    color: var(--text-white);
    font-weight: 300;
    padding: 0 !important;
    background-color: #1c1c1c;

}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    font-variant: var(--secondary-color);
}

:focus-visible {
    outline: none;
}

/* components css */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-primary);
    margin: 0;
}

h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    color: var(--text-white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
}

b {
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin:auto; */
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    outline: none;
    border: none;
    background: transparent;
}

/* fix classes */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-color {
    color: var(--primary-color);
}

.s-color {
    color: var(--secondary-color);
}

.text-white {
    color: var(--text-white);
}

.text-dark {
    color: var(--text-color);
}

.c-pointer {
    cursor: pointer;
}

.divider {
    border: 1px solid var(--text-white);
}

.border-bottom {
    border-color: var(--border-dark) !important;

    &:hover {
        border-color: var(--primary-color) !important;
    }
}

.svg-fill svg {
    fill: var(--bg-white);
    transition: var(--transition);
}

.svg-fill:hover svg {
    fill: var(--primary-color);
}

.svg-stroke svg {
    stroke: var(--bg-white);
    transition: var(--transition);
    fill: transparent !important;
}

.svg-stroke:hover svg {
    stroke: var(--bg-white);
    fill: transparent !important;
}

.mx-100 {
    margin-right: 100px;
    margin-left: 100px;
}

.px-100 {
    padding-right: 100px;
    padding-left: 100px;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mt-100 {
    margin-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.spinner-border {
    height: 18px;
    width: 18px;
}

.alert.alert-success {
    font-size: 12px;
    padding: 8px;
}

/* button design */
.btn-main {
    display: flex;
}

.btn-description {
    flex-direction: column;
}

.btn-description p {
    font-size: 18px;
    text-decoration: underline;
    margin-bottom: 20px;
}

.gorbit-btn {
    font-size: 20px;
    font-weight: 600;
    background-color: var(--bg-primary);
    border-radius: 30px;
    color: var(--text-white);
    padding: 14px 20px;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-transform: uppercase; */
    transition: var(--transition);
    cursor: pointer;
    line-height: 1.1;
    gap: 10px;
    box-shadow: 0px 0px 10px 0px #CC990099;

    svg {
        fill: var(--text-white);
    }

    &:hover {
        box-shadow: none;
        color: var(--text-white);
    }

    &.transparent {
        background-color: transparent;
        border: 1px solid var(--bg-white);
    }

    span {
        margin-top: -4px;
    }
}

.btn-main.sticky-btn {
    position: fixed;
    top: 60%;
    left: 0;
    transform: rotate(-90deg) translateY(0%);
    transform-origin: left top;
    z-index: 99;
}

.btn-main.sticky-btn .gorbit-btn {
    border-radius: 0 0 35px 35px
}

/* input desing */
.gorbit-input {
    background-color: transparent;
    font-size: 14px;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--bg-white);
    width: 100%;
    color: var(--text-white);

    &:hover,
    &:focus {
        border-color: var(--primary-color)
    }
}

.gorbit-input::placeholder {
    font-size: 14px;
}

/* fix title */
.gorbit-title {
    margin-bottom: 50px;

    h1 {
        font-size: 120px;
        margin-bottom: 10px;
        letter-spacing: 0;
        font-weight: 800;
    }

    h2 {
        font-size: 64px;
        color: var(--primary-color);
        font-weight: 700;
        line-height: 0.8;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 30px;
        font-weight: 600;
    }

    h4 {
        font-size: 30px;
    }

    h5 {
        font-size: 26px;
    }

    h6 {
        font-size: 16px;
    }

    p {
        font-size: 16px;
        margin-bottom: 20px;

        strong,
        b {
            font-weight: 700;
        }
    }
}

@media (min-width:1200px) and (max-width:1400px) {

    /* fix spacing class */
    .mx-100 {
        margin-right: 80px;
        margin-left: 80px;
    }

    .px-100 {
        padding-right: 80px;
        padding-left: 80px;
    }

    .gorbit-title {
        margin-bottom: 30px;

        h1 {
            font-size: 90px;
            line-height: 1;
        }

        h2 {
            font-size: 48px;
        }

        h3 {
            font-size: 28px;
        }

        h4 {
            font-size: 28px;
        }
    }
}

@media (min-width:992px) and (max-width:1199px) {

    /* fix spacing class */
    .mx-100 {
        margin-right: 50px;
        margin-left: 50px;
    }

    .px-100 {
        padding-right: 50px;
        padding-left: 50px;
    }

    .mb-100 {
        margin-bottom: 80px !important;
    }

    .mt-100 {
        margin-top: 80px;
    }

    .pb-100 {
        padding-bottom: 80px;
    }

    .pt-100 {
        padding-top: 80px;
    }

    .mb-50 {
        margin-bottom: 40px !important;
    }

    .mb-40 {
        margin-bottom: 35px !important;
    }

    .spinner-border {
        height: 16px;
        width: 16px;
    }

    .gorbit-btn {
        font-size: 18px;
        padding: 12px 14px;
        gap: 5px;
    }

    .gorbit-title {
        h1 {
            line-height: 1;
            font-size: 80px;
        }

        h2 {
            font-size: 40px;
        }

        h3 {
            font-size: 26px;
        }

        h4 {
            font-size: 26px;
        }

        h5 {
            font-size: 22px;
        }
    }
}

@media (min-width:768px) and (max-width:991px) {

    /* fix spacing class */
    .mx-100 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .px-100 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .mb-100 {
        margin-bottom: 60px !important;
    }

    .mt-100 {
        margin-top: 60px;
    }

    .pb-100 {
        padding-bottom: 60px;
    }

    .pt-100 {
        padding-top: 60px;
    }

    .mb-50 {
        margin-bottom: 35px !important;
    }

    .mb-40 {
        margin-bottom: 30px !important;
    }

    .mb-30 {
        margin-bottom: 20px !important;
    }

    .mb-20 {
        margin-bottom: 16px !important;
    }

    /* fix title */
    .gorbit-title {
        margin-bottom: 20px;

        h1 {
            font-size: 70px;
        }

        h2 {
            font-size: 40px;
        }

        h3 {
            font-size: 24px;
        }

        h4 {
            font-size: 24px;
        }

        h5 {
            font-size: 20px;
        }

        p {
            margin-bottom: 14px;
            font-size: 14px;
        }
    }

    /* button design */
    .gorbit-btn {
        font-size: 16px;
        padding: 10px 14px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    body {
        font-size: 14px;
    }

    /* fix spacing class */
    .mx-100 {
        margin-right: 12px;
        margin-left: 12px;
    }

    .px-100 {
        padding-right: 12px;
        padding-left: 12px;
    }

    .mb-100 {
        margin-bottom: 50px !important;
    }

    .mt-100 {
        margin-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .mb-50 {
        margin-bottom: 35px !important;
    }

    .mb-40 {
        margin-bottom: 30px !important;
    }

    .mb-30 {
        margin-bottom: 20px !important;
    }

    .mb-20 {
        margin-bottom: 16px !important;
    }

    /* fix title */
    .gorbit-title {
        margin-bottom: 20px;

        h1 {
            font-size: 70px;
        }

        h2 {
            font-size: 34px;
        }

        h3 {
            font-size: 22px;
        }

        h4 {
            font-size: 22px;
        }

        h5 {
            font-size: 20px;
        }

        p {
            font-size: 14px;
            margin-bottom: 14px;
        }
    }

    .spinner-border {
        height: 11px;
        width: 11px;
    }

    /* button design */
    .gorbit-btn {
        font-size: 14px;
        padding: 12px 10px;
        gap: 5px;
    }

    /* input desing */
    .gorbit-input {
        font-size: 12px;
        padding: 8px 0;
    }

    .gorbit-input::placeholder {
        font-size: 12px;
    }
}

@media (max-width:575px) {
    body {
        font-size: 14px;
    }

    /* scrollbar */
    ::-webkit-scrollbar {
        width: 0px;
        height: 3px;
    }

    /* fix spacing class */
    .mx-100 {
        margin-right: 12px;
        margin-left: 12px;
    }

    .px-100 {
        padding-right: 12px;
        padding-left: 12px;
    }

    .mb-100 {
        margin-bottom: 40px !important;
    }

    .mt-100 {
        margin-top: 40px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .mb-50 {
        margin-bottom: 25px !important;
    }

    .mb-40 {
        margin-bottom: 20px !important;
    }

    .mb-30 {
        margin-bottom: 16px !important;
    }

    .mb-20 {
        margin-bottom: 12px !important;
    }

    .mb-10 {
        margin-bottom: 5px !important;
    }

    /* input desing */
    .gorbit-input {
        font-size: 12px;
        padding: 8px 0;
    }

    .gorbit-input::placeholder {
        font-size: 12px;
    }

    /* fix title */
    .gorbit-title {
        margin-bottom: 16px;

        h1 {
            font-size: 40px;
        }

        h2 {
            font-size: 30px;
        }

        h3 {
            font-size: 20px;
        }

        h4 {
            font-size: 20px;
        }

        h5 {
            font-size: 18px;
        }

        p {
            margin-bottom: 14px;
            font-size: 14px;
        }

        svg {
            height: auto;
            width: 13px;
        }
    }

    .spinner-border {
        height: 11px;
        width: 11px;
    }

    /* button design */
    .gorbit-btn {
        font-size: 14px;
        padding: 10px 10px;
        gap: 5px;
    }
}

/* HEADER */
header {
    padding-top: 30px;
    padding-bottom: 30px;
}

header.home-header {
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
}

.header-menus {
    background-color: var(--bg-dark);
    padding: 12px;
    border-radius: 60px;
    max-width: 740px;
    margin: auto;
    position: relative;

    ul.header-menu-nav {
        font-family: var(--font-primary);
        justify-content: space-around;

        /* gap: 50px; */
        &>li {
            font-size: 18px;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 500;
            text-transform: uppercase;

            &:not(:last-child) {
                margin-right: 20px;
            }

            &.active {
                border-bottom: 2px solid var(--primary-color);
                color: var(--primary-color);
                font-weight: 700;

                &>a {
                    color: var(--primary-color);
                }
            }
        }
    }
}

.services {
    position: relative;

    svg {
        stroke: #fff;
        margin-left: 4px;
        margin-bottom: 3px;
        transition: var(--transition);
    }

    a:hover svg {
        stroke: var(--primary-color)
    }

    &.active {
        svg {
            stroke: var(--primary-color)
        }
    }
}

.services .dropdown {
    position: absolute;
    top: 108%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    background: var(--bg-dark);
    padding: 20px;
    /* margin-top: 12px; */
    box-shadow: 0px 16px 20px 0px #00000059;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;

    &>li {
        font-size: 18px;
        text-wrap: nowrap;

        &:not(:last-child) {
            margin-bottom: 10px;
        }

        a {
            color: var(--text-white);

            &:hover {
                color: var(--primary-color);
            }
        }

        &.show a {
            color: var(--primary-color);
        }

    }

}

.services:hover svg {
    transform: rotate(180deg);
}

.services:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

@media (min-width:992px) and (max-width:1199px) {
    .gorbit-logo {
        max-width: 110px;
        height: auto;
    }

    .header-menus {
        padding: 10px;

        ul.header-menu-nav {

            /* gap: 50px; */
            &>li {
                font-size: 16px;
                padding: 8px 16px;

                &:not(:last-child) {
                    margin-right: 16px;
                }
            }
        }
    }

    .services .dropdown {
        padding: 16px;
        margin-top: 12px;

        &>li {
            font-size: 16px;

            &:not(:last-child) {
                margin-bottom: 10px;
            }
        }
    }
}

@media (max-width:991px) {
    .gorbit-logo {
        max-width: 110px;
        height: auto;
    }

    .header-canvas-menu-main {
        background-color: var(--bg-dark);
        padding: 20px;
        width: 300px !important;

        .canvas-content {
            li {
                margin-bottom: 15px;
                font-size: 16px;
                text-transform: uppercase;
                color: var(--text-white);

                &.active a {
                    color: var(--primary-color);
                }
            }
        }

        .slide-icon {
            stroke: #fff;
            margin-left: 5px;
            transition: var(--transition);

            &.active {
                transform: rotate(180deg);
                /* stroke:var(--primary-color); */
            }
        }

        .header_sub-menu {
            padding: 20px 20px 10px;

            li {
                font-size: 14px;
            }
        }
    }

    .canvas-open-icon {
        margin-right: 30px;
    }
}

@media (max-width:575px) {
    .header-canvas-menu-main {
        padding: 16px;
        width: 240px !important;

        .canvas-content {
            li {
                margin-bottom: 10px;
                font-size: 14px;
            }
        }

        .header_sub-menu {
            padding: 16px 16px 5px;

            li {
                font-size: 13px;
            }
        }
    }

    .canvas-open-icon {
        margin-right: 20px;
    }
}

/* FOOTER */
footer {
    border: 1px solid var(--text-white);

    .footer-part-1 {
        padding: 70px 0;
        border-bottom: 1px solid var(--bg-white);
        position: relative;

        .gorbit-logo {
            max-width: 350px;
            margin: auto;

            p {
                font-size: 14px;
                font-weight: 300;
            }
        }
    }
}

.footer-menus {
    display: flex;
    gap: 100px;
    justify-content: center;
}

.bg-title-img {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.menu-listing {
    h6 {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    ul {
        gap: 12px
    }

    .menu-list {
        gap: 6px;
        font-size: 14px;
        text-transform: uppercase;
    }
}

.contact-list {
    h5 {
        font-family: var(--font-primary);
        font-size: 30px;
        font-weight: 500;
        color: var(--primary-color);
        text-transform: uppercase;
        margin-bottom: 20px;
    }
}

.footer-adrs-content {
    width: 100%;
    border-right: 1px solid var(--bg-white);
    max-width: 840px;

    .f-address {
        display: flex;
        gap: 66px;
        justify-content: center;
        border-bottom: 1px solid var(--bg-white);
    }

    .menu-list {
        a {
            gap: 10px;
            line-height: normal;

            span {
                margin-top: 4px;
            }
        }
    }
}

.contact-list.number {
    max-width: 294px;
    padding: 48px 12px;
}

.contact-list.location {
    max-width: 374px;
    padding: 48px 12px;
    margin-top: auto;
    margin-bottom: auto;
}

.copy-rights {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 80px;
    gap: 0px;

    p {
        font-size: 14px;
    }

    .manage-by,
    .manage-by a {
        color: var(--primary-color);
    }
}

/* social icons */
.social-connect {
    position: relative;

    img {
        height: 100%;
        object-fit: cover;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

    ul {
        gap: 50px;

        a {
            height: 64px;
            width: 64px;
            border-radius: 50%;
            transition: var(--transition);
            border: 2px solid var(--bg-white);

            svg {
                fill: var(--bg-white);
                transition: var(--transition);
            }

            &:hover {
                background-color: var(--bg-white);
            }

            &:hover svg {
                fill: var(--bg-dark);
            }
        }
    }
}

/* changed footer */
.footer-part-2 {
    .footer-inquiry-form {
        margin: 30px auto;
        padding: 0 20px;
        max-width: 600px;
        width: 100%;
        letter-spacing: 0.1px;
    }
}

.footer-app ul {
    gap: 10px;
}

@media (max-width:1700px) {
    .social-icons ul {
        gap: 20px;
    }

    .footer-adrs-content {
        .f-address {
            gap: 0px;
            justify-content: space-around;
        }

        .menu-list {
            a {
                gap: 8px;
            }
        }
    }

}

@media (max-width:1400px) {
    .contact-list {
        h5 {
            font-size: 22px;
            margin-bottom: 16px;
        }

        li {
            font-size: 14px;
        }
    }

    .footer-adrs-content {
        .menu-list {
            a {
                gap: 8px;
                line-height: inherit;

                svg {
                    height: 18px;
                    width: auto;
                }
            }
        }
    }

    .social-icons {
        ul {
            gap: 30px;

            a {
                height: 50px;
                width: 50px;

                svg {
                    height: 20px;
                    width: auto;
                }
            }
        }
    }
}

@media (max-width:1200px) {
    footer {
        .footer-part-1 {
            padding: 40px 0;
        }
    }

    .contact-list {
        h5 {
            font-size: 18px;
            margin-bottom: 16px;
        }

        li {
            font-size: 13px;
        }
    }

    .contact-list.number {
        padding: 30px 12px;
    }

    .contact-list.location {
        padding: 30px 12px;
    }

    .social-icons {
        ul {
            gap: 30px;

            a {
                height: 50px;
                width: 50px;

                svg {
                    height: 20px;
                    width: auto;
                }
            }
        }
    }
}

@media (max-width:991px) {
    body {
        font-size: 16px;
    }

    footer {
        & .footer-part-1 {
            .gorbit-logo {
                padding-left: 12px;
            }
        }
    }

    .menu-listing {
        h6 {
            font-size: 16px;
        }
    }

    .footer-menus {
        gap: 50px;
        padding-right: 12px;
    }

    /* footer part 2 */
    .contact-list {
        h5 {
            font-size: 16px;
            margin-bottom: 12px;
        }

        li {
            font-size: 13px;
        }
    }

    .contact-list.number {
        padding: 20px 12px;
    }

    .contact-list.location {
        padding: 20px 12px;
    }

    .social-connect {
        width: 100%;
    }

    .social-icons {
        ul {
            gap: 30px;

            a {
                height: 35px;
                width: 35px;

                svg {
                    height: 14px;
                    width: auto;
                }
            }
        }
    }

    .copy-rights {
        padding: 80px 20px;

        p {
            font-size: 12px;
        }
    }
}

@media (max-width:767px) {
    footer {
        .footer-part-1 {
            padding: 20px 0;
        }
    }

    .row-gap {
        row-gap: 30px
    }

    .footer-menus {
        gap: 30px;
        padding-right: 12px;
    }

    .menu-listing {
        h6 {
            margin-bottom: 12px;
        }
    }

    .footer-part-2 {
        flex-direction: column-reverse;
    }

    .footer-adrs-content {
        border: none;
        border-top: 1px solid var(--bg-white);
    }

    .social-connect {
        img {
            max-height: 200px;
            width: 100%;
            border-bottom: 1px solid var(--bg-white);
        }
    }

    .copy-rights {
        padding: 20px;

        p {
            font-size: 12px;
        }
    }

    .social-icons {
        margin-bottom: 20px;
    }

}

@media (max-width:575px) {
    .footer-menus {
        justify-content: start;
        padding-left: 12px;
    }

    footer {
        & .footer-part-1 {
            .gorbit-logo {
                padding-left: 12px;
                margin: inherit;
            }
        }
    }

    .social-connect {
        img {
            max-height: 150px;
        }
    }

    .social-icons {
        ul {
            gap: 20px;

            a {
                height: 30px;
                width: 30px;

                svg {
                    height: 12px;
                    width: auto;
                }
            }
        }
    }

    .footer-adrs-content {
        .f-address {
            flex-direction: column;
        }
    }
}

/* HERO SECTION */
.main-hero-section {
    position: relative;

    .main-hero-content {
        max-width: 850px;
        position: absolute;
        top: 0;
        left: 0px;
        z-index: 1;

        p {
            max-width: 460px;
        }
    }

    .main-sect-flex {
        position: relative;
    }

    .main-hero-img {
        overflow: hidden;

        img {
            margin: inherit;
            margin-left: auto;
            margin-bottom: 40px;
        }
    }

    video {
        position: absolute;
        z-index: -1;
        width: 100%;
        overflow: hidden;
        inset: 0;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width:1700px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-img {
            img {
                margin-right: -40px;
            }
        }
    }
}

@media (max-width:1500px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-img {
            img {
                margin-right: -40px;
                max-width: 800px;
            }
        }
    }
}

@media (min-width:1200px) and (max-width:1400px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-img {
            img {
                max-width: 700px;
            }
        }
    }
}

@media (min-width:992px) and (max-width:1199px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-img {
            img {
                max-width: 650px;
            }
        }
    }
}

@media (min-width:768px) and (max-width:991px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-content {
            p {
                max-width: 400px;
                margin-bottom: 20px;
            }
        }

        .main-hero-img {
            img {
                max-width: 550px;
                margin-bottom: 20px;
            }
        }
    }
}

@media (min-width:576px) and (max-width:767px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-content {
            p {
                margin-bottom: 20px;
            }
        }

        .main-hero-img {
            img {
                margin-right: -140px;
                max-width: 550px;
                opacity: 0.8;
                margin-bottom: 0px;
            }
        }
    }
}

@media (max-width:575px) {

    /* HERO SECTION */
    .main-hero-section {
        .main-hero-content {
            p {
                margin-bottom: 20px;
            }
        }

        .main-hero-img {
            img {
                margin-right: -140px;
                max-width: 500px;
                opacity: 0.6;
                margin-bottom: 0px;
            }
        }
    }
}

/* ABOUT US */
.about-us-container {
    max-width: 1250px;
    margin: auto;
}

.abouts-us-title {
    .gorbit-title {
        position: absolute;
        top: -20px;
        z-index: 12;

        h3 {
            font-size: 60px;
        }

        h2 {
            font-size: 130px;
        }
    }

    img {
        margin-left: auto;
    }
}

.about-cover-main img {
    border-radius: 24px;
}

.about-us-content {
    max-width: 610px;
}

@media (min-width:1200px) and (max-width:1400px) {

    /* ABOUT US */
    .abouts-us-title {
        .gorbit-title {
            top: 0px;

            h3 {
                font-size: 40px;
            }

            h2 {
                font-size: 80px;
            }
        }
    }
}

@media (min-width:992px) and (max-width:1199px) {

    /* ABOUT US */
    .abouts-us-title {
        .gorbit-title {
            top: 0px;

            h3 {
                font-size: 40px;
            }

            h2 {
                font-size: 80px;
            }
        }
    }

    .about-us-content p {
        font-size: 15px;
    }
}

@media (min-width:768px) and (max-width:991px) {

    /* ABOUT US */
    .abouts-us-title {
        .gorbit-title {
            top: 0px;

            h3 {
                font-size: 30px;
            }

            h2 {
                font-size: 60px;
            }
        }
    }

    .about-us-content p {
        font-size: 14px;
    }
}

@media (max-width:767px) {

    /* ABOUT US */
    .abouts-us-title {
        .gorbit-title {
            top: 0px;

            h3 {
                font-size: 30px;
            }

            h2 {
                font-size: 60px;
            }
        }
    }
}

@media (max-width:575px) {

    /* ABOUT US */
    .abouts-us-title {
        .gorbit-title {
            top: 0px;

            h3 {
                font-size: 20px;
            }

            h2 {
                font-size: 40px;
            }
        }
    }

    .about-us-content p {
        font-size: 14px;
    }
}

/* SERVICES */
.services-main-row {
    max-width: 1190px;
    margin: auto;
}

.title-text-effect {
    color: #FFFFFF12;
    font-size: 180px;
    line-height: 0.4;
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    h4 {
        margin-bottom: 20px;
        color: var(--primary-color);
    }
}

.service-img img {
    border-radius: 30px;
}

@media (max-width:1199px) {
    .title-text-effect {
        font-size: 130px;
    }
}

@media (max-width:991px) {
    .title-text-effect {
        font-size: 80px;
    }

    .service-content {
        img {
            max-width: 50px;
            height: auto;
        }
    }
}

@media (max-width:767px) {
    .title-text-effect {
        font-size: 60px;
    }

    .service-img {
        justify-content: center !important;
        margin-bottom: 24px;
    }
}

@media (max-width:575px) {
    .title-text-effect {
        font-size: 50px;
    }
}

/* NEWSLETTER */
.newsletter-main-sect {
    background: #262626;
    position: relative;
    padding: 170px 0;
}

.news-bg-1,
.news-bg-2 {
    position: absolute;
    z-index: 1;
}

.news-bg-1 {
    top: 0;
    left: 0;
}

.news-bg-2 {
    bottom: 0;
    right: 0;
}

@media (min-width:992px) and (max-width:1199px) {

    /* NEWSLETTER */
    .newsletter-main-sect {
        padding: 120px 0;
    }

    .news-bg-1,
    .news-bg-2 {
        max-width: 260px;
    }
}

@media (min-width:768px) and (max-width:991px) {

    /* NEWSLETTER */
    .newsletter-main-sect {
        padding: 100px 0;
    }

    .news-bg-1,
    .news-bg-2 {
        max-width: 180px;
    }
}

@media (min-width:576px) and (max-width:767px) {

    /* NEWSLETTER */
    .newsletter-main-sect {
        padding: 60px 12px;
    }

    .news-bg-1,
    .news-bg-2 {
        max-width: 100px;
    }
}

@media (max-width:575px) {

    /* NEWSLETTER */
    .newsletter-main-sect {
        padding: 60px 12px;
    }

    .news-bg-1,
    .news-bg-2 {
        max-width: 80px;
    }
}

/* NEWS */
.blogs-card {
    .blogs-card-cover {
        margin-bottom: 20px;

        img {
            border-radius: 30px;
        }
    }

    .blogs-card-content {
        margin-bottom: 20px;

        h4 {
            margin-bottom: 10px;
        }

        p {
            font-size: 14px;
        }
    }

    .blog-read-more {
        /* font-weight: 700; */
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
    }
}

@media (max-width:575px) {
    .blogs-card {
        .blogs-card-cover {
            margin-bottom: 14px;
        }

        .blogs-card-content {
            margin-bottom: 14px;

            p {
                font-size: 12px;
            }
        }

        .blog-read-more {
            font-size: 12px;
            gap: 5px;
        }
    }
}

/* LOCATIONS */
.location-main-sect {
    background-color: var(--bg-dark);
}

/* FAQS */
.faq-main-sect {
    .faq-main {
        max-width: 1140px;
        margin: auto;
    }

    .gorbit-title p {
        max-width: 700px;
        margin: auto;
    }

    .faq-container {
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .faq_que {
        cursor: pointer;

        h5 {
            font-size: 24px;
            font-weight: 700;
        }
    }

    .faq_ans {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .faq_ans p {
        font-size: 16px;
        font-weight: 300;
        opacity: 1 !important;
        transition: none !important;
        transform: none !important;
        margin-top: 20px;
    }
}

.slide-icon-shape {
    position: relative;
    width: 18px;
    height: auto;
}

.slide-icon .slide-icon-shape::before,
.slide-icon .slide-icon-shape::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.5s ease;
}

.slide-icon .slide-icon-shape::before {
    width: 14px;
    height: 1px;
}

.slide-icon .slide-icon-shape::after {
    width: 1px;
    height: 14px;
}

.slide-icon .slide-icon-shape.active::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.slide-icon .slide-icon-shape.active::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

@media (min-width:576px) and (max-width:767px) {

    /* FAQS */
    .faq-main-sect {
        .faq-container {
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .faq_que {
            cursor: pointer;

            h5 {
                font-size: 20px;
            }
        }

        .faq_ans p {
            font-size: 14px;
            margin-top: 16px;
        }
    }
}

@media (max-width:575px) {

    /* FAQS */
    .faq-main-sect {
        .faq-container {
            margin-bottom: 16px;
            padding-bottom: 16px;
        }

        .faq_que {
            cursor: pointer;

            h5 {
                font-size: 18px;
            }
        }

        .faq_ans p {
            font-size: 13px;
            margin-top: 12px;
        }
    }
}

/* FOUNDER */
.founder-main-sect {
    background-color: var(--bg-dark);
}

.founder-title {
    .gorbit-title {
        max-width: 950px;
    }

    .gorbit-title p {
        font-weight: 300;
    }

    .founder-detail {
        /* border-top: 1px solid var(--bg-white); */
        max-width: 500px;
        margin: auto;

        p {
            padding-top: 30px;
        }
    }
}

.founder-cover {
    width: 50%;
}

/*.founder-cover img{
    width: 80%;
}*/
.gorbit-title {
    margin-top: 15%;
}

.abc {
    margin-top: 5% !important;
}
.aaa {
    margin-top: 2% !important;
}

/* Mobile devices */
@media (max-width: 768px) {
    .founder-cover {
        width: 100%;
    }
}

.border-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.arrow-icon {
    position: absolute;
    top: 120px;
    right: 0;
}

@media (min-width:992px) and (max-width:1300px) {
    .founder-cover img {
        max-width: 550px;
    }

    .arrow-icon {
        top: 40px;
        right: 20px;

        svg {
            width: 100px;
        }
    }
}

@media (min-width:768px) and (max-width:991px) {
    .founder-main-sect {
        flex-direction: column;
        gap: 20px;
    }

    .founder-cover {
        margin: auto;
    }

    .founder-title {
        .gorbit-title {
            padding: 0 12px;
            margin-left: auto;
            margin-right: auto;
        }

        .founder-detail {
            margin: auto;

            p {
                padding-top: 14px;
            }
        }
    }

    .arrow-icon {
        display: none;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .founder-main-sect {
        flex-direction: column;
        gap: 20px;
    }

    .founder-cover {
        margin: auto;
    }

    .founder-title {
        .gorbit-title {
            padding: 0 12px;
            margin-left: auto;
            margin-right: auto;
        }

        .founder-detail {
            margin: auto;

            p {
                padding-top: 14px;
            }
        }
    }

    .arrow-icon {
        display: none;
    }
}

@media (max-width:575px) {
    .founder-main-sect {
        flex-direction: column;
        gap: 20px;
    }

    .founder-cover {
        margin: auto;
    }

    .founder-title {
        .gorbit-title {
            padding: 0 12px;
            margin-left: auto;
            margin-right: auto;
        }

        .founder-detail {
            margin: auto;

            p {
                padding-top: 14px;
            }
        }
    }

    .arrow-icon {
        display: none;
    }
}

/* PARTNERS */
.media-partner-section {
    max-width: 1350px;
    margin: auto;
}

.partners-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.media-partner-img img {
    margin: auto;
}

.media-partner-img {
    padding: 0 12px;
}


/* slick dots */
.slick-dots {
    bottom: 10px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    border: 4px solid transparent;
    line-height: 0;
    transition: all 0.4s;
    border-radius: 50%;
}

.slick-dots button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: none;
    outline: none;
    transition: all 0.4s;
}

.slick-dots .slick-active button {
    background: var(--bg-white);
}

.slick-dots .slick-active {
    border-color: var(--primary-color);
}

/* RESULTS */
.results-main-content {
    border-bottom: 1px solid #4c4b4a;
    height: 100%;
}

.results-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 470px;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 50px;

    p {
        margin: 0;

        .counter {
            display: inline-block;
            text-align: left;
        }

        .counter,
        .sign {
            font-size: 26px;
            font-weight: 500;
        }
    }

    span {
        color: var(--primary-color);
    }
}

@media (max-width:767px) {
    .results-heading {
        padding-top: 30px;
        margin-bottom: 30px;

        p {
            font-size: 14px;
        }

        img {
            height: 45px;
            width: auto;
        }

        svg {
            width: 12px;
            height: auto;
        }
    }
}

/* TESTIMONIAL */
.testimonial-main-sect {
    .slide-arrow {
        position: absolute;
        top: 50%;
        margin-top: -15px;
    }

    .slide-arrow svg {
        height: auto;
        width: auto;
    }

    .slide-arrow {
        width: 50px;
        height: 50px;
        border: 1px solid var(--bg-white);
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s;
        z-index: 1;
    }

    .testimonial_slider .prev-arrow {
        left: 0px;
    }

    .testimonial_slider .next-arrow {
        right: 0px;
    }

    .slide-arrow:hover {
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
    }
}

.connect-line {
    margin-top: 30px;
    text-decoration: underline;

    a {
        text-decoration: underline;
    }
}

.testimonial-main-sect .testimonial_slider .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* testimonial content */
.testimonial-container {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;

}

.gorbit-tm-content {
    max-width: 885px;
    margin: 0 auto;
    text-align: center;
}

.tm-profile-review {
    margin-bottom: 40px;
}

.tm-profile-img {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.tm-profile-img img {
    width: 75px;
    height: 75px;
    padding: 2px;
    border-radius: 50%;
    object-fit: cover;
}

.tm-profile-name {
    margin-left: 12px;

    h5 {
        font-size: 26px;
        margin-bottom: 5px;
        font-weight: 500;
        font-family: var(--font-secondary);
    }

    p {
        font-size: 14px;
        color: #FFFFFF80;
        margin: 0;
    }
}

@media(min-width: 1200px) and (max-width: 1399px) {
    .gorbit-tm-content {
        max-width: 750px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .gorbit-tm-content {
        max-width: 650px;
    }

    .testimonial-main-sect {
        .slide-arrow {
            width: 40px;
            height: 40px;
        }

        .slide-arrow svg {
            width: 25px;
        }
    }
}

@media (min-width:768px) and (max-width:991px) {
    .gorbit-tm-content {
        max-width: 500px;
    }

    .testimonial-main-sect {
        .slide-arrow {
            width: 35px;
            height: 35px;
        }

        .slide-arrow svg {
            width: 22px;
        }

        .tm-profile-review p {
            font-size: 14px;
        }
    }

    .tm-profile-review {
        margin-bottom: 30px;
    }

    .tm-profile-img img {
        width: 55px;
        height: 55px;
    }

    .tm-profile-name {
        h5 {
            font-size: 20px;
        }

        p {
            font-size: 12px;
        }
    }
}

@media (min-width:576px) and (max-width: 767px) {
    .gorbit-tm-content {
        max-width: 380px;
    }

    .testimonial-main-sect {
        .slide-arrow {
            width: 30px;
            height: 30px;
        }

        .slide-arrow svg {
            width: 20px;
        }

        .tm-profile-review p {
            font-size: 12px;
        }
    }

    .tm-profile-review {
        margin-bottom: 20px;
    }

    .tm-profile-img img {
        width: 55px;
        height: 55px;
    }

    .tm-profile-name {
        h5 {
            font-size: 18px;
        }

        p {
            font-size: 12px;
        }
    }
}

@media(max-width: 575px) {
    .gorbit-tm-content {
        max-width: 300px;
    }

    .testimonial-main-sect {
        .slide-arrow {
            width: 25px;
            height: 25px;
        }

        .slide-arrow svg {
            width: 16px;
        }

        .tm-profile-review p {
            font-size: 12px;
        }
    }

    .tm-profile-review {
        margin-bottom: 20px;
    }

    .tm-profile-img img {
        width: 40px;
        height: 40px;
        padding: 1px;
    }

    .tm-profile-name {
        h5 {
            font-size: 16px;
            margin-bottom: 0px;
        }

        p {
            font-size: 10px;
        }
    }
}

@media(max-width: 450px) {
    .gorbit-tm-content {
        max-width: 200px;
    }
}

/* TESTIMONIAL 2 */
.testimonial-slider {
    margin: auto;
    max-width: 1350px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 60px 20px;
    max-width: 420px;
    border-radius: 15px;
    text-align: center;
    margin: 0 10px;
    margin-bottom: 20px;

    h3 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    p {
        margin-bottom: 40px;
        font-weight: 300;
    }
}

.testimonial-slider .slick-slide {
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: none;
    }

    .profile {
        text-align: left;

        h6 {
            font-size: 18px;
        }

        span {
            font-size: 14px;
            color: var(--text-disabled);
        }
    }
}

@media (max-width:1400px) {
    .testimonial-card {
        padding: 60px 20px;
        margin: 0 10px;
        margin-bottom: 20px;

        h3 {
            margin-bottom: 16px;
            font-size: 22px;
        }

        p {
            margin-bottom: 20px;
            font-size: 14px
        }
    }

    .author {
        img {
            width: 60px;
            height: 60px;
        }

        .profile {
            h6 {
                font-size: 16px;
            }

            span {
                font-size: 14px
            }
        }
    }
}

@media (max-width:767px) {
    .testimonial-card {
        padding: 20px 20px;
        margin: auto;
        margin-bottom: 20px;

        h3 {
            margin-bottom: 16px;
            font-size: 20px;
        }
    }

    .author {
        img {
            width: 40px;
            height: 40px;
        }
    }
}

/* Left Glow */
main {
    overflow: hidden;
}

.section-left-glow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30%;
    transform: translateY(-50%);
    width: 100%;
    height: 1500px;
    background: url('../images/primary-shade.png') no-repeat left center;
    background-size: contain;
    pointer-events: none;
    overflow: hidden;
}

/* Right Glow */
.section-right-glow::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -40%;
    transform: translateY(-50%);
    width: 100%;
    height: 1500px;
    background: url('../images/primary-shade.png') no-repeat right center;
    background-size: contain;
    pointer-events: none;
    overflow: hidden;
}

/* ABOUT US */
.hero-banner {
    .hero-title {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 200px;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 900px;
    }

    .hero-title.title-width-100 {
        max-width: 950px;
    }
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title.title-max-width {
    max-width: 1120px;
}

.btn-description {
    font-size: 14px !important;
    margin-top: 10px;
}

@media (max-width:1200px) {
    .hero-banner {
        .hero-title {
            left: 0px;
        }
    }
}

@media (max-width:991px) {
    .hero-banner {
        img {
            max-height: 340px;
            min-height: 340px;
            object-fit: cover;
        }
    }
}

/* ABOUT US INFO */
.about-us-info-cover img {
    margin-right: 50px;
    margin-left: auto;
}

.about-info {
    max-width: 660px;
}

.about-info .menu-listing {
    .menu-list {
        text-transform: none;
    }
}

/* TEAM MEMBERS */
.member-slide {
    padding: 0 12px;
    text-align: center;
}

.our-team-content {
    border-radius: 20px 20px 10px 10px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;

    /* margin: 0 12px; */
    .profile img {
        max-width: 310px;
        min-height: 230px;
        max-height: 230px;
        object-fit: cover;
    }

    .team-details {
        padding: 10px 10px 20px;
        background-color: var(--bg-dark);

        .member-name {
            justify-content: space-between;
        }

        h5 {
            font-weight: 600;
            font-size: 26px;
            margin-bottom: 6px;
        }

        p {
            font-size: 14px;
            text-transform: capitalize;
        }
    }
}

.team-container {
    max-width: 1320px;
    margin: 0 auto;
    margin-bottom: 30px;

    .slick-list {
        margin-bottom: 30px;
    }
}

@media (max-width:991px) {
    .our-team-content {
        .profile img {
            max-width: 270px;
            min-height: 190px;
            max-height: 190px;
        }

        .member-name {
            h5 {
                font-size: 22px;
            }
        }
    }
}

@media (max-width:767px) {
    .our-team-content {
        .profile img {
            max-width: 270px;
            min-height: 190px;
            max-height: 190px;
        }

        .member-name {
            h5 {
                font-size: 20px;
            }
        }
    }
}

@media (max-width:575px) {
    .team-container {
        .slick-list {
            margin-bottom: 16px;
        }
    }
}

/* OUR VISION */
.our-vision-sect {
    max-width: 1320px;
    margin: 0 auto;
}

.vision-content {
    width: 50%;
    padding: 150px 12px;

    .gorbit-title {
        max-width: 510px;
        margin: 0 auto;

        p {
            font-size: 14px;
        }
    }
}

.vision-svg {
    width: 50%;
    margin-top: auto;
    text-align: center;

    img {
        border-radius: 30px;
    }
}

@media (max-width:1199px) {
    .vision-content {
        padding: 80px 12px;
    }

    .vision-svg {
        svg {
            height: 310px;
            width: auto;
        }
    }
}

@media (max-width:767px) {
    .vision-content {
        padding: 30px 12px;
    }

    .vision-svg {
        svg {
            height: 220px;
            width: auto;
        }
    }
}

@media (max-width:575px) {
    .our-vision-sect.vision {
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }

    .our-vision-sect.mission {
        flex-direction: column;
    }

    .vision-content {
        padding: 12px 12px;
        width: 90%;
    }

    .vision-svg {
        width: 90%;

        svg {
            height: 180px;
            width: auto;
        }
    }
}

/* CORE VALUES */
.core-values-sect>.row {
    row-gap: 24px;
}

.core-value-content {
    background-color: var(--bg-dark);
    margin: 0px auto;
    padding: 40px 35px;
    height: 100%;
    border-radius: 30px;
}

.core-value-content.stretch-card {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.core-value-content.split-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: left;
    max-width: 1300px;
    padding: 0;
}

.split-card .split-card-item {
    flex: 1 1 0%;
    min-width: 280px;
    padding: 45px 50px;
}

.split-card .split-card-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
    .split-card .split-card-item {
        padding: 30px;
    }

    .split-card .split-card-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width:1199px) {
    .core-value-content {
        padding: 20px 12px;
    }
}

/*  OUR APPROACH */
.our-approach-main-sect {
    background-color: var(--bg-dark);
}

.our-approach-main {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;

    .our-approach-content {
        max-width: 390px;

        &.multi-cards {
            max-width: 350px;
        }

        h5 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
    }
}

.our-approach-main-sect .gorbit-title p {
    max-width: 1200px;
    margin: auto;
}

@media (max-width:1840px) {
    .our-approach-main {
        gap: 12px;

        .our-approach-content {
            &.multi-cards {
                max-width: 330px;
            }
        }
    }
}

@media (max-width:1600px) {
    .our-approach-main {
        .our-approach-content {
            max-width: 320px;

            &.multi-cards {
                max-width: 250px;
            }
        }
    }
}

@media (max-width:1200px) {
    .our-approach-main {
        .our-approach-content {
            max-width: 280px;

            &.multi-cards {
                max-width: 205px;
            }
        }
    }
}

@media (max-width:991px) {
    .our-approach-main {
        .our-approach-content {
            max-width: 220px;

            &.multi-cards {
                max-width: 330px;
            }
        }
    }

    .blogs-card {
        .blogs-card-cover {
            img {
                border-radius: 20px;
            }
        }
    }
}

@media (max-width:767px) {
    .our-approach-main {
        gap: 12px;

        .our-approach-content {
            max-width: 260px;

            &.multi-cards {
                max-width: 270px;
            }
        }
    }
}

/* LEADERSHIP */
.leader-info {
    h5 {
        margin-bottom: 8px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width:767px) {
    .leader-info {
        p {
            font-size: 12px;
        }
    }
}

/* CONTACT US PAGE */
.contact-us-main .contact {
    display: flex;
    justify-content: center;
    gap: 75px;
}

.contact-form-content {
    max-width: 560px;
}

.soicial-connect {
    max-width: 300px;
    margin: auto 0;

    &>ul {
        &:not(:last-child) {
            margin-bottom: 30px;
        }

        li:first-child {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 6px;
        }

        li:last-child {
            font-size: 14px;
        }
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-social-icons {
    ul {
        gap: 20px;

        a {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            transition: var(--transition);
            border: 2px solid var(--bg-white);

            svg {
                fill: var(--bg-white);
                transition: var(--transition);
            }

            &:hover {
                background-color: var(--bg-white);
            }

            &:hover svg {
                fill: var(--bg-dark);
            }
        }
    }
}

.contact-review {
    background-color: var(--bg-dark);
}

select {
    background-color: transparent !important;
    border: none;
    color: #999;
}

.contact-location,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: transparent !important;
    border: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

span.select2-dropdown.select2-dropdown--below {
    background: var(--bg-dark);
    border: none;
    top: 11px;
}

.select2-container--default .select2-results>.select2-results__options {
    padding: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--primary-color);
}

.select2-results__option--selectable {
    font-size: 14px;
}

@media (max-width:991px) {

    /* CONTACT US PAGE */
    .contact-us-main .contact {
        gap: 35px;
    }

    .contact-form-content {
        max-width: 320px;
    }

    .soicial-connect {
        max-width: 300px;

        &>ul {
            &:not(:last-child) {
                margin-bottom: 30px;
            }

            li:first-child {
                font-size: 13px;
            }

            li:last-child {
                font-size: 13px;
            }
        }
    }

    .contact-form {
        gap: 30px;
    }
}

@media (max-width:575px) {

    /* CONTACT US PAGE */
    .contact-us-main .contact {
        gap: 30px;
        flex-direction: column;
    }

    .contact-form-content {
        max-width: 560px;
    }

    .soicial-connect {
        max-width: 300px;

        &>ul {
            &:not(:last-child) {
                margin-bottom: 20px;
            }

            li:first-child {
                font-size: 12px;
            }

            li:last-child {
                font-size: 12px;
            }
        }
    }

    .contact-form {
        gap: 30px;
    }

    .contact-social-icons {
        ul {
            gap: 20px;

            a {
                height: 32px;
                width: 32px;

                svg {
                    height: 15px;
                    width: auto;
                }
            }
        }
    }
}

/* history timeline */
.timeline-wrapper {
    padding: 20px 20px;
    position: relative;
}

.timeline-mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.milestone {
    background-color: #111;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.milestone h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--primary-color);
}

.milestone span {
    font-size: 14px;
    font-weight: 600;
    color: #FBBF24;
}

.milestone p {
    font-size: 13px;
    margin-top: 10px;
}

.milestone.today {
    border-left-color: #FFD700;
}

.milestone.today h3,
.milestone.today span {
    color: #FFD700;
}

/* Timeline now renders as HTML on all screens; legacy image deprecated */
.timeline-image {
    display: none;
}

@media (min-width: 1100px) {
    .timeline-mobile {
        display: flex;
        max-width: 900px;
        margin: 0 auto;
    }
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: var(--text-white);
}

.iti__country-list {
    background-color: #242424;
}

.text-danger {
    font-size: 12px;
    margin-top: 5px;
    position: absolute;
}

/* ANIMATION EFFECT */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.visible-p {
    opacity: 1;
    transform: translateY(0);
}

.logo-hover-effect {
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out !important;
}

.logo-hover-effect:hover {
    filter: grayscale(0%);
}

.zoom-hover {
    overflow: hidden;
    display: inline-block;
    border-radius: 30px;
}

.zoom-hover img {
    transition: transform 0.5s ease;
    transform: scale(1);
}

.zoom-hover:hover img {
    transform: scale(1.02);
}


.vision-wrapper {
    display: inline-block;
}


/* Tooltip-style vision */
.vision-tooltip {
    position: absolute;
    bottom: 70px;
    background-color: var(--bg-dark);
    color: var(--primary-color);
    padding: 30px 30px;
    ;
    border-radius: 30px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 10;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 6px 0px #cc990042;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.vision-wrapper:hover .vision-tooltip {
    opacity: 1;
    visibility: visible;
}

.vision-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.quote-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-left: 4px solid var(--primary-color);
    padding: 14px 18px;
    max-width: 620px;
    color: var(--text-white);
    font-size: 12px;
    font-style: italic;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.quote-icon svg {
    margin-bottom: 10px;
}



@keyframes popShake {
    0% {
        transform: scale(0.7) rotate(0deg);
    }

    20% {
        transform: scale(1.1) rotate(15deg);
    }

    35% {
        transform: scale(1) rotate(-15deg);
    }

    50% {
        transform: scale(1.05) rotate(10deg);
    }

    65% {
        transform: scale(1) rotate(-10deg);
    }

    80% {
        transform: scale(1.02) rotate(8deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.stat-icon.spin {
    animation: popShake 2s ease-out forwards;
}

/* flip in */
/* @keyframes flipIn {
  0%   { transform: rotateY(90deg); opacity: 0; }
  100% { transform: rotateY(0); opacity: 1; }
}
.stat-icon.spin {
  animation: flipIn 1s ease-out forwards;
} */

/* zoon */
/* @keyframes zoomFade {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.stat-icon.spin {
  animation: zoomFade 1s ease-out forwards;
} */

/* bounce & spin */
/* @keyframes bounceSpin {
  0%   { transform: scale(0.8) rotate(0deg); opacity: 0; }
  50%  { transform: scale(1.2) rotate(720deg); opacity: 1; }
  100% { transform: scale(1) rotate(1440deg); }
}
.stat-icon.spin {
  animation: bounceSpin 1.5s ease-out forwards;
} */

.connect-with-wp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
}

@media (max-width:991px) {
    .connect-with-wp {
        bottom: 10px;
        right: 10px;
    }
}

.investment-process .results-heading {
    align-items: baseline;

    p {
        text-align: left;
    }
}

.investment-process .core-value-content ul {
    list-style: disc;
    text-align: left;
    padding-left: 24px;
}

.counter-sect {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--text-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-left: 85px !important;
}

/* thankyou popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #CC9900;
    padding: 60px 30px;
    border-radius: 10px;
    position: relative;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width:991px) {
    .popup-box {
        padding: 40px 20px;
    }
}

/* SECURE COMOPLIANT */
.secure-compliant-content-main .custom-column {
    padding: 0;
}

.gorbit-title.timeline-content {
    position: relative;
    margin-bottom: 100px;

    h4 {
        color: var(--primary-color);
    }

    p {
        margin: 0;
    }
}

.timeline-icon {
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 100px;
}

.timeline-icon.right {
    margin-right: 40px;
    justify-content: end;
}

.timeline-icon.left {
    margin-left: 40px;
}

.timeline-content.right {
    padding-left: 40px;
    text-align: left;
}

.timeline-content.left {
    padding-right: 40px;
    text-align: right;
}

.timeline-content .timeline-count {
    position: absolute;
    top: 0;
    background: var(--primary-color);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: inherit;
    font-size: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.timeline-content.right .timeline-count {
    left: -20px;
}

.timeline-content.left .timeline-count {
    right: -20px;
}

.timeline-content::before {
    content: "";
    border-left: 2px dashed var(--primary-color);
    position: absolute;
    top: 50%;
    bottom: 0;
    height: 180%;
}

.timeline-content.right::before {
    left: -1px;
}

.timeline-content.left::before {
    right: -1px;
}

.timeline-content.last::before {
    display: none;
}

@media (max-width:1199px) {
    .gorbit-title.timeline-content {
        margin-bottom: 50px;
    }

    .timeline-icon {
        padding-bottom: 50px;

    }

    .timeline-content::before {
        height: 130%;
    }
}

@media (max-width:991px) {
    .timeline-content::before {
        height: 136%;
    }
}

@media (max-width:575px) {
    .secure-compliant-content-main .custom-column {
        padding: 0 12px;
    }

    .timeline-icon {
        padding-bottom: 10px;
        margin: auto !important;
        justify-content: center !important;

        img {
            height: 50px;
            width: auto;
        }
    }

    .gorbit-title.timeline-content {
        margin-bottom: 30px;
    }

    .timeline-content {
        padding-left: 40px !important;
        padding-right: 0px !important;
        text-align: left !important;
    }

    .timeline-content.left .timeline-count {
        left: -20px;
        right: auto;
    }

    .timeline-content.left::before {
        left: -1px;
        right: auto;
    }

    .timeline-content .timeline-count {
        left: -5px !important;
        top: 0;
        margin: inherit;
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .timeline-content::before {
        left: 9px !important;
        top: 0;
        height: 215%;
    }

    .testimonial-slider {
        margin-bottom: 10px;
    }

}

.list-styled-disc {
    padding-left: 20px;
    list-style: disc !important;
}

.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

/* Round WhatsApp Button */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.whatsapp-btn img {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* PARTNERSHIPS */
.pt-hero h1 {
    font-size: 64px;
    line-height: 1.1;
}

.pt-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pt-collage-tile {
    background-color: var(--bg-dark);
    border: 1px solid rgba(204, 153, 0, 0.2);
    border-radius: 20px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-lable);
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 16px;
}

.pt-collage-tile.tall {
    grid-row: span 2;
    min-height: auto;
}

.pt-stake-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
}

.pt-coming {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 46px 50px;
    border: 1px solid rgba(204, 153, 0, 0.25);
    border-radius: 14px;
}

.pt-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 20px;
}

.pt-closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 90px;
    border-top: 1px solid #4c4b4a;
}

@media (max-width:1400px) {
    .pt-hero h1 {
        font-size: 54px;
    }
}

@media (max-width:1200px) {
    .pt-hero h1 {
        font-size: 44px;
    }
}

@media (max-width:991px) {
    .pt-hero h1 {
        font-size: 34px;
    }

    .pt-closing {
        padding: 40px 20px 60px;
    }
}

@media (max-width:767px) {
    .pt-collage-tile.tall {
        grid-row: auto;
    }
}

@media (max-width:575px) {
    .pt-hero h1 {
        font-size: 26px;
    }

    .pt-tag {
        font-size: 12px;
        padding: 5px 14px;
    }

    .pt-coming {
        padding: 30px 20px;
    }
}