/* input(2649,5): run-time error CSS1035: Expected colon, found '}'
input(2651,5): run-time error CSS1060: Expected closing curly-brace, found '�'
input(2652,1): run-time error CSS1019: Unexpected token, found '}' */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html, body {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.select-box__list::-webkit-scrollbar {
    width: 4px;
}

.select-box__list::-webkit-scrollbar-track {
    background: #d3d3d3;
}

.select-box__list::-webkit-scrollbar-thumb {
    background: #1b274c;
}

    .select-box__list::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.main-section-2-title {
    height: 380px;
}

.why-findaso .header-card-slide-desc {
    height: 105px;
}

.d-none {
    display: none !important;
}

.contact-us .header-card-slide-desc {
    height: 140px;
}

.contact .absolute {
    bottom: 0;
    right: 0;
}

.main-section-2-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-section-2-title {
    height: 340px;
}

.cluster-card-slide:hover,
.header-card-slide:hover,
.projects .main-section2-box-right:hover,
.main-section2-box-right:hover {
    transform: scale(0.9);
}

.subscription {
    height: 580px;
}

.subscription__desc {
    height: 70px;
    display: block;
}

.main-section-2-title {
    max-height: 280px;
}

.why_perfer_us-title .main-title {
    flex-basis: 100%;
}

.select-box__list {
    max-height: 340px;
    overflow-y: auto;
}

.cluster-card-slide img {
    height: 400px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f7f4f9, #fff);
}

button {
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* ========= start navigation ========= */

.profile__image {
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.logo {
    width: 180px;
    height: 32px;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

header {
    background: linear-gradient(to right, #f7f7f7f3, #fff);
    position: sticky;
    top: 0;
    z-index: 999999;
}

    header nav ul {
        display: flex;
        align-items: center;
    }

        header nav ul li {
            margin: 0 1.3rem;
        }

            header nav ul li a {
                font-size: 16px;
                padding: 1rem 0;
                color: #14142b;
                transition: 0.5s ease;
                position: relative;
            }

    header nav .header__menu li a::before {
        position: absolute;
        transition: 0.5s ease;
        content: '';
        width: 0;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        background-color: #14142b;
        border-radius: 30px;
    }

    header nav ul li a:hover::before {
        width: 50%;
    }

    header nav ul li a:hover {
        font-weight: bold;
    }

.choose-lang-btn {
    display: flex;
    align-items: center;
    column-gap: 0.7rem;
}

.login-btn {
    color: #0864ff;
    border: 3px solid #0864ff;
    font-weight: bold;
    font-size: 14px;
    width: 92px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.5s ease;
}

    .login-btn:hover {
        background-color: #0864ff;
        color: #fff;
    }

.right-nav {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

header .choose__language {
    position: relative;
}

header .choose__language-list {
    right: -65%;
    top: 35px;
    box-shadow: 0 0 20px #dddddd;
    position: absolute;
    flex-direction: column;
    row-gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.language__image img {
    width: 32px;
    height: 24px;
    object-fit: cover;
}

header .choose__language-list.active {
    visibility: visible;
    opacity: 1;
}

header .choose__language-list::before {
    content: '';
    position: absolute;
    width: 2px;
    border: 5px solid;
    border-color: transparent transparent #fff transparent;
    top: -10px;
}

.choose__language-list__item a {
    font-size: 14px;
    font-weight: 400 !important;
}

header .choose__language-list__item {
    margin: 0;
}

/* =========== Menu Bar ============ */

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #000;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.bars-icon {
    display: none;
}

/* ============ Start Footer =========== */

footer {
    background: #fcfcfc;
    padding: 4rem 0 2.75rem 2rem;
}

.footer-desc p {
    color: #4e4b66;
    font-size: 14px;
    font-weight: 500;
}

.social-media a:first-child {
    margin-left: 0;
}

.social-media a {
    margin: 0 0.4rem;
}

    .social-media a svg {
        width: 22px;
        height: 22px;
    }

.footer__menu li {
    margin: 1rem 0;
}

    .footer__menu li span {
        font-size: 14px;
        font-weight: 500;
        margin-left: 0.5rem;
        color: #4e4b66;
    }

    .footer__menu li a {
        font-size: 14px;
        font-weight: 500;
        color: #4e4b66;
    }

footer h3 {
    font-size: 18px;
    font-weight: bold;
    color: #4e4b66;
    margin-bottom: 1.3rem;
}

footer .logo {
    margin-bottom: 1.3rem;
}

footer h5 {
    color: #a0a3bd;
    font-size: 12px;
    font-weight: 500;
}

/* =========== End Footer  ============== */

/* ========= Start Header =============== */

.header-content {
    /*margin-top: 2rem;*/
    margin-bottom: 0rem;
}

.header-btns {
    display: flex;
    align-items: center;
}

.header-desc {
    margin: 1rem 0 3rem 0;
}

.paragraph {
    color: #4e4b66;
    font-weight: 500;
    font-size: 21px;
}

.header-title {
    color: #14142b;
    letter-spacing: 1px;
    font-size: 64px;
    font-weight: 500;
}

.btn {
    color: #0864ff;
    border: 2px solid #0864ff;
    font-weight: bold;
    border-radius: 12px;
    height: 64px;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.5s ease;
}

    .btn:hover {
        background: #0864ff;
        color: #fff !important;
    }

    .btn.contained-btn:hover {
        background: transparent;
        color: #0864ff !important;
    }

    .btn.outline-btn:hover {
        color: white !important;
        background-color: #0864ff !important;
    }

.header-btns a:first-child {
    width: 230px;
}

.header-btns a:last-child {
    width: 249px;
}

.contained-btn {
    background-color: #0864ff;
    color: #fff;
}

.outline-btn {
    color: #0864ff !important;
    /*background-color: #fff;*/
}

.my-2 {
    margin: 4px 0;
}

.my-3 {
    margin: 6px 0;
}

.my-4 {
    margin: 8px 0;
}

.my-5 {
    margin: 10px 0;
}

.my-6 {
    margin: 12px 0;
}

.mx-2 {
    margin: 0 4px;
}

.mx-3 {
    margin: 0 6px;
}

.mx-4 {
    margin: 0 8px;
}

.mx-5 {
    margin: 0 10px;
}

.mx-6 {
    margin: 0 12px;
}

.header-bg-lines {
    position: absolute;
    right: 0;
    top: -50px;
}

.header-content {
    position: relative;
}

/* Start Swiper */

.header-right-hand .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.header-right-hand .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
}

    .header-right-hand .swiper-slide img {
        display: block;
        height: 203px;
        width: 100%;
        object-fit: cover;
    }

.header-card-slide {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.11);
    transition: 0.5s;
}

.has-cards-2 .header-card-slide {
    height: 405px;
    position: relative;
    background-color: #fff;
}

.has-cards-2 .header-card-slide-desc {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0;
    transition: 0.5s ease;
    background-color: transparent;
}

    .has-cards-2 .header-card-slide-desc .card-section-padding {
        padding: 0.9rem;
        background-color: #fff;
        transition: 0.3s ease;
    }

.has-cards-2 .header-card-slide:hover .card__tags {
    height: 255px;
}

.card__tags {
    background-color: #fff;
}

    .card__tags > div {
        display: flex;
        flex-wrap: wrap;
    }

.has-cards-2 .header-card-slide:hover .card-section-padding {
    background-color: transparent;
}

.strip-line {
    position: absolute;
    left: 0;
    bottom: -338px;
    z-index: -1;
}

.section-one {
    position: relative;
}

.card__tags span {
    padding: 8px 18px;
    background: #eff0f7;
    border-radius: 8px;
    font-size: 10px;
    margin: 3px 5px;
    text-align: center;
    display: block;
}

.has-cards-2 .header-card-slide:hover .header-card-slide-desc {
    background-color: transparent;
}

.has-cards-2 .header-card-slide:hover .slide-location {
    display: none;
}

.has-cards-2 .header-card-slide:hover h3 {
    color: #fff;
}

.has-cards-2 .header-card-slide:hover .slide-location path,
.header-card-slide:hover .slide-location circle {
    stroke: #fff;
}

circle,
path {
    transition: 0.5s ease;
}

.card-cluster-image {
    position: relative;
}

    .card-cluster-image::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #3895d2b4, #5f3798ac);
        transition: 0.5s ease;
        opacity: 0;
        visibility: hidden;
    }

.has-cards-2 .header-card-slide:hover .card-cluster-image::before {
    opacity: 1;
    visibility: visible;
}

.has-cards-2 .header-card-slide h3 {
    transition: 0.5s ease;
}

.has-cards .header-card-slide:hover {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.044);
    transform: scale(0.9);
}

.header-card-slide .card__tags {
    height: 0;
    overflow: hidden;
    transition: 0.5s ease;
}

.header-card-slide-desc {
    padding: 1.3rem;
    background-color: #fff;
}

.header-card-slide-badge {
    background-color: #163a78;
    color: #fff;
    padding: 4px 11px;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 5px;
}

.header-card-slide-link {
    color: #0864ff;
}

    .header-card-slide-link span {
        font-size: 14px;
        margin-right: 0.5rem;
    }

.header-card-slide {
    border-radius: 15px;
    overflow: hidden;
}

.header-card-slide-footer {
    padding-top: 3rem;
}

.header-right-hand .swiper-slide-prev,
.header-right-hand .swiper-slide-next {
    transform: translate3d(0px, 0px, -400px) rotateX(0deg) rotateY(0deg) scale(0.9) !important;
    transition: 0.5s;
}

    .header-right-hand .swiper-slide-prev .header-card-slide,
    .header-right-hand .swiper-slide-next .header-card-slide {
        box-shadow: none;
    }

/* End Swiper */

.brands {
    padding-bottom: 2rem;
}

/* ============== Start Section one ================ */

.video {
    height: 525px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.195);
}

.section-one-desc {
    max-width: 500px;
    text-align: justify;
}

.section-one-right {
    margin-left: 3rem;
}

.section-one-row {
    margin: 5rem 0;
}

/* ============== End Section One ================ */

/* ============= Start Section Two =========== */

.section-two {
    background-color: #f7f7fc;
    height: 293px;
    margin-top: 10rem;
}

.counter {
    flex-grow: 1;
    position: relative;
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*    .counter:nth-child(2)::after {
        position: absolute;
        left: 0;
        content: '';
        width: 0.7px;
        height: 203px;
        background: linear-gradient( to bottom, #cbd6ff, #5960797d, #5960797d, #dbe3ff );
        top: 50%;
        transform: translateY(-50%);
    }

    .counter::before {
        position: absolute;
        right: 0;
        content: '';
        width: 0.7px;
        height: 203px;
        background: linear-gradient( to bottom, #cbd6ff, #5960797d, #5960797d, #dbe3ff );
        top: 50%;
        transform: translateY(-50%);
    }

    .counter:last-child::before {
        display: none;
    }*/

.counter-plus {
    color: #a0a3bd;
}

.counter-number,
.counter-title {
    color: #4e4b66;
}

.counter-number {
    width: 100px;
    overflow: hidden;
}

.counter span {
    font-size: 48px;
}

.counter-title {
    font-size: 24px;
}

/* ============ End Section Two ============ */

/* ============ Start Section Three ============ */

.service-cluster-view {
    font-size: 16px;
}

.cluster-card h3 {
    font-size: 24px;
}

.cluster-card .header-card-slide-link span {
    font-size: 16px;
    font-weight: bold;
}

.cluster-card-slide {
    transform: scale(0.93);
    background-color: #fff;
}

    .cluster-card-slide img {
        height: 100%;
        object-fit: scale-down;
        position: relative;
        /*top:-10px;*/
    }

.member-img-one {
    object-fit: fill !important;
}

.cluster-swiper .swiper-wrapper {
    padding: 2rem 0 4rem 0;
}

.cluster-swiper {
    position: relative;
}

.swiper-navigation {
    position: absolute;
    bottom: 35px;
    right: 80px;
}

.swiper-button-next {
    left: auto;
    right: 60px;
}

.swiper-padding {
    position: relative;
}

.swiper-button-prev {
    /*   left: 50px !important; */
    right: auto;
}

.home-first-section .swiper-button-prev {
    left: 50px !important;
    right: auto;
}


.home-first-section {
    height: calc(100vh - 300px);
}

@media only screen and (max-width: 1200px) {
    .home-first-section {
        height: auto;
    }
}

/* .swiper-button-prev,
.swiper-button-next {
  display: flex !important;
  opacity: 1 !important;
} */
.swiper-navigation div {
    border: 3px solid #0864ff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: #0864ff;
    transform: rotate(180deg);
}

.swiper-navigation-latet-events {
    position: absolute;
    gap: 16px;
    display: flex;
    z-index: 999;
    right: 80px;
    bottom: -11px;
    right: 0 !important;
}


    .swiper-navigation-latet-events > div {
        border: 3px solid #0864ff;
        width: 56px;
        color: #0864ff !important;
        height: 56px;
        opacity: 1 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        cursor: pointer;
        border-radius: 50%;
    }

        .swiper-navigation-latet-events > div.swiper-button-disabled {
            opacity: 0.3 !important;
            cursor: default;
        }

/* ============= End Section Three ============ */
/* ============= Start Section Four ============== */
.slide-location {
    color: #a0a3bd !important;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    column-gap: 7px;
    transition: 0.5s ease;
    margin-bottom: 1rem;
}

.service-btn-container {
    flex-grow: 1;
    margin: 0 auto;
    max-width: 402px;
}

/* ============== End Section Four ============= */

/* =============== Start Section Five ============ */

.last-banner h2 {
    font-size: 48px;
    color: #163a78;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    z-index: 9999;
}

.last-banner a {
    position: relative;
    z-index: 9999;
}

.last-banner {
    background-color: #f7f7fc;
    padding: 5rem 0;
    position: relative;
}

    .last-banner img {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
    }

/* ============= End Section Five =============== */
/* ============= Common Pattern ============== */

.margin-section {
    margin-top: 3rem;
}

.margin-section-md {
    margin-top: 2rem;
}

/* ----------- End index page ---------------- */

/* ============= Start Bread Crumb ============== */

.bread-crumb {
    display: flex;
    align-items: center;
}

    .bread-crumb li,
    .bread-crumb li a {
        font-size: 16px;
        color: #a0a3bd;
    }

        .bread-crumb li a:hover {
            text-decoration: underline;
        }

.bread-crumb__arrow {
    margin: 0 1rem;
}

/* ============= End Bread Crumb ================= */

/* ------------------ Start Service Login ------------------ */

.service-login .video {
    height: 552px;
    margin: 5rem 0;
}

.search__box {
    position: relative;
    background-color: #eff0f6;
    padding: 0 0 0 4rem;
    max-width: 646px;
    height: 64px;
    border-radius: 16px;
    margin: 3rem auto 1rem auto;
}

    .search__box svg {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .search__box .search__input {
        background-color: transparent;
        width: 100%;
        height: 100%;
        font-family: inherit;
        border: 0;
        outline: 0;
        font-size: 16px;
        color: #a0a3bd;
    }

        .search__box .search__input::placeholder {
            font-size: 16px;
            color: #a0a3bd;
        }

.load-more-btn {
    width: 186px;
    height: 64px;
    border: 2px solid #d9dbe9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0864ff;
    margin-top: 3rem;
    font-size: 16px;
    border-radius: 12px;
}

.technology-provider-section {
    margin-bottom: 7rem;
}

/* ================ Start Section Three  ================ */

.select-box__list li button {
    color: #14142b;
    font-size: 18px;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    padding: 0.7rem 0;
}

.select-box__btn {
    padding: 0.9rem 1.5rem;
    border-radius: 16px;
    background: #eff0f7;
    margin: 1rem 0;
}

.select-box {
    position: relative;
}

.select-box__list {
    padding: 0.9rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    border-radius: 16px;
    position: absolute;
    width: 100%;
    z-index: 999;
    background: #eff0f7;
}

    .select-box__list.active {
        opacity: 1;
        visibility: visible;
    }

.select-box__btn span {
    font-size: 16px;
    color: #14142b;
}

.select-box__list li button.active {
    color: #0864ff;
}

.select-box__list__item-desc svg {
    margin-right: 0.9rem;
}

.select-box__list__item-desc {
    text-align: left;
    max-width: 230px;
}
/* ================ End Section Three  ================ */
/* ================ Start Section Four  ================ */
.subscriptions {
    max-width: 946px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.subscription {
    max-width: 294px;
    background-color: #fff;
    border: 1px solid #eff0f6;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
    overflow: hidden;
}

.subscription__title {
    color: #14142b;
    font-size: 24px;
    font-weight: 600;
    margin: 1rem 0;
}

.subscription__desc {
    font-size: 12px;
    color: #4e4b66;
    letter-spacing: 0.25px;
}

.subscription__price {
    color: #14142b;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 3rem 0;*/
}

.subscription__btn {
    height: 56px;
    margin-bottom: 2rem;
}

.subscription__list-item {
    padding: 1.5rem;
    border-bottom: 1px solid #d9dbe9;
}

    .subscription__list-item:last-child {
        border: none;
        padding-bottom: 2.5rem;
    }

    .subscription__list-item div:first-child {
        margin-right: 1rem;
    }

    .subscription__list-item h5 {
        color: #14142b;
        font-size: 14px;
        font-weight: bold;
    }

    .subscription__list-item span {
        color: #a0a3bd;
        font-size: 14px;
        letter-spacing: 0.25px;
    }

.subscription__price span {
    font-size: 16px;
    color: #a0a3bd;
    margin-left: 0.5rem;
    font-weight: 500;
}

/* ------------------ End Service Login ------------------ */

/* ------------------ Start solution center-Details-without portfolio ------------------ */

/* =========== start section1 =============== */

.main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
}

.solution-center-without-portfolio .section-one-title {
    color: #414f58;
    font-size: 32px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 1px;
    max-width: 500px;
}

.solution-center-without-portfolio .header-card-slide-badge {
    font-size: 15px;
    border-radius: 77px;
    text-align: center;
    width: 185px;
}

.main-logo {
    display: flex;
    align-items: center;
}

.main-icon {
    display: flex;
    align-items: center;
}

.main-button {
    display: flex;
    align-items: center;
    margin-top: 55px;
}

    .main-button svg {
        margin-left: 20px;
    }

    .main-button h2 {
        margin-left: 10px;
        font-size: 24px;
        color: #6e7191;
        font-weight: 400;
    }

.solution-center-without-portfolio .main-logo-link {
    border: 1px solid #d9dbe9;
    border-radius: 15px;
    display: block;
    height: 100%;
}

    .solution-center-without-portfolio .main-logo-link img {
        height: 100%;
    }

.main-logo-link {
    object-fit: cover;
}

.container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1230px;
    margin: 0 auto;
}

.main-title {
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    font-weight: bold;
}

.main-button a {
    margin-left: 30px;
}

.icon-svg {
    background-color: #f6f2ff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.main-email {
    display: flex;
    align-items: center;
    color: #343a40;
}

.email-1 {
    background-color: #eff0f7;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-email-top {
    margin-top: 0.5rem;
}

.main-email-down {
    margin-top: 1rem;
}

.main-email span {
    margin-left: 15px;
    color: #6e7191;
    font-size: 24px;
}

/*============end section1==============*/

/*============start section2============*/

.main-description {
    border: 1px solid #d9dbe9;
    border-radius: 15px;
    background: #fcfcfc;
    margin-top: 50px;
    padding: 40px;
}

    .main-description h2 {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        color: #000000;
    }

    .main-description li {
        list-style-type: disc;
        display: revert;
        margin-left: 40px;
        padding: 5px
    }

    .main-description p {
        /*text-align: center;*/
        margin-top: 20px;
        font-size: 16px;
        color: #4e4b66;
        line-height: 34px;
        letter-spacing: 0.75px;
    }

.main-link {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.main-btn {
    display: block;
    margin: 0 auto;
    width: 155px;
}

.solution-center-btns {
    margin-top: 3rem;
}

    .solution-center-btns a {
        width: 294px !important;
    }

/*============end section2===============*/

.sector {
    color: #000000;
    font-size: 32px;
    margin-top: 1rem;
}

.sectors-faq__btn {
    border: 1px solid #d9dbe9;
    padding: 2.5rem;
    background-color: #fcfcfc;
    width: 100%;
    border-radius: 12px;
    margin: 0.6rem 0;
}

    .sectors-faq__btn h3 {
        font-size: 24px;
        color: #4e4b66;
        font-weight: 400;
    }

.sectors-faq__btn__tags span:first-child {
    margin-left: 0;
}

.sectors-faq__btn__tags {
    display: none;
    margin-top: 1.2rem;
    row-gap: 0.7rem;
    column-gap: 0.5rem;
}

    .sectors-faq__btn__tags span {
        background-color: #eff0f6;
        padding: 0.5rem 1.2rem;
        display: block;
        color: #6e7191;
        border-radius: 12px;
    }

.sectors-faq__btn.active .sectors-faq__btn__tags {
    display: flex;
}

/*=============start section 3===============*/

.main-service {
    border: 1px solid #d9dbe9;
    width: 100%;
    border-radius: 15px;
    background-color: #fcfcfc;
    margin-top: 4rem;
    padding: 48px 64px;
}

.service {
    background-color: #eff0f6;
    padding: 0.5rem 0.8rem;
    display: block;
    color: #6e7191;
    font-size: 12px;
    border-radius: 8px;
}

.main-list-service,
.main-list-keywords {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.7rem;
    column-gap: 14px;
    row-gap: 16px;
}

.solution-center-video iframe {
    height: 609px;
    margin-top: 4rem;
}

/* ------------------ End solution center-Details-without portfolio ------------------ */

/* ------------------ Start Solution Centers Details ------------------ */

.service-cluster-details .select-box__container {
    max-width: 646px;
    margin: 0 auto;
}

.service-cluster-details .first-section-logo {
    width: 100%;
    height: 207px;
}

.service-cluster-details .header-description > div:last-child .btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.75px;
    color: #f7f7fc;
    width: 185px;
}

.solution-center__btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.75px;
    color: #f7f7fc;
    width: 185px;
}

.my-10 {
    margin: 1rem 0;
}

/* ------------------ End Solution Centers Details ------------------ */

/*------------------- Start provider detail logged in with portfolio ----------------*/

.SolutionWithPortfolio-title {
    font-size: 24px;
    color: #000000;
    margin-top: 5rem;
}

.SolutionWithPortfolio-row {
    margin-top: 2rem;
    display: flex;
}

.main-section2-box-right img {
    width: 100%;
    /* height: 222px;*/
    object-fit: scale-down;
}

.main-section2-box-right p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.25px;
    color: #6e7191;
    margin: 0;
    text-align: left !important;
}

.SolutionWithPortfolio-a {
    font-size: 16px;
    color: #0864ff;
    margin: auto;
}

.box-svg {
    display: flex;
}

.main-section2-title {
    background-color: #ffffff;
}

.main-section-2-img {
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.main-section-2-title h3 {
    font-size: 18px;
    color: #14142b;
}

.main-section-2-title {
    padding: 1rem 1rem 2rem 1rem;
}

    .main-section-2-title p {
        margin-top: 1rem;
    }

    .main-section-2-title span {
        font-size: 16px;
        font-weight: 400;
        color: #0864FF;
    }

.justify-end {
    justify-content: flex-end;
}

.flex-column {
    flex-direction: column;
}

/*------------------ Start provide details logged in without portfolio--------------------*/

/*==================== start section 1 =========================*/

.tag {
    background-color: #eff0f6;
    padding: 0.3rem 1.2rem;
    display: block;
    margin: 0.6rem 0.2rem;
    color: #6e7191;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
}

.tags {
    display: flex;
    margin-top: 1.7rem;
}

.main-startup {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
}

    .main-startup span {
        background-color: #f6f2ff;
        padding: 0.3rem 1.2rem;
        display: block;
        margin: 0.6rem 0.5rem;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.75px;
    }

    .main-startup h3 {
        font-size: 24px;
        font-weight: 400;
        color: #6e7191;
        margin-left: 15px;
    }

.solution-center__container {
    margin-top: 1.2rem;
}

.card__tags {
    margin-top: 0.7rem;
}

    .card__tags span {
        font-size: 14px;
    }

/* ------------- Start provide a service ----------------  */

.provider-service .line-driven-2 {
    max-width: 185px;
    border: none;
    border-bottom: 1px solid #d9dbe9;
}

.communication__container {
    padding: 3rem 0;
    position: relative;
    margin-bottom: 10rem;
}

.communication__top-alignment {
    position: absolute;
    top: 0px;
}

.communication__alignment svg {
    width: 100%;
}

.provider__header-title {
    position: relative;
    z-index: 99;
}

.communication__bottom-alignment {
    margin-top: 3rem;
}

.communication {
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
}

.communication__container .section-one-right {
    position: relative;
    z-index: 999;
}

.communication__container .header-title {
    font-size: 48px;
}

/* ------------- End provide a service ----------------  */

/*---------------- Start projects empty state -------------------*/

.projects-empty-state .main__title {
    margin-bottom: 24px;
    font-weight: 400;
}

.projects-empty-state .main__text {
    max-width: 830px;
    margin: 0 auto;
    line-height: 34px;
    letter-spacing: 0.75px;
}

.projects-empty-state .main__title-1 {
    margin-top: 40px;
    margin-bottom: 32px;
}

.projects-empty-state .main__link {
    font-size: 14px;
    font-weight: 600;
    color: #0864ff;
    display: block;
    margin-top: 26px;
    margin-bottom: 104px;
}

.projects-empty-state .main__section-2 {
    border: 1px dashed #6e7191;
    border-radius: 20px;
    padding: 96px 0;
    background-color: #ffffff;
}

.projects-empty-state .main__section-2__content {
    font-size: 32px;
    font-weight: 400;
    color: #a0a3bd;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.projects-empty-state .main__section2__content {
    margin-top: 23px;
}

/*-------------- End projects empty state -----------------*/

/* ------------- Start projects ---------------*/

.projects .select-box__container {
    max-width: 670px;
    margin: 0 auto;
}

.projects .main-section-2-title .header-card-slide-link span {
    letter-spacing: 0.25px;
    color: #0864ff;
    font-weight: 600;
    font-size: 14px;
}

.projects .main-section-2-title .header-card-slide-link {
    justify-content: flex-end;
    margin-top: 2.5rem;
}

/* ------------- End projects ---------------*/

/* ------------- Start Contact --------------*/

.contact__item span {
    color: #4e4b66;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0.75px;
}

.contact {
    border: 1px solid #d9dbe9;
    border-radius: 24px;
    background: #f7f7fc;
    padding: 5.5rem 0;
}

    .contact form {
        display: flex;
        flex-direction: column;
        row-gap: 1.5rem;
        max-width: 620px;
        margin: 0 auto;
    }

        .contact form input,
        .contact form textarea {
            outline: none;
            border: none;
            font-family: inherit;
            background: #eff0f7;
            padding: 1rem 1.7rem;
            border-radius: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 28px;
            color: #a0a3bd;
        }

            .contact form input::placeholder,
            .contact form textarea::placeholder {
                font-weight: 400;
                font-size: 16px;
                line-height: 28px;
                color: #a0a3bd;
            }

        .contact form textarea {
            height: 128px;
        }

    .contact .contact__title {
        margin-bottom: 2.1rem;
    }

.contact__btn {
    max-width: 249px;
    margin: 0;
}

/* ----------- End Contact ---------------*/

.projects-empty-state .main__title {
    margin-bottom: 24px;
    font-weight: 400;
}

.projects-empty-state .main__text {
    max-width: 830px;
    margin: 0 auto;
    line-height: 34px;
    letter-spacing: 0.75px;
}

.projects-empty-state .main__title-1 {
    margin-top: 40px;
    margin-bottom: 32px;
}

.projects-empty-state .main__link {
    font-size: 14px;
    font-weight: 600;
    color: #0864ff;
    display: block;
    margin-top: 26px;
    margin-bottom: 104px;
}

.projects-empty-state .main__section-2 {
    border: 1px dashed #6e7191;
    border-radius: 20px;
    padding: 96px 0;
    background-color: #ffffff;
    position: relative;
}

.projects-empty-state .main__section-2__content {
    font-size: 32px;
    font-weight: 400;
    color: #a0a3bd;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.projects-empty-state .main__section2__content {
    margin-top: 23px;
}

/*------------------------- project-detail ---------------------*/

/*=============== start section 2 ===============*/
.project-detail .main-box {
    display: flex;
    align-items: center;
    background-color: #eff0f6;
    padding: 35px 48px;
    border-radius: 20px;
    column-gap: 24px;
    margin-top: 30px;
}

.project-detail .main__title {
    font-size: 24px;
    font-weight: 400;
    color: #6e7191;
}

.project-detail .main__description {
    font-size: 24px;
    font-weight: 400;
    color: #414f58;
}

.project-detail .main-box__left {
    column-gap: 15px;
    display: flex;
    align-items: center;
}

.project-detail .main-section-3__text {
    text-align: left;
}

/*----------------------- success-story-detail --------------------*/

.project-detail .main-section-4-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    margin-top: 40px;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 10px 20px 40px 10px #f5f5f5;
}

.success-story__svg svg {
    margin: 0 !important;
}

.project-detail .main-section-4__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-detail .main-section-4-card__title {
    font-size: 16px;
    font-weight: 400;
    color: #a0a3bd;
}

.project-detail .main-section-4__top__title {
    font-size: 24px;
    font-weight: 600;
    color: #14142b;
    letter-spacing: -1px;
}

.main-description header,
.main-description footer {
    margin-top: 0;
    position: static;
    background: transparent;
}

/*------------------- why-findaso --------------------*/

.why-findaso .tab__content {
    display: none;
}

    .why-findaso .tab__content.active {
        display: block;
    }

.why-findaso .main-section-1__tabs {
    margin-top: 30px;
}

.main-icon a:first-child {
    margin-left: 0;
}

.why-findaso .main-section-1__tab {
    color: #6e7191;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

    .why-findaso .main-section-1__tab.active {
        color: #14142b;
        font-weight: bold;
    }

    .why-findaso .main-section-1__tab::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background: #14142b;
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .why-findaso .main-section-1__tab.active::after {
        visibility: visible;
        opacity: 1;
    }

.line {
    border: none;
    border-bottom: 1px solid #d9dbe9;
    margin-top: 2rem;
}

.why-findaso .card {
    padding: 1.9rem;
    background-color: #f7f7fc;
    border-radius: 8px;
}

    .why-findaso .card .card__footer {
        margin: 0;
        background-color: transparent;
    }

        .why-findaso .card .card__footer h3 {
            font-size: 24px;
            color: #333333;
            letter-spacing: -1px;
        }

        .why-findaso .card .card__footer p {
            text-align: center !important;
            color: #545454;
            height: 115px;
        }

    .why-findaso .card .card__image {
        margin-top: -100px;
        margin-bottom: 2rem;
    }

.why-findaso .brands h3 {
    margin-bottom: 3rem;
}

.why-findaso .header-card-slide-desc {
    padding: 0.5rem;
}

.why-findaso .how-work h3 {
    margin-bottom: 1rem;
}

.why-findaso .how-work {
    max-width: 760px;
    margin-left: 3rem;
   
}

.how-it-work {
    background: url('/images/why-findaso/Global Network.svg');
    background-repeat: round;
    background-size: cover;
}

.swiper-padding .swiper-wrapper {
    padding: 2rem 0 4rem 0;
}

.why-findaso .client__card {
    padding: 3rem;
    background: #ffffff;
    border-radius: 0px 0px 16px 16px;
    box-shadow: 12px 8px 40px #ddd;
    transform: scale(0.95);
}

    .why-findaso .client__card .client__header {
        background: transparent;
    }

        .why-findaso .client__card .client__header h3 {
            font-weight: 600;
            font-size: 18px;
            color: #14142b;
        }

        .why-findaso .client__card .client__header p {
            font-weight: 500;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0.25px;
            color: #a0a3bd;
            margin-top: 0.5rem;
        }

.why-findaso .client__body {
    margin-top: 1.5rem;
}

    .why-findaso .client__body p {
        letter-spacing: 0.75px;
        color: #4e4b66;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
    }

.absolute {
    position: absolute;
}

.projects-empty-state .bg {
    position: absolute;
    z-index: -1;
}

    .projects-empty-state .bg svg {
        width: 100%;
    }

.relative {
    position: relative;
}

.main-section2-box-right {
    transition: 0.5s ease;
}

.cluster-card-slide:hover,
.header-card-slide:hover,
.projects .main-section2-box-right:hover {
    transform: scale(0.9);
}

.main-section2-box-right h3 {
    color: #14142b;
}

.toggle__arrow {
    display: none;
    transform: rotate(180deg);
}

.header-right-hand .swiper-slide-prev,
.header-right-hand .swiper-slide-next {
    transition: 0.5s;
}

.header-right-hand .swiper-slide-prev {
    transform: translate3d(80px, -35px, -400px) rotateX(0deg) rotateY(0deg) scale(0.9) !important;
}

.header-right-hand .swiper-slide-next {
    transform: translate3d(-80px, 40px, -400px) rotateX(0deg) rotateY(0deg) scale(1) !important;
    border-radius: 8px;
    overflow: hidden;
}

.sub__menu {
    position: absolute;
    background: #fff;
    flex-direction: column;
    overflow: auto;
    max-height: 80vh;
    align-items: flex-start;
    padding: 24px 32px;
    box-shadow: 0 8px 16px #1111110a;
    border-radius: 8px;
    width: 324px;
    left: 0;
    top: 50px;
    z-index: 99999;
    border: 1px solid #eff0f6;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    transform: translateY(50px);
}

    .sub__menu .sub__menu-item {
        padding: 16px 0;
        margin: 0;
        border-bottom: 1px solid #eff0f7;
        width: 100%;
    }

        .sub__menu .sub__menu-item:first-child {
            padding-top: 0;
        }

        .sub__menu .sub__menu-item:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }

.has-sub__menu {
    position: relative;
}

    .has-sub__menu:hover .sub__menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

.sub__menu a::before {
    display: none;
}

.header-right-hand .swiper-slide-active {
    transform: translate3d(0px, -37px, 0px) rotateX(0deg) rotateY(0deg) scale(0.9) !important;
}

.header-right-hand .swiper-slide-prev .header-card-slide,
.header-right-hand .swiper-slide-next .header-card-slide {
    box-shadow: none;
}

.header-right-hand .header-card-slide {
    transform: scale(1) !important;
}

.service-cluster-landing .header-card-slide-desc {
    height: 182px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.why-findaso .cluster-card-slide img {
    height: 400px;
}

.active-link {
    font-weight: bold;
    position: relative;
}

    .active-link::after {
        position: absolute;
        transition: 0.5s ease;
        content: '';
        width: 50%;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        background-color: #14142b;
        border-radius: 30px;
    }

.users__section .main-section-2-title {
    height: auto !important;
}

/*Solution Centers list styles*/
.service-cluster-list .header-card-slide-desc {
    height: 210px;
}

.w100 {
    width: 100px;
    border-radius: 10px;
}

.login-btn__container {
    display: none;
}

.solution-center-video img {
    width: 100%;
}

.solution-center-video > div {
    margin: 0 auto;
    max-width: 926px;
}

.brands img:last-child {
    width: 100px;
}


/* =====================  */
.pricing-text {
    font-size: 15px;
    color: rgb(119, 125, 143);
    margin: 0px 0px 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 15px;
    display: block;
}

.pricing-title {
    font-size: 42px !important;
    margin: 0px 0px 40px;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-transform: capitalize;
    text-align: center;
}

.pricing-extra-text {
    margin: -24px 0px 40px;
    font-size: 16px;
    line-height: 19px;
    font-size: 18px;
    font-weight: 400;
    color: rgb(53, 63, 88);
}

.subscriptions__pricing table {
    width: 100%;
}

    .subscriptions__pricing table tr td {
        border-right: 2px solid #ddd;
        border-top: 2px solid #ddd;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .subscriptions__pricing table tr:first-child td {
        border-top: none;
    }

    .subscriptions__pricing table thead {
        background-color: #eff0f6;
        width: 100%;
        color: #0864FF;
    }

    .subscriptions__pricing table tbody {
        background-color: #fff;
        color: #14142B;
    }


    .subscriptions__pricing table thead th {
        padding: 1rem;
        width: 100%;
    }

.font-bold {
    font-weight: bold;
}

.subscriptions__table-btn {
    display: block;
    text-align: center;
    color: #0864FF;
}

.subscriptions__pricing table thead th h3 {
    text-align: left;
}

.subscriptions__pricing table thead:first-child {
    background-color: #fff;
}

.subscriptions__pricing table tbody tr td {
    text-align: center;
    max-width: 230px;
}

    .subscriptions__pricing table tbody tr td:first-child {
        text-align: left;
        max-width: 500px;
    }

.subscriptions__pricing table thead:first-child th {
    background-color: #fff;
    border-left: 2px solid #ddd;
}

    .subscriptions__pricing table thead:first-child th:last-child {
        background-color: #fff;
        border-right: 2px solid #ddd;
    }


.subscriptions__content {
    border-bottom: 0;
    padding: 2rem 1rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: none;
}

    .subscriptions__content h3 {
        color: #000;
        font-size: 1.5rem;
    }

    .subscriptions__content p {
        margin: 0.5rem 0 1.5rem 0;
        color: #6e7191;
        font-size: 14px;
    }

    .subscriptions__content a {
        height: 51px;
        font-size: 14px;
        width: 124px;
    }

.border-b-none {
    border-bottom: none;
}

@media only screen and (max-width: 992px) {
    .subscriptions__pricing {
        overflow-x: auto;
    }

        .subscriptions__pricing table {
            width: 782px;
        }
}

/* ============================== Member Label================================== */
.member-label {
    position: absolute;
    /*top: 4px;*/
    left: 18px;
    padding: 0 10px;
    color: white;
}

.member-info {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    color: white;
}

.user-info {
    border: solid;
    border-color: white !important;
    font-size: 12px !important;
}

.gold-label {
    background: linear-gradient(to right, rgba(203,150, 4, .9), rgba(306, 51, 60, .8),rgba(306, 51, 60, 0));
}

.red-label {
    background: linear-gradient(to right, rgba(306, 51, 60, .9), rgba(306, 51, 60, .8),rgba(306, 51, 60, 0));
}

.green-label {
    background: linear-gradient(to right, rgba(46, 121, 20, .9), rgba(46, 121, 20, .8),rgba(306, 51, 60, 0));
}
/* ============================== Pricing ================================== */
.mt-5 {
    margin-top: 2rem !important;
}

.mb-3 {
    margin-bottom: 2rem;
}

.solution-center-header-left .card__tags {
    background-color: transparent;
}

.ml-5 {
    margin-left: 1rem;
}

.profile__submenu {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: -120px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    width: 200px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: 0.5s ease;
}

    .profile__submenu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .profile__submenu li {
        width: 100%;
        margin: 0;
        transition: 0.5s ease;
    }

        .profile__submenu li a {
            padding: 0.5rem 1rem;
            width: 100%;
            display: flex;
        }

        .profile__submenu li:hover {
            background-color: rgba(0, 0, 0, 0.08);
        }

.profile__container {
    position: relative;
    cursor: pointer;
}

.solution-center-title {
    font-size: 45px;
}

.why-findaso .menu {
    position: sticky;
    top: 126px;
    z-index: 2;
    background: linear-gradient(to right, #f7f7f7f3, #fff);
    padding: 2rem 0;
}

.language__option {
    display: none;
}

.right-nav__responsive {
    display: flex;
    align-items: center;
}


/*search bar in header*/
.searchBox {
    display: flex;
    align-items: center;
    background: #eff0f6;
    height: 64px;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 3rem;
}



.searchButton {
    color: #14142B;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.searchInput {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: #495057;
    transition: 0.4s;
    line-height: 40px;
    width: 100%;
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 1rem;
}

    .searchInput::placeholder {
        color: #A0A3BD;
        font-size: 1rem;
    }

.searchBox i {
    font-size: 1.9rem;
}

@media screen and (max-width: 620px) {
    /*.searchBox:hover > .searchInput {*/
    /*    width: 80px;*/
    /*    padding: 0 6px;*/
    /*}*/
}


/*solution center member*/
.emplayeesDetails {
    margin-top: 8px;
    display: inline-block;
    margin-left: 5px;
}

    .emplayeesDetails:hover {
        display: inline-block;
    }

    .emplayeesDetails a {
        font-size: 18px;
        font-weight: 500;
        color: #343a40;
        letter-spacing: -0.2px;
        transition: all 0.3s;
    }

        .emplayeesDetails a:hover {
            font-size: 18px;
            font-weight: 500;
            color: #0864ff;
            letter-spacing: -0.2px;
            text-decoration: solid;
        }

.wa-float-img-circle {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    border-radius: 100%;
    position: fixed;
    z-index: 99999;
    display: flex;
    transition: all .3s;
    align-items: center;
    justify-content: center;
    background: #25D366;
}

    .wa-float-img-circle img {
        position: relative;
    }

    .wa-float-img-circle:before {
        position: absolute;
        content: '';
        background-color: #25D366;
        width: 70px;
        height: 70px;
        bottom: -7px;
        right: -7px;
        border-radius: 100%;
        animation: wa-float-circle-fill-anim 2.3s infinite ease-in-out;
        transform-origin: center;
        opacity: .2;
    }

    .wa-float-img-circle:hover {
        box-shadow: 0px 3px 16px #24af588a;
    }

    .wa-float-img-circle:focus {
        box-shadow: 0px 0 0 3px #25d36645;
    }

        .wa-float-img-circle:hover:before, .wa-float-img-circle:focus:before {
            display: none;
        }

@keyframes wa-float-circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        �
    }

    �
}

.table-value {
    color: mediumpurple
}

.styled-table {
    border-collapse: collapse;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    margin: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

    .styled-table thead tr {
        background-color: #163a78;
        color: #ffffff;
        text-align: left;
    }

    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
    }

    .styled-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #163a78;
        }

        .styled-table tbody tr.active-row {
            font-weight: bold;
            color: #163a78;
        }

.subscriptions__subscription h3 {
    margin-bottom: 2.5rem;
}


.subscriptions__subscription {
    background: transparent;
    display: block;
}

    .subscriptions__subscription li {
        padding: 0 0 0.5rem 0;
    }

.pricing-template {
    position: relative;
    padding: 0;
}

.vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background-color: #ddd;
}

