@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* bootstrap icons css  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* bootstrap icons css  */

/* global css start  */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--outfit-font);
    overflow-x: hidden;
    font-size: 16px;
}

:root {
    --sora-font: "Sora", sans-serif;
    --outfit-font: "Outfit", sans-serif;
}

.container {
    max-width: 100%;
}

@media (min-width: 1300px) {

    .container {
        max-width: 1345px;
    }
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1D3557;
    font-weight: 600;
}

span {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

div {
    transition: all 0.3s;
}

p {
    color: #757575;
    margin-bottom: 0;
    line-height: 27px;
    font-size: 17px;
}

.p-60 {
    padding: 60px 0;
}

.p-70 {
    padding: 70px 0;
}

section {
    position: relative;
}

.section-heading {
    font-size: 52px;
    font-weight: 700;
    font-family: var(--sora-font);
}

.section-heading span {
    color: #fff;
    background-color: #1D3557;
    padding: 0 10px;
}

.head-row.mb-50 {
    margin-bottom: 50px;
}

.boxes-row.gap-40 {
    row-gap: 40px;
}

.gap-24 {
    row-gap: 24px;
}

.bg-light {
    background-color: #BFC9CA1A !important;
}

.form-control,
.form-select {
    box-shadow: none !important;
}

/* global css end  */

/* border button css start  */

.border-btn {
    background: #fff;
    font-family: var(--outfit-font);
    font-weight: 600;
    color: #1D3557;
    border-radius: 10px;
    text-align: center;
    border: solid 2px #1D3557;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.3s;
    padding: 14px 30px;
    width: max-content;
}

.border-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1D3557;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
    z-index: -1;
    border-radius: 0;
}

.border-btn:hover::before,
.border-btn:focus::before,
.border-btn:active::before {
    transform: translateX(0);
}

.border-btn:hover,
.border-btn:focus,
.border-btn:active {
    color: #fff;
}

.border-btn img {
    margin-left: 10px;
    transition: none;
    max-width: 24px;
}

.border-btn:hover img,
.border-btn:focus img,
.border-btn:active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(201deg) brightness(106%) contrast(106%);
}

/* border button css end  */

/* white btn css started  */
/* border button css start  */

.white-btn {
    background: #fff;
    font-family: var(--outfit-font);
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    text-align: center;
    border: solid 2px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.3s;
    padding: 14px 30px;
    width: max-content;
}

.white-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1D3557;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
    z-index: -1;
    border-radius: 0;
}

.white-btn:hover::before,
.white-btn:focus::before,
.white-btn:active::before {
    transform: translateX(0);
}

.white-btn:hover,
.white-btn:focus,
.white-btn:active {
    color: #fff !important;
}

.white-btn img {
    margin-left: 10px;
    transition: none !important;
    max-width: 24px;
}

.white-btn:hover img,
.white-btn:focus img,
.white-btn:active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(121deg) brightness(106%) contrast(101%);
}

/* white btn css end  */

/* color button css start  */

.color-btn {
    background: #1D3557;
    font-family: var(--outfit-font);
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    border: solid 2px #1D3557;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.3s;
    padding: 14px 30px;
    width: max-content;
}

.color-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.color-btn:hover::before,
.color-btn:focus::before,
.color-btn:active::before {
    transform: translateX(0);
}

.color-btn:hover,
.color-btn:focus,
.color-btn:active {
    color: #1D3557;
}

.color-btn.icon img {
    margin-left: 10px;
    transition: none;
}

.color-btn.icon:hover img,
.color-btn.icon:focus img,
.color-btn.icon:active img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(12%) saturate(2804%) hue-rotate(176deg) brightness(91%) contrast(93%);
}

/* color button css end  */

/* pages css start  */

.header-main {
    border-bottom: solid 1px #0000000D;
}

.header-btn-main {
    display: inline-flex;
    gap: 16px;
    justify-content: end;
}

.header-btn-main .border-btn {
    min-width: 125px;
}

