@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&family=Teko:wght@300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet');


html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 5px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: #547ee4;
    outline: none;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: rgb(193, 193, 193);
}

::selection {
    color: rgb(255, 255, 255);
    text-shadow: none;
    background: rgb(0, 0, 0);
}

html {
    scroll-behavior: smooth;
}

body {
    overscroll-behavior: none;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    color: #232323;
}

a {
    color: #232323;
    text-decoration: none;
}

p {
    font-size: 14px;
    color: #5c5c5c;
}


section {
    padding: 100px 0;
    overflow-x: clip;
}

.header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid #ffffff00;
    padding: 0 20px;
}

.navbar {
    padding: 7px 0px;
}

.navbar .navbar-brand img {
    max-width: 120px;
}

.navbar .header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 26px;
    margin-left: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    padding: 4px 0;
    margin: 0 20px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s linear;
}

.navbar-expand-lg .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: transparent;
    transition: all 0.2s linear;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #cfcfcf;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}


.header-right .call-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 21px;
    color: #232323;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s linear;
}

.header-right .call-btn:hover {
    color: #547ee4;
}

.header-right .call-btn span {
    position: relative;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #547ee4;
    border-radius: 50%;
    box-sizing: border-box;
}

.header-right .call-btn span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #0000000d;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.header-right .call-btn span i {
    color: #fff;
}

.header {}




.btn {
    position: relative;
    overflow: hidden;
    padding: 13px 25px;
    background: #547ee4;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    border: 1px solid #547ee4;
    transition: all 0.2s linear;
    display: flex;
    justify-content: center;
    width: fit-content;
    font-family: 'Kanit', sans-serif;
    align-items: center;
}

.btn .btn-text {
    margin-right: -23px;
    position: relative;
    z-index: 3;
    transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}

.btn:hover .btn-text {
    transition-delay: 0.05s;
    transform: translateX(-23px);
}

.btn .btn-icon {
    margin-right: 6px;
    position: relative;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    line-height: 0;
    z-index: 3;
    opacity: 0;
    transform: translateX(0);
}

.btn .btn-icon+.btn-icon {
    order: -2;
    opacity: 1;
    margin-left: 0;
}

.btn:hover .btn-icon {
    transition-delay: 200ms;
    opacity: 1;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.btn:hover .btn-text {
    transition-delay: 0.05s;
    transform: translateX(-23px);
}

.btn:hover .btn-icon+.btn-icon {
    opacity: 0;
    transition-delay: 0s;
}

.btn i {
    position: relative;
    font-size: 20px;
    color: #fff;
}

.btn span {
    position: relative;
    transition: all 0.2s linear;
}


.btn:hover {
    border: 1px solid #547ee4;
    color: #fff;
    background: #547ee4;
}

.btn:hover span {
    color: #fff;
}

.btn:hover:before {
    top: 0%;
}

.btn-outline {
    background: transparent;
    color: #232323;
    border: 1px solid #232323;
}

.btn-outline:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #547ee4;
    transition: all 0.2s linear;
}

.btn-outline span {
    position: relative;
}

.btn-outline:hover:before {
    top: 0%;
}

.btn-outline:hover span,
.btn-outline:hover {
    color: #fff;
}

.btn-outline i {
    color: #ac213b;
}

.btn-outline:hover i {
    color: #fff;
}

.subtitle {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    color: #939598;
    font-weight: 400;
    margin-bottom: 18px;
}

.smalltitle {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.48px;
    margin-bottom: 10px;
    color: #2b2b2b;
    line-height: 30px;
}

.title {
    font-size: 41px;
    font-weight: 700;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
    color: #2b2b2b;
    line-height: 39px;
}

.heading p {
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    color: #525252;
}

.btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-white {
    color: #232323;
    background: #fff;
    border-color: #fff;
}

.btn-white i {
    color: #232323;
    transition: all 0.2s linear;
}

.btn-white:hover i {
    color: #fff;
}


.btn-white-outline {
    color: #fff;
    background: transparent;
    border-color: #fff;
    font-weight: 300;
}