.horizontal-line {
    border-bottom: 2px solid #ddd;
}

.m-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.min-h-1 {
    overflow: auto;
    min-height: 15rem;
    max-height: 15rem;
}

.hover-effect {
    transition: 1s ease all;
    margin-bottom: 0 !important;
    padding-right: 0;
}

.defult-effect {
    background-color: #f4f4f4ff;
}

.min-h-1::-webkit-scrollbar {
    height: 12px;
    width: 5px;
    background: #ddd;
}

.min-h-1::-webkit-scrollbar-thumb {
    background: #393812;
    width: 2px;
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

.min-h-1::-webkit-scrollbar-corner {
    background: #ddd;
}

.flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    margin: 0 0.2rem;
}

.sm-flag {
    width: 25px;
    height: 27px;
    margin-right: 0.5rem;
}

.tags span {
    margin-left: 0;
}

.rate svg {
    width: 40px;
    height: 40px;
}

.extra-text-style {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0864ff;
}

.tag__component {
    padding: 5px 12px;
    background: #eff0f7;
    border-radius: 8px;
    font-size: 10px;
    margin: 3px 2px;
    text-align: center;
    display: block;
    text-decoration: none !important;
    border: 2px solid transparent;
    transition: 0.5s ease all;
    color: #0864ff !important;
}

