:root {
    --body-color: #fff;
    --default-color: #0044eb;
    --primary-color: #0044eb;
    --bg-color2: #E2E7FF;
    --body-color: #fff;
    --body-text-color: #5C6671;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--body-text-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: inherit;
    transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #001F3F;
}

.color-default {
    color: var(--default-color);
}

@media (max-width: 479px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

h1 {
    font-size: 75px;
    line-height: 90px;
}

h2 {
    font-size: 48px;
    line-height: 67px;
}

@media (max-width: 991px) {
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 30px;
        line-height: 41px;
    }
}

h3 {
    font-size: 36px;
    line-height: 50px;
}

@media (max-width: 991px) {
    h3 {
        font-size: 28px;
        line-height: 34px;
    }
}

h4 {
    font-size: 24px;
    line-height: 33px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 16px;
    line-height: 22px;
}

@media (max-width: 991px) {
    p {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

@media (max-width: 991px) {
    ul li {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 991px) {
    ol li {
        font-size: 16px;
        line-height: 25px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1425px;
    }
}

.ps-lg-120 {
    padding-left: 120px;
}

@media (max-width: 991px) {
    .ps-lg-120 {
        padding-left: 0;
    }
}

.pe-lg-120 {
    padding-right: 120px;
}

@media (max-width: 991px) {
    .pe-lg-120 {
        padding-right: 0;
    }
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-40 {
    --bs-gutter-y: 40px;
}

.gutter-y-50 {
    --bs-gutter-y: 50px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.gutter-y-70 {
    --bs-gutter-y: 70px;
}

@media (max-width: 991px) {
    .gutter-y-50 {
        --bs-gutter-y: 30px;
    }
    .gutter-y-60 {
        --bs-gutter-y: 32px;
    }
    .gutter-y-70 {
        --bs-gutter-y: 40px;
    }
}

.syntixus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    width: fit-content;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    height: 51px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    padding: 12px 39px;
    border: 2px solid transparent;
}

.syntixus-btn:hover {
    color: #fff;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.syntixus-btn-light {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    width: fit-content;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    height: 50px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    padding: 12px 39px;
    border: 2px solid transparent;
}

.syntixus-btn-light:hover {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .syntixus-btn {
        font-size: 16px;
        line-height: 1;
        padding: 12px 31px;
        height: 46px;
    }
    .syntixus-btn-light {
        font-size: 16px;
        line-height: 1;
        padding: 12px 31px;
        height: 46px;
    }
}

.outline-btn {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    height: auto;
    padding-top: 19px;
    padding-bottom: 19px;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.outline-btn>svg {
    margin-left: 10px;
}

.sec-title {
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .sec-title {
        margin-bottom: 40px;
    }
}

.sec-title__tagline {
    background-color: var(--bg-color2);
    position: relative;
    padding: 11px 40px;
    border-radius: 40px;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    display: inline-block;
}

@media (max-width: 991px) {
    .sec-title__tagline {
        padding: 8px 26px;
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 19px;
    }
}

.sec-title__title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 0;
}

.sec-title__title:hover>span {
    background-size: 100% 18px;
}

.sec-title__title>span {
    position: relative;
    background-image: linear-gradient(120deg, var(--star-color, #c6d6ff) 100%, var(--star-color, #c6d6ff) 100%);
    background-size: 100% 12px;
    background-repeat: no-repeat;
    background-position: left 0 bottom 6px;
    transition: all 0.6s ease;
}

@media (max-width: 991px) {
    .sec-title__title {
        font-size: 40px;
        line-height: 50px;
    }
    .sec-title__title>br {
        display: none;
    }
}

@media (max-width: 600px) {
    .sec-title__title {
        font-size: 30px;
        line-height: 41px;
    }
}

.sec-title__text {
    color: var(--body-text-color, #5C6671);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .sec-title__text {
        font-size: 16px;
        line-height: 25px;
    }
}

.btn-body-color {
    background-color: var(--body-color, #fff);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-body-color:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.btn-radius {
    border-radius: 40px;
}

.footer-pt200 {
    padding-top: 180px !important;
}

.mb-n170 {
    margin-bottom: -168px;
}

.sticky-elements {
    position: sticky;
    top: 150px;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.star-icon {
    color: var(--star-color, #0044eb);
    font-size: 20px;
    letter-spacing: 4px;
}

.reset-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-circle li {
    padding-left: 38px;
    padding-bottom: 15px;
    position: relative;
}

.check-circle li::before {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 2px;
    left: 0;
    z-index: 1;
    background-image: url("../image/blue-tick-icon-01.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px auto;
}

.check-circle li+li {
    margin-top: 15px;
}

.quick-message {
    width: 300px;
    height: auto;
    left: 0;
    transform: translateX(-104%);
    opacity: 0;
    transition: transform 500ms ease, opacity 500ms ease;
    background-color: var(--body-color, #fff);
    border-radius: 12px;
    padding: 22px;
    padding-top: 18px;
    -webkit-box-shadow: 0px 0px 8px -1px rgba(var(--bg-color-rgb, 0, 31, 63), 0.2);
    -moz-box-shadow: 0px 0px 8px -1px rgba(var(--bg-color-rgb, 0, 31, 63), 0.2);
    box-shadow: 0px 0px 8px -1px rgba(var(--bg-color-rgb, 0, 31, 63), 0.2);
}

.quick-message.open {
    opacity: 1;
    transform: translateX(0);
}

.quick-message .form-control {
    border-width: 2px;
    border-color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.6);
    background-color: var(--body-color, #fff);
    color: var(--primary-text-color, #001F3F);
}

.quick-message .form-control.text-area {
    min-height: 80px;
}

.quick-message .form-control:is(:focus,
 :focus-visible) {
    background-color: var(--body-color, #fff);
    color: var(--primary-text-color, #001F3F);
    border-color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.6);
    box-shadow: initial;
}

.quick-message .form-control::-webkit-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .form-control:-moz-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .form-control::-moz-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .form-control:-ms-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .form-control::-ms-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .form-control::placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.quick-message .msg-cross {
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.quick-message .footer__socialwrap {
    gap: 14px;
}

.quick-message .footer__socialwrap li {
    font-size: 18px;
    color: var(--body-text-color, #5C6671);
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}


/*---owl carousel custom css---*/

.syntixuss-owl__carousel-shadow .owl-stage-outer {
    overflow: visible;
}

.syntixuss-owl__carousel-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.syntixuss-owl__carousel-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-stage {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.owl-dots.disabled,
.owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: absolute;
    width: 100%;
    max-width: 620px;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owl-nav>button {
    width: 38px;
    height: 38px;
    border: 3px solid #001F3F !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    color: #001F3F !important;
    opacity: 0.5;
    transition: all 0.5s ease;
    position: relative;
}

.owl-nav>button::after {
    content: "";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav>button:hover {
    opacity: 1;
}

.owl-nav>.owl-prev::after {
    content: "";
    background: url(../image/angle-right-solid.svg);
    background-size: 100% 100%;
    width: 12px;
    rotate: 181deg;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
}

.owl-nav>.owl-next::after {
    content: "";
    background: url(../image/angle-right-solid.svg);
    background-size: 100% 100%;
    width: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(var(--body-color-rgb, 255, 255, 255), 0.4) !important;
    display: block !important;
}

.owl-dots .owl-dot.active {
    background-color: var(--body-color, #fff) !important;
}

.owl-dots .owl-dot+.owl-dot {
    margin-left: 10px;
}


/* ===================================
        form css
====================================== */

.form-row {
    margin: 0 -11px;
}

.form-group {
    padding: 0 11px;
    margin-bottom: 13px;
}

@media (max-width: 576px) {
    .form-group {
        width: 100%;
    }
}

.attr-remove,
.form-control {
    height: 50px;
    border: 1px solid var(--bg-color2, #E2E7FF);
    background-color: var(--primary-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--body-color, #fff);
    border-radius: 8px;
    padding-left: 23px;
    padding-right: 15px;
}

@media (max-width: 576px) {
    .attr-remove,
    .form-control {
        width: 100%;
    }
}

.attr-remove:is(:focus,
 :focus-visible),
.form-control:is(:focus,
 :focus-visible) {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
    border-color: var(--bg-color2, #E2E7FF);
    box-shadow: initial;
}

.attr-remove.text-area,
.form-control.text-area {
    resize: none;
    min-height: 134px;
}

.custom-select {
    position: relative;
}

.custom-select>.form-control {
    margin-bottom: 0;
}

.attr-remove,
.custom_selected {
    position: relative;
    z-index: 2;
    color: var(--body-color, #fff);
    margin-bottom: 0;
    padding-right: 42px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.attr-remove::after,
.custom_selected::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-image: url("../images/shapes/select-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px auto;
    filter: brightness(0) invert(1);
}

.custom_select_opt_wrap {
    position: absolute;
    width: 100%;
    top: 100%;
    height: auto;
    background-color: var(--body-color, #fff);
    display: none;
    z-index: 3;
    margin-top: -5px;
    border-radius: 0 0 8px 8px;
    padding-top: 20px;
    overflow: hidden;
}

.custom_select_opt_wrap .custom_select_opt {
    margin-bottom: 0px;
    height: initial;
    border: 0;
    background-color: transparent;
    color: var(--primary-text-color, #001F3F);
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 0;
}

.custom_select_opt_wrap .custom_select_opt:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.custom_select_opt_wrap [data-select=selected] {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.form-control::-webkit-input-placeholder {
    color: var(--body-color, #fff);
}

.form-control:-moz-placeholder {
    color: var(--body-color, #fff);
}

.form-control::-moz-placeholder {
    color: var(--body-color, #fff);
}

.form-control:-ms-input-placeholder {
    color: var(--body-color, #fff);
}

.form-control::-ms-input-placeholder {
    color: var(--body-color, #fff);
}

.form-control::placeholder {
    color: var(--body-color, #fff);
}

.form-btn {
    border-width: 1px;
    border-color: var(--body-color, #fff);
    border-radius: 8px;
    padding-left: 34px;
    padding-right: 34px;
    margin-left: auto;
    margin-top: 18px;
}

.form-btn:hover {
    border-width: 1px;
    background-color: var(--body-color, #fff);
    color: var(--primary-color);
}

input[type=time]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1);
}

.modal-dialog {
    max-width: 700px;
}

.modal-dialog .form-check-input:focus {
    box-shadow: initial;
}

[data-bs-theme=dark] input[type=time]::-webkit-calendar-picker-indicator {
    filter: brightness(1) invert(1);
}

[data-bs-theme=dark] .modal-body .form-control {
    background-color: var(--primary-text-color, #001F3F);
}


/* ===================================
        header css
====================================== */

.section-header {
    position: relative;
    z-index: 99;
    transition: top 0.8s ease-in-out;
}

.section-header.header-sticky-cloned {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    top: 0;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.5s ease, visibility 0.5s ease, opacity 0.5s ease;
}

.section-header.header-sticky-cloned.sticky-active {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.section-header.header-sticky-cloned.sticky-active .container-fluid {
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .section-header.header-sticky-cloned.sticky-active .container-fluid {
        margin-top: 20px;
    }
}

.section-header--two.one-page-scroll-header.sticky-active,
.section-header--three.one-page-scroll-header.sticky-active,
.section-header--smooth.one-page-scroll-header.sticky-active {
    box-shadow: 0px 14px 21px 0px rgba(58, 66, 89, 0.05);
}

.section-header.one-page-scroll-header {
    transition: all 0.5s ease;
}

.section-header.one-page-scroll-header.sticky-active {
    position: fixed;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    animation: fadeInDown 0.5s;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.section-header .container-fluid {
    max-width: 1680px;
    margin-top: 51px;
}

@media (max-width: 1200px) {
    .section-header .container-fluid {
        margin-top: 20px;
    }
}

.section-header__inner {
    background-color: var(--body-color, #fff);
    -webkit-filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
    position: relative;
}

@media (max-width: 1200px) {
    .section-header__inner {
        padding: 15px 20px;
        border-radius: 12px;
    }
}

.list-off-menu {
    margin: 15px 10px;
    position: relative;
    padding-left: 15px;
}

.section-header__row {
    position: relative;
}

.section-header__dskmenu {
    width: 40px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 !important;
    margin: auto 0;
}

.section-header__dskmenu__bar {
    width: 100%;
    height: 4px;
    background-color: var(--body-color, #fff);
    border-radius: 8px;
}

.section-header__dskmenu__bar:nth-child(2) {
    width: 20px;
}

.section-header__dskmenu__bar+.section-header__dskmenu__bar {
    margin-top: 6px;
}

.section-header__dskmenu--two {
    align-items: flex-end;
    margin-left: 30px !important;
}

.section-header__dskmenu--two .section-header__dskmenu__bar {
    background-color: var(--bg-color, #001F3F);
}

.section-header__logo {
    width: 302px;
    padding-left: 18px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .section-header__logo {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .section-header__logo {
        width: 200px;
    }
}

@media (max-width: 520px) {
    .section-header__logo {
        width: 140px;
    }
}

.section-header__logo-inner {
    width: 100%;
}

.section-header__logo-inner img {
    width: auto !important;
}

.section-header__main-menu {
    margin-left: auto;
    margin-right: 0;
    padding-left: 20px;
}

@media (max-width: 1200px) {
    .section-header__main-menu {
        display: none;
    }
}

.section-header__main-menu>ul>li {
    color: #001F3F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 28px;
    position: relative;
    padding: 40.5px 0;
}

@media (max-width: 1280px) {
    .section-header__main-menu>ul>li {
        font-size: 16px;
    }
}

.section-header__main-menu>ul>li.dropdown-arrow>a {
    padding-right: 20px;
}

.section-header__main-menu>ul>li.dropdown-arrow>a::before {
    font-family: "Font Awesome 6 Free";
    content: "\f107";
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    font-weight: 600;
    margin: auto 0;
    display: flex;
    align-items: center;
    transform: scaleY(1);
    transition: all 0.3s ease-in-out;
}

.section-header__main-menu>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 10px;
    min-width: 260px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 400ms ease, visibility 400ms ease, transform 400ms ease;
    z-index: 99;
    background-color: var(--body-color, #fff);
    box-shadow: 0px 10px 18px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.2);
    border-radius: 15px;
    padding: 15px 0 18px 0;
}

.section-header__main-menu>ul>li>ul>li {
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    position: relative;
    color: var(--body-text-color, #5C6671);
}

.section-header__main-menu>ul>li>ul>li:hover {
    color: var(--primary-text-color, #001F3F);
}

.section-header__main-menu>ul>li>ul>li::before {
    position: absolute;
    content: "";
    left: 30px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 2px;
    border-radius: 5px;
    margin: auto 0;
    background-color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.section-header__main-menu>ul>li>ul>li.dropdown-arrow>a::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 0;
    right: 14px;
    bottom: 0;
    z-index: 1;
    margin: auto 0;
    opacity: 0.6;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
    background-image: url("../images/shapes/select-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 13px auto;
}

.section-header__main-menu>ul>li>ul>li.dropdown-arrow:hover>a::before {
    transform: rotate(-90deg);
    opacity: 0.8;
}

.section-header__main-menu>ul>li>ul>li>a {
    color: inherit;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px 16px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.section-header__main-menu>ul>li>ul>li .special-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--body-color, #fff);
    border-radius: 4px;
    padding: 3px 8px;
    margin-left: 14px;
}

.section-header__main-menu>ul>li>ul>li .special-item.jobs {
    background-color: var(--bg-color-green, #32A552);
}

.section-header__main-menu>ul>li>ul>li .special-item.hot {
    background-color: var(--bg-color-red, #FE2E2E);
}

.section-header__main-menu>ul>li>ul>li:hover::before {
    opacity: 1;
    visibility: visible;
}

.section-header__main-menu>ul>li>ul>li:hover>a {
    padding-left: 46px;
}

.section-header__main-menu>ul>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.section-header__main-menu>ul>li>ul>li>ul {
    background: var(--body-color, #fff);
    position: absolute;
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    border-radius: 15px;
    height: auto;
    top: 0;
    left: 102%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-40px);
    transition: all 0.4s ease;
    padding: 15px 15px 20px 20px;
    box-shadow: 0px 10px 18px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.2);
}

.section-header__main-menu>ul>li>ul>li>ul::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    left: -4px;
}

.section-header__main-menu>ul>li>ul>li>ul>li {
    position: relative;
}

.section-header__main-menu>ul>li>ul>li>ul>li::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 2px;
    border-radius: 5px;
    margin: auto 0;
    background-color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.section-header__main-menu>ul>li>ul>li>ul>li:hover::before {
    opacity: 1;
    visibility: visible;
}

.section-header__main-menu>ul>li>ul>li>ul>li:hover>a {
    padding-left: 18px;
}

.section-header__main-menu>ul>li>ul>li>ul>li+li {
    margin-top: 6px;
}

.section-header__main-menu>ul>li>ul>li>ul>li a {
    position: relative;
}

.section-header__main-menu>ul>li>a {
    color: inherit;
    font-size: 20px;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 4px;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.section-header__main-menu>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.section-header__main-menu>ul>li:hover>a {
    color: var(--primary-color);
}

.section-header__main-menu>ul>li:hover>a::after {
    max-width: 100%;
    opacity: 1;
    visibility: visible;
}

.section-header__main-menu>ul>li:hover>a::before {
    transform: scaleY(-1);
}

.section-header__main-menu>ul>li:first-child>ul {
    left: -40px;
}

.section-header__main-menu>ul>li.megamenu {
    position: static;
}

.section-header__main-menu>ul>li.megamenu>ul {
    padding: 0;
    width: 100%;
    left: 0;
    box-shadow: 0px 4px 30px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
    border-radius: 15px;
}

.section-header__main-menu>ul>li.megamenu>ul>li:hover {
    background-color: transparent;
}

.section-header__main-menu>ul>li.megamenu>ul>li::before {
    content: none;
}

.section-header__main-menu>ul>li+li {
    padding-left: 50px;
}

@media (max-width: 1280px) {
    .section-header__main-menu>ul>li+li {
        padding-left: 35px;
    }
}

.section-header__right {
    margin-left: auto;
    margin-right: 0;
    padding-left: 58px;
}

@media (max-width: 1280px) {
    .section-header__right {
        padding-left: 20px;
    }
}

@media (max-width: 1200px) {
    .section-header__right {
        display: none;
    }
}

.section-header__right__telicon {
    font-size: 42px;
    line-height: 1;
    color: var(--body-color, #fff);
    width: 46px;
}

.section-header__right__telicon svg {
    fill: currentColor;
}

@media (max-width: 1280px) {
    .section-header__right__telicon {
        width: 42px;
    }
}

.section-header__right__telicon img {
    width: 100% !important;
}

.section-header__right__callsupport {
    padding-left: 22px;
}

@media (max-width: 1280px) {
    .section-header__right__callsupport {
        padding-left: 16px;
    }
}

.section-header__right__calltext {
    color: var(--body-color, #fff);
    font-size: 18px;
    line-height: 28px;
}

.section-header__right__callnumber {
    color: var(--body-color, #fff);
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
}

.section-header__right__callnumber a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-header__right__callnumber a:hover {
    background-size: 100% 1px;
}

.section-header__right-bg {
    background-color: var(--primary-color);
    height: 100%;
    border-radius: 0px 20px 20px 0px;
    padding: 20px 17px 18px 18px;
}

.section-header--two {
    box-shadow: 0px 14px 21px 0px rgba(58, 66, 89, 0.05);
    background-color: var(--body-color, #fff);
}

.section-header--two.header-sticky-cloned.sticky-active .container-fluid {
    margin-top: 2px;
}

.section-header--two .container-fluid {
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .section-header--two .container-fluid {
        margin-top: 0;
    }
}

.section-header--two .section-header__inner {
    padding-left: 0;
    box-shadow: initial;
    filter: initial;
    border-radius: 0;
}

@media (max-width: 1200px) {
    .section-header--two .section-header__inner {
        padding-right: 0;
    }
}

.section-header--two .section-header__logo {
    padding-left: 0;
}

.section-header--two .section-header__right {
    padding-left: 16px;
}

.section-header--two .section-header__right-bg {
    background-color: transparent;
    padding: 0;
}

.section-header--two .header-btn-two {
    margin-left: 42px;
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 1300px) {
    .section-header--two .header-btn-two {
        margin-left: 24px;
    }
}

@media (max-width: 1300px) {
    .section-header--two .footer__socialwrap {
        gap: 0 16px;
    }
}

@media (max-width: 1300px) {
    .section-header--two .footer__socialwrap li {
        font-size: 22px;
    }
}

.section-header--three {
    background-color: var(--body-color, #fff);
}

.section-header--three.header-sticky-cloned.sticky-active {
    box-shadow: 0px 14px 21px 0px rgba(58, 66, 89, 0.05);
}

.section-header--three.header-sticky-cloned.sticky-active .container-fluid {
    margin-top: 2px;
}

.section-header--three .container-fluid {
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .section-header--three .container-fluid {
        margin-top: 0;
    }
}

.section-header--three .section-header__inner {
    padding-left: 0;
    box-shadow: initial;
    filter: initial;
    border-radius: 0;
}

@media (max-width: 1200px) {
    .section-header--three .section-header__inner {
        padding-right: 0;
    }
}

.section-header--three .section-header__logo {
    padding-left: 0;
}

.section-header--three .section-header__right {
    padding-left: 16px;
}

.section-header--three .section-header__right-bg {
    background-color: transparent;
    padding: 0;
}

.section-header--three .header-btn-two {
    margin-left: 42px;
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 1300px) {
    .section-header--three .header-btn-two {
        margin-left: 24px;
    }
}

@media (max-width: 1300px) {
    .section-header--three .footer__socialwrap {
        gap: 0 16px;
    }
}

@media (max-width: 1300px) {
    .section-header--three .footer__socialwrap li {
        font-size: 22px;
    }
}

.section-header--smooth {
    background: rgb(0, 31, 63);
    background: linear-gradient(180deg, rgba(0, 31, 63, 0.8883928571428571) 0%, rgba(0, 31, 63, 0) 100%);
}

.section-header--smooth.header-sticky-cloned.sticky-active {
    box-shadow: 0px 14px 21px 0px rgba(58, 66, 89, 0.05);
    background-color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.9) !important;
}

.section-header--smooth.header-sticky-cloned.sticky-active .container-fluid {
    margin-top: 2px;
}

.section-header--smooth.one-page-scroll-header.sticky-active {
    box-shadow: 0px 14px 21px 0px rgba(58, 66, 89, 0.05);
    background-color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.9) !important;
}

.section-header--smooth .container-fluid {
    background-color: transparent;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .section-header--smooth .container-fluid {
        margin-top: 0;
    }
}

.section-header--smooth .section-header__inner {
    background-color: transparent;
    padding-left: 0;
    box-shadow: initial;
    filter: initial;
    border-radius: 0;
}

@media (max-width: 1200px) {
    .section-header--smooth .section-header__inner {
        padding-right: 0;
    }
}

.section-header--smooth .section-header__main-menu>ul>li {
    color: var(--body-color, #fff);
}

.section-header--smooth .section-header__main-menu>ul>li:hover>a {
    color: var(--bg-color2, #E2E7FF);
}

.section-header--smooth .section-header__main-menu>ul>li>ul>li {
    color: var(--body-text-color, #5C6671);
}

.section-header--smooth .section-header__main-menu>ul>li>ul>li:hover {
    color: var(--primary-text-color, #001F3F);
}

.section-header--smooth .section-header__main-menu>ul>li>ul>li>ul>li {
    color: var(--body-text-color, #5C6671);
}

.section-header--smooth .section-header__main-menu>ul>li>ul>li>ul>li:hover {
    color: var(--primary-text-color, #001F3F);
}

.section-header--smooth .section-header__right {
    padding-left: 18px;
}

.section-header--smooth .section-header__right-bg {
    background-color: transparent;
    padding: 0;
}

.section-header--smooth .header-btn-two {
    margin-left: 42px;
    padding-left: 48px;
    padding-right: 48px;
}

.section-header--smooth .header-btn-two:hover {
    color: var(--body-color, #fff);
    border-color: var(--body-color, #fff);
}

@media (max-width: 1300px) {
    .section-header--smooth .header-btn-two {
        margin-left: 24px;
    }
}

@media (max-width: 1300px) {
    .section-header--smooth .footer__socialwrap {
        gap: 0 16px;
    }
}

@media (max-width: 1300px) {
    .section-header--smooth .footer__socialwrap li {
        font-size: 22px;
    }
}

.menu-show .container {
    max-width: 100% !important;
}

.megamenu-inner {
    padding: 30px;
}

.menu-show__card {
    background-color: var(--body-color, #fff);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-show__card:hover {
    transform: translateY(-6px);
}

.menu-show__card:hover .menu-show__image {
    box-shadow: 0 13px 60px rgba(0, 0, 0, 0.1);
}

.menu-show__image {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 6px 20px 0px rgba(0, 31, 63, 0.06);
    border-radius: 8px;
    height: 100%;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.menu-show__image img {
    width: 100% !important;
    max-width: 100%;
    height: 100%;
    transition: filter 500ms ease;
}

.menu-show__title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    color: var(--primary-text-color, #001F3F);
    margin-bottom: 0;
}

.menu-show__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.menu-show__title a:hover {
    background-size: 100% 1px;
}

.menu-show .hot-item {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--body-color, #fff);
    border-radius: 4px;
    display: inline-block;
    padding: 4px 8px;
}

.menu-show .hot-item.popular-home {
    background-color: var(--bg-color-purple, #A22EFE);
}

.menu-show .hot-item.new-home {
    background-color: var(--bg-color-green, #32A552);
}

.header-wrapper {
    z-index: 991;
}

.logo-light {
    display: none;
}


/* ===================================
        sidebar css
====================================== */

.section-header .header-info-sidebar,
.header-info-sidebar {
    width: 456px !important;
    z-index: 9993;
    top: 26px !important;
    left: 30px !important;
    transform: translateX(-120%) !important;
    background-color: transparent;
    transition: all 0.2s ease;
    border: 0 !important;
}

.section-header .header-info-sidebar.show,
.header-info-sidebar.show {
    transform: translateX(0) !important;
}

.section-header .header-info-sidebar__bg,
.header-info-sidebar__bg {
    width: 456px;
    background-color: var(--body-color, #fff);
    box-shadow: 0px 0px 15px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.2);
    border-radius: 30px;
}

.section-header .header-info-sidebar__cross,
.header-info-sidebar__cross {
    width: 30px;
    height: 30px;
    outline-style: none;
    background-color: transparent;
    border: 0;
    right: 18px;
    top: 22px;
    z-index: 1;
    font-size: 25px;
    line-height: 1;
    color: var(--primary-text-color, #001F3F);
    cursor: pointer;
    padding: 0;
}

.section-header .header-info-sidebar__top-logo,
.header-info-sidebar__top-logo {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-radius: 30px 30px 0 0;
    padding: 50px;
    margin-bottom: 25px;
}

.section-header .header-info-sidebar__logo,
.header-info-sidebar__logo {
    width: 180px;
    margin-bottom: 30px;
}

.section-header .header-info-sidebar__logo img,
.header-info-sidebar__logo img {
    width: 100% !important;
}

.section-header .header-info-sidebar__text,
.header-info-sidebar__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

.section-header .header-info-sidebar__feature,
.header-info-sidebar__feature {
    padding: 0 0 65px 33px;
}

.section-header .header-info-sidebar__feature ul,
.header-info-sidebar__feature ul {
    width: 100%;
    max-width: 325px;
}

.section-header .header-info-sidebar__feature ul li,
.header-info-sidebar__feature ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    color: var(--primary-text-color, #001F3F);
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    border-radius: 8px;
    padding: 10px 10px 10px 15px;
}

.section-header .header-info-sidebar__feature ul li:hover,
.header-info-sidebar__feature ul li:hover {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
}

.section-header .header-info-sidebar__feature ul li a,
.header-info-sidebar__feature ul li a {
    display: flex;
    align-items: center;
    width: 100%;
}

.section-header .header-info-sidebar__feature ul li .version-control,
.header-info-sidebar__feature ul li .version-control {
    background-color: var(--primary-text-color, #001F3F);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--body-color, #fff);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-left: 15px;
}

.section-header .header-info-sidebar__icon,
.header-info-sidebar__icon {
    margin-right: 15px;
}

.section-header .header-info-sidebar__getin-touch,
.header-info-sidebar__getin-touch {
    padding: 0 50px 50px 50px;
}

.section-header .header-info-sidebar__title,
.header-info-sidebar__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 8px;
}

.section-header .header-info-sidebar__address,
.header-info-sidebar__address {
    margin-bottom: 26px;
}

.section-header .header-info-sidebar__address li,
.header-info-sidebar__address li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: var(--body-text-color, #5C6671);
}

.section-header .header-info-sidebar .footer__socialwrap li,
.header-info-sidebar .footer__socialwrap li {
    color: var(--body-text-color, #5C6671);
    font-size: 19px;
}

.section-header .header-info-sidebar--two,
.header-info-sidebar--two {
    left: initial !important;
    right: 30px !important;
    transform: translateX(120%) !important;
}

.offcanvas-backdrop.show {
    opacity: 0.1;
}

.home-video {
    height: 750px;
    position: relative;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #001f3f;
    z-index: 1;
    opacity: 0.6;
}

.home-content {
    position: relative;
    padding-top: 250px;
    color: #fff !important;
    text-align: left;
    z-index: 10;
    max-width: 850px;
    padding-left: 20px;
}

h1 {
    font-size: clamp(45px, 7vw, 40px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff !important;
}

.home p {
    font-size: clamp(25px, 4vw, 40px);
    margin-top: 20px;
    margin-bottom: 30px;
}

.home-content button {
    display: block;
    font-size: clamp(14px, 1.5vw, 18px);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
}

.container-fluid {
    max-width: 1680px;
}

.abs-icon {
    position: absolute;
    left: -4px;
    top: 5px;
}


/* ===================================
        mobile-menu css
====================================== */

.mobilenav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform-origin: left center;
    visibility: hidden;
    opacity: 0;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, opacity 500ms;
}

@media (min-width: 1200px) {
    .mobilenav-container {
        display: none;
    }
}

.mobilenav-container.expanded {
    opacity: 1;
    visibility: visible;
}

.mobilenav-container.expanded .mobilenav-container__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobilenav-container__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-text-color, #001F3F);
    opacity: 0.5;
    cursor: url("../images/close.png"), auto;
}

.mobilenav-container__content {
    width: 350px;
    background-color: var(--bg-color, #001F3F);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease;
}

.mobilenav-container .menu-icon {
    font-size: 25px;
    line-height: 1;
    color: var(--body-color, #fff);
    display: flex;
    justify-content: flex-end;
}

.mobilenav-container .logo-box img {
    width: 180px !important;
}

.mobilenav-container #mb_menu_holder {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.mobilenav-container #mb_menu_holder.openMb_menu {
    display: flex;
}

.mobilenav-container .mobileMenu {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: initial !important;
    background-color: rgba(var(--bg-color-rgb, 0, 31, 63), 1);
    width: calc(100% + 0px);
    padding: 30px 0;
    padding-top: 35px;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.mobilenav-container .mobileMenu li {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--body-color, #fff);
    transition: all 0.4s;
}

.mobilenav-container .mobileMenu li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 36px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobilenav-container .mobileMenu li>a:hover {
    background-color: var(--secondary-color, #6495ED);
}

.mobilenav-container .mobileMenu li.dropdown-arrow>a {
    position: relative;
    display: flex;
    align-items: center;
}

.mobilenav-container .mobileMenu li.dropdown-arrow>a::after {
    font-family: "Font Awesome 6 Free";
    content: "\f107";
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    right: 36px;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    transform: scaleY(1);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.mobilenav-container .mobileMenu li.dropdown-arrow.openUL>a::after {
    transform: scaleY(-1);
}

.mobilenav-container .mobileMenu>li>ul>li>ul,
.mobilenav-container .mobileMenu>li>ul {
    padding-top: 16px;
    display: none;
}

.mobilenav-container .mobileMenu>li>ul>li {
    padding-left: 15px;
    padding-right: 15px;
}

.mobilenav-container .mobileMenu>li>ul>li>ul {
    padding-top: 16px;
}

.mobilenav-container .mobileMenu>li>ul>li>ul>li {
    padding-left: 15px;
}

.mobilenav-container__contact {
    padding-bottom: 25px;
    padding-left: 15px;
}

.mobilenav-container__contact li {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: var(--body-color, #fff);
    margin-bottom: 0;
}

.mobilenav-container__contact li .topbar-two__icon {
    color: var(--body-color, #fff);
}

.mobilenav-container__contact li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.mobilenav-container__contact li a:hover {
    background-size: 100% 1px;
}

.mobilenav-container__contact li+li {
    margin-top: 9px;
}

.mobilenav-container__socialwrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
}

.mobilenav-container__socialwrap li {
    font-size: 18px;
    line-height: 1;
    color: var(--body-color, #fff);
}

.mobilenav-container .header-info-sidebar__feature {
    padding-left: 0;
    padding-bottom: 25px;
}

.mobilenav-container .header-info-sidebar__feature ul li {
    color: var(--body-color, #fff);
}

.mobilenav-container .header-info-sidebar__feature ul li:hover {
    background-color: var(--secondary-color, #6495ED);
}

.mobilenav-container .menu-show {
    padding-bottom: 18px;
}

.mobilenav-container .megamenu-inner {
    padding: 0;
}

.mobilenav-container .menu-show__card {
    padding-bottom: 15px;
    border-radius: 12px;
}

.hamburger-bar {
    position: absolute;
    right: 0;
    width: 36px;
    height: 100%;
    cursor: pointer;
    bottom: 0;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hamburger-bar {
        display: none;
    }
}

.hamburger-bar span {
    width: 100%;
    height: 4px;
    border-radius: 6px;
    background-color: var(--primary-color);
    display: block;
    transition: all 0.2s ease;
    margin-top: 10px;
    position: relative;
}

.hamburger-bar span:first-child {
    margin-top: 0;
}

.hamburger-bar span:last-child {
    width: 20px;
}


/* ===================================
        hero css
====================================== */

.section-hero {
    padding-top: 16px;
    background: linear-gradient(180deg, var(--body-color, #fff) 0%, rgba(var(--bg-color2-rgb, 226, 231, 255), 0.3) 100%);
    overflow: hidden;
    margin-bottom: 60px;
    height: 745px;
}

@media (max-width: 991px) {
    .section-hero {
        margin-bottom: 34px;
    }
}

.section-hero .container {
    max-width: 1680px;
}

.section-hero__leftw {
    width: 46.5%;
    padding-right: 15px;
}

@media (max-width: 991px) {
    .section-hero__leftw {
        width: 100%;
        padding-right: 0;
        padding-bottom: 35px;
    }
}

.section-hero__left {
    padding-top: 116px;
    max-width: 690px;
}

@media (max-width: 991px) {
    .section-hero__left {
        padding-top: 25px;
    }
}

.section-hero__tagline {
    background-color: var(--bg-color2, #E2E7FF);
    position: relative;
    width: fit-content;
    padding: 15px 40px;
    border-radius: 8px;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .section-hero__tagline {
        padding: 10px 30px;
        margin-bottom: 10px;
    }
}

.section-hero__tagtext {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}

@media (max-width: 991px) {
    .section-hero__tagtext {
        font-size: 16px;
        line-height: 19px;
    }
}

.section-hero__tagimg {
    position: absolute;
    width: 58px;
    top: -28px;
    right: -28px;
    z-index: 1;
    transform: rotate(21.7deg);
}

.section-hero__tagimg img {
    width: 100% !important;
}

.section-hero__title {
    font-size: 75px;
    line-height: 90px;
    margin-bottom: 22px;
}

@media (max-width: 1200px) {
    .section-hero__title {
        font-size: 50px;
        line-height: 62px;
    }
}

@media (max-width: 991px) {
    .section-hero__title {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 18px;
    }
}

.section-hero__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-hero__text {
        font-size: 16px;
        line-height: 23px;
    }
}

.section-hero__joinman-wrap {
    padding-top: 32px;
}

@media (max-width: 991px) {
    .section-hero__joinman-wrap {
        padding-top: 24px;
    }
}

.section-hero__joinman {
    padding-right: 9px;
}

.section-hero__mane-img {
    width: 43px;
    min-width: 43px;
    height: 43px;
    border: 2px solid var(--body-color, #fff);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .section-hero__mane-img {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }
}

.section-hero__mane-img img {
    width: 100% !important;
    border-radius: 50%;
}

.section-hero__mane-img.totla-join {
    background-color: var(--primary-color);
}

.section-hero__mane-img+.section-hero__mane-img {
    margin-left: -14px;
}

@media (max-width: 991px) {
    .section-hero__mane-img+.section-hero__mane-img {
        margin-left: -11px;
    }
}

.section-hero__totla-jointext,
.section-hero__join-thousand {
    color: var(--body-color, #fff);
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
}

@media (max-width: 991px) {
    .section-hero__totla-jointext,
    .section-hero__join-thousand {
        font-size: 14px;
    }
}

.section-hero__join-thousand {
    color: var(--primary-text-color, #001F3F);
}

@media (max-width: 991px) {
    .section-hero__join-thousand {
        font-size: 16px;
    }
}

.section-hero__getstarted {
    padding-top: 33px;
    max-width: 598px;
}

@media (max-width: 991px) {
    .section-hero__getstarted {
        padding-top: 26px;
    }
}

.section-hero__getstarted .contact-form {
    gap: 0 11px;
}

@media (max-width: 600px) {
    .section-hero__getstarted .contact-form {
        gap: 15px 0;
    }
}

.section-hero__getstarted .form-group {
    position: relative;
    width: calc((100% - 236px) / 1);
}

@media (max-width: 600px) {
    .section-hero__getstarted .form-group {
        width: 100%;
    }
}

.section-hero__getstarted input[type=text],
.section-hero__getstarted input[type=email],
.section-hero__getstarted input[type=phone],
.section-hero__getstarted textarea {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    outline: none;
    padding-left: 25px;
    padding-right: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--body-text-color, #5C6671);
    background-color: var(--body-color, #fff);
    position: relative;
    z-index: 2;
}

.section-hero__getstarted input[type=text]:is(:focus,
 :active),
.section-hero__getstarted input[type=email]:is(:focus,
 :active),
.section-hero__getstarted input[type=phone]:is(:focus,
 :active),
.section-hero__getstarted textarea:is(:focus,
 :active) {
    box-shadow: none;
    border-color: transparent;
}

.section-hero__getstarted input[type=text]:is(:focus,
 :active)+.section-hero__field-bd-effect::before,
.section-hero__getstarted input[type=text]:is(:focus,
 :active)+.section-hero__field-bd-effect::after,
.section-hero__getstarted input[type=email]:is(:focus,
 :active)+.section-hero__field-bd-effect::before,
.section-hero__getstarted input[type=email]:is(:focus,
 :active)+.section-hero__field-bd-effect::after,
.section-hero__getstarted input[type=phone]:is(:focus,
 :active)+.section-hero__field-bd-effect::before,
.section-hero__getstarted input[type=phone]:is(:focus,
 :active)+.section-hero__field-bd-effect::after,
.section-hero__getstarted textarea:is(:focus,
 :active)+.section-hero__field-bd-effect::before,
.section-hero__getstarted textarea:is(:focus,
 :active)+.section-hero__field-bd-effect::after {
    max-width: 100%;
    max-height: 100%;
}

.section-hero__getstarted input::-webkit-input-placeholder {
    color: var(--icon-color, #C0C0C0);
}

.section-hero__getstarted input::-moz-placeholder {
    color: var(--icon-color, #C0C0C0);
}

.section-hero__getstarted input::placeholder {
    color: var(--icon-color, #C0C0C0);
}

.section-hero__field-bd-effect {
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    z-index: 1;
}

.section-hero__field-bd-effect::before,
.section-hero__field-bd-effect::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s;
    border-radius: 8px;
}

.section-hero__field-bd-effect::before {
    max-width: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.section-hero__field-bd-effect::after {
    max-height: 0;
    margin: auto 0;
    top: 0;
    bottom: 0;
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.section-hero__getstarted-btn {
    font-size: 18px;
    line-height: 1;
    height: 50px;
}

.section-hero__getstarted-btn:hover {
    color: var(--primary-color);
    background-color: var(--body-color, #fff);
}

.section-hero__info-text {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
    margin-top: 15px;
    gap: 2px;
}

.section-hero__info-text>a {
    color: var(--primary-color);
    position: relative;
}

.section-hero__info-text>a::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: 0 auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.section-hero__info-text>a:hover::after {
    max-width: 0;
}

.section-hero__info-img {
    width: 20px !important;
    height: 20px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.section-hero__right {
    position: relative;
    width: 53.5%;
}

@media (max-width: 991px) {
    .section-hero__right {
        width: 100%;
    }
}

.section-hero__right__main-img {
    height: 100%;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
}

.section-hero__right__main-img img {
    height: 100%;
    width: 100% !important;
    object-fit: cover;
}

.section-hero__right__credit-balance {
    width: 360px;
    top: 128px;
    left: -4px;
}

.section-hero__right__credit-balance img {
    width: 100% !important;
}

@media (max-width: 1200px) {
    .section-hero__right__credit-balance {
        width: 311px;
        top: 30px;
        left: 0;
    }
}

@media (max-width: 600px) {
    .section-hero__right__credit-balance {
        display: none;
    }
}

.section-hero__right__telegram {
    width: 70px;
    right: 10px;
    top: -38px;
}

.section-hero__right__telegram img {
    width: 100% !important;
}

.section-hero__right__chart-balance {
    right: 172px;
    bottom: 202px;
    width: 278px;
    background: rgba(var(--body-color-rgb, 255, 255, 255), 0.29);
    backdrop-filter: blur(6px);
    padding: 9px;
    border-radius: 23px;
}

.section-hero__right__chart-balance img {
    width: 100% !important;
}

@media (max-width: 1200px) {
    .section-hero__right__chart-balance {
        right: 15px;
        bottom: 17px;
    }
}

@media (max-width: 600px) {
    .section-hero__right__chart-balance {
        display: none;
    }
}

.section-hero__right__picture {
    left: -35px;
    top: -40px;
    width: 72px;
}

.section-hero__right__picture img {
    width: 100% !important;
}

.section-hero__right__mailIcon {
    left: 35px;
    bottom: 64px;
    width: 81px;
}

.section-hero__right__mailIcon img {
    width: 100% !important;
}

.section-hero__right__square1 {
    width: 21px;
    height: 21px;
    background-color: #A22EFE;
    transform: rotate(-28deg);
    right: 0;
    top: 256px;
    border-radius: 5px;
}

.section-hero__right__square2 {
    width: 21px;
    height: 21px;
    background-color: #32A552;
    transform: rotate(23deg);
    bottom: 92px;
    left: 38%;
    border-radius: 5px;
}

.section-hero__right__square3 {
    width: 25px;
    height: 25px;
    background-color: #0044eb;
    transform: rotate(-32deg);
    bottom: 36%;
    left: 0;
    border-radius: 5px;
}

.section-hero__innerright {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.section-hero-two {
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .section-hero-two {
        padding-top: 68px;
        padding-bottom: 35px;
    }
}

.section-hero-two::after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100vh - 100px);
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(var(--body-color-rgb, 255, 255, 255), 1) 0%, rgba(var(--bg-color2-rgb, 226, 231, 255), 0.3) 100%);
    border-bottom: 2px solid rgba(var(--bg-color2-rgb, 226, 231, 255), 0.8);
}

@media (max-width: 991px) {
    .section-hero-two::after {
        content: none;
    }
}

.section-hero-two .container {
    max-width: 1350px;
    position: relative;
    z-index: 2;
}

.section-hero-two__titlewrap {
    gap: 0 81px;
    margin-bottom: 100px;
}

@media (max-width: 1400px) {
    .section-hero-two__titlewrap {
        gap: 0 40px;
    }
}

@media (max-width: 1200px) {
    .section-hero-two__titlewrap {
        gap: 40px 0;
    }
}

@media (max-width: 991px) {
    .section-hero-two__titlewrap {
        margin-bottom: 65px;
    }
}

.section-hero-two__title {
    width: calc((59.4% - 41px) / 1);
}

@media (max-width: 1400px) {
    .section-hero-two__title {
        width: calc((59.4% - 20px) / 1);
    }
}

@media (max-width: 1200px) {
    .section-hero-two__title {
        width: calc((100% - 0px) / 1);
    }
}

.section-hero-two__titletext {
    font-size: 75px;
    line-height: 90px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-hero-two__titletext {
        font-size: 42px;
        line-height: 50px;
    }
}

.section-hero-two__infocol {
    width: calc((40.6% - 40px) / 1);
    padding-top: 12px;
}

@media (max-width: 1400px) {
    .section-hero-two__infocol {
        width: calc((40.6% - 20px) / 1);
    }
}

@media (max-width: 1200px) {
    .section-hero-two__infocol {
        width: calc((100% - 0px) / 1);
        padding-top: 0;
    }
}

.section-hero-two__infotext {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .section-hero-two__funfact {
        flex-wrap: wrap;
        gap: 22px 0;
    }
}

.section-hero-two__countcol {
    width: calc((100% - 0px) / 2);
    padding: 0 40px;
}

@media (max-width: 1400px) {
    .section-hero-two__countcol {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .section-hero-two__countcol {
        width: calc((100% - 0px) / 1);
    }
}

@media (max-width: 800px) {
    .section-hero-two__countcol {
        padding: 0;
    }
}

.section-hero-two__countcol:first-child {
    padding-left: 0;
}

.section-hero-two__countcol:last-child {
    padding-right: 0;
}

.section-hero-two__countcol+.section-hero-two__countcol {
    position: relative;
}

.section-hero-two__countcol+.section-hero-two__countcol::after {
    content: "";
    position: absolute;
    width: auto;
    height: 100%;
    max-height: 48px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    border-left: 1px solid var(--primary-text-color, #001F3F);
}

@media (max-width: 800px) {
    .section-hero-two__countcol+.section-hero-two__countcol::after {
        content: none;
    }
}

.section-hero-two__count-wrap {
    gap: 0 1px;
}

.section-hero-two__funfactcount {
    color: var(--primary-text-color, #001F3F);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 67px;
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .section-hero-two__funfactcount {
        font-size: 36px;
        line-height: 45px;
    }
}

.section-hero-two__funfacttext {
    color: var(--primary-text-color, #001F3F);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    padding-left: 12px;
}

.section-hero-two__image {
    position: relative;
    padding-bottom: 61px;
}

@media (max-width: 991px) {
    .section-hero-two__image {
        padding-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .section-hero-two__image {
        padding-bottom: 22px;
    }
}

.section-hero-two__mainimg {
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section-hero-two__mainimg {
        border-radius: 15px;
    }
}

.section-hero-two__mainimg img {
    width: 100% !important;
    height: 604px;
    object-fit: cover;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .section-hero-two__mainimg img {
        height: 430px;
        border-radius: 15px;
    }
}

.section-hero-two .section-dashboard__playbtn img {
    width: 100%;
}

@media (max-width: 991px) {
    .section-hero-two .waves {
        width: 110px;
        height: 110px;
    }
}

.section-hero-two__comylogo {
    background-color: var(--body-color, #fff);
    box-shadow: 0px 4px 40px 0px rgba(44, 54, 109, 0.2509803922);
    border-radius: 42px;
    padding: 37px 101px;
    position: absolute;
    width: calc(100% - 50px);
    height: auto;
    right: 0;
    left: 0;
    bottom: 0;
    max-width: 1005px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section-hero-two__comylogo {
        border-radius: 18px;
        padding: 16px 20px;
    }
}

.section-hero-two__logcol+.section-hero-two__logcol {
    padding-left: 12px;
}

.section-hero-three {
    position: relative;
    padding-top: 6px;
    padding-bottom: 60px;
    min-height: calc(100vh - 175px);
}

@media (max-width: 991px) {
    .section-hero-three {
        padding-top: 10px;
        padding-bottom: 34px;
        min-height: initial;
    }
}

.section-hero-three .container {
    max-width: 1680px;
    position: relative;
    z-index: 2;
}

.section-hero-three__image {
    position: relative;
    padding-bottom: 61px;
}

@media (max-width: 991px) {
    .section-hero-three__image {
        padding-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .section-hero-three__image {
        padding-bottom: 22px;
    }
}

.section-hero-three__mainimg {
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section-hero-three__mainimg {
        border-radius: 15px;
    }
}

.section-hero-three__mainimg img {
    width: 100% !important;
    height: 774px;
    object-fit: cover;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .section-hero-three__mainimg img {
        height: 430px;
        border-radius: 15px;
    }
}

.section-hero-three .section-dashboard__playbtn img {
    width: 100%;
}

@media (max-width: 991px) {
    .section-hero-three .waves {
        width: 110px;
        height: 110px;
    }
}

.section-hero-three__comylogo {
    background-color: var(--body-color, #fff);
    box-shadow: 0px 4px 40px 0px rgba(44, 54, 109, 0.2509803922);
    border-radius: 42px;
    padding: 37px 101px;
    position: absolute;
    width: calc(100% - 50px);
    height: auto;
    right: 0;
    left: 0;
    bottom: 0;
    max-width: 1005px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section-hero-three__comylogo {
        border-radius: 18px;
        padding: 16px 20px;
    }
}

.section-hero-three__logcol+.section-hero-three__logcol {
    padding-left: 12px;
}

.section-hero-three__logcol {
    display: flex;
    justify-content: space-evenly;
}

.section-hero-three__logcol img {
    width: auto !important;
}

.section-hero-four {
    --parallax-bg-color: rgba($primary-color-rgb, 0.02);
    --parallax-img: url("../images/background/hero-bg6-1.png");
    --parallax-repeat: no-repeat;
    --parallax-size: cover;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .section-hero-four {
        padding-bottom: 35px;
    }
}

.section-hero-four .container {
    max-width: 1680px;
}

.section-hero-four__bg {
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.4);
    border: 2px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.05);
    border-radius: 30px;
    padding-left: 50px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .section-hero-four__bg {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .section-hero-four__bg {
        padding: 0 15px;
    }
}

.section-hero-four__left {
    max-width: 754px;
    padding: 132px 0 120px 0;
}

@media (max-width: 991px) {
    .section-hero-four__left {
        padding: 48px 0;
    }
}

.section-hero-four__title {
    font-size: 75px;
    line-height: 90px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .section-hero-four__title {
        font-size: 50px;
        line-height: 62px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .section-hero-four__title {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }
}

.section-hero-four__text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .section-hero-four__text {
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        margin-bottom: 30px;
    }
}

.section-hero-four__twobtn {
    padding-bottom: 23px;
}

@media (max-width: 991px) {
    .section-hero-four__twobtn {
        padding-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .section-hero-four__twobtn {
        flex-wrap: wrap;
    }
}

.section-hero-four__btn {
    padding: 12px 33px;
}

.section-hero-four__playwrap {
    padding-left: 38px;
}

@media (max-width: 767px) {
    .section-hero-four__playwrap {
        width: 100%;
        padding: 16px 0 0 0;
    }
}

.section-hero-four__playtext {
    font-size: 18px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 0;
    padding-left: 11px;
}

.section-hero-four__list {
    width: fit-content;
    border-top: 1px solid rgba(var(--body-text-color-rgb, 92, 102, 113), 0.4);
    padding-top: 22px;
}

@media (max-width: 767px) {
    .section-hero-four__list {
        width: 100%;
        flex-wrap: wrap;
    }
}

.section-hero-four__list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    position: relative;
    padding-left: 22px;
}

@media (max-width: 767px) {
    .section-hero-four__list li {
        width: 100%;
    }
}

.section-hero-four__list li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 3px;
    left: 0;
    z-index: 1;
    background-image: url("../images/blue-tick-icon-01.svg");
    background-size: 15px auto;
    background-repeat: no-repeat;
}

.section-hero-four__list li+li {
    margin-left: 32px;
}

@media (max-width: 767px) {
    .section-hero-four__list li+li {
        margin: 16px 0 0 0;
    }
}

.section-hero-four__innerright {
    overflow: visible;
}

.section-hero-four__shape {
    position: absolute;
    z-index: 1;
}

.section-hero-four__shape img {
    width: auto !important;
}

.section-hero-four__shape.shape1 {
    top: -21px;
    left: -21px;
    width: 320px !important;
    z-index: 3;
}

.section-hero-four__shape.shape2 {
    bottom: 138px;
    left: -8px;
    width: 300px !important;
    z-index: 3;
}

.section-hero-four__shape.shape2 img {
    width: 100% !important;
}

@media (max-width: 991px) {
    .section-hero-four__shape.shape2 {
        left: 0;
        bottom: 48px;
        width: 200px !important;
    }
}

.section-hero-four__shape.shape3 {
    top: 0px;
    right: 20px;
    width: 288px !important;
}

.section-hero-four__shape.shape3 img {
    width: 100% !important;
}

@media (max-width: 991px) {
    .section-hero-four__shape.shape3 {
        width: 170px !important;
    }
}

.section-hero-four__shape.shape4 {
    top: 62px;
    left: 0;
    right: 20px;
    margin: 0 auto;
    width: 600px !important;
    z-index: 2;
}

@media (max-width: 991px) {
    .section-hero-four__shape.shape4 img {
        width: 100% !important;
        min-height: 420px;
        max-height: 420px;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .section-hero-four__shape.shape4 {
        width: 100% !important;
        position: static;
    }
}

.section-hero-four__shape.shape5 {
    left: 0;
    bottom: 0;
}

.section-hero-four__shape.shape6 {
    right: 70px;
    bottom: -6px;
    filter: blur(7px);
}

@media (max-width: 991px) {
    .section-hero-four__shape.shape6 {
        width: fit-content;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -30px;
        filter: blur(4px);
    }
}

.section-hero-four__shape.shape7 {
    right: 94px;
    bottom: 210px;
    width: 160px !important;
    z-index: 3;
}

.section-hero-four__shape.shape8 {
    right: -2px;
    bottom: -1px;
    width: 275px !important;
    z-index: 2;
}

.section-hero-five {
    padding-top: 145px;
    padding-bottom: 48px;
    margin-bottom: 60px;
    height: auto;
    min-height: initial;
}

@media (min-width: 1200px) {
    .section-hero-five {
        min-height: 100vh;
    }
}

@media (max-width: 991px) {
    .section-hero-five {
        margin-bottom: 35px;
    }
}

.section-hero-five__bgimg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
    height: auto;
}

@media (min-width: 1200px) {
    .section-hero-five__bgimg {
        height: 100vh;
    }
}

.section-hero-five .container {
    max-width: 1350px;
}

.section-hero-five__bg {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .section-hero-five__bg {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .section-hero-five__bg {
        padding: 0;
    }
}

.section-hero-five__left {
    max-width: 754px;
    padding: 125px 0 0px 0;
}

@media (max-width: 1200px) {
    .section-hero-five__left {
        padding-top: 64px;
    }
}

@media (max-width: 991px) {
    .section-hero-five__left {
        padding: 48px 0;
    }
}

.section-hero-five__title {
    font-size: 75px;
    line-height: 90px;
    color: var(--body-color, #fff);
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .section-hero-five__title {
        font-size: 50px;
        line-height: 62px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .section-hero-five__title {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }
}

.section-hero-five__text {
    font-size: 18px;
    line-height: 28px;
    color: var(--body-color, #fff);
    font-weight: 600;
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .section-hero-five__text {
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        margin-bottom: 30px;
    }
}

.section-hero-five__twobtn {
    padding-bottom: 23px;
}

@media (max-width: 991px) {
    .section-hero-five__twobtn {
        padding-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .section-hero-five__twobtn {
        flex-wrap: wrap;
    }
}

.section-hero-five__btn {
    padding: 12px 33px;
}

.section-hero-five__btn:hover {
    border-color: var(--body-color, #fff);
    color: var(--body-color, #fff);
}

.section-hero-five__playwrap {
    padding-left: 38px;
}

@media (max-width: 767px) {
    .section-hero-five__playwrap {
        width: 100%;
        padding: 16px 0 0 0;
    }
}

.section-hero-five .video-popup-link {
    border-color: var(--body-color, #fff);
}

.section-hero-five .video-popup-link .play-arrow-icon {
    border-left-color: var(--body-color, #fff);
}

.section-hero-five__playtext {
    font-size: 18px;
    line-height: 29px;
    font-weight: 600;
    color: var(--body-color, #fff);
    margin-bottom: 0;
    padding-left: 11px;
}

.section-hero-five__list {
    width: fit-content;
    border-top: 1px solid rgba(var(--body-text-color-rgb, 92, 102, 113), 0.4);
    padding-top: 22px;
}

@media (max-width: 767px) {
    .section-hero-five__list {
        width: 100%;
        flex-wrap: wrap;
    }
}

.section-hero-five__list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--body-color, #fff);
    position: relative;
    padding-left: 22px;
}

@media (max-width: 767px) {
    .section-hero-five__list li {
        width: 100%;
    }
}

.section-hero-five__list li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 3px;
    left: 0;
    z-index: 1;
    background-image: url("../images/blue-tick-icon-01.svg");
    background-size: 15px auto;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.section-hero-five__list li+li {
    margin-left: 32px;
}

@media (max-width: 767px) {
    .section-hero-five__list li+li {
        margin: 16px 0 0 0;
    }
}

.inner-page-banner__bgimg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.inner-page-banner__bgimg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(var(--bg-color-rgb, 0, 31, 63), 0.6);
    background-blend-mode: overlay;
}

.inner-page-banner__inner-content {
    padding: 150px 15px 130px 15px;
    max-width: 920px;
    margin: 0 auto;
}

.inner-page-banner__titlewrap {
    margin: 0 auto;
    display: contents;
}

.inner-page-banner__title {
    font-size: 42px;
    line-height: 60px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--body-color, #fff);
}

@media (max-width: 991px) {
    .inner-page-banner__title {
        font-size: 38px;
        line-height: 54px;
    }
}

.inner-page-banner__subtitle {
    color: var(--body-color, #fff);
}

.inner-page-banner__breadcrumb li {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    color: var(--body-color, #fff);
}

.inner-page-banner__breadcrumb li.active {
    color: rgba(var(--body-color-rgb, 255, 255, 255), 0.7);
}

.inner-page-banner__breadcrumb li::before {
    content: none !important;
}

.inner-page-banner__breadcrumb li+li {
    padding-left: 18px;
}

.inner-page-banner__breadcrumb li a {
    padding-right: 12px;
}

.inner-page-banner__breadcrumb li i {
    font-size: 18px;
    line-height: 1;
}

.hero-six-parallax {
    background-color: var(--parallax-bg-color);
    background-image: var(--parallax-img);
    background-repeat: var(--parallax-repeat);
    background-size: var(--parallax-size);
    opacity: var(--parallax-opacity, 1);
}

[data-bs-theme=dark] .section-hero__mane-img.totla-join {
    background-color: var(--primary-text-color, #001F3F);
}

[data-bs-theme=dark] .section-hero-five .video-popup-link {
    border-color: var(--body-color, #fff);
}

[data-bs-theme=dark] .section-hero-five .video-popup-link:hover {
    border-color: var(--primary-color);
}

[data-bs-theme=dark] .section-hero-five .video-popup-link:hover .play-arrow-icon {
    border-left-color: var(--primary-color);
}

[data-bs-theme=dark] .section-hero-five .video-popup-link .play-arrow-icon {
    border-left-color: var(--body-color, #fff);
}

[data-bs-theme=dark] .hero-six-parallax {
    opacity: var(--parallax-opacity, 0.1);
}


/* ===================================
        client-logo css
====================================== */

.section-client-logo {
    padding: 60px 0;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .section-client-logo {
        padding: 35px 0;
    }
}

@media (max-width: 600px) {
    .section-client-logo {
        padding: 55px 0;
        padding-bottom: 65px;
    }
}

.section-client-logo .container {
    max-width: 1350px;
}

.section-client-logo__row {
    align-items: center;
}

.section-client-logo__title {
    width: 34.7%;
}

@media (max-width: 767px) {
    .section-client-logo__title {
        width: 100%;
        padding-bottom: 40px;
    }
}

.section-client-logo__titletext {
    min-width: 250px;
    max-width: 250px;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-client-logo__titletext {
        min-width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

.section-client-logo__carousel {
    width: 65.3%;
}

@media (max-width: 767px) {
    .section-client-logo__carousel {
        width: 100%;
    }
}

.section-client-logo__itemlogo img {
    width: 100% !important;
    max-height: 70px;
    min-height: 70px;
    height: 100%;
    object-fit: contain !important;
}


/* ===================================
        application-development css
====================================== */

.application-development {
    padding: 120px 0;
    background: rgba(215, 233, 255, 0.4);
    overflow: hidden;
}

@media (max-width: 991px) {
    .application-development {
        padding: 34px 0;
    }
}

.application-development .container {
    max-width: 1680px;
}

.application-development__bg {
    border-radius: 50px;
    padding-top: 5px;
    position: relative;
}

@media (max-width: 991px) {
    .application-development__bg {
        padding-top: 10px;
    }
}

.application-development__mx {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .application-development__mx {
        padding: 0;
    }
}

.application-development__left {
    margin-top: -22px;
}

@media (max-width: 991px) {
    .application-development__left {
        margin-bottom: 45px;
    }
}

.application-development__left img {
    width: 100% !important;
    object-fit: cover;
    mix-blend-mode: darken;
}

@media (max-width: 991px) {
    .application-development__left img {
        height: auto;
        width: 100% !important;
    }
}

.application-development__left--two {
    margin-top: -60px;
    padding-left: 80px;
}

@media (max-width: 1300px) {
    .application-development__left--two {
        padding-left: 32px;
        mix-blend-mode: darken;
    }
}

@media (max-width: 991px) {
    .application-development__left--two {
        margin-top: -22px;
        padding-bottom: 36px;
        padding-left: 0;
    }
}

.application-development__left--three {
    margin-left: 50px;
}

@media (max-width: 991px) {
    .application-development__left--three {
        margin-left: 0;
    }
}

.application-development__left--five {
    max-width: 534px;
    margin-top: 0;
}

@media (max-width: 991px) {
    .application-development__content {
        width: calc((100% - 0px) / 1);
    }
}

@media (max-width: 991px) {
    .application-development__content--two {
        width: calc((100% - 0px) / 1);
    }
}

@media (max-width: 991px) {
    .application-development__content--three {
        width: calc((100% - 0px) / 1);
    }
}

.application-development__content-mx {
    max-width: 660px;
}

@media (max-width: 991px) {
    .application-development__content-mx {
        max-width: 100%;
    }
}

.application-development__text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
    font-weight: 400;
    color: var(--body-text-color, #5C6671);
}

.application-development__text>span {
    font-weight: 600;
}

@media (max-width: 991px) {
    .application-development__text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 36px;
    }
}

.application-development .sec-title {
    margin-bottom: 25px;
}

.application-development__textinfo {
    max-width: 100%;
}

.application-development__twobtn {
    gap: 0 45px;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .application-development__twobtn {
        gap: 0 15px;
    }
}

.application-development__twobtn--three {
    padding-top: 50px;
}

@media (max-width: 991px) {
    .application-development__twobtn--three {
        padding-top: 42px;
    }
}

.application-development__twobtn--five {
    padding-top: 40px;
}

@media (max-width: 991px) {
    .application-development__twobtn--five {
        padding-top: 32px;
    }
}

.application-development__btn {
    padding-left: 34px;
    padding-right: 34px;
    line-height: 20px;
}

.application-development__playwrap {
    position: relative;
}

.application-development__playbtn {
    position: relative;
    display: flex;
    align-items: center;
}

.application-development__playtext {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    padding-left: 11px;
}

@media (max-width: 480px) {
    .application-development__playtext {
        display: none;
    }
}

.application-development__list li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--body-text-color, #5C6671);
    position: relative;
    padding-left: 30px;
}

.application-development__list li::before {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 4px;
    left: 0;
    z-index: 1;
    background-image: url("../images/blue-tick-icon-01.svg");
    background-size: 20px auto;
    background-repeat: no-repeat;
}

.application-development__list li+li {
    margin-top: 13px;
}

.application-development__feature {
    gap: 0 23px;
    padding-top: 145px;
    width: calc(100% + 40px);
}

@media (max-width: 1440px) {
    .application-development__feature {
        width: calc(100% + 20px);
    }
}

@media (max-width: 991px) {
    .application-development__feature {
        width: 100%;
        padding-top: 48px;
    }
}

@media (max-width: 767px) {
    .application-development__feature {
        gap: 23px 0;
    }
}

.application-development__ftwrap {
    width: calc((100% - 46px) / 3);
}

@media (max-width: 767px) {
    .application-development__ftwrap {
        width: calc((100% - 0px) / 1);
    }
}

.application-development__ftwrap:hover .connectivity {
    background-color: rgba(var(--bg-color-green-rgb, 50, 165, 82), 0.25);
}

.application-development__ftwrap:hover .solutions {
    background-color: rgba(var(--bg-color-purple-rgb, 162, 46, 254), 0.25);
}

.application-development__ftwrap:hover .optimized {
    background-color: rgba(var(--bg-color-red-rgb, 254, 46, 46), 0.25);
}

.application-development__ftwrap:hover svg {
    transition: all 0.5s;
    transform: scale(0.9);
}

.application-development .section-provide__fTitle {
    padding-left: 10px;
}

.application-development .section-provide__fTitle>br {
    display: none;
}

.application-development__joinman-wrap {
    padding-top: 46px;
}

@media (max-width: 991px) {
    .application-development__joinman-wrap {
        padding-top: 24px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px 0;
    }
}

.application-development__joinman-wrap .section-hero__joinman {
    padding-right: 18px;
}

@media (max-width: 991px) {
    .application-development__joinman-wrap .section-hero__joinman {
        padding-right: 0;
    }
}

.application-development__joinman-wrap .section-hero__mane-img {
    width: 60px;
    height: 60px;
}

.application-development__joinman-wrap .section-hero__mane-img+.section-hero__mane-img {
    margin-left: -24px;
}

.application-development__joinman-wrap .section-hero__star-wrap {
    margin-bottom: 3px;
}

.application-development__joinman-wrap .section-hero__rvw-text {
    font-size: 18px;
    line-height: 28px;
    color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.8);
    font-weight: 600;
    margin-bottom: 0;
}

.application-development__joinman-wrap .section-hero__rvw-text>a {
    color: var(--primary-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.application-development__joinman-wrap .section-hero__rvw-text>a:hover {
    background-size: 100% 1px;
}

.application-development-style .application-development__bg::after {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    height: calc(100% - 42px);
}

@media (max-width: 1200px) {
    .application-development-style .application-development__bg::after {
        height: calc(100% - 42px);
    }
}

@media (max-width: 991px) {
    .application-development-style .application-development__bg::after {
        content: none;
    }
}

.application-development-style .application-development__inner-mx {
    max-width: 1320px;
    margin: 0 auto;
}

.application-development-style .application-development__leftimg {
    padding-top: 4px;
}

.application-development-style .application-development__leftimg__man {
    bottom: 0;
}

@media (max-width: 991px) {
    .application-development-style .application-development__leftimg__man {
        bottom: 0;
    }
}

.application-development-style .application-development__leftimg__man img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.application-development-style .application-development__leftimg__rocket {
    top: 0;
    max-width: 138px;
}

@media (max-width: 991px) {
    .application-development-style .application-development__leftimg__rocket {
        max-width: 120px;
        top: 12px;
    }
}

.application-development-style .application-development__leftimg__graph {
    top: -60px;
    right: -34px;
    max-width: 366px;
}

@media (max-width: 991px) {
    .application-development-style .application-development__leftimg__graph {
        top: -15px;
        max-width: 300px;
    }
}

.application-development-style .video-popup-link {
    border-color: var(--primary-color);
}

.application-development-style .video-popup-link:hover {
    border-color: var(--body-text-color, #5C6671);
}

.application-development-style .video-popup-link:hover .play-arrow-icon {
    border-left-color: var(--body-text-color, #5C6671);
}

.application-development-style .video-popup-link .play-arrow-icon {
    border-left-color: var(--primary-color);
}

.application-development-style .application-development__text {
    margin-bottom: 0;
}

.application-development-style .application-development__text+.application-development__text {
    margin-top: 28px;
}

@media (max-width: 991px) {
    .application-development-style .application-development__text+.application-development__text {
        margin-top: 20px;
    }
}

.application-development-style .section-funfact__list {
    padding-top: 120px;
}

@media (max-width: 1280px) {
    .application-development-style .section-funfact__list {
        flex-direction: column;
        padding-top: 40px;
    }
}

@media (max-width: 1280px) {
    .application-development-style .section-funfact__item {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .application-development-style .section-funfact__item+.section-funfact__item {
        padding-left: 0;
    }
}

.experience-card {
    position: absolute;
    width: 100%;
    max-width: 390px;
    height: auto;
    left: 0;
    bottom: -100px;
    z-index: 1;
}

@media (max-width: 991px) {
    .experience-card {
        max-width: calc(100% - 30px);
        left: 15px;
        bottom: 0;
        padding: 12px 20px;
    }
}

.experience-card.experience-card-top {
    bottom: -1px;
    left: -35px;
}

@media (max-width: 991px) {
    .experience-card.experience-card-top {
        left: 0;
    }
}

.experience-card.experience-card-center {
    margin: 0 auto;
    right: 0;
}

@media (max-width: 991px) {
    .experience-card.experience-card-center {
        max-width: calc(100% - 80px);
        left: 0;
    }
}

.experience-card__year {
    color: var(--body-color, #fff);
    font-size: 82px;
    line-height: 97px;
    font-weight: 800;
    white-space: nowrap;
    margin-bottom: 0;
    padding-right: 20px;
}

@media (max-width: 991px) {
    .experience-card__year {
        font-size: 76px;
        line-height: 87px;
        padding-right: 15px;
    }
}

.experience-card__text {
    font-size: 18px;
    color: var(--body-color, #fff);
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 0;
    border-left: 1px solid var(--body-color, #fff);
    padding-left: 24px;
}

@media (max-width: 991px) {
    .experience-card__text {
        font-size: 16px;
        line-height: 24px;
        padding-left: 18px;
    }
}

.video-popup-link {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--body-text-color, #5C6671);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup-link:hover {
    border-color: var(--primary-color);
}

.video-popup-link:hover .play-arrow-icon {
    border-left-color: var(--primary-color);
}

.video-popup-link .play-arrow-icon {
    position: relative;
    left: 1px;
    display: block;
    border-left: 12px solid var(--body-text-color, #5C6671);
    width: 0;
    height: 0;
    margin: 12px auto;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-radius: 3px;
    transition: all 0.5s ease;
}

[data-bs-theme=dark] .experience-card__year,
[data-bs-theme=dark] .experience-card__text {
    color: var(--primary-text-color, #001F3F);
    border-color: var(--primary-text-color, #001F3F);
}

[data-bs-theme=dark] .video-popup-link {
    border-color: var(--primary-text-color, #001F3F);
}

[data-bs-theme=dark] .video-popup-link .play-arrow-icon {
    border-left-color: var(--primary-text-color, #001F3F);
}


/* ===================================
        services css
====================================== */

.section-services {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-services {
        padding: 35px 0;
    }
}

.section-services .container {
    max-width: 1350px;
}

.section-services__left {
    position: relative;
}

.section-services__bg {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 64px 0 80px 50px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section-services__bg {
        padding: 38px 20px 55px 30px;
    }
}

.section-services__mx {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.section-services__bgimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 1;
}

@media (max-width: 991px) {
    .section-services__bgimg {
        background-position: center center;
        mix-blend-mode: overlay;
    }
}

.section-services__title {
    font-size: 48px;
    color: var(--body-color, #fff);
    line-height: 67px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .section-services__title {
        font-size: 40px;
        line-height: 50px;
    }
    .section-services__title>br {
        display: none;
    }
}

@media (max-width: 600px) {
    .section-services__title {
        font-size: 30px;
        line-height: 41px;
    }
}

.section-services__text {
    color: var(--body-color, #fff);
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .section-services__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

.section-services__btn {
    background-color: var(--body-color, #fff);
    color: var(--primary-color);
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--body-color, #fff);
}

.section-services__btn:hover {
    border-color: var(--body-color, #fff);
    color: var(--body-color, #fff);
}

.section-services__listrow {
    margin-bottom: 30px;
    gap: 30px 0;
}

.section-services__listitem {
    background-color: var(--bg-color2, #E2E7FF);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 52px 51px 0 51px;
    border-radius: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .section-services__listitem {
        padding: 30px;
        padding-bottom: 0;
    }
}

.section-services__listitem.click-advertising {
    background-color: var(--bg-color3, #F2F4FB);
}

.section-services__listitem.click-advertising .section-services__listitem__img img {
    max-width: 460px;
    padding-bottom: 13px;
}

.section-services__listitem__title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .section-services__listitem__title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 12px;
    }
}

.section-services__listitem__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .section-services__listitem__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }
}

.section-services__listitem__img {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.section-services__listitem__img img {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    width: 100% !important;
    object-fit: cover;
}

.section-services__col {
    display: flex;
}

.section-services__fItem {
    background-color: var(--bg-color3, #F2F4FB);
    border-radius: 20px;
    padding: 30px;
    padding-bottom: 80px;
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
    width: 100%;
}

@media (max-width: 991px) {
    .section-services__fItem {
        padding: 20px;
        padding-bottom: 40px;
    }
}

.section-services__fItem.fitem2 {
    background-color: var(--bg-color2, #E2E7FF);
}

.section-services__fItem.fitem3 {
    background-color: var(--primary-color);
    padding-right: 14px;
    padding-top: 72px;
    background-image: url("../images/shapes/service-shape1-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.section-services__fItem.fitem3 .section-services__fItem__title {
    color: var(--body-color, #fff);
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 35px;
}

@media (max-width: 1200px) {
    .section-services__fItem.fitem3 .section-services__fItem__title {
        font-size: 36px;
        line-height: 43px;
    }
}

@media (max-width: 991px) {
    .section-services__fItem.fitem3 .section-services__fItem__title {
        font-size: 26px;
        line-height: 30px;
    }
}

.section-services__fItem__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    transition: all 0.4s ease-in-out;
}

.section-services__fItem__icon svg {
    fill: currentColor;
}

.section-services__fItem__icon img {
    width: 24px !important;
    transition: all 0.4s ease-in-out;
}

.section-services__fItem__title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .section-services__fItem__title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (max-width: 991px) {
    .section-services__fItem__title {
        font-size: 24px;
        line-height: 28px;
    }
}

.section-services__fItem__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--body-color, #fff);
    color: var(--primary-color);
    gap: 0 10px;
    border-color: var(--body-color, #fff);
}

.section-services__fItem__btn>svg {
    font-size: 13px;
}

.section-services__fItem__btn>svg svg {
    fill: currentColor;
}

.section-services__fItem__btn:hover {
    border-color: var(--body-color, #fff);
    color: var(--body-color, #fff);
}

.section-services__fItem__btn:hover>svg {
    filter: brightness(0) invert(1);
}

.section-services__fItem:hover .section-services__fItem__icon {
    background-color: var(--secondary-color, #6495ED);
}

.section-services__fItem:hover .section-services__fItem__icon img {
    transform: scale(0.9);
}

.section-services-two {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-services-two {
        padding: 35px 0;
    }
}

.section-services-two .container {
    max-width: 1350px;
}

.section-services-two .sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .section-services-two .sec-title {
        margin-bottom: 40px;
    }
}

.section-services-two .sec-title__title {
    text-align: center;
}

.section-services-two__col--icon-bg {
    text-align: center;
}

.section-services-two__col--icon-bg .section-services-two__icon {
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 1) !important;
    color: var(--body-color, #fff) !important;
}

.section-services-two__col:hover .section-services-two__icon>svg {
    transform: scale(0.9);
}

@media (max-width: 991px) {
    .section-services-two__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.section-services-two__icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-services-two__icon {
        margin-bottom: 22px;
    }
}

.section-services-two__icon>svg {
    fill: none;
    transition: all 0.5s ease;
}

.section-services-two__icon.activity-two {
    color: var(--primary-color);
}

.section-services-two__icon.send-two {
    background-color: rgba(var(--bg-color-green-rgb, 50, 165, 82), 0.1);
    color: var(--bg-color-green, #32A552);
}

.section-services-two__icon.document-two {
    background-color: rgba(var(--bg-color-purple-rgb, 162, 46, 254), 0.1);
    color: var(--bg-color-purple, #A22EFE);
}

.section-services-two__icon.shield-done-two {
    background-color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.1);
}

.section-services-two__icon.message-icon-two {
    background-color: rgba(var(--bg-color-red-rgb, 254, 46, 46), 0.1);
    color: var(--bg-color-red, #FE2E2E);
}

.section-services-two__icon.scan-icon-two {
    background-color: rgba(var(--bg-color-sky-blue-rgb, 0, 163, 255), 0.1);
    color: var(--bg-color-sky-blue, #00A3FF);
}

.section-services-two__icon.discounnt-icon-two {
    background-color: rgba(var(--bg-color-pink-rgb, 255, 0, 153), 0.1);
    color: var(--bg-color-pink, #FF0099);
}

.section-services-two__icon.buy-icon-two {
    background-color: rgba(var(--bg-color-dark-green-rgb, 0, 159, 150), 0.1);
    color: var(--bg-color-dark-green, #009F96);
}

.section-services-two__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .section-services-two__title {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 18px;
        text-align: center;
    }
}

.section-services-two__title>a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-services-two__title>a:hover {
    background-size: 100% 1px;
}

.section-services-two__text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-services-two__text {
        text-align: center;
    }
}

.section-services-two__btn {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    height: 58px;
    padding: 12px 41px;
    width: fit-content;
    margin: 0 auto;
    margin-top: 88px;
}

@media (max-width: 991px) {
    .section-services-two__btn {
        margin-top: 50px;
    }
}

.section-services-two__btn>svg {
    margin-left: 10px;
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
}

.section-services-two__btn:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.section-services-two__btn:hover>svg {
    transform: rotate(0);
    filter: brightness(0) invert(1);
}

.section-services-list {
    padding: 60px 0;
    background: url(../image/backgorund-for-technology.jpg);
    background-size: cover;
}

.read-more {
    font-size: 15px;
    padding: 6px 19px;
    position: relative;
    display: block;
    margin-top: 11px;
    color: #0044eb;
    border-radius: 8px;
    /* border-bottom: 1px solid #eee; */
    width: fit-content;
    transition: 0.3s;
    background: #e2e7ff;
    transition: 0.2s;
}

.read-more:hover {
    color: #fff;
    background: #0044eb;
}

.section-services-list__col {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    min-height: 388px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, .04);
}

@media (max-width: 991px) {
    .section-services-list {
        padding: 35px 0;
    }
    .read-more {
        text-align: center;
        margin: 0 auto;
    }
}

.section-services-list .container {
    max-width: 1350px;
}

.section-services-list .sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .section-services-list .sec-title {
        margin-bottom: 46px;
    }
}

.section-services-list .sec-title__title {
    text-align: center;
}

.section-services-list__col:hover .section-services-list__icon img {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .section-services-list__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.section-services-list__icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.section-services-list__icon img {
    width: auto !important;
    min-height: 40px;
    max-height: 40px;
    transition: all 0.5s ease;
}

.section-services-list__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: var(--primary-text-color, #001F3F);
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .section-services-list__title {
        text-align: center;
    }
}

.section-services-list__text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-services-list__text {
        text-align: center;
    }
}

.section-services-four {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-services-four {
        padding: 35px 0;
    }
}

.section-services-four .container {
    max-width: 1350px;
}

.section-services-four .sec-title {
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 75px;
}

@media (max-width: 991px) {
    .section-services-four .sec-title {
        margin-bottom: 30px;
    }
}

.section-services-four__col {
    transition: all 0.5s ease;
    border-radius: 16px;
    padding: 22px;
}

.section-services-four__col:hover {
    box-shadow: 0 5px 12px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.16);
    -webkit-box-shadow: 0 5px 12px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.16);
    -moz-box-shadow: 0 5px 12px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.16);
}

.section-services-four__col:hover .section-services-four__icon {
    transform: rotate(-33deg);
}

.section-services-four__iconwrap {
    transition: all 0.5s ease;
    min-height: 168px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .section-services-four__iconwrap {
        margin-bottom: 20px;
        min-height: 156px;
    }
}

.section-services-four__icon {
    width: 100%;
    transition: all 0.5s ease;
}

.section-services-four__icon img {
    width: 100px !important;
    min-height: 100px;
}

.section-services-four__info {
    position: relative;
    z-index: 2;
}

.section-services-four__title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-services-four__title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 12px;
    }
}

.section-services-four__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-services-four__title a:hover {
    background-size: 100% 1px;
}

.section-services-four__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-services-four__text {
        font-size: 16px;
        line-height: 25px;
    }
}

.services-details-seo {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .services-details-seo {
        padding: 35px 0;
    }
}

.services-details-seo .container {
    max-width: 1350px;
}

.services-details-seo .sidebar__title {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .services-details-seo .sidebar__title {
        margin-bottom: 20px;
    }
}

.services-details-seo__feature-img img {
    width: 100% !important;
    border-radius: 30px !important;
}

@media (max-width: 991px) {
    .services-details-seo__feature-img img {
        border-radius: 16px !important;
    }
}

.services-details-content .outline-btn {
    margin-top: 60px;
}

.services-details-seo__approach-feature {
    margin: 0 -15px;
}

.services-details-seo__approach-col {
    padding: 0 15px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .services-details-seo__approach-col {
        margin-bottom: 30px;
    }
}

.services-details-seo__approach-icon {
    width: 83px;
    height: 83px;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
    padding: 10px;
}

@media (max-width: 1200px) {
    .services-details-seo__approach-icon {
        width: 66px;
        height: 66px;
    }
}

@media (max-width: 991px) {
    .services-details-seo__approach-icon {
        width: 50px;
        height: 50px;
    }
}

.services-details-seo__approach-icon>svg {
    width: 100%;
    fill: none;
}

.services-details-seo__approach-content {
    width: calc((100% - 83px) / 1);
    padding-left: 30px;
}

@media (max-width: 1200px) {
    .services-details-seo__approach-content {
        width: calc((100% - 66px) / 1);
        padding-left: 22px;
    }
}

@media (max-width: 991px) {
    .services-details-seo__approach-content {
        width: calc((100% - 50px) / 1);
        padding-left: 18px;
    }
}

.services-details-seo__heading5 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
}

[data-bs-theme=dark] .section-services-four__col:hover {
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.3);
}

[data-bs-theme=dark] .section-services-two__col--icon-bg .section-services-two__icon {
    color: var(--primary-text-color) !important;
}


/* ===================================
        provide css
====================================== */

.section-provide {
    background-color: var(--body-color, #fff);
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-provide {
        padding: 35px 0;
    }
}

.section-provide .container {
    max-width: 1350px;
}

.section-provide__row {
    gap: 0 30px;
}

.section-provide__row--six {
    gap: 0;
}

.section-provide__content {
    width: calc((100% - 617px) / 1);
}

@media (max-width: 1200px) {
    .section-provide__content {
        width: calc((100% - 530px) / 1);
    }
}

@media (max-width: 991px) {
    .section-provide__content {
        width: calc((100% - 0px) / 1);
        padding-bottom: 48px;
    }
}

.section-provide__content--three {
    width: 100%;
}

.section-provide__content--six {
    width: 55%;
}

@media (max-width: 991px) {
    .section-provide__content--six {
        width: 100%;
    }
}

.section-provide__content-inner {
    max-width: 745px;
    margin-left: auto;
}

@media (min-width: 2100px) {
    .section-provide__content-inner {
        max-width: 756px;
    }
}

@media (max-width: 991px) {
    .section-provide__content-inner {
        max-width: 100%;
    }
}

.section-provide .sec-title {
    margin-bottom: 26px;
}

.section-provide__textinfo {
    max-width: 563px;
}

.section-provide__textinfo--six {
    max-width: 650px;
}

.section-provide__text {
    font-size: 18px;
    line-height: 29px;
    color: var(--primary-text-color, #001F3F);
    font-weight: 400;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .section-provide__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
    }
}

.section-provide__text span {
    font-weight: 600;
}

.section-provide__text--three {
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 74px;
}

@media (max-width: 991px) {
    .section-provide__text--three {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 45px;
    }
}

.section-provide__feature {
    gap: 0 43px;
    padding-bottom: 50px;
}

@media (max-width: 1200px) {
    .section-provide__feature {
        gap: 28px 0;
    }
}

@media (max-width: 991px) {
    .section-provide__feature {
        gap: 12px 0;
        padding-bottom: 30px;
    }
}

.section-provide__feature--three {
    gap: 0;
    padding-bottom: 65px;
}

@media (max-width: 767px) {
    .section-provide__feature--three {
        gap: 32px 0;
        padding-bottom: 48px;
    }
}

.section-provide__feature--six {
    max-width: 650px;
}

.section-provide__ftwrap {
    width: calc((100% - 86px) / 3);
}

@media (max-width: 1200px) {
    .section-provide__ftwrap {
        width: calc((100% - 0px) / 1);
    }
}

.section-provide__ftwrap:hover .connectivity {
    background-color: rgba(var(--bg-color-green-rgb, 50, 165, 82), 0.25);
}

.section-provide__ftwrap:hover .solutions {
    background-color: rgba(var(--bg-color-purple-rgb, 162, 46, 254), 0.25);
}

.section-provide__ftwrap:hover .optimized {
    background-color: rgba(var(--bg-color-red-rgb, 254, 46, 46), 0.25);
}

.section-provide__ftwrap:hover .section-provide__icon img {
    transform: scale(0.9);
}

.section-provide__ftwrap--three {
    width: 100%;
}

.section-provide__ftwrap--three:hover .section-provide__icon {
    background-color: initial;
}

.section-provide__ftwrap--three .section-provide__icon {
    width: initial;
    min-width: initial;
    height: initial;
    background-color: initial !important;
    justify-content: flex-start;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .section-provide__ftwrap--three .section-provide__icon {
        margin-bottom: 12px;
    }
}

.section-provide__ftwrap--three .section-provide__icon img {
    width: auto !important;
    min-height: 40px;
    max-height: 40px;
}

.section-provide__ftwrap--three .section-provide__fTitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    color: var(--body-text-color, #5C6671);
    padding: 0;
}

@media (max-width: 767px) {
    .section-provide__ftwrap--three .section-provide__fTitle {
        font-size: 18px;
        line-height: 28px;
    }
}

.section-provide__ftwrap--three .section-provide__fTitle>br {
    display: none;
}

.section-provide__icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--bg-color-green-rgb, 50, 165, 82), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.section-provide__icon.connectivity {
    color: var(--bg-color-green, #32A552);
}

.section-provide__icon.solutions {
    background-color: rgba(var(--bg-color-purple-rgb, 162, 46, 254), 0.08);
    color: var(--bg-color-purple, #A22EFE);
}

.section-provide__icon.optimized {
    background-color: rgba(var(--bg-color-red-rgb, 254, 46, 46), 0.08);
    color: var(--bg-color-red, #FE2E2E);
}

.section-provide__icon img {
    width: 25px !important;
    transition: all 0.3s;
}

.section-provide__icon svg {
    fill: none;
}

.section-provide__fTitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 0;
    padding-left: 18px;
}

@media (max-width: 1200px) {
    .section-provide__fTitle br {
        display: none;
    }
}

@media (max-width: 991px) {
    .section-provide__fTitle {
        font-size: 16px;
        line-height: 24px;
        padding-left: 12px;
    }
}

.section-provide__btn {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    height: 64px;
}

.section-provide__btn>svg {
    margin-left: 10px;
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
}

.section-provide__btn:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.section-provide__btn:hover>svg {
    transform: rotate(0);
    filter: brightness(0) invert(1);
}

.section-provide__right {
    width: 587px;
    min-width: 587px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .section-provide__right {
        width: 500px;
        min-width: 500px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .section-provide__right {
        width: 100%;
        min-width: initial;
    }
}

.section-provide__right--six {
    width: 45%;
    min-width: initial;
    padding-left: 30px;
    margin-right: -2px;
}

@media (max-width: 991px) {
    .section-provide__right--six {
        width: 100%;
        padding-left: 0;
    }
}

.section-provide__right__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 597px;
    top: 58px;
    left: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

@media (max-width: 1200px) {
    .section-provide__right__bg {
        top: 0;
        bottom: 0;
        margin: auto 0;
    }
}

.section-provide__right__flogowrap {
    position: relative;
    z-index: 2;
    top: 76px;
    left: 22px;
}

@media (max-width: 1200px) {
    .section-provide__right__flogowrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .section-provide__right__flogowrap {
        top: 0;
        left: 0;
    }
}

.section-provide__right__flogo {
    z-index: 2;
    border-radius: 10px;
    background-color: var(--body-color, #fff);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    padding: 18px;
}

.section-provide__right__flogo img {
    width: 100% !important;
}

@media (max-width: 1200px) {
    .section-provide__right__flogo {
        width: 100px !important;
        height: 100px !important;
        padding: 18px !important;
        position: static !important;
    }
}

.section-provide__right--three {
    width: 100%;
    min-width: initial;
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.22);
    border-radius: 30px;
    overflow: hidden;
    padding: 58px 56px 24px 56px;
    display: block;
}

@media (max-width: 1200px) {
    .section-provide__right--three {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .section-provide__right--three {
        width: 100%;
        padding: 30px 20px 24px 20px;
    }
}

.section-provide--three .section-provide__right__bg {
    background-repeat: repeat;
    background-position: left bottom;
    background-size: initial;
    max-height: 400px;
    top: initial;
    bottom: 16px;
}

.section-provide--three .section-provide__right__title-info {
    max-width: 493px;
    padding-bottom: 89px;
}

@media (max-width: 991px) {
    .section-provide--three .section-provide__right__title-info {
        max-width: 100%;
        padding-bottom: 50px;
    }
}

.section-provide--three .section-provide__right__title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 21px;
}

.section-provide--three .section-provide__right__text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.section-provide--three .section-provide__right__flogowrap {
    width: calc(100% + 114px);
    margin-left: -57px;
    justify-content: center;
    top: initial;
    right: initial;
    left: initial;
}

@media (max-width: 991px) {
    .section-provide--three .section-provide__right__flogowrap {
        width: calc(100% + 42px);
        margin-left: -21px;
    }
}

.section-provide--three .section-provide__right__flogowrap::before,
.section-provide--three .section-provide__right__flogowrap::after {
    content: "";
    position: absolute;
    width: calc(100% + 0px);
    height: 100%;
    top: 0;
    z-index: 3;
    background: linear-gradient(90deg, var(--bg-color3, #F2F4FB) 0%, rgba(var(--bg-color3-rgb, 242, 244, 251), 0) 16.2%, rgba(var(--bg-color3-rgb, 242, 244, 251), 0) 76.88%, var(--bg-color3, #F2F4FB) 100%);
}

.section-provide--three .section-provide__right__flogowrap::before {
    left: 0;
}

.section-provide--three .section-provide__right__flogowrap::after {
    right: 0;
}

.section-provide--three .section-provide__right__flogo-row {
    --marquee-elements-displayed: 2;
    --animation-dir: forwards;
    --animation-duration: 150s;
    position: relative;
    animation: scrollMarquee var(--animation-duration) var(--animation-dir) linear infinite;
}

.section-provide--three .section-provide__right__flogo-row[data-dir=right] {
    --animation-dir: reverse;
}

.section-provide--three .section-provide__right__flogo-row[data-speed=medium] {
    --animation-duration: 95s;
}

.section-provide--three .section-provide__right__flogo-row[data-speed=slow] {
    --animation-duration: 82s;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(-1700px);
    }
    100% {
        transform: translateX(0);
    }
}

.section-provide--three .section-provide__right__flogo {
    padding: 0 42px;
    height: 58px;
    min-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .section-provide--three .section-provide__right__flogo {
        width: initial !important;
        height: 58px !important;
        padding: 0 40px !important;
    }
}

.section-provide--three .section-provide__right__flogo img {
    width: 100% !important;
}

.provide-dark {
    display: none;
}

[data-bs-theme=dark] .provide-dark {
    display: block;
}

[data-bs-theme=dark] .provide-light {
    display: none;
}

[data-bs-theme=dark] .section-provide--three .section-provide__right__flogowrap::before,
[data-bs-theme=dark] .section-provide--three .section-provide__right__flogowrap::after {
    background: linear-gradient(90deg, #202932 0%, rgba(32, 41, 50, 0) 16.2%, rgba(32, 41, 50, 0) 76.88%, #202932 100%);
}


/* ===================================
        process css
====================================== */

.section-process {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-process {
        padding: 35px 0;
    }
}

.section-process .container {
    max-width: 1350px;
}

.section-process__image {
    min-height: 860px;
    margin-right: 15px;
}

@media (max-width: 991px) {
    .section-process__image {
        min-width: initial;
        width: 100%;
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 48px;
        min-height: initial;
        margin-right: 0;
    }
}

.section-process__image::after {
    content: "";
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    height: 607px;
    border-radius: 30px;
    background-color: var(--bg-color2, #E2E7FF);
    z-index: 1;
}

@media (max-width: 1200px) {
    .section-process__image::after {
        height: 500px;
    }
}

@media (max-width: 1023px) {
    .section-process__image::after {
        height: 100%;
        top: 42px;
    }
}

.section-process__rocketimg {
    position: absolute;
    width: 100%;
    max-width: 330px;
    top: -3px;
    left: 0;
    z-index: 3;
    animation: rocketEffect 1.1s infinite alternate;
}

@keyframes rocketEffect {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-16px);
    }
}

@media (max-width: 1200px) {
    .section-process__rocketimg {
        max-width: 260px;
    }
}

@media (max-width: 1023px) {
    .section-process__rocketimg {
        max-width: 200px;
        top: 8px;
    }
}

.section-process__rocketimg img {
    width: 100% !important;
}

.section-process__laptop {
    position: absolute;
    width: 100%;
    top: 64px;
    left: 0;
    z-index: 2;
    max-width: 582px;
}

@media (max-width: 1023px) {
    .section-process__laptop {
        position: relative;
        top: 10px;
    }
}

.section-process__laptop img {
    width: 100% !important;
    object-fit: cover;
}

.section-process__storage {
    position: absolute;
    width: 100%;
    top: 455px;
    right: 0;
    z-index: 2;
    max-width: 362px;
    animation: storageEffect 1.1s infinite alternate;
}

@keyframes storageEffect {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-15px);
    }
}

@media (max-width: 1200px) {
    .section-process__storage {
        max-width: 280px;
        top: 400px;
    }
}

@media (max-width: 1023px) {
    .section-process__storage {
        display: none;
    }
}

.section-process__storage img {
    width: 100% !important;
}

.section-process__content {
    padding-left: 10px;
}

@media (max-width: 991px) {
    .section-process__content {
        padding-left: 0;
    }
}

.section-process .sec-title {
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .section-process .sec-title {
        margin-bottom: 38px;
    }
}

.section-process__row:hover .section-process__icon {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.25);
}

.section-process__row+.section-process__row {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .section-process__row+.section-process__row {
        margin-top: 18px;
    }
}

.section-process__icon {
    width: 85px;
    min-width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s;
    font-size: 30px;
}

@media (max-width: 991px) {
    .section-process__icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

.section-process__icon svg {
    fill: none;
}

.section-process__info {
    padding-left: 32px;
}

@media (max-width: 991px) {
    .section-process__info {
        padding-left: 16px;
    }
}

.section-process__heading {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 0;
}

.section-process__heading a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-process__heading a:hover {
    background-size: 100% 1px;
}

@media (max-width: 991px) {
    .section-process__heading {
        font-size: 17px;
        line-height: 23px;
    }
}

.section-process__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-process__text {
        font-size: 16px;
        line-height: 24px;
    }
}

[data-bs-theme=dark] .section-progress-stories__experience-year,
[data-bs-theme=dark] .section-progress-stories__experience-text {
    color: var(--primary-text-color, #001F3F);
    border-color: var(--primary-text-color, #001F3F);
}


/* ===================================
        dashboard css
====================================== */

.section-dashboard {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-dashboard {
        padding: 35px 0;
    }
}

.section-dashboard .container {
    max-width: 1350px;
}

.section-dashboard .sec-title {
    max-width: 900px;
    margin: 0 auto;
}

.section-dashboard__bg {
    background-color: var(--bg-color2, #E2E7FF);
    border-radius: 0 0 30px 30px;
    padding: 0 80px 50px 80px;
    position: relative;
}

@media (max-width: 991px) {
    .section-dashboard__bg {
        padding: 0 40px 20px 40px;
    }
}

@media (max-width: 767px) {
    .section-dashboard__bg {
        padding: 0 15px 20px 15px;
    }
}

.section-dashboard__bg .row {
    position: relative;
    z-index: 2;
}

.section-dashboard__popimg {
    position: relative;
    z-index: 2;
    padding: 50px 80px 46px 80px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section-dashboard__popimg {
        padding: 40px 40px 30px 40px;
    }
}

@media (max-width: 767px) {
    .section-dashboard__popimg {
        padding: 28px 15px 20px 15px;
    }
}

.section-dashboard__popimg::after {
    position: absolute;
    content: "";
    width: 100%;
    background-color: var(--bg-color2, #E2E7FF);
    height: calc(100% + 0px);
    top: 275px;
    left: 0;
    z-index: -1;
    border-radius: 30px 30px 0 0;
}

@media (max-width: 991px) {
    .section-dashboard__popimg::after {
        top: 100px;
    }
}

.section-dashboard__popimg img {
    width: 100% !important;
    border-radius: 30px !important;
    box-shadow: 0px 4px 46.9px 0px rgba(9, 25, 40, 0.1);
    object-fit: cover;
}

@media (max-width: 991px) {
    .section-dashboard__popimg img {
        border-radius: 12px !important;
        box-shadow: 0px 4px 20px 0px rgba(9, 25, 40, 0.1);
    }
}

.section-dashboard__playwrap {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .section-dashboard__playwrap {
        width: 150px;
        height: 150px;
    }
}

.section-dashboard__playbtn {
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 991px) {
    .section-dashboard__playbtn {
        width: 70px;
        height: 70px;
    }
}

.section-dashboard__playbtn img {
    height: auto !important;
    border-radius: 50% !important;
}

.section-dashboard__playbtn .video-popup-link {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-dashboard .waves {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(var(--primary-color-rgb, 46, 77, 254), 0.3);
    opacity: 0;
    border-radius: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .section-dashboard .waves {
        width: 150px;
        height: 150px;
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

.section-dashboard .wave-1 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.section-dashboard .wave-2 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.section-dashboard .wave-3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

@media (max-width: 991px) {
    .section-dashboard__row {
        margin-top: 26px;
    }
}

.section-dashboard__row-icon {
    width: 85px;
    min-width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--body-color, #fff);
}

@media (max-width: 991px) {
    .section-dashboard__row-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.section-dashboard__row-icon svg {
    fill: none;
}

.section-dashboard__row-info {
    padding-left: 28px;
}

@media (max-width: 991px) {
    .section-dashboard__row-info {
        padding-left: 16px;
    }
}

.section-dashboard__row-title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 0;
}

.section-dashboard__row-title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-dashboard__row-title a:hover {
    background-size: 100% 1px;
}

@media (max-width: 991px) {
    .section-dashboard__row-title {
        font-size: 19px;
        line-height: 28px;
    }
}

.section-dashboard__row-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-dashboard__row-text {
        font-size: 16px;
        line-height: 23px;
    }
}

.section-dashboard--five {
    padding-bottom: 52px;
}

.section-dashboard--five .sec-title {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .section-dashboard--five .sec-title {
        margin-bottom: 30px;
    }
}

.section-dashboard--five .section-dashboard__popimg {
    padding: 0;
    max-height: 550px;
    border-radius: 30px;
    overflow: hidden;
}

.section-dashboard--five .section-dashboard__popimg img {
    width: 100% !important;
    object-fit: cover;
}

@media (max-width: 800px) {
    .section-dashboard--five .section-dashboard__popimg img {
        height: 355px;
    }
}

.section-dashboard--five .section-dashboard__popimg::after {
    content: none;
}

.waves {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(var(--primary-color-rgb, 46, 77, 254), 0.3);
    opacity: 0;
    border-radius: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .waves {
        width: 150px;
        height: 150px;
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

.wave-1 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.wave-2 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.wave-3 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

[data-bs-theme=dark] .section-dashboard__row-icon {
    color: var(--primary-text-color);
}


/*  newsletter css start */

.call-to-action {
    overflow: hidden;
    padding: 10px 0 20px;
    background: rgb(0, 68, 235);
    background: linear-gradient(243deg, rgba(0, 68, 235, 1) 21%, rgba(143, 10, 244, 1) 100%);
}

.call-to-action-bg-1 {
    overflow: hidden;
    padding: 10px 0 20px;
    background: url(../image/cta-bg-1.jpg);
    background-size: cover;
}

.call-to-action-bg-2 {
    overflow: hidden;
    padding: 10px 0 20px;
    background: url(../image/iot-cta-banner.jpg);
    background-size: cover;
}

@media (max-width: 991px) {
    .call-to-action {
        padding: 35px 0;
    }
}

.call-to-action .container {
    max-width: 1350px;
}

.call-to-action__wrap {
    position: relative;
    overflow: hidden;
}

.call-to-action__bgimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: right center;
}

.call-to-action__bg {
    border-radius: 30px;
    padding: 55px 50px 65px 50px;
}

@media (max-width: 991px) {
    .call-to-action__bg {
        flex-wrap: wrap;
        padding: 30px;
    }
}

.call-to-action__title {
    font-size: 48px;
    line-height: 67px;
    margin-bottom: 0;
    color: var(--body-color, #fff);
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .call-to-action__title {
        font-size: 40px;
        line-height: 50px;
        padding-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .call-to-action__title {
        font-size: 30px;
        line-height: 41px;
    }
}

.call-to-action__form {
    position: relative;
    z-index: 2;
    width: 48.9%;
}

@media (max-width: 991px) {
    .call-to-action__form {
        width: 100%;
    }
}

.call-to-action__form .form-group {
    position: relative;
    width: 100%;
}

.call-to-action input[type=email] {
    display: block;
    width: 100%;
    height: 70px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    outline: none;
    padding-left: 45px;
    padding-right: 20px;
    border: 3px solid var(--bg-color2, #E2E7FF);
    border-radius: 54px;
    color: var(--primary-color);
    background-color: var(--body-color, #fff);
    position: relative;
    z-index: 2;
}

.call-to-action input[type=email]:is(:focus,
 :active) {
    box-shadow: none;
}

.call-to-action input[type=email]:is(:focus,
 :active)+.call-to-action__field-bd-effect::before,
.call-to-action input[type=email]:is(:focus,
 :active)+.call-to-action__field-bd-effect::after {
    max-width: 100%;
    max-height: 100%;
}

.call-to-action input::-webkit-input-placeholder {
    color: var(--primary-color);
}

.call-to-action input::-moz-placeholder {
    color: var(--primary-color);
}

.call-to-action input::placeholder {
    color: var(--primary-color);
}

.call-to-action__field-bd-effect {
    position: absolute;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    top: 0;
    left: 0;
    z-index: 1;
}

.call-to-action__field-bd-effect::before,
.call-to-action__field-bd-effect::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s;
    border-radius: 54px;
}

.call-to-action__field-bd-effect::before {
    max-width: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-top: 3px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
    border-bottom: 3px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
}

.call-to-action__field-bd-effect::after {
    max-height: 0;
    margin: auto 0;
    top: 0;
    bottom: 0;
    border-left: 3px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
    border-right: 3px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
}

.call-to-action__newsletter-btn {
    position: absolute;
    width: fit-content;
    right: 3px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 64px;
    z-index: 3;
}

@media (max-width: 480px) {
    .call-to-action__newsletter-btn {
        width: 64px;
        height: 64px;
        background-image: url("../images/shapes/send-arrow.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px auto;
    }
    .call-to-action__newsletter-btn>span {
        text-indent: -999999px;
    }
}

.call-to-action__newsletter-btn>svg {
    margin-left: 10px;
    transform: rotate(-45deg);
    position: relative;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

@media (max-width: 480px) {
    .call-to-action__newsletter-btn>svg {
        padding: 0;
        top: 0;
    }
}

@media (max-width: 480px) {}

.call-to-action__newsletter-btn:hover>svg {
    filter: initial;
    transform: rotate(0);
}

.call-to-action--two .call-to-action__bg {
    padding: 64px 50px;
    gap: 0 13px;
}

@media (max-width: 991px) {
    .call-to-action--two .call-to-action__bg {
        padding: 40px 30px;
        gap: 18px 0;
    }
}

.call-to-action--two .call-to-action__mx {
    max-width: 700px;
    position: relative;
}

.call-to-action--two .call-to-action__business-arrow {
    position: absolute;
    width: 100%;
    height: auto;
    right: -155px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: -1;
}

@media (max-width: 1200px) {
    .call-to-action--two .call-to-action__business-arrow {
        right: -70px;
    }
}

.call-to-action--two .call-to-action__business-arrow>img {
    max-width: 188px;
    width: 100% !important;
}

.call-to-action--two .call-to-action__title {
    color: #fff;
}

.call-to-action--two .call-to-action__text {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    margin-top: 15px;
}

.call-to-action--two .call-to-action__btn {
    min-width: 252px;
}

@media (max-width: 1200px) {
    .call-to-action--two .call-to-action__btn {
        padding-left: 16px;
        padding-right: 16px;
    }
}

[data-bs-theme=dark] .call-to-action__business-arrow img {
    filter: brightness(1) invert(1);
}


/* ===================================
        testimonial css
====================================== */

.section-testimonial {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-testimonial {
        padding: 35px 0;
    }
}

.section-testimonial .container {
    max-width: 1350px;
}

.section-testimonial .sec-title {
    margin: 0 auto;
    margin-bottom: 48px;
    max-width: 870px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .section-testimonial .sec-title {
        margin-bottom: 55px;
    }
}

.section-testimonial .sec-title__title {
    text-align: center;
}

.section-testimonial__wrap {
    width: 100%;
    position: relative;
}

.section-testimonial .syntixuss-owl__carousel {
    width: auto !important;
}

.section-testimonial__item {
    position: relative;
}

.section-testimonial__bg {
    background-color: var(--primary-color);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .section-testimonial__bg {
        border-radius: 16px;
    }
}

.section-testimonial__item-col {
    display: flex;
    flex-wrap: wrap;
}

.section-testimonial__img {
    width: 40%;
    position: relative;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

@media (max-width: 991px) {
    .section-testimonial__img {
        width: 100%;
    }
}

.section-testimonial__img img {
    width: 100% !important;
    height: 100%;
    max-height: 455px;
    min-height: 455px;
    object-fit: cover;
    border-radius: 0 30px 30px 0 !important;
}

@media (max-width: 991px) {
    .section-testimonial__img img {
        border-radius: 0 0 16px 16px !important;
    }
}

.section-testimonial .section-dashboard__playbtn img {
    width: 132px !important;
    min-height: initial !important;
    min-height: initial !important;
}

@media (max-width: 991px) {
    .section-testimonial .section-dashboard__playbtn img {
        width: 70px !important;
    }
}

.section-testimonial__info {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 72px 20px 82px;
}

@media (max-width: 1200px) {
    .section-testimonial__info {
        padding: 20px 60px 20px 60px;
    }
}

@media (max-width: 991px) {
    .section-testimonial__info {
        width: 100%;
        padding: 30px 20px;
    }
}

.section-testimonial__review {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-testimonial__star {
    color: var(--bg-color2, #E2E7FF);
    font-size: 26px;
    line-height: 1;
    letter-spacing: 5px;
    color: var(--star-color, #0044eb);
}

.section-testimonial__text {
    font-size: 24px;
    line-height: 33px;
    font-weight: 800;
    color: var(--body-color, #fff);
    margin-bottom: 38px;
}

@media (max-width: 1200px) {
    .section-testimonial__text {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .section-testimonial__text {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 16px;
    }
}

.section-testimonial__name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
    color: var(--body-color, #fff);
    display: block;
}

@media (max-width: 991px) {
    .section-testimonial__name {
        font-size: 16px;
        line-height: 25px;
    }
}

.section-testimonial__designation {
    font-family: var(--syntixus-special-font, "DM Sans", sans-serif);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--body-color, #fff);
    position: relative;
    display: inline-block;
    padding-left: 24px;
}

@media (max-width: 991px) {
    .section-testimonial__designation {
        font-size: 16px;
        line-height: 25px;
    }
}

.section-testimonial__designation::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    background-color: var(--body-color, #fff);
}

.section-testimonial .owl-dots {
    left: 82px;
    bottom: 60px;
}

@media (max-width: 1200px) {
    .section-testimonial .owl-dots {
        bottom: 42px;
        left: 60px;
    }
}

.section-testimonial-style {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-testimonial-style {
        padding: 35px 0;
    }
}

.section-testimonial-style .container {
    max-width: 1350px;
}

.section-testimonial-style .sec-title {
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .section-testimonial-style .sec-title {
        margin-bottom: 30px;
    }
}

.section-testimonial-style__item {
    padding-bottom: 80px;
}

.section-testimonial-style__bg {
    background-color: var(--body-color);
    box-shadow: 0px 4px 40px 0px rgba(19, 15, 38, 0.1019607843);
    padding: 57px 90px;
    max-width: 1020px;
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 991px) {
    .section-testimonial-style__bg {
        padding: 35px 42px;
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .section-testimonial-style__bg {
        padding: 26px 30px;
    }
}

.section-testimonial-style__shape {
    position: absolute;
    width: calc(100% - 130px);
    height: 50%;
    box-shadow: 0px 4px 40px 0px rgba(19, 15, 38, 0.1019607843);
    left: 65px;
    right: 0;
    bottom: -37px;
    z-index: -1;
    border-radius: 30px;
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

@media (max-width: 767px) {
    .section-testimonial-style__shape {
        width: calc(100% - 90px);
        left: 45px;
    }
}

.section-testimonial-style__item-col {
    position: relative;
    z-index: 2;
    background-color: var(--body-color, #fff);
}

@media (max-width: 991px) {
    .section-testimonial-style__item-col {
        align-items: center;
    }
}

.section-testimonial-style__image {
    width: 200px;
}

@media (max-width: 767px) {
    .section-testimonial-style__image {
        width: 100%;
    }
}

.section-testimonial-style__image img {
    border-radius: 15px !important;
    height: 100%;
    max-height: 264px;
    object-fit: cover;
}

.section-testimonial-style__icon {
    position: relative;
    width: 117px;
    height: auto;
    top: -90px;
    left: -50px;
    z-index: 1;
    transition: all 0.5s ease;
}

.section-testimonial-style__icon img {
    border-radius: 0 !important;
}

.section-testimonial-style__info {
    width: calc((100% - 200px) / 1);
    padding-left: 30px;
}

@media (max-width: 991px) {
    .section-testimonial-style__info {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .section-testimonial-style__info {
        width: 100%;
        padding-left: 0;
        padding-top: 35px;
    }
}

.section-testimonial-style__review {
    margin-bottom: 21px;
}

@media (max-width: 991px) {
    .section-testimonial-style__review {
        margin-bottom: 16px;
    }
}

.section-testimonial-style__star {
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--star-color, #0044eb);
}

@media (max-width: 991px) {
    .section-testimonial-style__star {
        font-size: 21px;
        letter-spacing: 3px;
    }
}

.section-testimonial-style__trustpilot {
    width: 178px;
}

@media (max-width: 991px) {
    .section-testimonial-style__trustpilot {
        width: 123px;
    }
}

.section-testimonial-style__trustpilot img {
    width: 100% !important;
}

.section-testimonial-style__text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-testimonial-style__text {
        font-size: 16px;
        line-height: 26px;
    }
}

.section-testimonial-style__text>strong {
    font-weight: 600;
}

.section-testimonial-style__author {
    padding-top: 42px;
}

@media (max-width: 991px) {
    .section-testimonial-style__author {
        padding-top: 28px;
    }
}

.section-testimonial-style__name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
    color: var(--primary-text-color, #001F3F);
    display: block;
}

@media (max-width: 991px) {
    .section-testimonial-style__name {
        font-size: 18px;
        line-height: 28px;
    }
}

.section-testimonial-style__designation {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    display: block;
}

@media (max-width: 991px) {
    .section-testimonial-style__designation {
        font-size: 16px;
        line-height: 26px;
    }
}

.section-testimonial-style .owl-nav {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .section-testimonial-style .owl-nav {
        top: initial !important;
        bottom: 0 !important;
    }
}

.section-testimonial-style .owl-nav>button {
    border: 0 !important;
    opacity: 1 !important;
    background-color: #E2E7FF !important;
}

.section-testimonial-style .owl-nav>button:hover {
    background-color: #cbd9fb !important;
    color: #fff !important;
    -webkit-box-shadow: 0px 0px 0px 6px rgba(226, 231, 255, 1);
    -moz-box-shadow: 0px 0px 0px 6px rgba(226, 231, 255, 1);
    box-shadow: 0px 0px 0px 6px rgba( 226, 231, 255, 1);
}

.section-testimonial-style .active .section-testimonial-style__icon {
    top: -23px;
    left: -25px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .section-testimonial-style .active .section-testimonial-style__icon {
        top: -15px;
        left: -12px;
    }
}

.section-testimonial-style .active .section-testimonial-style__shape {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

[data-bs-theme=dark] .section-testimonial-style__bg {
    background-color: var(--bg-color2);
}

[data-bs-theme=dark] .section-testimonial-style__item-col {
    background-color: var(--bg-color2);
}

[data-bs-theme=dark] .section-testimonial-style__shape {
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2);
}


/* ===================================
        solutions css
====================================== */

.section-solutions {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-solutions {
        padding: 35px 0;
    }
}

.section-solutions .container {
    max-width: 1350px;
}

@media (max-width: 991px) {
    .section-solutions__col {
        padding-bottom: 48px;
    }
}

.section-solutions .sec-title {
    margin-bottom: 31px;
}

.section-solutions__text {
    color: var(--primary-text-color, #001F3F);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

.section-solutions__text>strong {
    font-weight: 600;
}

.section-solutions__text+.section-solutions__text {
    margin-top: 34px;
}

.section-solutions__btn {
    height: 73px;
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 49px;
    padding-right: 49px;
    margin-top: 86px;
}

@media (max-width: 991px) {
    .section-solutions__btn {
        margin-top: 38px;
    }
}

.section-solutions__btn>svg {
    transition: all 0.2s ease-in-out;
    transform: rotate(-45deg);
    margin-left: 10px;
}

.section-solutions__btn:hover {
    background-color: var(--primary-color);
    color: var(--body-color, #fff);
}

.section-solutions__btn:hover>svg {
    transform: rotate(0);
    filter: brightness(0) invert(1);
}

.section-solutions .section-services-two__title {
    margin-bottom: 20px;
}

.section-solutions .section-services-two__icon {
    border-radius: 16px;
}

.section-solutions__features-col:hover .section-services-two__icon>svg {
    transform: scale(0.9);
}

@media (max-width: 991px) {
    .section-solutions__features-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/* ===================================
        faq css
====================================== */

.section-faq {
    overflow: hidden;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-faq {
        padding: 35px 0;
    }
}

.section-faq .container {
    max-width: 900px;
}

.section-faq .sec-title {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.section-faq .sec-title__title {
    margin-bottom: 25px;
}

.section-faq__row {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-radius: 15px;
}

.section-faq__row.active .section-faq__title::after {
    content: "\f068";
}

.section-faq__row.active .section-faq__title {
    color: var(--primary-color);
}

.section-faq__row+.section-faq__row {
    margin-top: 20px;
}

.section-faq__title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    padding: 30px 35px;
    padding-right: 60px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.section-faq__title:hover {
    color: var(--primary-color);
}

.section-faq__title::after {
    font-family: "Font Awesome 6 Free";
    content: "+";
    position: absolute;
    width: 22px;
    height: 22px;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: var(--primary-text-color, #001F3F);
    font-size: 25px;
    line-height: 1;
}

@media (max-width: 991px) {
    .section-faq__title::after {
        right: 20px;
    }
}

@media (max-width: 991px) {
    .section-faq__title {
        padding: 16px 20px;
        padding-right: 50px;
    }
}

.section-faq__content {
    display: none;
    padding: 0 30px 18px 35px;
}

@media (max-width: 991px) {
    .section-faq__content {
        padding: 0 20px 18px 20px;
    }
}

.section-faq__text {
    color: var(--primary-text-color, #001F3F);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

@media (max-width: 991px) {
    .section-faq__text {
        font-size: 16px;
        line-height: 26px;
    }
}

.section-faq__list {
    margin-bottom: 16px;
    padding-left: 12px;
}

.section-faq__list li {
    color: var(--primary-text-color, #001F3F);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    position: relative;
    padding-left: 18px;
}

.section-faq__list li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 9px;
    left: 0;
    z-index: 1;
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.5);
}

@media (max-width: 991px) {
    .section-faq__list li {
        font-size: 16px;
        line-height: 26px;
    }
}

.section-faq__list li+li {
    margin-top: 11px;
}

.section-faq--three {
    overflow: initial;
}

.section-faq--three .container {
    max-width: 1350px;
}

.section-faq--three .section-faq__title-wrap {
    transition: all 0.5s ease;
}

@media (max-width: 991px) {
    .section-faq--three .section-faq__title-wrap {
        padding-bottom: 34px;
    }
}

[data-bs-theme=dark] .section-faq__row {
    background-color: var(--bg-color2, #E2E7FF);
}


/* ===================================
        rating css
====================================== */

.section-rating {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-rating {
        padding: 35px 0;
    }
}

.section-rating .container {
    max-width: 1680px;
}

.section-rating__bg {
    background-color: var(--bg-color3, #F2F4FB);
    border: 1px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
    border-radius: 30px;
    padding: 50px 0;
    padding-left: 48px;
    position: relative;
    overflow: hidden;
}

.section-rating__bg::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(270deg, var(--bg-color3, #F2F4FB) 2.14%, rgba(var(--bg-color3-rgb, 242, 244, 251), 0) 106.43%);
}

@media (max-width: 991px) {
    .section-rating__bg::after {
        content: none;
    }
}

@media (max-width: 1200px) {
    .section-rating__bg {
        padding: 30px 0;
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .section-rating__bg {
        border-radius: 20px;
    }
}

.section-rating__counting-wrap {
    width: 332px;
}

@media (max-width: 1050px) {
    .section-rating__counting-wrap {
        width: 100%;
        padding-right: 30px;
        padding-bottom: 35px;
    }
}

.section-rating__counter-bx {
    background-color: var(--primary-color);
    box-shadow: 0px 4px 40px 0px rgba(44, 54, 109, 0.2509803922);
    border-radius: 16px;
    padding: 29px 30px 22px 30px;
}

@media (max-width: 1050px) {
    .section-rating__counter-bx {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-rating__counter-bx {
        padding: 22px 18px;
    }
}

.section-rating__counter-bx li {
    padding: 0 24px;
    position: relative;
}

@media (max-width: 1050px) {
    .section-rating__counter-bx li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .section-rating__counter-bx li {
        padding: 0 15px;
    }
}

.section-rating__counter-bx li:first-child {
    padding-left: 0;
}

.section-rating__counter-bx li+li {
    padding-right: 0;
}

.section-rating__counter-bx li+li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--body-color, #fff);
}

.section-rating__counter-bx .section-hero-two__funfactcount {
    font-size: 32px;
    line-height: 27px;
    color: var(--body-color, #fff);
    display: block;
    padding-left: 2px;
}

@media (max-width: 767px) {
    .section-rating__counter-bx .section-hero-two__funfactcount {
        font-size: 24px;
        line-height: 22px;
    }
}

.section-rating__counter-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--bg-color2, #E2E7FF);
    font-weight: 400;
    margin-bottom: 0;
}

.section-rating__slider-wrap {
    width: calc((100% - 356px) / 1);
}

@media (max-width: 1200px) {
    .section-rating__slider-wrap {
        width: calc((100% - 332px) / 1);
    }
}

@media (max-width: 1050px) {
    .section-rating__slider-wrap {
        width: calc((100% - 0px) / 1);
        padding-right: 30px;
    }
}

.section-rating__slider-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--primary-text-color, #001F3F);
    width: 287px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-rating__slider-title {
        font-size: 16px;
        line-height: 26px;
        width: 100%;
        margin-bottom: 25px;
    }
}

.section-rating__slider-bx {
    width: calc((100% - 287px) / 1);
    padding-left: 50px;
    position: relative;
}

@media (max-width: 1200px) {
    .section-rating__slider-bx {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .section-rating__slider-bx {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .section-rating__slider-item {
        justify-content: center;
    }
}

.section-rating__slider-content {
    padding-left: 12px;
}

.section-rating__slider-heading {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    color: var(--body-text-color, #5C6671);
    margin-bottom: 6px;
}

.section-rating .section-hero__review {
    margin-bottom: 6px;
}

.section-rating .section-hero__rvw-text {
    font-size: 19px;
    line-height: 19px;
    font-weight: 800;
    color: var(--star-color2, #FEA500);
    margin-bottom: 0;
}

.section-rating .section-hero__star-wrap {
    padding-left: 12px;
}

.section-rating .star-icon {
    color: var(--star-color2, #FEA500);
    font-size: 19px;
    line-height: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.section-rating__slider-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.section-client-rating {
    position: relative;
    padding: 60px 0;
}

.section-client-rating::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 35%;
    left: 0;
    bottom: 35px;
    background: linear-gradient(180deg, rgba(var(--body-color-rgb, 255, 255, 255), 0.12) 0%, var(--body-color, #fff) 62.94%);
    z-index: 1;
}

@media (max-width: 991px) {
    .section-client-rating {
        padding: 35px 0;
    }
}

.section-client-rating .container {
    max-width: 1350px;
}

.section-client-rating .sec-title {
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 87px;
}

@media (max-width: 991px) {
    .section-client-rating .sec-title {
        margin-bottom: 30px;
    }
}

.section-client-rating__content {
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.section-client-rating__content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 150px;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--body-color, #fff) 30%, var(--body-color, #fff) 0%, rgba(var(--body-color-rgb, 255, 255, 255), 0) 74%);
}

.section-client-rating__item-wrap {
    max-height: 1190px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 991px) {
    .section-client-rating__item-wrap {
        max-height: 650px;
        margin-bottom: 45px;
    }
}

.section-client-rating__item-col {
    --animation-dir: forwards;
    --animation-duration: 75s;
    transition: all 0.5s ease-in;
    animation: scrollTop var(--animation-duration) var(--animation-dir) linear infinite;
    width: 25%;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .section-client-rating__item-col {
        width: 33.3%;
    }
}

@media (max-width: 991px) {
    .section-client-rating__item-col {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .section-client-rating__item-col {
        width: 100%;
    }
}

.section-client-rating__item-col:hover {
    animation-play-state: paused;
}

.section-client-rating__item-col[data-dir=top] {
    --animation-dir: forwards;
}

@keyframes scrollTop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.section-client-rating__item-col+.section-client-rating__item-col {
    margin-top: 30px;
}

.section-client-rating__item {
    width: 100%;
    height: auto !important;
    background-color: var(--body-color, #fff);
    border-radius: 30px;
    box-shadow: 0px 4px 18px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
    margin-bottom: 30px;
}

.section-client-rating__bg {
    overflow: hidden;
    padding: 30px;
    padding-right: 20px;
}

.section-client-rating__review {
    padding-bottom: 9px;
}

.section-client-rating .star-icon {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 6px;
    color: var(--star-color, #0044eb);
}

.section-client-rating__titlewrap {
    padding-bottom: 20px;
}

.section-client-rating__title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .section-client-rating__title {
        font-size: 16px;
        line-height: 25px;
    }
}

.section-client-rating__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-client-rating__text {
        font-size: 16px;
        line-height: 25px;
    }
}

.section-client-rating__author__img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.section-client-rating__author__img img {
    width: 100% !important;
    border-radius: 50% !important;
}

.section-client-rating__author__info {
    padding-left: 15px;
}

.section-client-rating__author__name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 2px;
}

.section-client-rating__author__designation {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

.section-client-rating__btn {
    margin: 0 auto;
    padding: 8px 45px;
    height: 64px;
    min-width: 360px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .section-client-rating__btn {
        min-width: initial;
    }
}

.section-client-rating__btn>svg {
    filter: brightness(0) invert(1);
    transform: rotate(-45deg);
    margin-left: 10px;
    transition: all 0.5s ease;
}

.section-client-rating__btn:hover>svg {
    filter: initial;
    transform: rotate(0);
}

[data-bs-theme=dark] .section-rating__bg {
    background-color: var(--body-color);
}

[data-bs-theme=dark] .section-rating__bg::after {
    background: linear-gradient(270deg, var(--body-color) 2.14%, rgba(var(--body-color-rgb), 0) 106.43%);
}

[data-bs-theme=dark] .section-client-rating__item {
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
}


/* ===================================
        team css
====================================== */

.section-team {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-team {
        padding: 35px 0;
    }
}

.section-team .container {
    max-width: 1680px;
}

.section-team .sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 872px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .section-team .sec-title {
        margin-bottom: 30px;
    }
}

.section-team .sec-title__title {
    text-align: center;
}

.section-team__wrap {
    position: relative;
    padding: 0 30px;
    padding-bottom: 64px;
}

.section-team__wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.3);
    border-radius: 30px;
}

.section-team__max-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-team__image {
    height: 510px;
    width: 100%;
    border-radius: 30px !important;
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .section-team__image {
        margin-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .section-team__image {
        height: 400px;
    }
}

.section-team__image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    object-position: center center;
    border-radius: 30px !important;
}

@media (max-width: 991px) {
    .section-team__feature-col+.section-team__feature-col {
        margin-top: 22px;
    }
}

.section-team__feature-icon {
    width: 75px;
    min-width: 75px;
    height: 75px;
    background-color: var(--body-color, #fff);
    box-shadow: 0px 4px 20px 0px rgba(0, 31, 63, 0.1019607843);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .section-team__feature-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }
}

.section-team__feature-icon img {
    min-height: 51px;
    max-height: 51px;
}

@media (max-width: 1200px) {
    .section-team__feature-icon img {
        min-height: 38px;
        max-height: 38px;
    }
}

.section-team__feature-info {
    width: calc(100% - 75px);
    padding-left: 38px;
}

@media (max-width: 1200px) {
    .section-team__feature-info {
        width: calc(100% - 60px);
        padding-left: 22px;
    }
}

.section-team__feature-titel {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
}

.section-team__feature-titel a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-team__feature-titel a:hover {
    background-size: 100% 1px;
}

@media (max-width: 991px) {
    .section-team__feature-titel {
        font-size: 20px;
        line-height: 28px;
    }
}

.section-team__feature-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-team__feature-text {
        font-size: 16px;
        line-height: 25px;
    }
}

.team-seo-expert {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .team-seo-expert {
        padding: 35px 0;
    }
}

.team-seo-expert .container {
    max-width: 1350px;
}

.team-seo-expert__menimg {
    max-width: 490px;
    padding: 22px 40px;
}

@media (max-width: 991px) {
    .team-seo-expert__menimg {
        max-width: 100%;
    }
}

.team-seo-expert__img img {
    width: 100% !important;
    border-radius: 30px !important;
    object-fit: cover;
    height: 100%;
}

.team-seo-expert__shape.dots-shape {
    right: 44px;
}

.team-seo-expert__shape.bg-shape {
    width: 175px;
    height: 415px;
    top: 75px;
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.5);
    border-radius: 30px;
}

.team-seo-expert__shape img {
    width: auto !important;
}

.team-seo-expert__content {
    max-width: 760px;
}

@media (max-width: 991px) {
    .team-seo-expert__content {
        max-width: 100%;
    }
}

.team-seo-expert .sec-title {
    margin-bottom: 38px;
}

.team-seo-expert .sec-title__title {
    margin-bottom: 63px;
}

@media (max-width: 991px) {
    .team-seo-expert .sec-title__title {
        margin-bottom: 30px;
    }
}

.team-seo-expert__signature {
    width: 240px;
}

.team-seo-expert__signature img {
    width: 100% !important;
}

.team-seo-expert__name {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
}

.team-seo-expert__designation {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    color: var(--body-text-color, #5C6671);
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .team-seo-expert__designation {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 25px;
    }
}

.team-seo-expert__details li strong {
    color: rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.6);
}

.team-seo-expert--single .team-seo-expert__menimg {
    margin-bottom: 52px;
}

@media (max-width: 991px) {
    .team-seo-expert--single .team-seo-expert__menimg {
        margin-bottom: 38px;
    }
}

.team-seo-expert--single .sec-title {
    margin-bottom: 62px;
}

@media (max-width: 991px) {
    .team-seo-expert--single .sec-title {
        margin-bottom: 42px;
    }
}

.team-seo-expert--single .team-seo-expert__name {
    font-size: 36px;
    line-height: 50px;
}

@media (max-width: 991px) {
    .team-seo-expert--single .team-seo-expert__name {
        font-size: 28px;
        line-height: 34px;
    }
}

.team-seo-expert--single .team-seo-expert__details {
    margin-bottom: 26px;
}

.team-seo-expert--single .single-item__title {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .team-seo-expert--single .single-item__title {
        margin-bottom: 25px;
    }
}

.team-seo-expert--single .single-item+.single-item {
    margin-top: 74px;
}

@media (max-width: 991px) {
    .team-seo-expert--single .single-item+.single-item {
        margin-top: 56px;
    }
}

.team-seo-expert--single__list li {
    position: relative;
    padding-left: 48px;
}

@media (max-width: 991px) {
    .team-seo-expert--single__list li {
        padding-left: 38px;
    }
}

.team-seo-expert--single__list li::before {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 4px;
    left: 0;
    z-index: 1;
    background-image: url("../image/blue-tick-icon-01.svg");
    background-size: 20px auto;
    background-repeat: no-repeat;
}

.team-seo-expert--single__list li+li {
    margin-top: 15px;
}

.team-carousel__slider .syntixuss-owl__carousel {
    padding-bottom: 25px;
}

.team-carousel__slider .owl-dots {
    justify-content: center;
}

.team-carousel__slider .owl-dots .owl-dot {
    background-color: var(--bg-color, #001F3F) !important;
}

.team-carousel__slider .owl-dots .owl-dot.active {
    background-color: var(--primary-color) !important;
}

[data-bs-theme=dark] .team-carousel__slider .owl-dots .owl-dot {
    background-color: var(--body-color, #fff) !important;
}

[data-bs-theme=dark] .team-carousel__slider .owl-dots .owl-dot.active {
    background-color: var(--primary-color) !important;
}

[data-bs-theme=dark] .team-seo-expert__signature img {
    filter: brightness(0) invert(1);
}


/* ===================================
        study css
====================================== */

.section-study {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-study {
        padding: 35px 0;
    }
}

.section-study .container {
    max-width: 1350px;
}

.section-study .sec-title {
    max-width: 870px;
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .section-study .sec-title {
        margin-bottom: 30px;
    }
}

.section-study__col:hover .section-study__image::after {
    opacity: 1;
    visibility: visible;
}

.section-study__col:hover .section-study__title::after {
    width: 100%;
}

.section-study__image {
    width: 100%;
    height: 100%;
    border-radius: 30px !important;
    overflow: hidden;
    position: relative;
}

.section-study__image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(var(--bg-color-rgb, 0, 31, 63), 0.3);
    transition: all 0.5s ease;
}

.section-study__image img {
    width: 100% !important;
    height: 100%;
    border-radius: 30px !important;
    object-fit: cover !important;
}

@media (max-width: 991px) {
    .section-study__image img {
        border-radius: 16px !important;
    }
}

.section-study__info {
    position: absolute;
    left: 15px;
    bottom: 18px;
    z-index: 1;
    width: calc(100% - 30px);
    height: auto;
    background-color: var(--bg-color, #001F3F);
    border-radius: 18px;
    padding: 11px 23px 22px 23px;
}

.section-study__info--teams {
    background-color: rgba(var(--bg-color-rgb, 0, 31, 63), 0.35);
    backdrop-filter: blur(5px);
}

.section-study__title {
    font-size: 24px;
    line-height: 34px;
    color: var(--body-color, #fff);
    position: relative;
    display: inline-block;
    padding-bottom: 9px;
    margin-bottom: 11px;
    transition: all 0.5s ease;
}

@media (max-width: 991px) {
    .section-study__title {
        font-size: 22px;
        line-height: 31px;
    }
}

.section-study__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 1px;
    background-color: var(--body-color, #fff);
    transition: all 0.5s ease;
}

.section-study__text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--body-color, #fff);
    margin-bottom: 0;
}


/* ===================================
        form css
====================================== */

.section-form {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-form {
        padding: 35px 0;
    }
}

.section-form .container {
    max-width: 1680px;
}

.section-form__bg {
    background-color: var(--primary-color);
    position: relative;
    border-radius: 30px;
    padding: 0px 20px 0px 0px;
}

@media (max-width: 991px) {
    .section-form__bg {
        padding-top: 52px;
    }
}

.section-form__bgimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.2;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.section-form__inner-mx {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-form__content {
    width: calc((41% - 0px) / 1);
    padding-bottom: 45px;
    position: relative;
    overflow: hidden;
}

.contact-us-bg {
    object-fit: cover;
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 30px 0px 0px 30px;
}

@media (max-width: 991px) {
    .section-form__content {
        width: 100%;
    }
    .contact-us-bg {
        object-fit: cover;
        width: 100%;
        position: relative;
        height: 100%;
        border-radius: 30px 30px;
    }
}

.section-form__icon {
    width: 75px;
    height: 75px;
    background-color: var(--body-color, #fff);
    border-radius: 8px;
    margin-bottom: 13px;
}

.section-form__icon img {
    width: 46px !important;
}

.section-form .sec-title {
    margin-bottom: 0;
}

.section-form .sec-title__title {
    color: var(--body-color, #fff);
    margin-bottom: 9px;
}

.section-form .sec-title__text {
    color: var(--body-color, #fff);
    padding-right: 70px;
}

@media (max-width: 991px) {
    .section-form .sec-title__text {
        font-size: 16px;
        line-height: 26px;
        padding-right: 0;
    }
}

.section-form__form {
    width: calc((59% - 0px) / 1);
}

@media (max-width: 991px) {
    .section-form__form {
        width: 100%;
    }
}

.section-form-enquiry {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .section-form-enquiry {
        margin-bottom: -140px;
    }
}

.section-form-enquiry .container {
    max-width: 1350px;
}

.section-form-enquiry .section-form__bg {
    background-color: var(--body-color, #fff);
    box-shadow: 0px -8px 40px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
}

@media (max-width: 991px) {
    .section-form-enquiry .section-form__bg {
        padding: 25px 20px;
    }
}

.section-form-enquiry .section-form__icon {
    box-shadow: 0px 4px 20px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
}

.section-form-enquiry .sec-title__title {
    color: var(--primary-text-color, #001F3F);
}

.section-form-enquiry .sec-title__text {
    color: var(--body-text-color, #5C6671);
}

.section-form-enquiry .section-form__form {
    width: calc(54% + 0px);
    margin-left: auto;
    padding: 38px 35px;
}

@media (max-width: 991px) {
    .section-form-enquiry .section-form__form {
        width: 100%;
    }
}

.section-form-enquiry .form-control {
    border-width: 2px;
    border-color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.6);
    background-color: var(--body-color, #fff);
    color: var(--primary-text-color, #001F3F);
}

.section-form-enquiry .custom-select .form-control {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .custom-select .attr-remove::after,
.section-form-enquiry .custom-select .custom_selected::after {
    filter: opacity(0.2);
}

.section-form-enquiry .custom-select .attr-remove {
    color: var(--primary-text-color, #001F3F);
}

.section-form-enquiry .custom_select_opt_wrap {
    border: 2px solid rgba(var(--icon-color-rgb, 192, 192, 192), 0.6);
    border-top: 0;
}

.section-form-enquiry .custom_select_opt:hover {
    color: var(--body-color, #fff);
}

.section-form-enquiry .form-control::-webkit-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .form-control:-moz-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .form-control::-moz-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .form-control:-ms-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .form-control::-ms-input-placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

.section-form-enquiry .form-control::placeholder {
    color: rgba(var(--icon-color-rgb, 192, 192, 192), 0.7);
}

[data-bs-theme=dark] .section-form-enquiry .section-form__bg {
    box-shadow: 0px -8px 40px 0px rgba(0, 0, 0, 0.3);
}


/* ===================================
        feature css
====================================== */

.section-feature {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-feature {
        padding: 35px 0;
    }
}

.section-feature .container {
    max-width: 1350px;
}

.section-feature .sec-title {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .section-feature .sec-title {
        margin-bottom: 30px;
    }
}

.section-feature__bg {
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.6);
    border-radius: 15px !important;
    border: 2px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.15);
    padding-top: 200px;
    padding: 200px 24px 80px 24px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section-feature__bg {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 130px 20px 45px 20px;
    }
}

.section-feature__bg:hover .section-feature__bgimg {
    opacity: 0.3;
    transform: translateY(-65px);
}

.section-feature__bg:hover .section-feature__icon img {
    opacity: 0.9;
    transform: scale(0.95) rotate(70deg);
}

.section-feature__bgimg {
    background-repeat: no-repeat;
    opacity: 0.22;
    transition: all 0.5s ease;
}

@media (max-width: 991px) {
    .section-feature__bgimg {
        background-position: center top;
    }
}

.section-feature__icon {
    min-height: 100px;
    width: 100px;
    margin-bottom: 8px;
    transition: all 0.5s ease;
}

.section-feature__icon img {
    width: 100% !important;
    transition: all 0.5s ease;
}

.section-feature__title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .section-feature__title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 12px;
        text-align: center;
    }
}

.section-feature__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-feature__title a:hover {
    background-size: 100% 1px;
}

.section-feature__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-feature__text {
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }
}

.section-feature--two .section-feature__bg {
    border-width: 1px;
    padding: 24px 16px 16px 16px;
}

.section-feature--two .section-feature__image {
    width: 100%;
    margin-bottom: 64px;
}

.section-feature--two .section-feature__image img {
    width: 100% !important;
    min-height: 200px;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.section-feature--two .section-feature__info {
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.5);
    padding: 40px 25px;
}


/* ===================================
        Approach css
====================================== */

.section-approach {
    padding: 60px 0;
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .section-approach {
        padding: 35px 0;
        padding-bottom: 20px;
    }
}

.section-approach .container {
    max-width: 1350px;
}

.section-approach .sec-title {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 78px;
}

.section-approach__facilities {
    gap: 20px;
    padding-bottom: 20px;
}

.section-approach__facilities__col {
    width: calc((100% - 80px) / 5);
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.5);
    border-radius: 10px;
    padding: 16px 25px;
    transition: all 0.5s ease;
}

@media (max-width: 1279px) {
    .section-approach__facilities__col {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 991px) {
    .section-approach__facilities__col {
        width: calc((100% - 0px) / 1);
    }
}

.section-approach__facilities__col:hover {
    background-color: var(--primary-color);
}

.section-approach__facilities__col:hover .section-approach__facilities__icon img {
    filter: brightness(0) invert(1);
}

.section-approach__facilities__col:hover .section-approach__facilities__title {
    color: var(--body-color, #fff);
}

.section-approach__facilities__icon img {
    width: auto !important;
    transition: all 0.5s ease;
}

.section-approach__facilities__titlewrap {
    padding-left: 23px;
}

.section-approach__facilities__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 0;
    color: var(--body-text-color, #5C6671);
    transition: all 0.5s ease;
}

@media (max-width: 1279px) {
    .section-approach__facilities__title br {
        display: none;
    }
}

.section-approach__content-bg {
    background-color: rgba(226, 231, 255, 0.5);
    border-radius: 30px;
    padding: 30px;
    padding-left: 82px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1279px) {
    .section-approach__content-bg {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .section-approach__content-bg {
        padding: 20px;
    }
}

.section-approach__left {
    width: 100%;
    max-width: 585px;
}

@media (max-width: 991px) {
    .section-approach__left {
        max-width: initial;
        padding-bottom: 45px;
    }
}

.section-approach__title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-approach__title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }
}

.section-approach__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .section-approach__text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 22px;
    }
}

.section-approach__btn {
    padding-left: 34px;
    padding-right: 34px;
}

.section-approach__image {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .section-approach__image {
        max-width: initial;
        margin-left: 0;
    }
}

.section-approach__image img {
    width: 100% !important;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .section-approach__image img {
        border-radius: 15px;
    }
}

.section-approach .tab-item {
    cursor: pointer;
}

.section-approach .tab-item.tab-active {
    background-color: var(--primary-color);
}

.section-approach .tab-item.tab-active .section-approach__facilities__icon img {
    filter: brightness(0) invert(1);
}

.section-approach .tab-item.tab-active .section-approach__facilities__title {
    color: var(--body-color, #fff);
}

.section-approach .tab-content {
    opacity: 0;
    visibility: hidden;
    transition: transform 1.3s ease, opacity 0.5s ease, visibility 0.5s ease;
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    z-index: 1;
    transform: translateY(80px);
}

.section-approach .tab-content.content-active {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


/* ===================================
        funfact css
====================================== */

.section-funfact {
    padding: 60px 0;
    background: #001f3f;
}

@media (max-width: 991px) {
    .section-funfact {
        padding: 35px 0;
    }
}

.section-funfact .container {
    max-width: 1350px;
}

@media (max-width: 1280px) {
    .section-funfact__list {
        gap: 25px 0;
    }
}

.section-funfact__item {
    width: auto;
}

@media (max-width: 1280px) {
    .section-funfact__item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .section-funfact__item {
        width: 100%;
    }
}

.section-funfact__item+.section-funfact__item {
    padding-left: 12px;
}

@media (max-width: 1280px) {
    .section-funfact__item+.section-funfact__item {
        padding-left: 0;
    }
}

.section-funfact__content {
    max-width: 290px;
}

@media (max-width: 1280px) {
    .section-funfact__content {
        max-width: 100%;
    }
}

.section-funfact__count {
    font-size: 62px;
    font-family: inter;
    font-weight: 800;
    line-height: 78px;
    color: #fff;
}

@media (max-width: 991px) {
    .section-funfact__count {
        font-size: 52px;
        font-weight: 800;
        line-height: 68px;
    }
}

.section-funfact__count--two {
    color: #fff;
}

.section-funfact__counter-text {
    font-size: 62px;
    font-weight: 800;
    line-height: 78px;
    letter-spacing: -0.05em;
    color: #fff;
}

@media (max-width: 991px) {
    .section-funfact__counter-text {
        font-size: 52px;
        font-weight: 800;
        line-height: 68px;
    }
}

.section-funfact__counter-text--two {
    color: var(--body-color, #fff);
}

.section-funfact__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
    color: #fff;
    margin-bottom: 0;
    padding-left: 14px;
}

@media (max-width: 991px) {
    .section-funfact__text {
        font-size: 17px;
        line-height: 26px;
    }
}

.section-funfact__text--two {
    color: var(--body-color, #fff);
}

.funfact-services-details-bg {
    background-color: var(--primary-color);
    border-radius: 30px;
    max-width: 1650px;
    margin: 0 auto;
    padding: 110px 165px;
}

.funfact-parallax {
    background-image: var(--funfact-parallax-img);
    background-repeat: var(--funfact-parallax-bg-repeat);
    background-size: var(--funfact-parallax-bg-size);
    background-position: var(--funfact-parallax-bg-position);
    opacity: var(--funfact-parallax-opacity, 0.31);
}


/* ===================================
        why-choose css
====================================== */

.section-why-choose {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-why-choose {
        padding: 35px 0;
    }
}

.section-why-choose .container {
    max-width: 1350px;
}

.section-why-choose__images {
    padding: 22px 40px;
}

@media (max-width: 1200px) {
    .section-why-choose__images {
        padding: 18px 25px;
    }
}

@media (max-width: 991px) {
    .section-why-choose__images {
        margin-bottom: 38px;
    }
}

.section-why-choose__img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.section-why-choose__img img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .section-why-choose__img img {
        border-radius: 16px !important;
    }
}

.section-why-choose__shape {
    width: auto;
    height: auto;
}

.section-why-choose__shape img {
    width: auto !important;
}

.section-why-choose__shape.dots-shape {
    right: 44px;
}

.section-why-choose__shape.bg-shape {
    width: 175px;
    height: 415px;
    top: 75px;
    background-color: rgba(var(--bg-color2-rgb, 226, 231, 255), 0.5);
    border-radius: 30px;
}

.section-why-choose__content {
    padding-left: 64px;
}

@media (max-width: 1200px) {
    .section-why-choose__content {
        padding-left: 32px;
    }
}

@media (max-width: 991px) {
    .section-why-choose__content {
        width: 100%;
        padding-left: 0;
    }
}

.section-why-choose .sec-title {
    margin-bottom: 38px;
}

@media (max-width: 991px) {
    .section-why-choose .sec-title {
        margin-bottom: 30px;
    }
}

.section-why-choose .sec-title__title {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .section-why-choose .sec-title__title {
        margin-bottom: 16px;
    }
}

@media (max-width: 991px) {
    .section-why-choose__features-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.section-why-choose__icon {
    margin-bottom: 10px;
}

.section-why-choose__icon.document-two {
    color: var(--bg-color-purple, #A22EFE);
}

.section-why-choose__icon.discounnt-icon-two {
    color: var(--bg-color-pink, #FF0099);
}

.section-why-choose__icon.buy-icon-two {
    color: var(--bg-color-dark-green, #009F96);
}

.section-why-choose__icon svg {
    fill: none;
}

.section-why-choose__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .section-why-choose__title {
        font-size: 18px;
        text-align: center;
    }
}

.section-why-choose__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.section-why-choose__title a:hover {
    background-size: 100% 1px;
}

.section-why-choose__text {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-why-choose__text {
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }
}


/* ===================================
        progress-stories css
====================================== */

.section-progress-stories {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-progress-stories {
        padding: 35px 0;
    }
}

.section-progress-stories .container {
    max-width: 1350px;
}

.section-progress-stories__images {
    padding-bottom: 61px;
}

@media (max-width: 991px) {
    .section-progress-stories__images {
        width: 100%;
        margin-bottom: 46px;
    }
}

.section-progress-stories__images img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 30px !important;
}

@media (max-width: 991px) {
    .section-progress-stories__images img {
        border-radius: 16px !important;
    }
}

.section-progress-stories__experience {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 30px;
}

.section-progress-stories__bg {
    width: 100%;
    max-width: 390px;
    background-color: var(--primary-color);
    border-radius: 18px;
    padding: 17px 38px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section-progress-stories__bg {
        padding: 12px 20px;
    }
}

.section-progress-stories__experience-year {
    color: var(--body-color, #fff);
    font-size: 82px;
    line-height: 97px;
    font-weight: 800;
    margin-bottom: 0;
    padding-right: 20px;
}

@media (max-width: 991px) {
    .section-progress-stories__experience-year {
        font-size: 76px;
        line-height: 87px;
        padding-right: 15px;
    }
}

.section-progress-stories__experience-text {
    font-size: 18px;
    color: var(--body-color, #fff);
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 0;
    border-left: 1px solid var(--body-color, #fff);
    padding-left: 24px;
}

@media (max-width: 991px) {
    .section-progress-stories__experience-text {
        font-size: 16px;
        line-height: 24px;
        padding-left: 18px;
    }
}

.section-progress-stories__content {
    padding-top: 20px;
    padding-left: 84px;
}

@media (max-width: 991px) {
    .section-progress-stories__content {
        width: 100%;
        padding-top: 0;
        padding-left: 0;
    }
}

.section-progress-stories .sec-title {
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .section-progress-stories .sec-title {
        margin-bottom: 30px;
    }
}

.section-progress-stories .sec-title__title {
    margin-bottom: 18px;
}

.section-progress-stories .section-provide__feature {
    gap: 23px;
}

.section-progress-stories .section-provide__ftwrap {
    width: calc((100% - 46px) / 3);
}

@media (max-width: 1200px) {
    .section-progress-stories .section-provide__ftwrap {
        width: calc((100% - 0px) / 1);
    }
}

.section-progress-stories__progress-wrap {
    padding-bottom: 72px;
}

@media (max-width: 991px) {
    .section-progress-stories__progress-wrap {
        padding-bottom: 52px;
    }
}

.section-progress-stories__progress+.section-progress-stories__progress {
    padding-top: 30px;
}

.section-progress-stories__progress-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-progress-stories__progress-bar {
    width: 100%;
    height: 15px;
    background-color: var(--bg-color2, #E2E7FF);
    border-radius: 2px;
}

.section-progress-stories__progress-inner {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0px;
    background-color: var(--primary-color);
    transition: all 1000ms linear;
    border-radius: 2px !important;
    width: 0px;
}

.section-progress-stories__progress-number {
    position: absolute;
    bottom: calc(100% + 12px);
    right: calc(0% - 12px);
    color: var(--primary-text-color, #001F3F);
    font-weight: 800;
    font-size: 18px;
    line-height: 21px;
}

.section-progress-stories__btn {
    line-height: 22px;
    padding-left: 33px;
    padding-right: 33px;
}


/* ===================================
        sidebar css
====================================== */

.sidebar {
    transition: all 0.5s ease;
    padding-right: 30px;
}

@media (max-width: 991px) {
    .sidebar {
        padding-right: 0;
    }
}

.sidebar__single__bg {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-radius: 8px;
    padding: 20px;
}

@media (max-width: 991px) {
    .sidebar__single__bg {
        padding: 15px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 48px;
}

@media (max-width: 991px) {
    .sidebar__single+.sidebar__single {
        margin-top: 28px;
    }
}

.sidebar__title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .sidebar__title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 20px;
    }
}

.sidebar__search .form-control {
    height: 75px;
    border-radius: 8px;
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-width: 2px;
    border-color: rgba(var(--bg-color-rgb, 0, 31, 63), 0.08);
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    color: var(--body-text-color, #5C6671);
    -webkit-appearance: none;
    appearance: none;
    padding-right: 54px;
}

@media (max-width: 991px) {
    .sidebar__search .form-control {
        height: 60px;
        font-size: 18px;
        line-height: 28px;
    }
}

.sidebar__search .form-control::-webkit-search-decoration,
.sidebar__search .form-control::-webkit-search-cancel-button,
.sidebar__search .form-control::-webkit-search-results-button,
.sidebar__search .form-control::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.sidebar__search .form-control::-webkit-input-placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .form-control:-moz-placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .form-control::-moz-placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .form-control:-ms-input-placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .form-control::-ms-input-placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .form-control::placeholder {
    color: rgba(var(--body-text-color-rgb, 92, 102, 113), 0.8);
}

.sidebar__search .search-submit {
    width: 24px;
    height: 100%;
    right: 22px;
    margin: auto 0;
}

.sidebar__nav li {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    background-color: var(--body-color, #fff);
    border-radius: 8px;
    position: relative;
}

@media (max-width: 1200px) {
    .sidebar__nav li {
        font-size: 18px;
        line-height: 28px;
    }
}

.sidebar__nav li::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: var(--primary-color);
    transition: all 500ms ease;
    border-radius: 8px;
}

.sidebar__nav li+li {
    margin-top: 15px;
}

.sidebar__nav li.active::after,
.sidebar__nav li:hover::after {
    width: 100%;
}

.sidebar__nav li.active a,
.sidebar__nav li:hover a {
    color: var(--body-color, #fff);
}

.sidebar__nav li a {
    position: relative;
    z-index: 2;
    display: block;
    padding: 20px 22px;
}

@media (max-width: 1200px) {
    .sidebar__nav li a {
        padding: 18px 20px;
    }
}

.sidebar__posts__item+.sidebar__posts__item {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .sidebar__posts__item+.sidebar__posts__item {
        margin-top: 22px;
    }
}

.sidebar__posts__image {
    width: 136px;
    min-width: 136px;
}

@media (max-width: 1200px) {
    .sidebar__posts__image {
        width: 120px;
        min-width: 120px;
    }
}

@media (max-width: 991px) {
    .sidebar__posts__image {
        width: 100px;
        min-width: 100px;
    }
}

.sidebar__posts__image img {
    width: 100% !important;
    border-radius: 8px;
}

.sidebar__posts__content {
    width: calc((100% - 136px) / 1);
    padding-left: 14px;
}

@media (max-width: 1200px) {
    .sidebar__posts__content {
        width: calc((100% - 120px) / 1);
    }
}

.sidebar__posts__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
    color: var(--body-text-color, #5C6671);
}

@media (max-width: 991px) {
    .sidebar__posts__date {
        margin-bottom: 6px;
    }
}

.sidebar__posts__date>span {
    padding-right: 3px;
}

.sidebar__posts__title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .sidebar__posts__title {
        font-size: 16px;
        line-height: 26px;
    }
}

.sidebar__posts__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
    background-size: 100% 1px;
}

.sidebar .outline-btn {
    margin-top: 60px;
}

.sidebar-right {
    padding-right: 0px;
    padding-left: 30px;
}

@media (max-width: 991px) {
    .sidebar-right {
        padding-right: 0;
        padding-left: 0;
    }
}

[data-bs-theme=dark] .sidebar__nav li:hover a,
[data-bs-theme=dark] .sidebar__nav li.active a {
    color: var(--primary-text-color, #001F3F);
}

[data-bs-theme=dark] .sidebar__nav li:hover::after,
[data-bs-theme=dark] .sidebar__nav li.active::after {
    width: 100%;
}


/* ===================================
        job-circular css
====================================== */

.section-job-circular {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-job-circular {
        padding: 35px 0;
    }
}

.section-job-circular .container {
    max-width: 1350px;
}

.section-job-circular .sec-title {
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .section-job-circular .sec-title {
        margin-bottom: 30px;
    }
}

.section-job-circular__item-row {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border: 1px solid var(--bg-color2, #E2E7FF);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.5s ease;
    gap: 10px;
}

@media (max-width: 1200px) {
    .section-job-circular__item-row {
        border-radius: 20px;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .section-job-circular__item-row {
        border-radius: 16px;
        padding: 16px;
    }
}

.section-job-circular__item-row:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(var(--bg-color-rgb, 0, 31, 63), 0.1);
    box-shadow: 0px 0px 20px 0px rgba(var(--bg-color-rgb, 0, 31, 63), 0.1);
}

.section-job-circular__item-row+.section-job-circular__item-row {
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .section-job-circular__item-row+.section-job-circular__item-row {
        margin-top: 30px;
    }
}

.section-job-circular__item-col {
    width: calc((100% - 268px) / 3);
}

@media (max-width: 991px) {
    .section-job-circular__item-col {
        width: calc((100% - 10px) / 2);
    }
}

@media (max-width: 767px) {
    .section-job-circular__item-col {
        width: calc((100% - 0px) / 1);
    }
}

.section-job-circular__item-col.view-circular {
    width: 238px;
    min-width: 238px;
}

.section-job-circular__icon {
    width: 60px;
    height: 60px;
    background-color: var(--body-color, #fff);
    border: 2px solid var(--bg-color2, #E2E7FF);
    border-radius: 8px;
}

.section-job-circular__icon svg {
    fill: transparent;
}

.section-job-circular__content {
    width: calc((100% - 60px) / 1);
    padding-left: 25px;
}

@media (max-width: 1200px) {
    .section-job-circular__content {
        padding-left: 12px;
    }
}

.section-job-circular .syntixus-btn {
    padding-left: 48px;
    padding-right: 48px;
}

.section-job-details {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-job-details {
        padding: 34px 0;
    }
}

.section-job-details .container {
    max-width: 1680px;
}

.section-job-details__circularbg {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-radius: 0px 0px 30px 30px;
    padding: 95px 30px;
    margin-bottom: 61px;
}

@media (max-width: 991px) {
    .section-job-details__circularbg {
        padding: 60px 30px;
        margin-bottom: 38px;
    }
}

@media (max-width: 767px) {
    .section-job-details__circularbg {
        padding: 50px 16px;
    }
}

.section-job-details__circular-max {
    max-width: 1320px;
    margin: 0 auto;
}

.section-job-details__titlewrap {
    margin-bottom: 34px;
}

@media (max-width: 991px) {
    .section-job-details__titlewrap {
        margin-bottom: 26px;
    }
}

.section-job-details__salary li.salary-range {
    font-size: 36px;
    line-height: 50px;
    color: var(--primary-text-color, #001F3F);
}

@media (max-width: 991px) {
    .section-job-details__salary li.salary-range {
        font-size: 28px;
        line-height: 34px;
    }
}

.section-job-details__salary li.salary-currency {
    font-size: 22px;
    line-height: 35px;
}

@media (max-width: 991px) {
    .section-job-details__salary li.salary-currency {
        font-size: 18px;
        line-height: 26px;
    }
}

.section-job-details__circular {
    width: calc((100% - 194px) / 1);
    gap: 12px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .section-job-details__circular {
        width: calc((100% - 0px) / 1);
    }
}

.section-job-details__circularcol {
    width: calc((100% - 24px) / 3);
}

@media (max-width: 991px) {
    .section-job-details__circularcol {
        width: calc((100% - 12px) / 2);
    }
}

@media (max-width: 767px) {
    .section-job-details__circularcol {
        width: calc((100% - 0px) / 2);
    }
}

.section-job-details .syntixus-btn {
    min-width: 194px;
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 767px) {
    .section-job-details .syntixus-btn {
        min-width: initial;
        padding-left: 40px;
        padding-right: 40px;
        margin-top: 15px;
    }
}

.section-job-details__description__content {
    padding-right: 16px;
}

@media (max-width: 991px) {
    .section-job-details__description__content {
        padding-right: 0;
        padding-bottom: 38px;
    }
}

.section-job-details__description__item {
    margin-bottom: 50px;
}

.section-job-details__description__item:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-job-details__description__item {
        margin-bottom: 32px;
    }
}

.section-job-details__description__headding {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .section-job-details__description__headding {
        margin-bottom: 20px;
    }
}

.section-job-details__description__list li {
    position: relative;
    padding-left: 16px;
}

.section-job-details__description__list li::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    top: 11.5px;
    left: 0;
    border-radius: 50px;
    background-color: var(--body-text-color, #5C6671);
}

.section-job-details__description__benefites {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
    border-radius: 30px;
    transition: all 0.5s ease;
    padding: 43px 18px 43px 25px;
}

.section-job-details__description__benefites-list li {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
}

.section-job-details__description__benefites-list li img {
    position: relative;
    top: 4px;
    width: 18px !important;
}

.section-job-details__description__benefites-list li span {
    display: block;
    padding-left: 12px;
}

.section-job-details__description__benefites-list li+li {
    margin-top: 15px;
}


/* ===================================
        portfolio css
====================================== */

.section-portfolio {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-portfolio {
        padding: 35px 0;
    }
}

.section-portfolio .container {
    max-width: 1350px;
}

.section-portfolio__filter {
    gap: 20px 40px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .section-portfolio__filter {
        gap: 20px;
        margin-bottom: 35px;
    }
}

.section-portfolio__filter li {
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s ease;
}

@media (max-width: 991px) {
    .section-portfolio__filter li {
        font-size: 16px;
        line-height: 26px;
    }
}

.section-portfolio__filter li:hover,
.section-portfolio__filter li.active {
    color: var(--primary-text-color, #001F3F);
}

.section-portfolio-single {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-portfolio-single {
        padding: 35px 0;
    }
}

.section-portfolio-single .container {
    max-width: 1350px;
}

.section-portfolio-single .sec-title {
    max-width: 760px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .section-portfolio-single .sec-title {
        margin-bottom: 10px;
    }
}

.section-portfolio-single__feature-img {
    border-radius: 30px;
    margin-bottom: 78px;
}

@media (max-width: 991px) {
    .section-portfolio-single__feature-img {
        margin-bottom: 40px;
    }
}

.section-portfolio-single__feature-img img {
    width: 100% !important;
    border-radius: 30px !important;
}

.section-portfolio-single__order-list {
    padding-left: 20px;
}

.section-portfolio-single__order-list li::marker {
    font-weight: 600;
    color: var(--primary-text-color, #001F3F);
}

.section-portfolio-single__order-list li strong {
    color: var(--primary-text-color, #001F3F);
    font-weight: 600;
}

.section-portfolio-single__sidebar {
    border: 1px solid var(--bg-color2, #E2E7FF);
    border-radius: 30px;
    padding: 30px;
}

@media (max-width: 991px) {
    .section-portfolio-single__sidebar {
        padding: 16px;
        border-radius: 16px;
    }
}

.section-portfolio-single__sidebar-item+.section-portfolio-single__sidebar-item {
    margin-top: 25px;
}

@media (max-width: 991px) {
    .section-portfolio-single__sidebar-item+.section-portfolio-single__sidebar-item {
        margin-top: 18px;
    }
}


/* ===================================
        contact css
====================================== */

.section-contact {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-contact {
        padding: 35px 0;
    }
}

.section-contact .container {
    max-width: 1656px;
}

.section-contact .sec-title {
    max-width: 856px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .section-contact .section-team__wrap {
        padding: 0 15px;
        padding-bottom: 42px;
    }
}

.section-contact__address li strong {
    font-weight: 600;
}

.section-contact .footer__socialwrap {
    margin-top: 22px;
}

.section-contact .footer__socialwrap li {
    color: var(--body-text-color, #5C6671);
}

.twitter-img {
    color: #fff;
    background: #fff;
    width: 26px;
    border-radius: 4px;
    padding: 4px;
}

#map {
    height: 510px;
    border-radius: 30px;
    margin-bottom: 55px;
}

.section-integrations {
    padding: 60px 0;
}

.section-integrations__container {
    max-width: 1350px;
}

.section-integrations .sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 50px auto;
}

.section-integrations .sec-title__title {
    margin-bottom: 30px;
}

.section-integrations .sec-title__text {
    max-width: 810px;
}

.section-integrations__logos-wrap {
    gap: 50px 90px;
}

.section-integrations__logo {
    width: 80px;
    height: 80px;
}

.section-integrations .syntixus-btn {
    height: 64px;
    margin: 80px auto 0 auto;
}

@media (max-width: 991px) {
    .section-integrations .syntixus-btn {
        margin-top: 50px;
    }
}

.section-integrations .syntixus-btn>svg {
    margin-left: 10px;
    transform: rotate(-45deg);
}


/* ===================================
        not-found css
====================================== */

.not-found {
    min-height: 100vh;
    padding: 60px 0;
}

.not-found .container {
    max-width: 990px;
}

@media (min-width: 1200px) {
    .not-found__titlewrap {
        margin-top: -70px;
    }
}

.not-found__404 {
    font-size: 500px;
    line-height: 1.11;
    color: var(--body-color, #fff);
}

@media (max-width: 1200px) {
    .not-found__404 {
        font-size: 300px;
        line-height: 300px;
    }
}

@media (max-width: 991px) {
    .not-found__404 {
        font-size: 200px;
        line-height: 200px;
    }
}

@media (max-width: 800px) {
    .not-found__404 {
        font-size: 160px;
        line-height: 160px;
    }
}

@media (max-width: 360px) {
    .not-found__404 {
        font-size: 150px;
        line-height: 150px;
    }
}

.not-found__title {
    color: var(--body-color, #fff);
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .not-found__title {
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    .not-found__title {
        font-size: 28px;
        line-height: 34px;
    }
}

.not-found__text {
    color: var(--body-color, #fff);
    margin-bottom: 54px;
}

@media (max-width: 991px) {
    .not-found__text {
        margin-bottom: 32px;
    }
}

.not-found .syntixus-btn {
    min-width: 360px;
    height: 64px;
}

.not-found .syntixus-btn:hover {
    background-color: var(--body-color, #fff);
    border-color: var(--body-color, #fff);
    color: var(--primary-text-color, #001F3F);
}

.not-found .syntixus-btn:hover svg {
    filter: brightness(1) invert(1);
}

@media (max-width: 991px) {
    .not-found .syntixus-btn {
        min-width: 280px;
    }
}

.not-found .syntixus-btn svg {
    transform: rotate(45deg) scaleX(-1);
    margin-right: 16px;
    position: relative;
    bottom: -2px;
    transition: all 0.4s ease;
}

[data-bs-theme=dark] .syntixus-btn:hover svg {
    filter: brightness(0) invert(1);
}


/* ===================================
        footer css
====================================== */

.footer {
    padding: 60px 0 0 0;
    padding-bottom: 0;
    margin-top: auto;
    background: #001f3f;
}

@media (max-width: 991px) {
    .footer {
        padding: 35px 0 0 0;
    }
}

.footer .container {
    max-width: 1680px;
}

.footer__bg {
    padding: 37px 15px 53px 15px;
}

@media (max-width: 991px) {
    .footer__bg {
        padding-bottom: 40px;
        padding-top: 52px;
    }
}

.footer__innermx {
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.footer .footer-widget {
    width: 20%;
}

@media (max-width: 991px) {
    .footer .footer-widget {
        width: 25%;
    }
}

.footer .footer-widget__col1 {
    width: 33.5%;
}

@media (max-width: 991px) {
    .footer .footer-widget__col1 {
        width: 100%;
    }
}

.footer .footer-widget__col2 {
    width: 16.8%;
}

@media (max-width: 991px) {
    .footer .footer-widget__col2 {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .footer .footer-widget__col2 {
        width: 50%;
    }
}

.footer .footer-widget__col3 {
    width: 24.8%;
}

@media (max-width: 991px) {
    .footer .footer-widget__col3 {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .footer .footer-widget__col3 {
        width: 50%;
    }
}

.footer .footer-widget__col4 {
    width: 16.8%;
}

@media (max-width: 991px) {
    .footer .footer-widget__col4 {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .footer .footer-widget__col4 {
        width: 50%;
    }
}

.footer .footer-widget__col5 {
    width: 16.1%;
}

@media (max-width: 991px) {
    .footer .footer-widget__col5 {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .footer .footer-widget__col5 {
        width: 50%;
    }
}

.footer .footer-widget__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 35.2px;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .footer .footer-widget__title {
        font-size: 20px;
        line-height: 26.2px;
        margin-bottom: 18px;
    }
}

.footer .footer-widget__links li {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    margin-bottom: 20px;
    color: #fff;
}

.footer .footer-widget__links li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer .footer-widget__links li a:hover {
    background-size: 100% 1px;
}

.footer .footer-widget__links li a:hover {
    color: var(--primary-color);
}

.footer .footer-widget__links li+li {
    margin-top: 10px;
}

.footer__logo {
    max-width: 180px;
    margin-bottom: 34px;
}

.footer__logo img {
    width: auto !important;
}

.footer__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 14px;
    color: #fff;
    padding-right: 35px;
}

.footer__socialwrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.footer__socialwrap li {
    font-size: 24px;
    line-height: 1;
    color: #fff;
}

.footer__socialwrap li a:hover {
    color: var(--primary-color);
}

.footer__locationbar {
    border-bottom: 1px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.3);
    padding-bottom: 45px;
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .footer__locationbar {
        gap: 25px 0;
    }
}

.footer__locationbar .footer__logo {
    margin-bottom: 0;
}

.footer__locationbar__toplogo {
    width: 33.5%;
}

@media (max-width: 991px) {
    .footer__locationbar__toplogo {
        width: 100%;
    }
}

.footer__locationbar__wrap {
    width: 66.5%;
}

@media (max-width: 991px) {
    .footer__locationbar__wrap {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer__locationbar__wrap {
        gap: 25px 0;
    }
}

.footer__locationbar__address {
    width: calc((100% - 0px) / 2);
}

@media (max-width: 767px) {
    .footer__locationbar__address {
        width: 100%;
    }
}

.footer__locationbar__icon img {
    width: auto !important;
    max-height: 50px;
    min-height: 50px;
}

.footer__locationbar__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer__locationbar__text {
        font-size: 16px;
        line-height: 26px;
    }
}

.footer__locationbar__info {
    padding-left: 28px;
}

@media (max-width: 991px) {
    .footer__locationbar__info {
        padding-left: 16px;
    }
}

.footer__locationbar__infolist li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer__locationbar__infolist li {
        font-size: 16px;
        line-height: 26px;
    }
}

.footer__locationbar__infolist li>strong {
    font-weight: 600;
}

.footer__locationbar__infolist li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer__locationbar__infolist li a:hover {
    background-size: 100% 1px;
}

.footer__bottom__designed,
.footer__bottom__copyright {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
}

@media (max-width: 1023px) {
    .footer__bottom__designed,
    .footer__bottom__copyright {
        width: 100%;
        text-align: center !important;
    }
}

.footer__bottom__designed a,
.footer__bottom__copyright a {
    color: var(--primary-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer__bottom__designed a:hover,
.footer__bottom__copyright a:hover {
    background-size: 100% 1px;
}

.footer__bottom__designed a:hover,
.footer__bottom__copyright a:hover {
    color: var(--primary-color);
}

@media (max-width: 1023px) {
    .footer__bottom__copyright {
        padding-top: 15px;
    }
}

.footer__bottom-bg {
    border-radius: 0;
    padding: 0 15px;
}

.addres-location {
    list-style: none;
    position: relative;
    display: block;
    margin: 15px 0px;
    padding: 0 !important;
}

.addres-location li {
    padding-left: 40px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    vertical-align: sub;
}

.addres-location li i {
    position: absolute;
    left: 0px;
    font-size: 25px;
    top: 2px;
}

.footer__bottom-innermx {
    padding: 30px 0;
    border-top: 1px solid rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.2);
}

.footer--three .footer__bg {
    background-color: rgba(var(--primary-color-rgb, 46, 77, 254), 0.05);
}

.footer--three .footer__bottom-bg {
    background: var(--bg-color2, #E2E7FF);
}

.footer--three .footer__bottom-innermx {
    border-top: 0;
}

.footer--four .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.footer--four .footer__top-bg {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    max-width: 1650px;
    opacity: 0.1;
}

.footer--four .footer__bottom-innermx {
    border-top: 0;
}

.footer--four .footer__locationbar {
    border-bottom-color: var(--body-color, #fff);
}

.footer--four .footer__locationbar__icon {
    width: 75px;
    height: 75px;
    box-shadow: 0px 4px 20px 0px rgba(var(--primary-text-color-rgb, 0, 31, 63), 0.1);
    background-color: var(--body-color, #fff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer--four .footer-widget__title,
.footer--four .footer__text,
.footer--four .footer__socialwrap li,
.footer--four .footer-widget__links li,
.footer--four .footer__locationbar__infolist li,
.footer--four .footer__locationbar__text {
    color: var(--body-color, #fff);
}

.footer--four .footer-widget__links li a:hover {
    color: var(--body-color, #fff);
}

.footer--four .footer__socialwrap li a:hover {
    color: var(--primary-text-color, #001F3F);
}

.footer--four .footer__bottom-bg {
    padding-top: 0;
    background-color: var(--primary-text-color, #001F3F);
}

.footer--four .footer__bottom__designed,
.footer--four .footer__bottom__copyright {
    color: var(--body-color, #fff);
}

.footer--four .footer__bottom__designed a:hover,
.footer--four .footer__bottom__copyright a:hover {
    color: var(--body-color, #fff);
}

.app-develop-life-cycle {
    background: #f0efef;
    padding: 60px 0px;
}

.max-width-860 {
    max-width: 860px;
    margin: 0 auto;
}

.max-width-600 {
    max-width: 850px;
    margin: 30px auto;
}

.border-radius-20 {
    border-radius: 20px;
}

.why-us-syntixus {
    padding-bottom: 60px;
}

.ourOfferingSection {
    padding: 60px 0px;
    background: #f4f6ff;
}

.section-2-card {
    padding: 35px 25px;
    box-shadow: rgb(3 3 3 / 11%) 0 3px 17px 0;
    height: 100%;
    background: #fff;
    border-radius: 20px !important;
}

.section-2-card h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}

.aftPara {
    margin-bottom: 20px;
}

.font-size-20 {
    font-size: 20px
}

.editing6 {
    background-color: #F6F7FF;
    padding-bottom: 80px;
}

.editing6 .editing-box {
    margin-top: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 7px;
    padding: 30px 30px;
    min-height: 390px;
    transition: all 0.4s;
}

.editing6 .editing-box .icon {
    border: 1px solid #EDEDF0;
    height: 114px;
    width: 114px;
    border-radius: 20px;
    text-align: center;
    line-height: 70px;
    margin: auto;
    display: flex;
    margin-bottom: 18px;
}

.min-hight-change {
    min-height: 470px !important;
}

.editing6 .editing-box .icon img {
    width: 55px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.editing6 .editing-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.sp {
    padding: 100px 0px;
}

.space30 {
    padding: 30px 0px;
}

.bg-dark-1 {
    background: #001f3f;
}

.serverless-icon {
    position: absolute;
    left: 50;
    top: 50px;
}

.serverless-content {
    padding-left: 300px;
}

.hight-auto {
    height: auto !important;
    min-height: auto !important;
    text-align: left !important;
}

.width-fit {
    width: 200px;
    margin: 0 auto;
    display: block
}

.font-size-18 {
    font-size: 18px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-32 {
    font-size: 62px;
    line-height: 62px;
}

.ptb-60 {
    padding: 60px 0px;
}

.thankyou {
    padding: 0px 0px 60px 0px;
    position: relative;
}

.margin-0 {
    margin: 0 auto;
    display: block;
}