.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 40px);
    margin: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(153deg, #00000085 2%, #00000085 4%, transparent 15%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner_inner {
    position: relative;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    margin-left: 100px;
}

.banner .banner_inner h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 12px 15px;
    font-weight: 300;
    letter-spacing: 4px;
    border: 1px solid #ffffff3b;
    justify-content: center;
    width: fit-content;
}

.banner .banner_inner h6::after {
    display: none;
}

.banner .banner_inner h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 45px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.banner .banner_inner h1 span {}

.hero-scroll-btn {
    border: 1px dashed #ffffff;
    border-radius: 100px;
    width: 50px;
    background: transparent;
    opacity: 0.9;
    height: 75px;
    text-align: center;
    line-height: 75px;
    position: absolute;
    right: 70px;
    bottom: 49px;
    z-index: 1;
}

.upslide-1 {
    animation: upslide-1 4s linear forwards infinite alternate;
}

@keyframes upslide-1 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}



.banner .banner_inner .btn:hover {
    color: #fff;
    border-color: #547ee4;
}

.hero-social {
    margin-left: 45px;
    position: absolute;
    top: 57%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    writing-mode: vertical-rl;
    gap: 10px;
    display: flex;
    align-items: center;
}

.hero-social span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    align-items: center;
    display: flex;
    margin-bottom: 5px;
}

.hero-social span svg {
    margin-top: 15px;
}

.hero-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    border-radius: 100px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    background: none;
    border: none;
    align-items: center;
    color: #fff;
}

.hero-social a:hover {
    background: #547ee4;
    color: #fff;
    border-color: #547ee4;
}


.achro-animation-style4,
.achro-animation-style3,
.achro-animation-style1,
.achro-animation-style2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(.5, .5, 0, 1);
}

.achro-animation-style4 img,
.achro-animation-style3 img,
.achro-animation-style1 img,
.achro-animation-style2 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(.5, .5, 0, 1);
}

