@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a,
.btn,
button {
    transition: all .3s;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
    margin-bottom: 12px;
}

.my_container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.flex_box {
    display: flex;
}

.grid_box {
    display: grid;
}

@keyframes textclip {
    100% {
        background-position: 200% center;
    }
}

header .flex_box {
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

header .mobile_logo img {
    height: 50px;
}

header .mobile_logo {
    display: none;
}

header .close {
    border: 1px solid #fff;
    width: 42px;
    height: 42px;
    border-radius: 3px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

header .close i {
    color: #fff;
    font-size: 26px;
    line-height: 0;
}

header .off_menu {
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header .off_menu i {
    font-size: 13px;
    line-height: 0;
    -webkit-text-stroke: .8px;
}

header .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

header .menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    position: relative;
}

header .menu ul li a:before {
    position: absolute;
    content: "";
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    border-radius: 20px;
    transition: all .3s;
}

header .menu ul li a.active::before {
    width: 100%;
}

header .menu ul li a:hover:before {
    width: 100%;
}

header .menu ul li a.active {
    color: #FB8912;
}

header .menu ul li a:hover {
    color: #FB8912;
}

header .logo img {
    height: 65px;
    transition: all .3s;
}

header.active .logo img {
    height: 55px;
}

header {
    padding: 24px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    transition: all .3s;
}

header.active {
    background: #000;
    padding: 10px 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



.home_banner {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    overflow: hidden;
}

.home_banner::before {
    position: absolute;
    content: "";
    background-image: url(../images/banner-after.png);
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /* background: linear-gradient(180deg, rgba(6, 24, 46, 0) 14.91%, #06182E 50%); */

}

.home_banner .my_container {
    height: 100vh;
    display: flex;
    align-items: center;
}

.home_banner h1 {
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
    font-size: 74px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.home_banner .box {
    max-width: 700px;
    padding: 20px 0;
    position: relative;
}

.home_banner p {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    line-height: 40px;
    margin: 0;
}

.home_banner .form-group {
    position: relative;
    margin-top: 40px;
    max-width: 530px;
}

.home_banner .form-group input {
    border: 1px solid #E25518;
    background-color: #FFFFFF29;
    height: 60px;
    border-radius: 10px;
    padding: 0 20px;
    color: #fff;
    box-shadow: none;
    font-size: 16px;
}

.home_banner .form-group input::placeholder {
    color: #FFFFFFCC;
}

.home_banner .form-group button {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, #F56A25 0%, #D3440E 114.55%);
    max-width: 175px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}

.home_banner .form-group button:hover {
    background: linear-gradient(180deg, #E55A18 0%, #B93A0B 114.55%);
}

.real_people {
    padding: 80px 0;
    background: #06182E;
    overflow: hidden;
}

.real_people .grid_box {
    grid-template-columns: 1fr .8fr;
    gap: 130px;
}

.real_people .img img {
    width: 100%;
    max-width: 100%;
}

.real_people p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

.real_people h3 {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
    margin-top: 24px;
}

.real_people .img {
    position: relative;
    z-index: 1;
}

.real_people .img::before {
    position: absolute;
    content: "";
    background: linear-gradient(163.36deg, #FCA917 11.51%, #F06421 127.26%);
    width: 400px;
    height: 475px;
    right: -8px;
    top: -8px;
    z-index: -1;
}


.Plan_together .set {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 140px 40px;
    margin-left: 70px;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.Plan_together .box {
    background: #fff;
    padding: 35px 20px;
    box-shadow: -5px 0px 15px 0px #0000001A;
    max-width: 420px;
    width: 100%;
    position: absolute;
    left: -70px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.Plan_together .box h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 18px;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

.Plan_together .box h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: capitalize;
}

.Plan_together .box p {
    color: #535353;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 14px;
}

.Plan_together .box h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.Plan_together .img {
    position: relative;
    z-index: 1;
}

.Plan_together .hed {
    position: relative;
    z-index: 1;
}

.Plan_together .box_two .cont {
    background: #fff;
    backdrop-filter: blur(4px);
    border-radius: 0px;
    padding: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all .3s;
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;

}

.Plan_together .box_two .cont::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    animation: rotateBorder 6s linear infinite;

}

.Plan_together .box_two .cont::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: white;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}



.Plan_together .box_two .cont:hover {
    transform: translate(-12px, 0px);
}


.Plan_together .box_two {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.Plan_together .box_two .cont img {
    height: 72px;
}

.Plan_together .box_two .cont h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: capitalize;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

.Plan_together .box_two .cont p {
    margin: 0;
    color: #000;
    font-size: 16px;
}


.Plan_together {
    background: #06182E;
}

.future_sec {
    padding: 80px 0;
    background: #06182E;
}

.future_sec h2 {
    text-align: center;
}

.future_sec h3 {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 42px;
}

.future_sec .box {
    background: #fff;
    box-shadow: 0px 9.12px 36.49px 0px #0000000D;
    border-radius: 14px;
    padding: 24px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}


.future_sec .box h4 {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    background-size: 200% auto;
}

.future_sec .box p {
    margin: 20px 0;
    font-size: 16px;
    color: #06182E;
    line-height: 26px;
}

.future_sec .box h4 img {
    height: 22px;
}

.future_sec .box .flex_box {
    align-items: center;
    gap: 10px;
}

.future_sec .box .flex_box img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.future_sec .box .flex_box h5 {
    font-size: 16px;
    color: #050B20;
    font-weight: 500;
    margin: 0;
}

.future_sec .swiper-slide {
    height: auto;
}

.future_sec .swiper-pagination {
    position: initial;
    margin-top: 20px;
}

.future_sec .swiper-pagination span {
    background: #fff;
    opacity: .6;
}

.future_sec .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(94.11deg, #FDE720 -68.42%, #FB700E 66.84%);
}

.contact_us {
    padding: 30px 0 60px;
    background: #06182e;
}

.contact_us .grid_box {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact_us .img img {
    width: 100%;
    max-width: 100%;
}

.contact_us .img {
    position: relative;
    z-index: 1;
}

.contact_us .img::before {
    position: absolute;
    content: "";
    background: linear-gradient(163.36deg, #FCA917 11.51%, #F06421 127.26%);
    width: 350px;
    height: 450px;
    left: -8px;
    top: -8px;
    z-index: -1;
}

.contact_us p {
    color: #fff;
    font-size: 20px;
    max-width: 500px;
}

.contact_us .form-group {
    margin-top: 20px;
}

.contact_us .form-group .form-control {
    border: 2px solid #E8E9EB;
    background-color: transparent;
    height: 60px;
    border-radius: 10px;
    color: #fff;
    padding: 0 20px;
    font-size: 18px;
    box-shadow: none;
}

.contact_us .form-group .form-control::placeholder {
    color: #fff;
}

.contact_us .form-group textarea.form-control {
    height: 150px;
    padding-top: 16px;
}

.contact_us .button {
    text-align: end;
    margin-top: 20px;
}

.contact_us .button button {
    background: linear-gradient(180deg, #F56A25 0%, #D3440E 114.55%);
    border: none;
    height: 60px;
    max-width: 220px;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.contact_us .button button:hover {
    background: linear-gradient(180deg, #E55A18 0%, #B93A0B 114.55%);
}

.contact_us .form-group .form-control:focus {
    border-color: #FA6C16ed;
}

footer .grid_box {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 100px;
}

footer {
    padding: 40px 0 20px;
    background-color: #0B223F;
}

footer .logo img {
    height: 65px;
}

footer .logo p {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    margin: 10px 0 0;
    color: #fff;
}

footer .menu h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

footer .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

footer .menu ul li a:hover {
    color: #FA6C16;
    letter-spacing: 1px;
}

footer .menu .location {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .menu .location svg {
    height: 30px;
    width: 30px;
}

footer .socail {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 20px 0;
}

footer .socail img {
    height: 30px;
    transition: all .3s;
}

footer .socail img:hover {
    transform: scale(1.1);
}

footer .copyright {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border-top: 1px solid #FFFFFF80;
    padding-top: 20px;
}

.app_sec p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.app_sec .flex_box {
    justify-content: center;
    gap: 22px;
    margin: 40px 0;
}

.app_sec .img img {
    height: 70px;
    transition: all .3s;
    opacity: .4;
}

/* .app_sec .img img:hover {
    transform: scale(1.1);
} */

.app_sec {
    background: #06182E;
    padding: 80px 0 0;
    text-align: center;
}

.app_sec .owl-item.center .box img {
    transform: scale(1);
}

.app_sec .owl-item .box img {
    width: 240px;
    transform: scale(.85);
    transition: all .4s ease;
}

.app_sec .owl-item .box img:hover {
    transform: scale(1);
}

/* rahul */
.custom-spurr-modal {
    background-color: #06182E ;
    border: 1px solid #f56a25 ;
    border-radius: 16px;
    position: relative;
}

.custom-spurr-modal .modal-headline {
    color: #f56a25;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 12px;
}

.custom-spurr-modal .modal-subtext {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 23px;
}
.custom-spurr-modal .waitlist-modal-body .modal-subtext{
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 23px;
}
.custom-spurr-modal .modal-body {
        padding: 36px 38px;
}
.custom-spurr-modal .waitlist-modal-body .social-section .social-label {
    color: #a0a0a0;
     margin-bottom: 15px;
}

.custom-spurr-modal .btn-spurr-main {
    background-color: #f56a25;
    color: #ffffff;
    font-weight: 600;
    border-radius: 18px;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
        font-size: 15px;

}

.custom-spurr-modal .btn-spurr-main:hover {
    background-color: #ffffff;
    color: #f56a25;
    
}


.custom-spurr-modal .btn-close {
    position: absolute;
     top: 20px;
      right: 20px;
      z-index: 1051;
}
.custom-spurr-modal .btn-close:focus {
    box-shadow: none !important;
    outline: none !important;
}
.custom-spurr-modal .contact-modal-body .modal-subtext .subtext-highlight {
    color: #f56a25;
    
}

.custom-spurr-modal .social-icons a {
    margin: 0 10px;
    color: #fff;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.custom-spurr-modal .social-icons a:hover {
     transform: translateY(-5px);
     }
        .social-icons img {
             width: 28px;
              height: auto;
              }



        .Partner_sec {
            padding: 20px 0 60px;
            background: #06182E;
            color: #fff;
        }

        .Partner_sec .label {
            background: #EE8C2C1F;
            border: 1px solid #EE8C2C52;
            border-radius: 50px;
            padding: 8px 16px;
            max-width: fit-content;
            text-align: center;
            margin: auto;
        }

        .Partner_sec .center_box {
            text-align: center;
        }

        .Partner_sec .label {
            background: #EE8C2C1F;
            border: 1px solid #EE8C2C52;
            border-radius: 50px;
            padding: 8px 16px;
            max-width: fit-content;
            text-align: center;
            margin: 0 auto 16px;
            color: #EE8C2C;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
            font-family: 'Poppins';
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .Partner_sec .label svg {
            height: 16px;
            width: 16px;
        }

        .Partner_sec .para {
            font-size: 18px;
            color: #fff;
            font-weight: 500;
            max-width: 780px;
            margin: auto;
            line-height: 30px;
        }

        .Partner_sec .nav-pills .nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .Partner_sec .nav-pills .nav-link h3 {
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 4px;
            font-family: poppins;
            margin: 0;
        }

        .Partner_sec .nav-pills .nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #FFFFFF0A;
            border: 1px solid #FFFFFF1A;
            padding: 16px;
            border-radius: 16px;
            min-width: 250px;
            position: relative;
        }

        .Partner_sec .nav-pills {
            gap: 14px;
            margin-top: 40px;
            margin-bottom: 12px;
            flex-wrap: nowrap;
            position: relative;
        }



        .Partner_sec .nav-pills .nav-link .icon {
            background: #EE8C2C1F;
            width: 44px;
            height: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
        }

        .Partner_sec .nav-pills .nav-link h3 span {
            color: #FFFFFF8C;
            font-size: 12px;
            font-weight: 400;
        }

        .Partner_sec .nav-pills .nav-link.active {
            box-shadow: 0px 16px 40px 0px #EE8C2C38;
            border-color: #EE8C2C;
        }

        .Partner_sec .nav-pills .nav-link:hover {
            box-shadow: 0px 16px 40px 0px #EE8C2C38;
            border-color: #EE8C2C;
        }

        .Partner_sec .nav-pills .nav-link.active .icon {
            background: linear-gradient(135deg, #EF8A24 0%, #E65C19 100%);
        }

        .Partner_sec .nav-pills .nav-link:hover .icon {
            background: linear-gradient(135deg, #EF8A24 0%, #E65C19 100%);
        }

        .Partner_sec .nav-pills .nav-link.active .icon svg path {
            stroke: #fff;
        }

        .Partner_sec .nav-pills .nav-link:hover .icon svg path {
            stroke: #fff;
        }

        .Partner_sec .nav-pills .nav-link .arrow {
            position: absolute;
            right: 12px;
            display: none;
        }

        .Partner_sec .nav-pills .nav-link.active .arrow {
            display: block;
        }

        .Partner_sec .nav-pills .nav-link:hover .arrow {
            display: block;
        }

        .Partner_sec .scroll {
            overflow-x: auto;
            width: 100%;
            white-space: nowrap;
        }

        .Partner_sec .scroll::-webkit-scrollbar {
            height: 6px;
        }

        .Partner_sec .scroll::-webkit-scrollbar-track {
            background: #1b2f4d;
            border-radius: 10px;
        }

        .Partner_sec .scroll::-webkit-scrollbar-thumb {
            background: #6b7280;
            border-radius: 10px;
            cursor: grab;
        }

        .Partner_sec .scroll::-webkit-scrollbar-thumb:hover {
            background: #9ca3af;
        }

        .Partner_sec .tab-pane {
            margin-top: 20px;
        }

        .Partner_sec .box .cont {
            box-shadow: 0px 30px 70px 0px #00000030;
            backdrop-filter: blur(24px);
            border: 1px solid #FFFFFF1A;
            border-radius: 24px;
            max-width: 650px;
            margin: auto;
            padding: 25px;
        }

        .Partner_sec .box .cont .dot {
            color: #EE8C2C;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;

        }

        .Partner_sec .box .cont .dot span {
            width: 10px;
            height: 10px;
            display: block;
            background: #EE8C2C;
            border-radius: 101px;
            box-shadow: 0px 0px 12px 0px #EE8C2C;
        }

        .Partner_sec .box .cont .img img {
            width: 100%;
        }

        .Partner_sec .box .cont h3 {
            color: #FFFFFFB2;
            font-size: 15px;
            font-weight: 400;
            margin: 20px 0 0;
        }

        .Partner_sec .box h4 {
            text-align: center;
            margin: 30px 0 24px;
            color: #fff;
            font-size: 17px;
            font-weight: 500;
        }

        .Partner_sec .box h4 span {
            color: #EE8C2C;
        }

        .Partner_sec .box .down {
            text-align: center;
        }

        .Partner_sec .box .down a {
            box-shadow: 0px 14px 30px 0px #EE8C2C73;
            background: var(--color-orange-55, #EE8C2C);
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            color: #031525;
            animation: bounceUpDown 2s ease-in-out infinite;
        }

        @keyframes bounceUpDown {

            0%,
            100% {
                transform: translateY(0);
                box-shadow: 0 10px 20px rgba(244, 160, 50, 0.25);
            }

            50% {
                transform: translateY(-12px);
                box-shadow: 0 25px 35px rgba(244, 160, 50, 0.45);
            }
        }

        .Partner_sec .box .down a i {
            line-height: 0;
            -webkit-text-stroke: 2px;
            font-size: 18px;
            padding-top: 3px;
        }








@media (max-width: 1399.98px) {

    .app_sec .owl-item .box img {
        width: 220px;
    }

    .Plan_together .box {
        left: -80px;
    }

    .Plan_together .set {
        padding: 90px 30px;
        margin-left: 70px;
    }
}

@media (max-width: 1199.98px) {

    .app_sec .owl-item .box img {
        width: 180px;
    }

    footer .socail {
        gap: 10px;
        margin: 15px 0;
    }

    footer {
        padding: 30px 0 15px;
    }

    footer .copyright {
        font-size: 14px;
        padding-top: 15px;
        font-weight: 400;
    }

    footer .menu .location svg {
        height: 25px;
        width: 25px;
    }

    footer .menu .location {
        font-size: 16px;
    }

    footer .menu ul li a {
        font-size: 16px;
    }

    footer .menu h3 {
        font-size: 20px;
    }

    footer .logo p {
        font-size: 16px;
        line-height: 26px;
        margin: 10px 0 0;
        font-weight: 400;
    }

    footer .grid_box {
        gap: 60px;
    }

    .contact_us {
        padding: 20px 0 40px;
    }

    .contact_us .button button {
        height: 50px;
        max-width: 180px;
        font-size: 15px;
    }

    .contact_us .button {
        margin-top: 16px;
    }

    .contact_us .form-group textarea.form-control {
        height: 120px;
    }

    .contact_us .form-group {
        margin-top: 16px;
    }

    .contact_us .form-group .form-control {
        height: 50px;
        padding: 0 12px;
        font-size: 15px;
    }

    .contact_us p {
        font-size: 16px;
        max-width: 100%;
    }

    .contact_us .img::before {
        width: 250px;
        height: 350px;
        left: -5px;
        top: -5px;
    }

    .contact_us .grid_box {
        gap: 40px;
    }

    .future_sec .box h4 img {
        height: 20px;
    }

    .future_sec .box h4 {
        font-size: 20px;
    }

    .future_sec .box p {
        font-size: 15px;
        line-height: 24px;
    }

    .future_sec {
        padding: 60px 0;
    }

    .Plan_together .box h4 {
        font-size: 24px;
    }

    .Plan_together .box h3 {
        font-size: 18px;
        margin: 0 0 14px;
    }

    .Plan_together .box {
        padding: 20px;
        left: -70px;
    }

    .Plan_together .box_two .cont img {
        height: 60px;
    }

    .Plan_together .box_two .cont p {
        font-size: 16px;
    }

    .Plan_together .box_two .cont h3 {
        font-size: 18px;
    }

    .Plan_together .box_two .cont {
        padding: 12px;
        gap: 10px;
    }

    .Plan_together .box_two {
        gap: 12px;
    }

    .Plan_together .set {
        padding: 90px 20px;
        margin-left: 70px;
    }

    .real_people h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .real_people p {
        font-size: 16px;
        line-height: 28px;
    }

    h2 {
        font-size: 42px;
    }

    .real_people {
        padding: 30px 0 40px;
    }

    .real_people .grid_box {
        gap: 50px;
    }

    .real_people .img::before {
        width: 280px;
        height: 360px;
        right: -5px;
        top: -5px;
    }

    .home_banner .form-group {
        margin-top: 30px;
    }

    .home_banner .box {
        max-width: 550px;
    }

    .home_banner p {
        font-size: 20px;
        line-height: 35px;
    }

    .home_banner h1 {
        font-size: 62px;
        margin-bottom: 10px;
    }

    header {
        padding: 16px 0;
    }

    header .menu ul {
        gap: 40px;
    }

    header .menu ul li a {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .Partner_sec {
                padding: 20px 0 40px;
            }

            .Partner_sec .nav-pills .nav-link {
                gap: 8px;
                padding: 10px;
                border-radius: 10px;
            }

            .Partner_sec .box .cont {
                border-radius: 12px;
                padding: 16px;
            }

            .Partner_sec .nav-pills {
                gap: 12px;
                margin-top: 24px;
            }

            .Partner_sec .para {
                font-size: 16px;
                line-height: 28px;
            }

    .app_sec p {
        font-size: 16px;
    }

    .app_sec .flex_box {
        gap: 14px;
        margin: 24px 0;
    }

    .app_sec .img img {
        height: 55px;
    }

    .app_sec {
        padding: 40px 0 0;
    }

    .app_sec .owl-item .box img {
        width: 140px;
    }

    footer .menu .location {
        font-size: 14px;
    }

    footer .menu ul li a {
        font-size: 14px;
    }

    footer .logo img {
        height: 60px;
    }

    footer .logo p {
        font-size: 14px;
        line-height: 24px;
    }

    footer .grid_box {
        gap: 25px;
        grid-template-columns: 1fr .5fr .8fr;
    }

    .contact_us .img::before {
        width: 200px;
        height: 280px;
    }

    .contact_us .form-group .form-control {
        border-width: 1px;
    }

    .contact_us p {
        font-size: 15px;
    }

    .contact_us .grid_box {
        gap: 20px;
    }

    .future_sec {
        padding: 40px 0;
    }

    .future_sec h3 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .Plan_together .box h5 {
        font-size: 15px;
    }

    .Plan_together .box h3 {
        font-size: 16px;
    }

    .Plan_together .box p {
        font-size: 15px;
        line-height: 27px;
    }

    .Plan_together .box_two .cont p {
        font-size: 15px;
    }

    .Plan_together .box_two {
        max-width: 340px;
    }

    .Plan_together .box {
        max-width: 340px;
        left: -30px;
    }

    .Plan_together .set {
        margin-left: 30px;
        padding: 60px 15px;
    }

    .Plan_together .box h4 {
        font-size: 20px;
    }

    .real_people {
        padding: 10px 0 40px;
    }

    .real_people .img {
        background: linear-gradient(163.36deg, #FCA917 11.51%, #F06421 127.26%);
        padding: 6px;
    }

    .real_people .img::before {
        display: none;
    }

    .real_people .grid_box {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    header.active .logo img {
        height: 50px;
    }

    .home_banner {
        min-height: auto;
        padding: 100px 0;
        background-position: 70% 50%;
    }

    .home_banner .my_container {
        height: auto;
    }

    .home_banner .box {
        max-width: 500px;
    }

    .home_banner .form-group button {
        max-width: 165px;
        border-radius: 6px;
        font-size: 15px;
    }

    .home_banner .form-group input {
        height: 50px;
        border-radius: 6px;
        padding: 0 14px;
        font-size: 15px;
    }

    .home_banner p {
        font-size: 18px;
        line-height: 34px;
    }

    .home_banner h1 {
        font-size: 48px;
    }

    header .menu ul {
        gap: 30px;
    }

    header .menu ul li a {
        font-size: 15px;
    }

    header .logo img {
        height: 55px;
    }
}

@media (max-width: 767.98px) {
     .Partner_sec .box .down a i {
                font-size: 15px;
            }

            .Partner_sec .box .down a {
                width: 42px;
                height: 42px;
            }

            .Partner_sec {
                padding: 20px 0 30px;
            }

            .Partner_sec .box h4 {
                margin: 20px 0 24px;
                font-size: 15px;
            }

            .Partner_sec .para {
                font-size: 15px;
                line-height: 26px;
            }

    .app_sec .img img {
        height: 45px;
    }

    .app_sec .owl-item .box img {
        width: 180px;
    }

    footer .menu h3 {
        margin-bottom: 15px;
    }

    footer .menu .location {
        font-size: 15px;
    }

    footer .menu ul li a {
        font-size: 15px;
    }

    footer .logo p {
        font-size: 15px;
        line-height: 26px;
    }

    footer .menu ul {
        gap: 10px;
    }

    footer .socail {
        gap: 8px;
        margin: 20px 0;
    }

    footer .grid_box {
        grid-template-columns: 1fr 1fr;
    }

    footer .logo {
        grid-column: 1 / -1;
    }

    .contact_us {
        padding: 10px 0 30px;
    }

    .contact_us .img {
        background: linear-gradient(163.36deg, #FCA917 11.51%, #F06421 127.26%);
        padding: 6px;
    }

    .contact_us .img::before {
        display: none;
    }

    .contact_us .grid_box {
        grid-template-columns: 1fr;
    }

    .future_sec .box {
        padding: 20px 15px;
    }

    .future_sec {
        padding: 30px 0;
    }

    .Plan_together .box_two .cont {
        max-width: 100%;
        border-radius: 5px;
        /* background: #ffffffc9; */
    }

    .Plan_together .box {
        max-width: 100%;
        position: initial;
        border-radius: 5px;
        /* background: #ffffffc9; */
    }

    .Plan_together .set {
        margin-left: 0;
        flex-direction: column;
        gap: 12px;
        padding: 50px 16px;
    }

    .Plan_together .box_two {
        width: 100%;
        max-width: 100%;
    }

    h2 {
        font-size: 32px;
    }

    .my_container {
        padding: 0 16px;
    }

    .home_banner p {
        font-size: 15px;
        line-height: 27px;
    }

    .home_banner h1 {
        font-size: 34px;
        line-height: 48px;
    }

    .home_banner::before {
        z-index: 2;
        height: 50px;

    }

    .home_banner .box {
        max-width: 100%;
        z-index: 1;
    }

    .home_banner::after {
        position: absolute;
        content: "";
        background: #000;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: .3;
    }

    .home_banner .form-group {
        margin-top: 20px;
    }

    .home_banner p {
        font-size: 16px;
        line-height: 28px;
    }

    .home_banner h1 {
        font-size: 38px;
        font-weight: 600;
    }

    .home_banner {
        padding: 90px 0 50px;
    }

    header .off_menu {
        display: flex;
    }

    header .mobile_logo {
        display: block;
    }

    header .menu ul li a {
        font-size: 16px;
        padding: 14px 16px;
        display: block;
    }

    header .menu ul li+li a {
        border-top: 1px solid #ffffffb0;
    }

    header .menu ul {
        gap: 30px;
        position: fixed;
        background: #06182E;
        left: -400px;
        top: 0;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        flex-direction: column;
        max-width: 330px;
        width: 100%;
        justify-content: initial;
        align-items: initial;
        gap: 0;
        transition: all .3s;
        padding-top: 16px;
    }

    header.main .menu ul {
        left: 0;
    }

    header .close {
        display: flex;
    }
}

@media (max-width: 575.98px) {

    .app_sec .owl-item .box img {
        width: 145px;
    }

    .future_sec .swiper-pagination {
        margin-top: 15px;
    }

    .future_sec h3 {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .Plan_together .box h4 {
        font-size: 22px;
    }

    .real_people {
        padding: 10px 0 30px;
    }

    .real_people h3 {
        font-size: 18px;
        margin-top: 17px;
    }

    h2 {
        font-size: 26px;
    }

    .real_people p {
        font-size: 14px;
        line-height: 24px;
    }

    .home_banner {
        background-position: 80% 50%;
    }

    .home_banner .form-group button {
        position: initial;
        margin-top: 10px;
        height: 50px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .app_sec p {
        font-size: 15px;
    }

    .app_sec .flex_box {
        gap: 10px;
        margin: 20px 0;
    }

    .app_sec .img img {
        height: 40px;
    }

    .app_sec .owl-item .box img {
        width: 160px;
    }

    footer .socail img {
        height: 28px;
    }

    footer .menu .location svg {
        height: 20px;
        width: 20px;
    }

    footer .menu h3 {
        margin-bottom: 12px;
        border-bottom: 1px solid #FFFFFF80;
        padding-bottom: 12px;
        color: #FA6C16;
        font-weight: 600;
        letter-spacing: .5px;
        font-size: 18px;
    }

    footer .grid_box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .Plan_together .box_two .cont img {
        height: 50px;
    }

    .Plan_together .box_two .cont p {
        font-size: 14px;
    }

    .Plan_together .box_two .cont h3 {
        font-size: 18px;
    }

    .Plan_together .box h5 {
        font-size: 14px;
    }

    .Plan_together .box p {
        font-size: 15px;
        line-height: 26px;
    }

    .Plan_together .box h3 {
        font-size: 16px;
    }

    .Plan_together .box h4 {
        font-size: 20px;
    }

    h2 {
        font-size: 24px;
    }

    .home_banner .form-group button {
        font-size: 14px;
    }

    .home_banner .form-group input {
        font-size: 14px;
    }

    .home_banner p {
        font-size: 15px;
        line-height: 26px;
    }

    .home_banner h1 {
        font-size: 32px;
        line-height: 44px;
    }

}