@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

body,
html {
    overflow-x: hidden !important;
    background-color: var(--white);
    font-family: 'Manrope', sans-serif !important;
}

:root {
    /* FONT SIZES  */
    --font-xsm: 12px;
    --font-xs: 14px;
    --font-sm: 16px;
    --font-md: 18px;
    --font-lg: 22px;
    --font-xl: 24px;
    --font-2xl: 30px;
    --font-3xl: 40px;
    --font-4xl: 58px;
    --font-5xl: 204px;
    /* COLORS  */
    --white: #FFFFFF;
    --black: #000000;
    --blue: #437FEC;
    --creame: #f2f2f2;
    --creame2: #e9ecf2;
    --light-blue: #d9e5fb;
    --light-gray: #c4c4c4;
    --dark-gray: #85848b;
    --dim-gray: #64607D;
    --light-blue-color: #F5F8FF;
    --common-gradient-blue: linear-gradient(0deg, #437FEC, #437FEC),
        linear-gradient(221.3deg, #538EF9 6.29%, #2B63C9 94.81%);
}

/* ----------------------------------- ONLY-MEDIA-QUERIES ----------------------------------- */
@media (max-width: 1399.98px) {
    :root {
        --font-4xl: 51px;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --font-sm: 14px;
        --font-md: 16px;
        --font-4xl: 40px;
        --font-5xl: 160px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --font-sm: 15px;
        --font-lg: 20px;
        --font-4xl: 48px;
        --font-5xl: 100px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --font-4xl: 40px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --font-xs: 13px;
        --font-sm: 14px;
        --font-lg: 14px;
        --font-3xl: 28px;
        --font-4xl: 30px;
        --font-5xl: 80px;
    }
}

@media (max-width: 374.98px) {
    :root {
        --font-sm: 12px;
        --font-md: 15px;
        --font-lg: 12px;
        --font-4xl: 24px;
    }
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.font-xsm {
    font-size: var(--font-xsm) !important;
}

.font-xs {
    font-size: var(--font-xs) !important;
}

.font-sm {
    font-size: var(--font-sm) !important;
}

.font-md {
    font-size: var(--font-md) !important;
}

.font-lg {
    font-size: var(--font-lg) !important;
}

.font-xl {
    font-size: var(--font-xl) !important;
}

.font-2xl {
    font-size: var(--font-2xl) !important;
}

.font-3xl {
    font-size: var(--font-3xl) !important;
}

.font-5xl {
    font-size: var(--font-5xl) !important;
}

.color-black {
    color: var(--black) !important;
}

.color-blue {
    color: var(--blue) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-creame {
    color: var(--creame) !important;
}

.color-creame2 {
    color: var(--creame2) !important;
}

.color-darkgray {
    color: var(--dark-gray) !important;
}

.color-dim-gray {
    color: var(--dim-gray) !important;
}

/* ================= COMMON CLASSES ======================= */
.hero-heading {
    font-size: var(--font-4xl);
    font-weight: 800;
}

.heading {
    font-size: var(--font-3xl);
    font-weight: 800;
}

.min-heading {
    font-size: var(--font-2xl);
    font-weight: 700;
}

.sub-heading {
    font-size: var(--font-lg);
    font-weight: 400;
}

.para {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--dim-gray);
}

.cursor-pointer {
    cursor: pointer;
}

.opacity-05 {
    opacity: .5;
}

.space_nowrap {
    white-space: nowrap;
}

.opacity-03 {
    opacity: .3;
}

.opacity-07 {
    opacity: .7;
}

.common-btn {
    font-size: var(--font-md);
    font-weight: 800;
    color: var(--white);
    padding: 11px 31px;
    border: none;
    border-radius: 47px;
    background: var(--common-gradient-blue);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.common-btn:hover,
.common-btn:focus {
    -webkit-box-shadow: inset 0 0 0 2em var(--black);
    box-shadow: inset 0 0 0 2em var(--black);
}

.z-index-0 {
    z-index: 0;
}

.z-index-5 {
    z-index: 5;
}

.z-index-minus-one {
    z-index: -1;
}

/* =============== NAVBAR CSS START ============== */
/* NAVBAR-HOVER */
.navbar-wrapper .nav-items-list a {
    font-size: var(--font-sm);
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    position: relative;
}

.navbar-wrapper .list-unstyled span a:hover {
    color: var(--blue) !important;
}

.navbar-wrapper .list-unstyled span a:hover::after {
    background-color: var(--blue);
}

.navbar-wrapper .nav-items-list a:after {
    background: none repeat scroll 0 0 transparent;
    content: "";
    display: block;
    position: absolute;
    background: var(--blue);
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    border-radius: 8px;
    height: 3px;
    width: 0;
    left: 50%;
    bottom: -4px;
}

.navbar-wrapper .nav-items-list a:hover {
    color: var(--black) !important;
}

.navbar-wrapper .nav-items-list a:hover::after {
    width: 90%;
    left: 4%;
}

.navbar-wrapper {
    background-color: transparent;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navlink-active {
    font-weight: 700 !important;
}

/* NAVBAR-HOVER-END */

.navbar-wrapper .search-icon {
    z-index: 4;
}

.navbar-wrapper .hamburger-menu {
    position: relative;
    width: 29px;
    cursor: pointer;
    height: 25px;
    z-index: 20;
}

.navbar-wrapper .first {
    top: 0;
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .sec {
    top: 11px;
    background: var(--white);
    -webkit-transition: all 0ms 300ms;
    -o-transition: all 0ms 300ms;
    transition: all 0ms 300ms;
}

.navbar-wrapper .third {
    top: 22px;
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--blue);
    border-radius: 10px;
    position: absolute;
    display: inline-block;
    left: 0;
}

.navbar-wrapper .animate .sec {
    opacity: 0;
}

.navbar-wrapper .animate .first {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .animate .third {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .hamburger-menu.animate span {
    background-color: var(--blue);
}

.overlay-btns button:hover {
    background-color: transparent;
    color: var(--white);
}

@media (max-width: 991.98px) {
    #overlay {
        z-index: 20;
    }

    .overlay-links {
        color: hsl(0, 0%, 100%);
        opacity: 1;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: relative;
    }

    .overlay-links::after {
        position: absolute;
        content: "";
        width: 0%;
        height: 3px;
        left: 0;
        bottom: -5px;
        background-color: var(--white);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .overlay-links:hover::after {
        width: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .mobile-view #overlay {
        -webkit-transition: 0.7s ease;
        -o-transition: 0.7s ease;
        transition: 0.7s ease;
        opacity: 1;
        pointer-events: all;
    }

    .mobile-view .mobile-hero-image {
        z-index: -1;
    }

    .mobile-view #overlay .left {
        opacity: 1;
        width: 100%;
        height: 100vh;
    }

    .mobile-view #overlay .left .copyright a {
        font-size: 18px;
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.2s;
        opacity: 0;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left .copyright a:hover {
        text-decoration: none;
    }

    .mobile-view #overlay .left ul li:nth-child(1) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(2) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(3) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(4) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 0.7s;
        animation-delay: 0.7s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(5) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(6) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 1.1s;
        animation-delay: 1.1s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(7) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.2s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li:nth-child(8) {
        -webkit-animation: mymove 0.9s;
        animation: mymove 0.9s;
        -webkit-animation-delay: 1.3s;
        animation-delay: 1.3s;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .mobile-view #overlay .left ul li a {
        font-size: 18px !important;
        color: var(--white);
        text-decoration: none;
    }

    #overlay {
        -webkit-transition: 1s ease !important;
        -o-transition: 1s ease !important;
        transition: 1s ease !important;
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--black);
        width: 100%;
        height: 100vh;
        pointer-events: none;
    }

    .fix-screen-mobile {
        height: 100vh;
        overflow: hidden;
    }

    .hero_mobile_content {
        z-index: -1;
    }
}

@-webkit-keyframes mymove {
    from {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
    }
}

@keyframes mymove {
    from {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
    }
}

.left {
    opacity: 0;
}

.left li {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.left li a {
    font-size: 30px;
    color: var(--white);
    text-decoration: none;
}

@media (min-width: 576px) {
    .left li a {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .mobile-view #overlay .left ul li a {
        font-size: 22px !important;
    }
}

@media (min-width: 991.98px) {
    #overlay {
        display: none;
    }
}

/* --------- HERO SECTION CSS STARTS --------- */
.hero-section {
    background-image: url("../images/png/hero-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    height: 800px;
}

.osj-hero-img {
    top: 0;
    right: 1%;
    max-width: 800px;
}

.ellipse-img-1 {
    top: -30px;
    right: 150px;
}

.ellipse-img2 {
    left: -50px;
    top: 70px;
}

.ellipse-img3 {
    right: -220px;
    top: -20px;
}

.hero_shadow_img {
    width: 102%;
}

/*-------------- OUR CLIENTS CSS START-----------------*/
.clients_circle_img {
    right: 1%;
    top: -40%;
}

.clients_img {
    transition: all 0.3s ease-in-out;
}

.clients_img:hover {
    transform: scale(1.2);
}

/*----------------ROADMAP CSS START-------------------*/
.roadmap_number {
    margin-bottom: -80px;
    margin-top: -200px;
    transition: all 0.3s ease-in-out;
}

.circle_img {
    top: 17%;
}

.half_circle {
    right: 3%;
    bottom: 10%;
}

.triangle_img {
    left: 3%;
    top: 12%;
}

.roadmap_line_img {
    top: 20%;
    left: -1%;
}

.z_indez_1 {
    z-index: 1;
}

.phase_3 {
    margin-left: -55px;
}

.roadmap_fill_box {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    height: 64px;
    width: 64px;
    margin-top: -132px
}

.roadmap_phase .roadmap_number,
.roadmap_phase .fill_box_circle,
.roadmap_phase .small_screen_number {
    transition: all 0.3s ease-in-out;
}

.roadmap_phase:hover .roadmap_number,
.roadmap_phase:hover .small_screen_number {
    color: var(--light-blue) !important;
}

.roadmap_phase:hover .fill_box_circle {
    background-color: #4696ed !important;
}

.box_1 {
    margin-top: 8px !important;
}

.box_3 {
    margin-top: -35px;
}

.fill_box_circle {
    height: 23px;
    width: 23px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.small_screen_box {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    height: 64px;
    width: 64px;
    margin-top: 55px;
}

.roadmap_line {
    background-color: #2b63c9;
    width: 3px;
    height: 700px;
    left: 3%;
    top: 10%;
}

.small_screen_number {
    margin-bottom: -40px;
    transition: all 0.3s ease-in-out;
}

.small_screen_number:hover {
    color: var(--light-blue) !important;
}

/* --------- SERVICE SECTION CSS STARTS --------- */
.bg-service::after {
    background-color: var(--light-blue-color);
    content: "";
    display: block;
    min-height: 64vh;
    width: 100%;
    position: absolute;
}

.service_card {
    background-color: var(--white);
    border-radius: 5px;
    filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.09));
    padding: 16px 10px 16px 16px;
    border: 2px solid var(--white);
    transition: all 0.3s ease-in-out;
}

.service_btn {
    color: #457fe8;
    background-color: var(--white);
    border-radius: 51px;
    border: 1px solid #4983ec;
    padding: 11px 0px;
    width: 100%;
}

.advanced-cardbtn {
    color: #457fe8;
    background-color: var(--white);
    border-radius: 51px;
    border: 1px solid #4983ec;
    padding: 11px 0px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(221.3deg, #538EF9 6.29%, #2B63C9 94.81%), #FFFFFF;
    color: var(--white);
}

.service_card:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2)
}

.service_card_text {
    min-height: 100px;
}

.service_card_min_height {
    min-height: 320px;
}

.service_tick_img {
    width: 20px;
    height: 20px;
}

/*---------------ABOUT CSS START---------------*/
.cross_img {
    left: 3%;
    top: -20%;
}

/*-----------------FAQ CSS START-----------------*/
.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px !important;
    padding: 20px 25px;
    transition: all .4s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 0px 20px 20px 25px;
}

.accordion-button:focus {
    border-color: var(--black) !important;
    box-shadow: none !important;
}

.accordion-item {
    margin-bottom: 10px;
    background: var(--white);
    border: 1px solid #91B8FD !important;
    border-radius: 5px !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/svg/faq/close.svg");
    background-repeat: no-repeat;
    transform: none !important;
}

.accordion-button::after {
    background-image: url("../images/svg/faq/opn-icon.svg");
    background-repeat: no-repeat;
    /* background-size: 14px !important; */
    margin-top: 10px;
}

.small_circle_img {
    right: 3%;
    top: 15%;
}

.big_circle_img {
    top: -15%;
}

.faq_sec {
    min-height: 1035px;
}

/* --------- CONTACT US SECTION CSS STARTS --------- */
.contact-form {
    box-shadow: 0px -11px 53px 0px #0000000F;
    border-radius: 16px;
    padding: 40px;
    transform: translateY(-400px);
    margin-bottom: -360px;
}

.contact_us_icons {
    width: 43.65px;
    height: 43.65px;
    background-color: var(--light-blue-color);
    border-radius: 50%;
}

.contact_us_icons svg path {
    transition: all .3s ease-in-out;
}

.contact_us_icons svg:hover .path-1 {
    fill: var(--blue);
}

.contact_us_icons svg:hover .path-2 {
    fill: #ECF2FD;
}

.form-contact-us input:focus-visible,
.form-contact-us textarea:focus-visible {
    outline: #437FECBD auto 1px;
}

.form-contact-us input,
.form-contact-us textarea {
    border: 1px solid #00000024;
    border-radius: 1px;
    min-height: 35px;
}

.form-contact-us textarea {
    max-height: 74px;
    resize: none;
}

.contact_img {
    top: -130%;
}

/*-----------------FOOTER CSS START-------------------*/
.footer_bg {
    background-image: url("../images/png/footer-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.border_bottom {
    opacity: 0.2;
    border-bottom: 1px solid var(--white);
}

.footer_items:hover {
    opacity: 1 !important;
}

.social_icon svg {
    transition: all .3s ease-in-out;
}

.social_icon:hover svg {
    transform: scale(1.45);
}

/* ========== PRELOADER CSS =========== */
#loading {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    background: var(--white);
    z-index: 100;
    overflow-x: hidden !important;
    z-index: 22;
}

.loading-img {
    min-height: 100vh;
}

#loading img {
    max-width: 180px;
    -webkit-animation: loader-animation 2s ease infinite;
    animation: loader-animation 2s ease infinite;
}

.transition-03sEase {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hide-down-arrow {
    opacity: 0;
}

@-webkit-keyframes loader-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes loader-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* BACK TO TOP  */
#scroll {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 21;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
    box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
    text-indent: -9999px;
    display: none;
    border-radius: 60px;
    background-color: var(--black);
    background-image: url("../images/svg/up-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-animation: moves 3s ease-in-out infinite;
    animation: moves 3s ease-in-out infinite;
}

#scroll:hover {
    -webkit-box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes moves {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes moves {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*CUSTOM HEIGHT ON IMAGES CLASSES START-------------*/
.h-512 {
    height: 512px;
}

.clients_jimijames {
    height: 59px;
    width: 334px;
}

.clients_koinpac {
    width: 80px;
    height: 80px;
}

.clients_sr {
    width: 240px;
    height: 59px;
}

.clients_dkk {
    width: 130px;
    height: 80px;
}

.about-cross-img {
    width: 75px;
    height: 75px;
}

.footer_logo {
    width: 106px;
    height: 101px;
}

.logo-img {
    width: 80px;
    height: 66px;
}

.triangle_w_h {
    width: 53px;
    height: 61px;
}

.roadmap_blue_icon {
    width: 66px;
    height: 66px;
}

.service_tag_img {
    width: 93px;
    height: 82px;
}

/*--------------ALL MEDIA QUERIES START--------------*/
@media (min-width: 1400px) and (max-width: 1499.98px) {
    .custom-container {
        max-width: 1210px !important;
    }

    /* .osj-hero-img {
        max-width: 600px;
    } */
}

@media (max-width: 1399.98px) {
    /* .hero-section {
        height: 954px;
    } */

    /* 
    .osj-hero-img {
        max-width: 650px;
    } */

    .hero_shadow_img {
        display: none;
    }
}

@media (min-width:1200px) and (max-width:1399.98px) {
    .roadmap_fill_box {
        margin-top: -149px;
    }

    .box_3 {
        margin-top: -10px;
    }

    .box_1 {
        margin-top: -18px !important;
    }
}

@media (max-width: 1199.98px) {
    .hero-section {
        height: 675px;
        min-height: 75vh;
    }

    .osj-hero-img {
        max-width: 550px;
    }

    .ellipse-img2 {
        left: -20px;
    }

    .ellipse-img3 {
        right: -170px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        background-image: none;
        height: unset;
        min-height: 100%;
        background-color: var(--light-blue-color);
    }

    .clients_circle_img {
        display: none;
    }

    .ellipse-img3 {
        right: 0px;
    }

    .roadmap_line {
        left: 4%;
        top: 10%;
    }
}

@media (max-width:767.98px) {
    .roadmap_line {
        left: 6%;
    }
}

@media (max-width: 575.98px) {
    .common-btn {
        padding: 6px 24px;
    }

    .logo-img {
        max-width: 70px;
    }

    .contact-form {
        padding: 30px 10px;
        margin-bottom: -430px !important;
    }

    .form-contact-us input,
    .form-contact-us textarea {
        min-height: 25px;
    }

    #scroll {
        width: 45px;
        height: 45px;
        background-size: 25px;
    }

    #loading img {
        max-width: 90px;
    }

    .half_circle img {
        max-width: 50px;
    }

    .accordion-button {
        padding: 12px !important;
    }

    .accordion-body {
        padding: 0px 20px 20px 12px !important;
    }

    .accordion-button::after {
        background-size: 14px !important;
        margin-top: 0px;
    }

    .ellipse-img2 {
        left: 0px;
    }

    .ellipse-img3 {
        right: 20px;
    }

    .small_screen_box {
        padding: 18px;
        width: 50px;
        height: 50px;
    }

    .fill_box_circle {
        height: 15px;
        width: 15px;
    }

    .roadmap_line {
        height: 570px !important;
        left: 5% !important;
        top: 13% !important;
    }

    .faq_sec {
        min-height: 900px !important;
    }

    .service_card {
        max-width: 350px;
        margin: auto;
    }

    .clients_jimijames {
        width: 275px;
    }
}

@media (max-width:429.98px) {
    .roadmap_line {
        left: 6% !important;
    }

    .faq_sec {
        min-height: 980px !important;
    }

    #scroll {
        bottom: 58px;
    }
}

@media (min-width: 1600px) {
    :root {
        --font-sm: 18px;
        --font-4xl: 62px;
    }

    .hero-section {
        height: 1124px;
    }

    .osj-hero-img {
        max-width: 100%;
    }
}