@media(min-width:991px) {

    .achro-animation-style4 {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .achro-animation-style4 img {
        transform: scale(1.5) translate(0, -100px);
    }

    .achro-animation-style3 {
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
    }

    .achro-animation-style3 img {
        transform: scale(1.5) translate(0, 100px);
    }

    .achro-animation-style2 {
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }

    .achro-animation-style2 img {
        transform: scale(1.5) translate(100px, 0px);
    }

    .achro-animation-style1 {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }

    .achro-animation-style1 img {
        transform: scale(1.5) translate(-100px, 0px);
    }

    .achro-animation-style4.active,
    .achro-animation-style3.active,
    .achro-animation-style2.active,
    .achro-animation-style1.active {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .achro-animation-style4.active img,
    .achro-animation-style3.active img,
    .achro-animation-style2.active img,
    .achro-animation-style1.active img {
        transform: scale(1) translate(0, 0);
    }
}

.about {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.about__image {
    position: relative;
    border-radius: 0px;
    height: 100%;
}

.about__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2.2;
    object-fit: cover;
    border-radius: 0px;
}

.waves-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.waves-block i {
    font-size: 48px;
    color: #fff;
}

.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    right: -50px;
    bottom: -36px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.7, 0.7);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.video_popup {
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.video_popup.active {
    display: flex;
}

.video_wrapper {
    width: 80%;
    max-width: 800px;
    margin: 5% auto;
}

.video_wrapper video {
    width: 100%;
    height: auto;
}

.close_btn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.about .section-head {
    margin-left: 0;
    height: 100%;
    background: #f7f7f7;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-head__title {
    font-size: 41px;
    font-weight: 700;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
}

.about .section-head__title {
    color: #2b2b2b;
}

.about .btn.btn-outline {
    margin-top: 25px;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.about__counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about__counter-wrapper {
        gap: 150px;
    }
}

.about__counter-wrapper .single-counter {
    display: flex;
    align-items: center;
    gap: 16px;
}


.about__counter-wrapper .single-counter h4 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
}

.about__counter-wrapper .single-counter .odometer.odometer-auto-theme,
.about__counter-wrapper .single-counter .odometer.odometer-theme-default {
    line-height: 47px;
    letter-spacing: -1px;
    color: #2b2b2b;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.about__counter-wrapper .single-counter p {
    font-size: 15px;
    font-weight: 400;
    color: #353535;
    margin: 0;
    font-style: italic;
}

.about ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about ul li {
    list-style: none;
}

.about ul li div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about ul li div h5 {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}

.about ul li div p {}






.services {
    position: relative;
}

.service_inner {
    display: block;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 0;
    margin-top: 0px;
    height: calc(100% - 0px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 20px;
    padding-left: 20px;
}

.row {
    --bs-gutter-x: 20px;
}

.service_inner .icon svg {
    width: 70px;
    height: 70px;
    stroke-width: 1;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    fill: none;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.service_inner:hover .icon svg {
    stroke: #547ee4;
}

.service_inner:hover svg path,
.service_inner:hover svg circle,
.service_inner:hover svg line,
.service_inner:hover svg polyline,
.service_inner:hover svg rect {
    animation: drawline 0.9s ease forwards;
}

@keyframes drawline {
    0% {
        stroke-dasharray: 80;
        stroke-dashoffset: 80;
    }

    100% {
        stroke-dasharray: 80;
        stroke-dashoffset: 0;
    }
}

.service_inner h4 {
    font-size: 33px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #2b2b2b;
}

.service_inner .link_btn {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease-in-out;
    position: relative;
    width: fit-content;
    display: none;
}

.service_inner .link_btn svg {
    width: 17px;
}

.service_inner .link_btn::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 14%;
    height: 6px;
    background: #00000012;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
}

.service_inner .link_btn:hover {
    color: #547ee4;
}

.service_inner .link_btn:hover::before {
    background: #547ee4;
    width: 100%;
    height: 1px;
    bottom: -2px;
}


.calendly {
    position: relative;
    background: #f7f7f7;
    padding-bottom: 50px;
}

.calendly .container-fluid {
    position: relative;
    z-index: 9;
}

.calendly iframe {
    height: 670px;
    margin-top: -50px;
}

.section-vector {
    fill: none;
    stroke: #FFFFFF;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    animation-fill-mode: forwards;
}

.fadeInLeftVector {
    animation-name: fadeInLeftVector;
}

@keyframes fadeInLeftVector {
    0% {
        opacity: 0;
        transform: translateX(80px);
        visibility: visible;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

.testimonial {
    /* padding: 70px 0 40px; */
}

.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.testimonial-shape {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 45px;
}

.testimonial-box {
    max-width: 920px;
    margin: 0 auto;
}

.testimonial .stars svg {
    margin-bottom: 10px;
}

.testimonial .stars svg {
    width: 16px;
    color: #ffdc82;
    fill: #ffdc82;
}

.testimonial .review-text {
    font-size: 17px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 35px;
    font-style: italic;
    letter-spacing: -.2px;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial .location {
    font-size: 15px;
}


.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0c1b33;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.partners {
    position: relative;
}

.partner_heading {
    text-align: center;
}

.partner_heading p {
    position: relative;
    padding: 9px 20px;
    font-family: "Space Grotesk", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    border: 1px dashed #0000001a;
    width: fit-content;
    margin: 0 auto;
    border-radius: 100px;
}

.partner_heading p::before,
.partner_heading p::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1px;
    border: 1px dashed #0000001a;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.partner_heading p::after {
    left: 100%;
    right: inherit;
}

.logos-slider {
    margin-top: 40px;
}

.partners .logo-box {
    text-align: center;
}

.partners .logo-box img {
    filter: invert(0.6);
    height: 100px;
    transition: all 0.2s linear;
}

.partners .logo-box img:hover {
    filter: invert(1);
}

.footer {
    position: relative;
    background: #232323;
    margin: 20px;
    margin-top: 0;
    padding: 50px 50px 0;
}

.footer .logo img {
    width: 110px;
}

.footer .column {}

.footer .column h5 {
    font-weight: 700;
    color: #8b8b8b;
    text-transform: uppercase;
    font-size: 15px;
}

.footer .column ul {
    margin: 0;
    padding: 0;
    margin-top: 25px;
        padding-left: 15px;
}

.footer .column ul li {
    position: relative;
    margin-top: 13px;
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: -.2px;
}


.footer .column ul li a {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: -.2px;
}

.footer .column.column4 ul li a {
    
    text-transform: capitalize;
    font-size: 14px;
}
.footer .column ul li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #d5d5d5;
}
.footer .column.column4 ul  {
    padding: 0;
}
.footer .column.column4 ul li:before {
    display: none;
}

.footer .column ul li a i {
    color: #fff;
    font-size: 16px;
    margin-right: 1px;
}
.footer .footer_bottom {
    padding: 20px 0;
    border-top: 1px solid #ffffff47;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.footer .footer_bottom .copyright_text {
    color: #fff;
    margin: 0;
    font-size: 13px;
}

.footer .footer_bottom ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    gap: 40px;
}

.footer .footer_bottom ul li {
    position: relative;
    list-style: none;
}
.footer .footer_bottom ul li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ffffff38;
}
.footer .footer_bottom ul li:first-child::before {
    display: none;
}
.footer .footer_bottom ul li a {
    color: #fff;
     font-size: 13px;
     text-transform: uppercase;
}

.banner.inner-banner {
    height: calc(100% - 20px);
    margin-bottom: 0;
}

.banner.inner-banner .banner_inner {
    padding: 310px 0 30px;
}

.banner.inner-banner .banner_inner h1 {
    margin-bottom: 20px;
}

.banner.inner-banner .banner_inner p {
    color: #fff;
}

ul#myTab {
    border: 0;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    padding: 10px 30px;
    color: #232323;
    border-radius: 0;
    border: none;
    font-size: 16px;
}