.header-btn-main .color-btn {
    min-width: 200px;
}

.header-main .nav-link {
    color: #1A1A1A;
    font-weight: 600;
    padding: 8px 16px !important;
}

.header-main .nav-link:focus,
.header-main .nav-link:hover,
.header-main .nav-link:active,
.header-main .nav-link.active,
.header-main .nav-link.show {
    color: #1D3557;
}

.header-main .header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 0;
}

.header-main .header-inner .navbar-brand {
    width: 20%;
}

.header-main .header-inner .navbar-collapse {
    width: 80%;
    justify-content: end;
}

.navbar-toggler {
    box-shadow: none !important;
}

.navbar-toggler[aria-expanded="true"] {
    border-color: #1D3557 !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e") !important;
}

/* .header-main .header-inner .navbar-nav {
    margin: 0 auto;
} */

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.about-page .hero-section {
    padding-bottom: 60px;
}

.hero-section .banner-content {
    padding-top: 55px;
}

.hero-section .row {
    min-height: 535px;
}

.banner-content .mini-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 30px;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px;
}

.banner-content h1 span {
    background-color: #1D3557;
    color: #fff;
    /* padding: 0 10px; */
    display: inline;
    line-height: 85px;
}

.banner-right-image {
    position: absolute;
    right: 0;
    width: 50%;
}

.banner-right-image .inner-image {
    position: relative;
    clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 13.54% 99.25%);
}

.banner-right-image .inner-image img,
.banner-left-image .inner-image img {
    max-height: 535px;
    min-height: 535px;
    width: 100%;
}

.banner-right-image .inner-image::before {
    content: '';
    position: absolute;
    left: 12%;
    bottom: 1px;
    height: 80px;
    width: 80px;
    background: #fff;
    clip-path: path("M0 0H79.9695V76.3123C80.0103 77.5714 80.0101 78.8022 79.9695 80V76.3123C79.0054 46.5602 55.1443 0.959397 0 0Z");
    transform: rotate(176deg);
}

.banner-left-image {
    position: absolute;
    left: 0;
    width: 50%;
}

.banner-left-image .inner-image {
    position: relative;
    clip-path: polygon(0px 0px, 98.48% 0.00%, 75% 100%, 0% 100%);
}

.banner-left-image .inner-image::before {
    content: '';
    position: absolute;
    right: 22.5%;
    bottom: -3px;
    height: 80px;
    width: 80px;
    background: #fff;
    clip-path: path("M0 0H79.9695V76.3123C80.0103 77.5714 80.0101 78.8022 79.9695 80V76.3123C79.0054 46.5602 55.1443 0.959397 0 0Z");
    transform: rotate(95deg);
}

.service-box {
    padding: 12px;
    border: solid 1px #0000000D;
    border-radius: 16px;
    box-shadow: 0px 54.48px 64.09px 0px #CDCDCD29;
    height: 100%;
}

.service-box:hover {
    border-color: #1D3557;
    transform: scale(1.02);
}

.service-box .learn-more {
    color: #1D3557;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
}

.service-box .learn-more:hover img {
    transform: rotate(45deg);
}

.service-box .learn-more img {
    margin-left: 5px;
}

.service-box .img-box {
    margin-top: 20px;
}

.service-box .text-box {
    padding: 12px;
}

.service-box .img-box img {
    min-height: 190px;
    max-height: 190px;
    border-radius: 16px;
    width: 100%;
}

.service-box .text-box h4 {
    margin-bottom: 10px;
    line-height: 30px;
}

.experience-section .full-container {
    width: 100%;
    max-width: 2000px;
    padding: 0;
}

.experience-section .exp-box {
    position: relative;

}