.tag__component_img {
    position: relative;
    top: -40px;
    left: 0px;
}

.badge_in_list {
    position: absolute;
    /*top:239px;*/
    left: 140px;
    height: 40px;
}

.big_badge {
    width: 50px;
}

.premium-profile-card {
    position: absolute;
    width: 80px !important;
    top: -22px;
    left: 80px;
}


.tag__component:hover {
    border: 2px solid #eff0f7;
    background-color: transparent;
}

.rate-container {
    height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-title {
    font-weight: bold !important;
    font-size: 24px;
}

.new-sm-title {
    font-size: 1.2rem;
}

.ml-0 {
    margin-left: 0 !important;
}

.star {
    font-size: 2.5rem;
    color: #ffce00;
}

.outline-star {
    color: #000;
}

.toggle-paragraph-button {
    color: #0864ff;
}

.tabs {
    margin-left: 1rem;
    margin-top: 2rem;
}

.tab__button {
    outline: none !important;
    padding: 0.8rem 1rem;
    position: relative;
    overflow: hidden;
    width: 150px;
    transition: background 400ms;
}

    .tab__button.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 3px;
        left: 0;
        background: #0864ff;
    }

    .tab__button span.ripple {
        position: absolute;
        border-radius: 50%;
        transform: scale(0);
        animation: ripple 600ms linear;
        background-color: rgba(0, 0, 0, 0.3);
    }

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.tab__button.active {
    font-weight: bold;
}