.nav-tabs .nav-item .nav-link:hover {
    color: #232323;
    background-color: #f7f7f7;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
    color: #fff;
    background-color: #232323;
    border-color: transparent;
    font-weight: 600;
}






.cta {
    position: relative;
}

.cta .container {
    position: relative;
    background: #f7f7f7;
    padding: 60px 30px;
    background: linear-gradient(#00000078), url(../img/cta.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta h2,
.cta p,
.cta {
    color: #fff;
}

.ab .service_inner {
    background: #fff;
}

.services.ab {
    padding: 80px 0;
    background: #f7f7f7;
}

.ab .service_inner h4 {
    font-size: 33px;
}

.about_seo {
    padding: 100px 0;
}

.chart {
    max-width: 600px;
    height: 400px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
}

.chart h6 {
    font-size: 15px;
    font-weight: 700;
    width: 85%;
    margin: 0;
    margin-bottom: -30px;
}

.chart .bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.chart .bar {
    flex: 1;
    background: #f5f5f5;
    border-radius: 0;
    position: relative;
    transition: all 0.6s ease;
    text-align: center;
}

.chart .bar:hover {
    background: #2b2b2b;
}

.chart .bar:nth-child(1) {
    height: 8%;
}

.chart .bar:nth-child(2) {
    height: 18%;
}

.chart .bar:nth-child(3) {
    height: 35%;
}

.chart .bar:nth-child(4) {
    height: 55%;
}

.chart .bar:nth-child(5) {
    height: 70%;
}

.chart .bar:nth-child(6) {
    height: 95%;
}

.chart .label {
    position: relative;
    top: 100%;
    color: #232323;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}


.timeline-wrapper {
    position: relative;
    width: 100%;
    margin: 30px auto 0;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    overflow: visible;
    z-index: 1;
}

.timeline-line::before,
.timeline-line::after {
    /* content: ''; */
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #042e56;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e5f6f4;
    z-index: 3;
}

.timeline-line::before {
    left: 0;
    transform: translate(-50%, -50%);
}

.timeline-line::after {
    right: 0;
    transform: translate(50%, -50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(267.43deg, #232323 4.95%, #464646 97.92%);
    border-radius: 2px;
    z-index: 2;
}

.timeline-progress.active {
    animation: progressLoop 8s linear forwards;
}

@keyframes progressLoop {
    0% {
        width: 0%;
    }

    25% {
        width: 25%;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}


@keyframes progressLoop1 {
    0% {
        height: 0%;
    }

    25% {
        height: 25%;
    }

    50% {
        height: 50%;
    }

    75% {
        height: 75%;
    }

    100% {
        height: 100%;
    }
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 4;
    margin-top: -10px;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 20px;
}

.step h4 {
    margin-top: 25px;
}

.step .dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #c9c9c9;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #00000014;
    margin-bottom: 45px;
    color: #fff;
    font-size: 18px;
    transition: background 0.4s ease;
}

.line {
    position: relative;
}

.step.active .dot {
    background: #232323;
}

.step h4 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
}

.step p {
    margin-bottom: 0;
}




.about_us {
    padding: 100px 0;
}

#aboutTab {
    position: absolute;
    border: 0;
    justify-content: center;
    padding-bottom: 30px;
    flex-direction: row;
    gap: 0;
    width: 100%;
    background: #f7f7f7;
}

#aboutTab li {
    width: 33.33%;
}

#aboutTab li button {
    width: 100%;
    border-right: 1px solid #00000014;
    border-bottom: 1px solid #00000014;
}

#aboutTab li:last-child button {
    border-right: 0;
}