.experience-section .exp-box .text-box {
    position: absolute;
    inset: 0;
    background-color: #000000CC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.experience-section .exp-box .text-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.experience-section .exp-box .text-box h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}

.experience-section .box-row {
    margin: 0;
}

.experience-section .box-row>div {
    padding: 0;
}

.choose-box {
    padding: 24px;
    box-shadow: 0px 54.48px 64.09px 0px #CDCDCD29;
    border: solid 1px #0000000D;
    border-radius: 24px;
    height: 100%;
}

.choose-box .icon {
    margin-bottom: 16px;
}

.choose-box:hover {
    border-color: #1D3557;
}

.home-page .success-stories-section {
    background-color: #BFC9CA1A;
}

.testi-box {
    box-shadow: 0px 54.48px 64.09px 0px #CDCDCD29;
    border: 1px solid #0000000D;
    border-radius: 24px;
    overflow: hidden;
    background-color: #fff;
}

.testi-box .video-box {
    position: relative;
}

.testi-box .video-box video {
    border-radius: 24px;
    max-width: 100%;
    background-color: #1D3557;
}

.testi-box .video-box:hover .play-btn {
    opacity: 1;
}

.testi-box .video-box .play-btn {
    background-color: #fff;
    width: 72px;
    height: 72px;
    font-size: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #fff;
    border-radius: 50%;
    color: #050B20;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s;
}

.testi-box .text-box a {
    color: #1D3557;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    padding: 24px;
    background-color: #fff;
}

footer {
    background-color: #1D3557;
}

footer .footer-top {
    background-color: #1D3557;
    padding: 60px 0;
    color: #fff;
}

.footer-bottom .main-row {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
    margin: 0;
    justify-content: space-between;
}

.footer-bottom .main-row>* {
    padding-left: 0;
    padding-right: 0;
}

.footer-bottom .copyright-links {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;
}

.footer-bottom .copyright-text,
.footer-bottom .copyright-links a {
    color: #212121;
    font-weight: 500;
}

.footer-bottom .copyright-links a:hover {
    color: #1D3557;
}

.footer-social {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: solid 1px #fff;
    border-radius: 50%;
}

.footer-social li a:hover {
    background-color: #1D3557 !important;
}

.footer-social li a img {
    transition: none !important;
}

.footer-social li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(121deg) brightness(106%) contrast(101%);
}

.footer-top .col-logo-div,
.footer-top .col-news-div {
    width: 27.5%;
}

.footer-top .col-links-div {
    width: 15%;
}

.footer-top .col-news-div h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-top .col-links-div h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-top .col-links-div .inner-div ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 0;
}

.footer-top .col-logo-div .footer-logo {
    margin-bottom: 12px;
}

.footer-top .col-logo-div p {
    margin-bottom: 32px;
}

.footer-top .col-logo-div h6 {
    margin-bottom: 16px;
}

.footer-top .col-news-div .news-form-row {
    margin-top: 32px;
}

.footer-top .news-form-row {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-top .news-form-row button {
    background-color: #fff;
    border: solid 2px #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    min-width: 56px;
    transition: all 0.3s;
}

.footer-top .news-form-row button:hover {
    background-color: #1D3557;
    color: #fff;
}

.footer-top .news-form-row .form-control {
    padding: 14px 24px;
    border-radius: 32px;
    background-color: #fff;
    color: #1D3557B2;
}

.footer-top .news-form-row .form-control::placeholder {
    color: #1D3557B2;
}

.how-works-section .work-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 24px;
    min-height: 450px;
    padding: 24px 0;
    overflow: hidden;
    margin-right: -30px !important;
    padding-right: 30px !important;
}

.how-works-section .col-work-box {
    width: 220px;
    height: 220px;
}