.tab__content {
    display: none;
    margin-bottom: 2rem;
}

    .tab__content.active {
        display: block;
    }


.extra-sm-title {
    font-size: 15px;
}

    .extra-sm-title span {
        font-size: 12px;
    }

@media only screen and (max-width: 768px) {
    .vertical-line {
        display: none;
    }

    .order-1-reposnive {
        order: 1;
    }
}


.sub__menu::-webkit-scrollbar {
    width: 5px;
}

.sub__menu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.sub__menu::-webkit-scrollbar-thumb {
    background-color: #14142b;
    outline: 1px solid #14142b;
}

/*PreSolution*/
.preSolution-title-color {
    background: linear-gradient(to right, #387CFF,#9266F1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.preSolution-primary-color {
    color: #0864FF;
}

.preSolution-gray-color {
    color: #6E7191;
}

.preSolution-gray-color-2 {
    color: #4E4B66;
}

.text-sm {
    font-size: 16px;
}

.text-md {
    font-size: 18px;
}

.text-lg {
    font-size: 28px;
}

.preSolution-gray-color-3 {
    color: #6E7191;
}

.preSolution-section-background {
    background: linear-gradient(to right, #9266F11A,#387CFF1A);
    padding: 48px;
    gap: 32px;
    border-radius: 16px;
}

.preSolution-white-background {
    background: white;
}

.w-50-percent {
    width: 50%;
}

@media only screen and (max-width: 991px) {
    .w-50-percent {
        width: 100%;
    }
}

.preSolution-input-section {
    padding: 32px;
    border-radius: 16px;
}

    .preSolution-input-section input {
        background: #EFF0F6;
        color: #4e4b66;
        border-radius: 16px;
        padding: 4px 8px 4px 8px;
        border: none;
        width: 100%;
        height: 56px;
    }

        .preSolution-input-section input:focus {
            border: none;
        }

        .preSolution-input-section input::placeholder {
            color: #A0A3BD;
        }


    .preSolution-input-section .file {
        color: #0864FF;
        text-align: center;
        border-radius: 16px;
        padding: 4px 8px 4px 8px;
        border: 2px solid #D9DBE9;
        width: 100%;
        height: 56px;
    }

.btn-create {
    width: 336px !important;
    height: 64px !important;
    padding: 16px 20px 16px 20px;
    gap: 12px;
    font-size: 18px !important;
    border-radius: 12px;
}

    .btn-create:disabled {
        opacity: 0.3px;
    }

.header-font-size {
    font-size: 64px;
}

.available-countries-title {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.5s;
    opacity: 1;
}

    .available-countries-title.fade-out {
        opacity: 20%;
        transition: opacity 0.5s;
    }

.available-countries-title-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.ml-- {
    margin-left: -15px;
}

.border-1 {
    border: 2px solid #D9DBE9;
}
.disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
    pointer-events: all !important;
}
.disabled-cursor {
    cursor: not-allowed !important;
    pointer-events: all !important;
}

/*.loadingSpinner {
    width: 24px;
    height: 24px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}*/
.loadingSpinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 5px solid;
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
}