.tab-content .tab-pane {
    height: 100%;
}


.contact {
    padding: 20px 0;
}

.contact_inner {
    display: block;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 0;
    margin-top: 0px;
    height: calc(100% - 0px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}

.contact_inner .icon svg {
    width: 70px;
    height: 70px;
    stroke-width: 1;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    fill: none;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.contact_inner:hover .icon svg {
    stroke: #547ee4;
}

.contact_inner:hover svg path,
.contact_inner:hover svg circle,
.contact_inner:hover svg line,
.contact_inner:hover svg polyline,
.contact_inner:hover svg rect {
    animation: drawline 0.9s ease forwards;
}

@keyframes drawline {
    0% {
        stroke-dasharray: 80;
        stroke-dashoffset: 80;
    }

    100% {
        stroke-dasharray: 80;
        stroke-dashoffset: 0;
    }
}

.contact_inner h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #2b2b2b;
    word-break: break-word;
}



.contact_form label {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact_form input,
.contact_form textarea {
    height: 45px;
    padding: 12px 15px;
    background: rgb(255 255 255 / 10%);
    border-radius: 0;
    border: 0;
    margin-top: 0;
    width: 100%;
    font-size: 14px;
    border: 1px solid #ccc;
    color: #232323;
}

.contact_form textarea {
    min-height: 100px;
}

.contact_form input:focus-visible,
.contact_form textarea:focus-visible {
    border: 1px solid #232323;
    box-shadow: none;
    outline: 0;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #ccc;
}

.contact_form button {
    width: 100%;
    margin-top: 10px;
}



.ai-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 20px);
    margin: 20px;
    margin-bottom: 0px;
}

.ai-banner .banner_inner {
    position: relative;
    padding: 130px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    margin-left: 100px;
}

.ai-banner .banner_inner h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 12px 15px;
    font-weight: 300;
    letter-spacing: 4px;
    border: 1px solid #ffffff3b;
    justify-content: center;
    width: fit-content;
}

.ai-banner .banner_inner h6::after {
    display: none;
}

.ai-banner .banner_inner h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.ai-banner .banner_inner .btn:hover {
    color: #fff;
    border-color: #547ee4;
}

.ai-banner .banner_inner p {
    color: #ffffff;
}

.ai-banner .banner_inner p span {
    font-weight: 700;
    border-bottom: 1px solid #fff;
}

span.stroke {
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: transparent;
}

.ai-banner .key_points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 50px;
}

.ai-banner .key_points .point {
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff1c;
    border: 1px solid #ffffff30;
    border-radius: 33px;
}

.ai-banner .key_points .point svg {
    width: 19px;
    stroke: #fff;
    height: 20px;
}

.ai-banner .key_points .point p {
    margin: 0;
    font-size: 13px;
}

.mobile_mockup {
    position: relative;
    width: 340px;
    margin: auto;
    overflow: hidden;
    border-radius: 59px;
    z-index: 9;

}