.how-works-section .work-outer-box {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #666666;
    border-radius: 50%;
    background: radial-gradient(35.36% 35.35% at 50% 50%, #000000 19.6%, #F2F2F2 98.4%);
}

.how-works-section .col-work-box .arrow-img {
    position: absolute;
    top: -16px;
    right: -16px;
}

.how-works-section .works-box {
    background-color: #fff;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 16px 16px;
    align-items: center;
    justify-content: center;
}

.how-works-section .works-box img {
    max-width: 42px;
    margin: 0 auto 10px auto;
}

.how-works-section .works-box h6 {
    font-size: 18px;
}

.how-works-section .works-box p {
    font-size: 14px;
    line-height: 1.2;
}

.how-works-section .col-work-box:nth-child(odd) {
    margin-top: auto;
}

.how-works-section .col-work-box:nth-child(even) {
    margin-bottom: auto;
}

.how-works-section .col-work-box:nth-child(even) .arrow-img {
    top: 16px;
}

.looking-box {
    padding: 40px;
    border-radius: 16px;
    background-color: #1D3557;
    position: relative;
    overflow: hidden;
}

.looking-box h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.looking-box p {
    color: #fff;
    margin-bottom: 40px;
}

.looking-box .img-box {
    text-align: end;
    position: relative;
    z-index: 2;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.looking-box .img-box img {
    max-width: 200px;
}

.looking-box .shape {
    display: inline-block;
    width: 325px;
    height: 325px;
    position: absolute;
    right: -50px;
    bottom: -70px;
    border-radius: 50%;
    background-color: #FFFFFF33;
    z-index: 1;
}

.about-page .contact-section,
.service-page .contact-section {
    background-color: #BFC9CA1A;
}

.contact-row {
    align-items: center;
}

.contact-row .image-box img {
    width: 100%;
    height: 100%;
    max-width: 95%;
    border-radius: 20px;
}

.contact-row .details-box h2 {
    margin-bottom: 40px;
}

.contact-row .details-box p {
    color: #1D3557;
    font-size: 18px;
}

.contact-row .details-box .detail-list {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.contact-row .detail-list li a {
    color: #1D3557;
    padding: 10px 16px;
    border: solid 1px #1D3557;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
}

.contact-row .detail-list li a:hover {
    background-color: #1D3557;
    color: #fff;
}

.contact-row .detail-list li img {
    transform: none !important;
}

.contact-row .detail-list li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%) hue-rotate(70deg) brightness(108%) contrast(108%);
}

.contact-row .details-box .detail-list li a span.icon {
    display: inline-flex;
}

.who-we-are-section .boxes-row {
    align-items: center;
}

.who-we-are-section .img-box {
    padding-left: 20px;
}

.who-we-are-section .img-box img {
    width: 100%;
    border-radius: 20px;
}

.mission-box {
    padding: 40px;
    border: solid 1px #0000000D;
    border-radius: 20px;
    text-align: center;
    background-color: #fff;
}

.mission-box:hover {
    border-color: #1D3557;
}

.mission-box img {
    max-width: 80px;
    margin: 0 auto;
}

.mission-box h2 {
    margin: 32px 0;
}

.page-banner-content {
    padding: 80px 0 50px 0;
    text-align: center;
}

.price-listing {
    list-style: none;
    padding-left: 0;
    margin: 32px 0;
    color: #42526B;
}

.pricing-box {
    border: 1px solid #0000000D;
    padding: 24px;
    border-radius: 16px;
}

.pricing-box.two {
    background-color: #1D3557;
}

.pricing-box.two h3,
.pricing-box.two h2,
.pricing-box.two p,
.pricing-box.two li {
    color: #fff !important;
}

.pricing-box h3 {
    color: #061C3D;
    font-size: 20px;
}

.pricing-box h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.pricing-box h2 span {
    color: #42526B;
    font-size: 16px;
    font-weight: 400;
}

.pricing-box.two h2 span {
    color: #ffffffa6;
}

.pricing-box p {
    font-size: 14px;
    color: #42526B;
    margin-bottom: 32px;
}

.price-listing li {
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding-left: 40px;
    width: 100%;
}

.pricing-box.two .price-listing li::before {
    background-image: url(../images/price-check-color.svg);
}

.price-listing li::before {
    content: '';
    position: absolute;
    background-image: url(../images/price-check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
}

.price-listing li:last-child {
    margin-bottom: 0;
}

.pricing-row {
    margin-bottom: 70px;
    justify-content: center;
    column-gap: 12px;
}

.pricing-box .white-btn {
    color: #1D3557;
}

.price-subline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.price-subline p {
    color: #1D3557;
    font-weight: 700;
}

.faq-section .col-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-section .col-tab ul {
    border: 0 !important;
    padding: 12px 16px;
    background-color: #E9F2FF;
    border-radius: 10px;
}

.faq-section .nav-tabs .nav-link {
    border: 0 !important;
    padding: 12px 32px !important;
    color: #42526B;
    border-radius: 10px !important;
}

.faq-section .nav-item.show .nav-link,
.faq-section .nav-link.active {
    background-color: #1D3557 !important;
    color: #fff !important;
}

.faq-accordion .accordion-item {
    border: 0 !important;
    margin-bottom: 24px;
    background: transparent !important;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header {
    background-color: transparent !important;
}

.faq-accordion .accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B4BBC5'%3e%3cpath d='M8 1a.5.5 0 0 1 .5.5V7.5H14a.5.5 0 0 1 0 1H8.5V14a.5.5 0 0 1-1 0V8.5H2a.5.5 0 0 1 0-1h5.5V1.5A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-transform: rotate(0);
}

.accordion-button:not(.collapsed)::after {
    background-size: 28px;
    background-position: center;
}

.faq-accordion .accordion-button {
    box-shadow: none !important;
    border-radius: 12px !important;
    color: #061C3D;
    font-weight: 500;
    padding: 24px;
    font-size: 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #1D3557 !important;
    border-radius: 12px 12px 0 0 !important;
}

.faq-accordion .accordion-body {
    padding: 18px 24px;
    background-color: #F0F5FF;
    border-radius: 0 0 12px 12px;
    color: #061C3D;
}

.select2-results__option--selectable {
    cursor: pointer;
}

.select2-container span.selection {
    width: 100%;
}

.select2-results__option {
    color: #061C3D;
    padding: 6px 14px;
    font-size: 14px;
}

.select2-container--default .select2-selection--single {
    color: #757575;
    font-size: 14px;
    border: solid 1px #00000026;
    background-position: right 18px center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 400;
    height: 55px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23757575' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: contain;
    background-position: center;
    width: 14px;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #757575;
    line-height: 24px;
    padding-left: 0;
}

.select2-container {
    display: block !important;
    max-width: 100%;
}

.select2-dropdown {
    border: solid 1px #00000026;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1100;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
    scrollbar-width: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #061C3D;
}

.form-row {
    row-gap: 32px;
}

.form-action.text-end {
    display: flex;
    justify-content: end;
}

.form-action.text-center {
    display: flex;
    justify-content: center;
}

.form-group .form-control {
    display: block;
    width: 100%;
    padding: 14px;
    min-height: 55px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #141522;
    background-color: #fff;
    border: 1px solid #00000026;
    border-radius: 10px;
}

.form-group .form-control::placeholder {
    color: #757575;
}

.form-group .form-control:focus,
.select2-dropdown:focus {
    border-color: #061C3D;
}

.form-group label {
    margin-bottom: 16px;
    color: #1D3557;
    font-weight: 700;
    font-size: 16px;
}

.col-map-section iframe {
    border-radius: 10px;
}

.contact-form {
    padding: 32px 24px;
    border-radius: 20px;
    border: solid 1px #0000001A;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-form p {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 24px;
    font-family: var(--sora-font);
}

.get-touch-box {
    padding: 32px 24px;
    border-radius: 20px;
    border: solid 1px #0000001A;
}

.get-touch-box h2 {
    font-size: 24px;
    margin-bottom: 32px;
}

.get-touch-box .info-box {
    margin-bottom: 24px;
}

.get-touch-box .info-box label {
    color: #1D3557;
    font-weight: 700;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.get-touch-box .info-box p,
.get-touch-box .info-box a {
    color: #757575;
    font-size: 14px;
    font-family: var(--sora-font);
    display: block;
}

.get-touch-box .info-box p span {
    width: 100%;
}

.get-touch-box .follow-box .footer-social li a {
    background-color: #F4F4F4;
    border: 0 !important;
}

.service-page-section .img-box {
    padding-right: 20px;
}

.service-page-section .img-box img {
    width: 100%;
    border-radius: 20px;
}

.service-page-section h2 {
    margin-bottom: 24px;
}

.editor-content-section {
    padding-top: 30px;
    padding-bottom: 70px;
}

.editor-content-section .dynamic-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.editor-content-section .dynamic-content p {
    margin-bottom: 40px;
    line-height: 24px;
    font-family: var(--sora-font);
    font-size: 14px;
}

.editor-content-section .dynamic-content ul {
    margin-bottom: 40px;
    padding-left: 20px;
}

.editor-content-section .dynamic-content ul li {
    color: #757575;
    line-height: 24px;
    font-family: var(--sora-font);
    font-size: 14px;
}

.editor-content-section .dynamic-content a {
    font-weight: 700;
    text-decoration: underline;
}

.editor-content-section .dynamic-content a:hover {
    color: #1D3557;
}

.editor-content-section .dynamic-content p:last-child,
.editor-content-section .dynamic-content ul:last-child {
    margin-bottom: 0;
}

/* desktop css end  */

.login-section .row {
    min-height: 100vh;
}

.signup-img {
    position: relative;
}

.signup-img img {
    width: 100%;
    height: 800px;
    min-height: 100vh;
}

.signup-img:before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(29, 53, 87, 0) 0%, rgba(29, 53, 87, 0.92) 100%);
    inset: 0;
    z-index: 1;
}

.signup-right {
    max-width: 60%;
    margin: 0 auto;
}

.signup-content {
    position: absolute;
    z-index: 2;
    left: 70px;
    right: 70px;
    bottom: 70px;
}

.signup-content img {
    height: auto;
    max-width: 250px;
    margin-bottom: 30px;
    min-height: 0;
    display: block !important;
}

.signup-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.signup-content p {
    color: #fff;
}

.signup-right h2 {
    color: #141522;
    font-size: 36px;
    font-weight: 500;
}

.login-tabs {
    background-color: #E9F2FF;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.login-tabs a.active {
    background-color: #1D3557;
    color: #fff;
}

.login-tabs a {
    padding: 12px 32px;
    width: 50%;
    color: #42526B;
    border-radius: 10px;
    text-align: center;
}

.signup-right label {
    color: #141522;
    font-weight: 400;
    margin-bottom: 10px;
}

.signup-right .form-group {
    margin-bottom: 24px;
    position: relative;
}

.signup-right .form-group.pwd {
    position: relative;
    margin-bottom: 14px;
}

.eye-btn {
    color: #1E293B;
    position: absolute;
    top: 50px;
    right: 14px;
}

.signup-right .form-group .forgot-link a {
    color: #525255;
    text-decoration: underline;
}

.signup-right .form-group .forgot-link a:hover {
    color: #1D3557;
}

.optional-div {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.optional-div .border-line {
    height: 1px;
    background-color: #E9E9EA;
    width: 100%;
}

.optional-div .text {
    color: #141522;
    font-size: 14px;
    text-align: center;
    width: 40%;
}

.signup-right .new-account-div {
    color: #141522;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.signup-right .new-account-div a {
    color: #1D3557;
    font-weight: 500;
}

.signup-right .bottom-desc {
    color: #9C9CA4;
    font-size: 12px;
    font-weight: 500;
}

.signup-right .bottom-desc a {
    color: #1D3557;
}

.signup-right .hidden-div {
    display: none;
}

.login-page footer {
    display: none;
}

/* responsive css start  */

@media (max-width: 1400px) {

    .how-works-section .work-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 48px;
        padding-right: 16px !important;
        margin-right: 0 !important;
    }

    .how-works-section .col-work-box {
        width: auto !important;
    }

    .how-works-section .col-work-box:nth-child(4) .work-outer-box,
    .how-works-section .col-work-box:nth-child(5) .work-outer-box,
    .how-works-section .col-work-box:nth-child(6) .work-outer-box {
        margin-left: auto;
    }

    .how-works-section .col-work-box .arrow-img {
        right: -25px;
    }

    .how-works-section .col-work-box:nth-child(1) .arrow-img {
        transform: rotate(50deg);
        top: 0;
    }

    .how-works-section .col-work-box:nth-child(2) .arrow-img {
        transform: rotate(-45deg);
        top: 0 !important;
    }

    .how-works-section .col-work-box:nth-child(3) .arrow-img {
        transform: rotate(45deg);
        top: 0 !important;
    }

    .how-works-section .col-work-box:nth-child(4) .arrow-img {
        transform: rotate(-45deg);
        top: 0 !important;
    }

    .how-works-section .col-work-box:nth-child(5) .arrow-img {
        transform: rotate(45deg);
        top: 0 !important;
    }

    .how-works-section .col-work-box:nth-child(6) .arrow-img {
        transform: rotate(-45deg);
        top: 0 !important;
    }
}

@media (max-width: 992px) {
    .header-main .header-inner .navbar-brand {
        width: auto;
    }

    .header-main .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header-main .header-inner .navbar-collapse {
        position: absolute;
        top: 120px;
        background-color: #fff;
        padding: 16px;
        border: solid 1px #061C3D;
        z-index: 5;
        border-radius: 20px;
        width: auto;
        left: 16px;
        right: 16px;
    }

    .header-btn-main {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding-left: 16px;
        margin: 8px 0;
    }

    .footer-top .col-links-div {
        width: 33.33%;
    }

    .footer-top .col-logo-div,
    .footer-top .col-news-div {
        width: 100%;
    }

    .footer-row {
        row-gap: 24px;
        justify-content: center;
    }

    .footer-bottom .copyright-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .footer-bottom .copyright-text {
        text-align: center;
        margin-bottom: 16px;
    }

    .banner-content h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .banner-right-image,
    .banner-left-image {
        position: static !important;
        width: 100% !important;
    }

    .hero-section .banner-content {
        padding-top: 0;
    }

    .hero-section .col-lg-6:nth-child(2) {
        margin-top: 24px;
    }

    .who-we-are-section .img-box {
        padding: 0;
    }

    .section-heading {
        font-size: 40px;
    }

    .banner-content .mini-heading {
        margin-bottom: 20px;
    }

    .hero-btns {
        margin-top: 30px;
    }

    .p-70,
    .p-60 {
        padding: 40px 0;
    }

    .pricing-row {
        row-gap: 24px;
        margin-bottom: 40px;
    }

    .looking-box h2,
    .looking-box p,
    .looking-box a {
        max-width: 50%;
    }

    .looking-box .img-box {
        width: auto;
        position: absolute;
        right: 40px;
        top: 40px;
    }

    .testi-box .text-box a {
        font-size: 20px;
    }

    .contact-row .details-box h2 {
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .contact-row .details-box .detail-list {
        margin: 20px 0;
        flex-direction: column;
        align-items: start;
        row-gap: 16px;
    }

    .contact-row .image-box img {
        max-width: 100% !important;
    }

    .contact-row .details-box h2 {
        font-size: 30px;
    }

    .page-banner-content {
        padding: 40px 0;
    }

    .signup-img img,
    .signup-img::before {
        display: none;
    }

    .signup-content {
        background-color: #1D3557;
        padding: 30px;
        border-radius: 10px;
        position: static;
        max-width: 60%;
        margin: 24px auto;
    }

    .login-section {
        padding-bottom: 40px;
        padding-top: 16px;
    }
}

@media (max-width: 576px) {

    .editor-content-section {
        padding-top: 0;
        padding-bottom: 30px;
    }

    .section-heading {
        font-size: 30px;
    }

    .hero-section .banner-content {
        padding-top: 30px;
    }

    .banner-content h1 span {
        line-height: 1.5;
    }

    .banner-content h1 {
        font-size: 30px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: start;
    }

    .banner-right-image .inner-image img,
    .banner-left-image .inner-image img {
        max-height: 350px;
        min-height: 350px;
        width: 100%;
    }

    .banner-right-image .inner-image::before {
        left: 11%;
        bottom: 0;
    }

    .banner-left-image .inner-image::before {
        right: 20.5%;
    }

    .experience-section .exp-box img {
        height: 200px;
        width: 100%;
    }

    .head-row.mb-50 {
        margin-bottom: 30px;
    }

    .p-70,
    .p-60 {
        padding: 30px 0;
    }

    .boxes-row.gap-40 {
        row-gap: 24px;
    }

    .how-works-section .work-row {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 90px;
    }

    .how-works-section .work-outer-box {
        margin: 0 auto !important;
    }

    .how-works-section .col-work-box .arrow-img {
        top: 24px !important;
        right: 0 !important;
    }

    .how-works-section .col-work-box:nth-child(1) .arrow-img,
    .how-works-section .col-work-box:nth-child(5) .arrow-img,
    .how-works-section .col-work-box:nth-child(3) .arrow-img {
        transform: rotate(135deg);
        top: 24px !important;
    }

    .how-works-section .col-work-box:nth-child(2) .arrow-img,
    .how-works-section .col-work-box:nth-child(4) .arrow-img,
    .how-works-section .col-work-box:nth-child(6) .arrow-img {
        transform: rotate(45deg);
        top: 24px !important;
    }

    .looking-box .img-box {
        position: static;
        width: 100%;
    }

    .looking-box h2,
    .looking-box p,
    .looking-box a {
        max-width: 100%;
    }

    .looking-box h2 {
        font-size: 24px;
    }

    .looking-box {
        padding: 30px;
    }

    .contact-row {
        row-gap: 24px;
    }

    .header-main .header-inner .navbar-brand,
    .footer-top .col-logo-div .footer-logo {
        max-width: 180px;
    }

    footer .footer-top {
        padding: 30px 0;
    }

    .looking-box .shape {
        width: 225px;
        height: 225px;
    }

    .looking-box .img-box {
        min-height: 0;
    }

    .looking-box .img-box img {
        max-width: 100px;
    }

    .editor-content-section .dynamic-content h2 {
        font-size: 20px;
    }

    .signup-content,
    .signup-right {
        max-width: 100% !important;
        width: 100% !important;
    }

    .login-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .login-section .row>* {
        padding: 0;
    }

    .signup-right h2,
    .signup-content h2 {
        font-size: 24px;
    }

    .login-tabs,
    .optional-div {
        margin: 20px 0;
    }

    .signup-right .new-account-div {
        margin-bottom: 20px;
    }

    .login-tabs a {
        padding: 12px 12px;
    }

    .signup-content img {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .footer-top .col-links-div .inner-div ul {
        row-gap: 10px;
    }

    .footer-top .col-links-div .inner-div ul a {
        line-height: 1;
    }

    .footer-row {
        row-gap: 24px;
        justify-content: start;
    }

    .footer-top .col-links-div {
        width: 50%;
    }

    .testi-box .video-box .play-btn {
        display: block !important;
        opacity: 1 !important;
        width: 30px;
        height: 30px;
        top: 30px;
        left: 30px;
        font-size: 18px;
    }

    .signup-content {
        padding: 20px;
    }

    .signup-right {
        padding: 20px;
        border-radius: 10px;
        border: solid 1px #0000001A;
    }

    .login-tabs {
        padding: 10px;
    }

    .testi-box .video-box video {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .about-page .hero-section {
        padding-bottom: 30px;
    }

    .testi-box .text-box a {
        padding: 16px;
    }

    .mission-box {
        padding: 20px;
    }

    .mission-box h2 {
        margin: 20px 0;
    }

    .price-subline {
        margin-top: 0;
    }
}

/* responsive css end  */