@keyframes animloader {
    0% {
        border-color: white rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
    }

    33% {
        border-color: white white rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
    }

    66% {
        border-color: white white white rgba(255, 255, 255, 0);
    }

    100% {
        border-color: white white white white;
    }
} 

/* under cunstruction */


main.main-14 .main-wrapper {
    width: 100%;
}

    main.main-14 .main-wrapper.demo-14 {
        overflow: hidden;
        width: 100%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-family: "Roboto", sans-serif;
        color: #3E2945;
        position: relative;
    }

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

main.main-14 .main-wrapper.demo-14 .img-wrapper {
    margin-left: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    main.main-14 .main-wrapper.demo-14 .img-wrapper {
        display: block;
        margin-left: -150px;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .img-wrapper {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    main.main-14 .main-wrapper.demo-14 .img-wrapper img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .img-wrapper img {
        width: 100%;
    }
}

main.main-14 .main-wrapper.demo-14 .shape-1 {
    left: 0;
    right: 0;
    margin: auto;
    top: 120px;
}

main.main-14 .main-wrapper.demo-14 .shape-2 {
    right: 380px;
    top: 95px;
}

main.main-14 .main-wrapper.demo-14 .shape-3 {
    right: 88px;
    top: 230px;
}

main.main-14 .main-wrapper.demo-14 .shape-4 {
    right: 295px;
    top: 550px;
}

main.main-14 .main-wrapper.demo-14 .shape-5 {
    right: -48px;
    bottom: 250px;
}

main.main-14 .main-wrapper.demo-14 .shape-6 {
    right: 272px;
    bottom: -20px;
}

main.main-14 .main-wrapper.demo-14 .content-wrapper {
    margin-left: -40px;
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper {
        margin-left: 0px;
        margin-bottom: 30px;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper h1 {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper h1 {
        font-size: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper h1 {
        font-size: 50px;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper p {
    font-size: 16px;
    line-height: 26px;
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown {
    padding-top: 45px;
    padding-bottom: 50px;
}

    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content {
        padding: 0 36px;
        position: relative;
    }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content {
        padding: 0 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content {
        padding: 0 15px;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content:first-child {
    padding-left: 0px;
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content:last-child {
    padding-right: 0;
}

    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content:last-child::after {
        content: '';
    }

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content::after {
    content: ':';
    font-size: 50px;
    color: #3E2945;
    position: absolute;
    top: -5px;
    right: 0;
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content::after {
        font-size: 35px;
        top: 0;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content .count {
    font-size: 50px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content .count {
        font-size: 35px;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content .text {
    font-size: 16px;
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .countdown .single-count-content .text {
        font-size: 15px;
    }
}

main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input {
    border: 1px solid rgba(112, 112, 112, 0.3);
}

    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input::-webkit-input-placeholder {
        color: #3E2945;
    }

    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input:-ms-input-placeholder {
        color: #3E2945;
    }

    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input::-ms-input-placeholder {
        color: #3E2945;
    }

    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input::placeholder {
        color: #3E2945;
    }

    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form input:focus {
        border-color: #44ACBE;
    }

main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form button {
    background: #44ACBE;
}

@media (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form button {
        position: unset;
        margin-top: 15px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    main.main-14 .main-wrapper.demo-14 .content-wrapper .subscribe-form button {
        position: absolute;
    }
}
/*# sourceMappingURL=style.css.map */


.overlay {
    text-align: center;
    z-index: 9999;
    left: 0;
    opacity:75%;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #222;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    margin:50px;
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.typed {
    color: white;
    margin-top: 100px;
    font-size: 20px;
}

/*.index-background {
    background-image: url("/images/index/index-background.svg");
    background-position: center -100px;*/ /* Move the background image up by 50 pixels */
   
/*}*/
/*.index-background {
    position: relative;
}

    .index-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/images/index/index-background.svg");
        background-position: center -100px;*/ /* Move the background image up by 50 pixels */

        /*background-repeat: no-repeat;
        opacity: 0.5;*/ /* Adjusts the transparency of the overlay */
        /*z-index: -1;*/ /* Places the background behind other content */
    /*}*/


.margin-top--2 {
    margin-top: -2rem;
}

.border-gray {
    border: solid 1px #D9DBE9;
    border-radius:16px;
}

.text-gray {
    color: #4E4B66;
}

.w-400{
    max-width:400px;
    width:100%;
}

.background-gray {
    background: #F7F7FC;
}

.li-bullet {
    list-style-type:disc;
}

.video-height-responsive{
    height:330px;
}
@media only screen and (max-width: 1263px) {
    .video-height-responsive {
        height: 400px;
    }
}
@media only screen and (max-width: 1187px) {
    .video-height-responsive {
        height: 470px;
    }
}
.m-25-percent{
    margin:25%;
}

.font-18{
    font-size:18px;
    line-height:36px;
}