.mobile_mockup img {
    position: relative;
    z-index: 9;
}

.mobile_mockup .mockup_video {
    object-fit: cover;
    position: absolute;
    width: calc(100% - 5px);
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 60px;
}

.banner_inner .banner-vector {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(106deg);
    opacity: 0.3;

}


.intro_video .thumbnail__image {
    position: relative;
    border-radius: 20px;
    height: 600px;
    width: 100%;
}

.intro_video .thumbnail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0px;
}




.grid_imgs {
    position: relative;
}

.grid_imgs .grid_img {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    cursor: pointer;
}

.grid_imgs .grid_img img {
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: all 0.2s linear;
}

.grid_imgs .grid_img:hover img {
    transform: scale(1.07);
}





.img_cont {
    position: relative;
}

.img_cont .cont {
    padding: 0 30px;
}

.img_cont .imgs {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.img_cont .imgs .img-1,
.img_cont .imgs .img-3 {
    width: 40%;
    text-align: right;
}

.img_cont .imgs .img-3 {
    text-align: left;
}

.img_cont .imgs .img-1 img,
.img_cont .imgs .img-3 img {
    width: 75%;
    aspect-ratio: 2/2.8;
    object-fit: cover;
}

.img_cont .imgs .img-2 {
    width: 20%;
    text-align: center;
}

.img_cont .imgs .img-2 img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.img_cont .highlight {
    background: #f7f7f7;
    padding: 16px;
    border-radius: 10px;
    margin-top: 30px;
}

.img_cont .highlight p {
    margin: 0;
    margin-top: 0.8rem;
}

.img_cont .highlight h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.img_cont.right .row {
    flex-direction: row-reverse;
}

.img_cont .img {
    padding: 0 30px;
}

.bg-grey {
    background: #f7f7f7;
}

.img_cont.bg-grey .highlight {
    background: #fff;
}

.img_cont.right .cont h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
}

.img_cont .video {
    padding: 0 30px;
}

.img_cont .video {
    text-align: center;
}

.img_cont .video.short video {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
}

.img_cont .video video {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
}

.img_cont .cont ul {
    margin: 0;
    padding: 0;
    margin: 30px 0 0;
}

.img_cont .cont ul li {
    list-style: none;
    display: flex;
    gap: 7px;
    margin-top: 11px;
}

.img_cont .cont ul li i {
    font-size: 16px;
}

.img_cont .cont ul li p {
    margin: 0;
}

.img_cont .cont .icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.img_cont .cont .icon {
    background: #232323;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_cont .cont .icons svg {
    width: 45px;
    stroke: #fff;
}


.system_requirements .table_data {
    max-width: 1000px;
    margin: 0 auto;
}

.system_requirements .table_data::-webkit-scrollbar {
    width: 1px;
}

.system_requirements .table_data::-webkit-scrollbar-thumb {
    background-color: #547ee4;
    outline: none;
}

.system_requirements .table_data::-webkit-scrollbar-track {
    background: rgb(193, 193, 193);
}

.system_requirements .table_data::selection {
    color: rgb(255, 255, 255);
    text-shadow: none;
    background: rgb(0, 0, 0);
}

.system_requirements table {
    width: 100%;
}

.system_requirements .table_data tr th {
    background: #232323;
    padding: 10px 20px;
    color: #fff;
    font-size: 15px;
    border-right: 1px solid #ffffff70;
}

.system_requirements .table_data tr td {
    padding: 10px 20px;
    background: #f7f7f7;
    font-size: 15px;
    border-bottom: 1px solid #cccccc75;
    border-right: 1px solid #cccccc75;
}



.cta .key_points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 20px;
}

.cta .key_points .point {
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff1c;
    border: 1px solid #ffffff30;
    border-radius: 33px;
}

.cta .key_points .point svg {
    width: 19px;
    stroke: #fff;
    height: 20px;
}

.cta .key_points .point p {
    margin: 0;
    font-size: 13px;
}

.heading .mid_text,
.mid_text {
    font-size: 13px;
}

.heading .small_text,
.small_text {
    font-size: 12px;
}



.faq {
    position: relative;
}

.faq .accordion {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    max-width: 1000px;
    margin: 0 auto;
}

.faq .accordion .accordion-item {
    margin-top: 15px;
    border-radius: 15px;
    border: 0;
    background: #f7f7f7;
}

.faq .accordion .accordion-item .accordion-button {
    border: 0;
    background: #f7f7f7;
    font-size: 17px;
    font-weight: 600;
    color: #232323;
    box-shadow: none;
    padding: 15px 20px;
    border-radius: 15px;
}

.faq .accordion .accordion-item .accordion-body {
    border: 0;
    border-radius: 15px;
    background: #f7f7f7;
    box-shadow: none;
    padding: 5px 20px 15px;
    font-size: 14px;
}

.faq .accordion-button::after {
    width: 22px;
    height: 22px;
    background-image: url(../img/plus.svg);
    background-size: 22px;
}

.faq .accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../img/minus.svg);
    transform: unset;
}

.faq .accordion .accordion-collapse {
    transition: height 450ms cubic-bezier(.25, .8, .25, 1);
}




.card .card_inner {
    position: relative;
    display: block;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 0;
    margin-top: 0px;
    height: calc(100% - 0px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 35px;
    overflow: hidden;
}

.card .card_inner .icon svg {
    width: 70px;
    height: 70px;
    stroke-width: 1;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    fill: none;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.card .card_inner:hover .icon svg {
    stroke: #547ee4;
}

.card .card_inner:hover svg path,
.card .card_inner:hover svg circle,
.card .card_inner:hover svg line,
.card .card_inner:hover svg polyline,
.card .card_inner:hover svg rect {
    animation: drawline 0.9s ease forwards;
}

.card .card_inner h4 {
    font-size: 33px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #2b2b2b;
}

.card .card_inner .popular {
    position: absolute;
    top: 20px;
    right: -61px;
    background: linear-gradient(135deg, #5179dc, #112d71);
    color: white;
    padding: 8.5px 68px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(103, 132, 255, 0.3);
}

.card .card_inner ul {
    margin: 0;
    padding: 0;
    text-align: left;
    width: fit-content;
}

.card .card_inner ul li {
    position: relative;
    list-style: none;
    margin-top: 6px;
    font-size: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.card .card_inner ul li::before {
    content: "\f26b";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
}


.call-slider {
    position: relative;
}

.call-slider .call-box {
    padding: 20px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
}

.call-slider .call-box .img {
    width: 45%;
    padding-right: 15px;
    position: relative;
}

.call-slider .call-box .cont {
    width: 55%;
    padding-left: 15px;
    margin-top: 10px;
}

.call-slider .call-box .img img {
    width: 100%;
    aspect-ratio: 2/2.6;
    object-fit: cover;
}

.call-slider .call-box .play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #00000087;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.call-slider .call-box .play_icon i {
    color: #fff;
    font-size: 33px;
}

.call-slider .call-box .cont h5 {
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 700;
}

.call-slider .call-box .cont .btn {
    font-size: 13px;
    margin-top: 35px;
}

.call-slider .swiper-button-prev,
.call-slider .swiper-button-next {
    background: #2b2b2b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: -15px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http://www.w3.org/2000/svg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}


.call-slider .swiper-button-next {
    right: -15px;
    left: unset;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http://www.w3.org/2000/svg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C/svg%3E");
}
.card {
    border: 0;
}
.our_work .work_img {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .call-slider .call-box .cont h5 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .call-slider .call-box .cont .btn {
        font-size: 13px;
        margin-top: 20px;
        padding: 10px 20px;
    }
}


@media (max-width: 767px) {
    .call-slider .call-box .cont h5 {
        font-size: 14px;
    }

    .call-slider .call-box .play_icon {
        width: 40px;
        height: 40px;
    }

    .call-slider .call-box .play_icon i {
        font-size: 25px;
    }

    .call-slider .swiper-button-prev,
    .call-slider .swiper-button-next {
        width: 31px;
        height: 31px;
        background-size: 8px;
    }
}