@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: #1B2A41;
}
h1,h2,h3,h4,h5,h6{
     font-family: "Montserrat", sans-serif !important;
}
a {
    text-decoration: none;
}

section {
    padding: 60px 0;
}

p {
    color: #717f8c;
    font-weight: 500;
    font-size: 16px;
 
}

.header {
    background: #eaf5f7;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.navbar-brand {
    max-width: 230px;
}

.header_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.header_btns .btn,
.header_btns .btn:hover {
    font-size: 16px;
    padding: 15px 20px;
    box-shadow: none;
    background: #21C0AD;
}


.banner {
    background: #eaf5f7;
}

.banner .banner_left {
    margin-top: 50px;
}

.banner .banner_left img {
    max-width: 500px;
    margin-bottom: 40px;
}

.banner .banner_left h1 {
    font-size: 60px;
    color: #1B2A41;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 20px;
}

.banner .banner_left h1 span {
    color: #0ba9b6;
}

.banner .banner_left p {
    font-weight: 500;
    color: #717f8c;
    font-size: 19px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    width: fit-content;
    background: linear-gradient(270deg, #21C0AD, #0B8494);
    border: none;
    color: #fff;
    border-radius: 9px;
    padding: 15px 50px;
    font-size: 24px;
    font-weight: 500;
    box-shadow: 2px 2px 20px #80808052;
    transition: all 0.3s linear;
}

.btn i {
    position: relative;
    left: 0;
    color: #fff;
    font-size: 38px;
    line-height: 0px;
    transition: all 0.2s linear;
}

.btn:hover {
    background: linear-gradient(90deg, #21C0AD, #0B8494);
    background: linear-gradient(270deg, #21C0AD, #0B8494);
    color: #fff;
}

.btn:hover i {
    left: 6px;
}

.banner .banner_left .btn {
    margin-top: 30px;
}

.row.banner_right {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.banner .banner_right .img {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.banner .banner_right .img img {
    height: 100%;
    object-fit: cover;
}

.heading_area .subtitle {
    padding: 6px 20px;
    display: inline-block;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
}

.heading_area .title {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 0;
}

.heading_area p {
    font-size: 19px;
    max-width: 771px;
    margin: 0 auto;
    margin-bottom: 0;
    margin-top: 20px;
}

.about {}

.about .about_left {
    margin-right: 35px;
}

.about .about_left .img {
    position: relative;
    width: 100%;
    border-radius: 20px;
}

.about .about_left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #80808070;
}

.about .about_left .img_text1 {
    position: absolute;
    top: 20px;
    left: 20px;
}

.about .about_left .img_text1 p {
    position: relative;
    margin: 0;
    background: #ffffff2e;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px 7px 30px;
    border-radius: 6px;
}

.about .about_left .img_text1 p::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 11px;
    background: #3fa569;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.about .about_left .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    color: #fff;
    background: #ffffff14;
    backdrop-filter: blur(11px);
    padding: 6px 30px;
    border-radius: 100px;
    border: 1px solid #ffffff57;
    font-size: 14px;
    font-weight: 500;
}

.about .about_left .play_btn i {
    font-size: 22px;
}

.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_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 .about_left .img_text2 {
    position: absolute;
    bottom: -22px;
    right: -25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 2px 2px 20px #80808075;
    border-radius: 10px;
}

.about .about_left .img_text2 .info {
    text-align: center;
}

.green {
    color: #059669;
}

.green_bg {
    background: #d1fae5;
}

.blue {
    color: #2563eb;
}

.blue_bg {
    background: #dbeafe;
}

.purple {
    color: #4f46e5;
}

.purple_bg {
    background: #e0e7ff;
}

.violet {
    color: #9333ea;
}

.about .about_left .img_text2 .info h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0px;
}

.about .about_left .img_text2 .info p {
    margin: 0;
    font-size: 14px;
}

.about .about_right {
    position: relative;
}

.about .about_right h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about .about_right .lists {
    margin-top: 30px;
}

.about .about_right .lists .list_items {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 23px;
}

.about .about_right .lists .list_items .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.about .about_right .lists .list_items .icon i {
    font-size: 18px;
}

.about .about_right .lists .list_items .icon img {
    height: 20px;
}

.icon.icon1 {
    background: #dbeafe;
}

.icon.icon1 i {
    color: #2f6aec;
}

.icon.icon2 {
    background: #d1fae5;
}

.icon.icon2 i {
    color: #059669;
}

.icon.icon3 {
    background: #e0e7ff;
}

.icon.icon3 i {
    color: #4f46e5;
}

.about .about_right .lists .list_items .cont {
    width: calc(100% - 40px);
    padding-left: 20px;
    box-sizing: border-box;
}

.about .about_right .lists .list_items .cont h6 {
    font-size: 16px;
    font-weight: 600;
}

.about .about_right .lists .list_items .cont p {
    font-size: 14px;
    margin: 0;
}

.about_btn {
    padding: 7px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    border: 2px solid #bbe7ea;
    background: #e7f4f6;
    width: fit-content;
    border-radius: 7px;
    font-weight: 600;
    transition: all 0.2s linear;
    color: #1B2A41;
}

.about_btn:hover {
    border: 2px solid #bbe7ea;
    background: #bbe7ea;
    color: #1B2A41;
}

.about_btn i {
    font-size: 24px;
}


.logo_slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.logo_slider .splide__slide img {
    height: 50px;

}


.partner .company_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

.partner .company_info .info {
    padding: 0 35px;
    text-align: center;
    border-left: 1px solid #00000017;
}

.partner .company_info .info:first-child {
    border: 0;
}

.partner .company_info .info h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}

.partner .company_info .info p {
    margin: 0;
}

.core {
    position: relative;
}

.core .core_inner {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 1px 1px 12px #80808040;
    margin-top: 30px;
    height: calc(100% - 30px);
    background: #fff;
    box-sizing: border-box;
    border-bottom: 5px solid #ffffff;
    transition: all 0.2s linear;
}

.core .core_inner .icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.2s linear;
}

.core .core_inner .icon i {
    font-size: 30px;
    transition: all 0.2s linear;
}

.core .core_inner .icon img {
    height: 30px;
    transition: all 0.2s linear;
}

.core .core_inner:hover .icon img {
    filter: brightness(0) invert(1);
}

.core .core_inner:hover .icon {
    color: #fff;
}

.core .core_inner:hover .icon {
    color: #fff;
}

.core .core_inner.core1:hover {
    border-color: #059669;
}

.core .core_inner.core1:hover .icon {
    background: #059669;
}

.core .core_inner.core2:hover {
    border-color: #2563eb;
}

.core .core_inner.core2:hover .icon {
    background: #2563eb;
}

.core .core_inner.core3:hover {
    border-color: #4f46e5;
}

.core .core_inner.core3:hover .icon {
    background: #4f46e5;
}

.core .core_inner.core4:hover {
    border-color: #9333ea;
}

.core .core_inner.core4:hover .icon {
    background: #9333ea;
}

.core .core_inner.core5:hover {
    border-color: #ea580c;
}

.core .core_inner.core5:hover .icon {
    background: #ea580c;
}

.core .core_inner.core6:hover {
    border-color: #17a34b;
}

.core .core_inner.core6:hover .icon {
    background: #17a34b;
}

.core1 .icon {
    background: #ecfdf5;
    color: #059669;
}

.core1 .highlighted {
    background: #d1fae5;
    color: #059669;
}

.core2 .icon {
    background: #eff6ff;
    color: #2563eb;
}

.core2 .highlighted {
    background: #dbeafe;
    color: #2563eb;
}

.core3 .icon {
    background: #eef2ff;
    color: #4f46e5;
}

.core3 .highlighted {
    background: #e0e7ff;
    color: #4f46e5;
}

.core4 .icon {
    background: #faf5ff;
    color: #9333ea;
}

.core4 .highlighted {
    background: #f3e8ff;
    color: #9333ea;
}

.core5 .icon {
    background: #fff7ed;
    color: #ea580c;
}

.core5 .highlighted {
    background: #ffedd5;
    color: #ea580c;
}

.core6 .icon {
    background: #f0fdf4;
    color: #17a34b;
}

.core6 .highlighted {
    background: #dcfce7;
    color: #17a34b;
}

.core .core_inner .highlighted {
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.core .core_inner h3 {
    font-size: 19px;
    font-weight: 700;
}

.core .core_inner p {
    margin-bottom: 0;
}

.section_bg {
    background: linear-gradient(90deg, #eef5ff, #eef3ff);
}

.trust {
    position: relative;
}

.testimonial {
    position: relative;
    border-radius: 15px;
    box-shadow: 1px 1px 12px #80808040;
    margin-top: 30px;
    height: calc(100% - 30px);
    background: #fff;
    box-sizing: border-box;
}

.trust .container .row {
    --bs-gutter-x: 2.5rem;
}

.testimonial .testimonial_inner {
    position: relative;
    padding: 30px;
    display: inline-block;
}

.testimonial .testimonial_inner .testimonial_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial .testimonial_inner .quote_info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial .testimonial_inner .quote_info .icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.2s linear;
    background: #dbeafe;
    color: #2563eb;
}

.testimonial .testimonial_inner .quote_info .icon img {
    height: 30px;
    transition: all 0.2s linear;
}

.testimonial .testimonial_inner .stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial .testimonial_inner i {
    font-size: 16px;
    color: #facc15;
}

.testimonial .testimonial_inner .company_logo img {
    height: 30px;
}

.testimonial .testimonial_inner .text {
    margin-bottom: 20px;
}

.testimonial .testimonial_inner .testimonial_bottom {
    display: flex;
    align-items: center;
}

.testimonial .testimonial_inner .testimonial_bottom .profile_img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .testimonial_inner .testimonial_bottom .profile_detail {
    padding-left: 15px;
    box-sizing: border-box;
    width: calc(100% - 50px);
}

.testimonial .testimonial_inner .testimonial_bottom .profile_detail h6 {
    font-size: 17px;
    font-weight: 600;
    color: #1B2A41;
    margin-bottom: 3px;
}

.testimonial .testimonial_inner .testimonial_bottom .profile_detail p {
    font-size: 14px;
    margin-bottom: 0px;
}

.case_study {
    position: relative;
    border-radius: 15px;
    box-shadow: 1px 1px 12px #80808040;
    margin-top: 30px;
    height: calc(100% - 30px);
    background: #ecfbf7;
    box-sizing: border-box;
    padding: 30px;
}

.case_study .highlighted {
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
}

.case_study h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 13px;
}

.case_study .company_info {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaf3d2;
    margin-bottom: 15px;
}

.case_study .company_info .info {
    width: calc(50% - 8px);
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
}

.case_study .company_info .info h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0px;
}

.case_study .company_info .info p {
    margin: 0;
    font-size: 14px;
}

.text_link {
    display: flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
}

.text_link {
    display: flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
}

.text_link i {
    position: relative;
    left: 0;
    font-size: 22px;
    line-height: 22px;
    transition: all 0.2s linear;
}

.text_link.green:hover {
    color: #059669;
}

.text_link:hover i {
    left: 6px;
}

.trust .company_info1 {
    margin-top: 30px;
    text-align: center;
}

.trust .company_info1 h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}

.trust .company_info1 p {
    margin: 0;
}

.pricing {
    position: relative;
}

.pricing .nav-tabs {
    justify-content: center;
    border: 1px solid #0000002b;
    width: fit-content;
    box-sizing: border-box;
    margin: 0px auto 30px;
    border-radius: 10px;
    padding: 5px;
}

.pricing .nav-tabs .nav-link {
    color: #000 !important;
    background: transparent;
    border: 0;
    padding: 8px 33px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0s linear;
}

.pricing .nav-tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(270deg, #21C0AD, #0B8494);
}

.pricing .pricing_inner {
    border-radius: 10px;
    position: relative;
    box-shadow: 1px 1px 12px #80808040;
    margin-top: 40px;
    height: calc(100% - 40px);
    background: #fff;
    box-sizing: border-box;
}

.pricing .pricing_inner.pricing1,
.pricing .pricing_inner.pricing3 {
    height: calc(100% - 55px);
}

.pricing .pricing_inner .popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0fb47e;
    color: #fff;
    display: flex;
    font-size: 14px;
    gap: 7px;
    font-weight: 600;
    align-items: center;
    padding: 7px 20px;
    border-radius: 100px;
    box-shadow: 2px 2px 20px #3838383d;
    white-space: pre;
}

.pricing .pricing_header {
    padding: 30px;
    padding-top: 40px;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.pricing .pricing1 .pricing_header {
    background: #eff6ff;
}

.pricing .pricing2 .pricing_header {
    background: #0fb47e;
}

.pricing .pricing2 .pricing_header {
    padding-bottom: 45px;
}

.pricing .pricing2 {
    border: 2px solid #0fb47e;
    transform: translateY(-15px);
    box-shadow: 0px 9px 44px #38383852;
}

.pricing .pricing3 .pricing_header {
    background: #eef2ff;
}

.pricing .pricing_header h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing .pricing1 .pricing_header h4 {
    color: #1e3a8a;
}

.pricing .pricing2 .pricing_header h4 {
    color: #fff;
}

.pricing .pricing3 .pricing_header h4 {
    color: #312e81;
}

.pricing .pricing_header h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 7px;
}

.pricing .pricing1 .pricing_header h3 {
    color: #2563eb;
}

.pricing .pricing2 .pricing_header h3 {
    color: #fff;
}

.pricing .pricing3 .pricing_header h3 {
    color: #4f46e5;
}

.pricing .pricing_header h3 span {
    color: #717f8c;
    font-weight: 500;
    font-size: 17px;
}

.pricing .pricing2 .pricing_header h3 span {
    color: #e3e3e3;
}

.pricing .pricing_header p {
    font-size: 15px;
    margin-bottom: 0;
}

.pricing .pricing2 .pricing_header p {
    color: #e3e3e3;
}

.pricing .pricing_cont {
    padding: 30px;
}

.pricing .pricing_cont ul {
    padding: 0;
    margin-bottom: 35px;
}

.pricing .pricing_cont ul li {
    position: relative;
    list-style: none;
    padding-left: 32px;
    margin-bottom: 15px;
}

.pricing .pricing_cont ul li:last-child {
    margin-bottom: 0px;
}

.pricing .pricing_cont ul li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 21px;
    color: #23bf8b;
    content: "\F633";
    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;
    -moz-osx-font-smoothing: grayscale;
}

.pricing .pricing_cont .pricing_btn {
    width: 100%;
}

.pricing_btn {
    padding: 9px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 15px;
    border: none;
    background: #2563eb;
    width: fit-content;
    border-radius: 7px;
    font-weight: 500;
    transition: all 0.2s linear;
    color: #ffffff;
}

.pricing_btn:hover {
    color: #ffffff;
}

.pricing .pricing3 .pricing_btn {
    background: #4f46e5;
}

.pricing .pricing2 .text_link {
    margin: 0 auto;
}

.pricing_btn i {
    position: relative;
    left: 0;
    font-size: 22px;
    line-height: 22px;
    transition: all 0.2s linear;
}

.pricing_btn:hover i {
    left: 6px;
}

.plan {
    background: #f9fafb;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.plan h4 {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.plan .plan_info {
    margin: 0;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.plan .plan_info li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.plan .plan_info li i {
    font-size: 21px;
    color: #23bf8b;
}

.contact_form .logo_img {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.contact_form .form input,
.contact_form .form textarea {
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #0000005e;
}

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

.contact_form .form textarea {
    height: auto;
    min-height: 130px;
}

.contact_form .form .btn {
    margin: 0 auto;
}

.contact_form .form .btn i {
    font-size: 22px;
}

.cta {
    position: relative;
    background: #1a263c;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    bottom: -52px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(67px);
    background: #16b5b12e;
}

.cta::after {
    bottom: inherit;
    left: inherit;
    top: -52px;
    right: 0;
}

.cta .cta_inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta .cta_inner h2 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta .cta_inner h2 span {
    color: #18b7b0;
}

.cta .cta_inner p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #dddddd;
    max-width: 735px;
    margin: 0 auto;
}

.cta .cta_inner .btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn1 {
    padding: 9px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 17px;
    border: none;
    background: #14b2b1;
    width: fit-content;
    border-radius: 7px;
    font-weight: 500;
    transition: all 0.2s linear;
    color: #ffffff;
}

.btn1 i {
    position: relative;
    left: 0;
    font-size: 22px;
    line-height: 22px;
    transition: all 0.2s linear;
}

.btn1:hover {
    color: #ffffff;
}

.btn1:hover i {
    left: 6px;
}

.btn2 {
    border: 2px solid #14b2b1;
    background: #e7f4f6;
    color: #1B2A41;
}

.btn2:hover {
    border: 2px solid #14b2b1;
    background: #14b2b1;
    color: #fff;
}

.btn2:hover i {
    left: 0px;
}

.cta .cta_inner ul {
    margin: 0;
    margin-top: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    column-gap: 70px;
    row-gap: 20px;
    flex-wrap: wrap;
}

.cta .cta_inner ul li {
    color: #dddddd;
    font-weight: 500;
    list-style: none;
    position: relative;
    padding-left: 17px;
}

.cta .cta_inner ul li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    background: #21c0ad;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.footer {
    padding: 60px 0;
    background: #1b2a41;
}

.footer .footer_left {
    max-width: 500px;
}

.footer .highlited {
    white-space: pre;
    font-size: 17px;
    font-weight: 600;
    background: #1cbbae;
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    margin: 0;
}

.footer .footer_logo {
    height: 20px;
    margin-left: 18px;
    margin-top: 3px;
}

.footer .footer_left .text {
    font-size: 17px;
    color: #bbbbbb;
    margin-top: 17px;
    margin-bottom: 0;
}

.social_link {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.social_link a {
    color: #bbbbbb;
    padding: 3px 17px;
    border: 1px solid #bbbbbb;
    border-radius: 100px;
    font-size: 14px;
    transition: all 0.2s linear;
}

.social_link a:hover {
    color: #000;
    border: 1px solid #fff;
    background: #fff;
}

.footer .links h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer .links ul {
    padding: 0;
    margin: 0;
}

.footer .links ul li a {
    color: #bbbbbb;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.2s linear;
}

.footer .links ul li a:hover {
    color: #fff;
}

.footer .footer_bottom {
    margin-top: 45px;
    padding: 30px 0;
    border-top: 1px solid #ffffff1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer_bottom .copyright_text,
.footer .footer_bottom .trademark_text {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #bbbbbb;
    margin: 0;
}

.footer .footer_bottom .trademark_text {
    padding-left: 40px;
}

.footer .footer_bottom .trademark_text::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bbbbbb;
}

.footer .footer_bottom .footer_bottom_links {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.footer .footer_bottom .footer_bottom_links li {
    list-style: none;
}

.footer .footer_bottom .footer_bottom_links li a {
    font-size: 15px;
    color: #bbbbbb;
    transition: all 0.2s linear;
}

.footer .footer_bottom .footer_bottom_links li a:hover {
    color: #fff;
}



@media (max-width:1400px) {
    .navbar-brand {
        max-width: 210px;
    }

    .header_btns .btn,
    .header_btns .btn:hover {
        font-size: 14px;
    }

    .banner .banner_left img {
        max-width: 400px;
    }

    .banner .banner_left img {
        max-width: 450px;
        margin-bottom: 30px;
    }

    .banner .banner_left h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .banner .banner_left p {
        font-size: 17px;
    }

    .banner .banner_left {
        margin-top: 25px;
    }

    .heading_area .title {
        font-size: 40px;
    }

    .about .about_right h3,
    .case_study h4 {
        font-size: 22px;
    }

    .trust .company_info1 p {
        font-size: 15px;
    }

    .pricing .pricing_header h4 {
        font-size: 24px;
    }

    .pricing .pricing_header h3 {
        font-size: 35px;
    }

    .pricing .pricing_header {
        padding: 30px 20px;
    }

    .contact_form .logo_img {
        max-width: 300px;
    }
}




@media (max-width:1200px) {
    .banner .banner_left {
        margin-top: 0px;
    }

    .banner .banner_left img {
        max-width: 350px;
    }

    .banner .banner_left h1 {
        font-size: 42px;
        line-height: 47px;
        margin-bottom: 15px;
    }

    .banner .banner_left .btn {
        margin-top: 25px;
        font-size: 22px;
    }

    .header_btns .btn,
    .header_btns .btn:hover {
        padding: 15px 11px;
    }

    .header_btns {
        gap: 10px;
    }

    .navbar-brand {
        max-width: 200px;
    }

    .heading_area .title {
        font-size: 35px;
    }

    .heading_area p {
        font-size: 17px;
        max-width: 698px;
        margin-top: 15px;
    }

    .about .about_right h3,
    .case_study h4 {
        font-size: 20px;
    }

    .about .about_left .img_text2 .info h4 {
        font-size: 22px;
    }

    .core .core_inner h3 {
        font-size: 17px;
    }

    .core .core_inner p {
        font-size: 15px;
    }

    .pricing .pricing2 .pricing_header {
        padding-bottom: 30px;
        padding-top: 45px;
    }

    .pricing .pricing_header h3 {
        font-size: 30px;
    }

    .pricing .pricing_header h3 span {
        font-size: 15px;
    }

    .pricing .pricing_cont ul li {
        margin-bottom: 13px;
        font-size: 13px;
    }

    .cta .cta_inner h2 {
        font-size: 40px;
    }

    .cta .cta_inner {
        max-width: 780px;
    }

    .cta .cta_inner p {
        font-size: 17px;
        max-width: 655px;
    }

    .cta .cta_inner ul {
        column-gap: 40px;
        row-gap: 17px;
    }

    .footer .footer_left {
        max-width: 400px;
    }

    .footer .footer_bottom .copyright_text,
    .footer .footer_bottom .trademark_text,
    .footer .footer_bottom .footer_bottom_links li a {
        font-size: 14px;
    }

    .footer .footer_left .text,
    .footer .links ul li a,
    .footer .links h4 {
        font-size: 15px;
    }

}



@media (max-width:991px) {
    body {
        font-size: 15px;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }
  .header_btns {
        justify-content: center;
    }
    .banner .banner_left {
        margin-bottom: 30px;
        text-align: center;
    }

    .banner .banner_left .btn {
        font-size: 20px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .heading_area .subtitle {
        font-size: 14px;
    }

    .heading_area .title {
        font-size: 30px;
    }

    .about .about_left {
        margin-right: 0;
    }

    .about .about_right {
        margin-top: 45px;
    }

    .about .about_left .img_text2 {
        right: 0;
    }

    .logo_slider .splide__slide img {
        height: 40px;
    }

    .testimonial {
        margin-top: 15px;
        height: calc(100% - 15px);
    }

    .trust .company_info1 h4 {
        font-size: 25px;
        margin-bottom: 4px;
    }

    .pricing .pricing_cont ul li {
        font-size: 15px;
    }

    .pricing .pricing_header p {
        font-size: 14px;
    }

    .contact_form .logo_img {
        max-width: 250px;
    }

    .contact_form .form input,
    .contact_form .form textarea {
        height: 55px;
        ;
    }

    .cta .cta_inner h2 {
        font-size: 35px;
    }

    .cta .cta_inner ul {
        column-gap: 30px;
        row-gap: 17px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .footer .footer_left {
        max-width: 350px;
    }

    .footer .footer_left .text,
    .footer .links ul li a,
    .footer .links h4 {
        font-size: 14px;
    }

    .footer .highlited {
        font-size: 15px;
        padding: 4px 20px;
    }

    .footer .footer_logo {
        height: 16px;
        margin-left: 15px;
    }

    .social_link {
        gap: 10px;
    }

    .footer .footer_bottom {
        padding: 20px 0;
        flex-direction: column-reverse;
        row-gap: 10px;
    }
}

@media (max-width:767px) {
    section {
        padding: 50px 0;
    }

    .navbar-brand {
        max-width: 150px;
    }

    .heading_area .subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .header_btns {
        gap: 10px;
       
    }

    .banner .banner_left {
        margin-bottom: 20px;
    }

    .banner .banner_left img {
        max-width: 290px;
        margin-bottom: 20px;
    }

    .banner .banner_left h1 {
        font-size: 27px;
        line-height: 31px;
    }

    .banner .banner_left p {
        font-size: 14px;
    }

    .banner .banner_left .btn {
        padding: 13px 30px;
        font-size: 18px;
        width: 100%;
    }

    .btn i {
        font-size: 30px;
        line-height: 30px;
    }

    .video_wrapper {
        width: 100%;
        max-width: 100%;
        margin: 20px;
    }

    .heading_area .title {
        font-size: 20px;
    }

    .heading_area p {
        font-size: 14px;
        max-width: 698px;
        margin-top: 15px;
        margin-top: 10px;
    }

    .about .about_left .img_text1 {
        top: 15px;
        left: 15px;
    }

    .about .about_left .img_text1 p {
        font-size: 12px;
        padding: 7px 15px 7px 25px;
    }

    .about .about_left .img_text1 p::before {
        top: 12px;
        left: 7px;
        width: 7px;
        height: 7px;

    }

    .about .about_left .play_btn {
        gap: 14px;
        padding: 6px 25px;
        font-size: 13px;
        white-space: pre;
    }

    .about .about_right h3,
    .case_study h4 {
        font-size: 18px;
    }

    .about_btn {
        width: 100%;
        font-size: 17px;
    }

    .logo_slider {
        margin-top: 25px;
    }

    .logo_slider .splide__slide img {
        height: 30px;
    }

    .partner .company_info {
        margin-top: 50px;
    }

    .partner .company_info .info {
        padding: 0 15px;
    }

    .partner .company_info .info h4 {
        font-size: 25px;
    }

    .partner .company_info .info p {
        margin: 0;
        font-size: 12px;
    }

    .core .core_inner {
        padding: 20px;
        ;
        margin-top: 15px;
        height: calc(100% - 15px);
    }

    .core .core_inner .highlighted {
        right: 20px;
        top: 20px;
    }

    .testimonial .testimonial_inner .company_logo img {
        height: auto;
        width: 100px;
    }

    .testimonial .testimonial_inner .quote_info .icon {
        width: 45px;
        height: 45px;
    }

    .testimonial .testimonial_inner .quote_info .icon img {
        height: 25px;
    }

    .testimonial .testimonial_inner .quote_info {
        gap: 15px;
    }

    .case_study .company_info .info {
        padding: 15px 10px;
    }

    .case_study .company_info .info h4 {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .case_study .company_info .info p {
        font-size: 13px;
    }

    .plan .plan_info {
        flex-direction: column;
    }

    .plan {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .trust .container .row {
        --bs-gutter-x: 1.5rem;
    }


    .pricing .pricing_inner {
        margin-top: 40px;
        height: calc(100% - 40px);
    }

    .pricing .pricing_inner.pricing1 {
        height: auto;
        margin-top: 0;
    }

    .pricing .pricing_inner.pricing3 {
        height: calc(100% - 30px);
        margin-top: 30px;
    }

    .contact_form .logo_img {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .contact_form .form input,
    .contact_form .form textarea {
        margin-bottom: 15px;
    }

    .contact_form .form .btn {
        margin: 0 auto;
        padding: 13px 30px;
        font-size: 18px;
        width: 100%;
    }

    .contact_form .form .btn i {
        font-size: 20px;
    }

    .cta .cta_inner h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .cta .cta_inner p {
        font-size: 15px;
    }

    .footer .footer_left {
        max-width: max-content;
    }

    .footer .links {
        margin-top: 35px;
    }

    .footer .footer_left .text,
    .footer .links ul li a,
    .footer .links h4 {
        font-size: 14px;
        text-align: center;
    }

    .footer .links ul {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .footer .footer_bottom {
        margin-top: 30px;
    }

    .footer .footer_bottom .footer_bottom_links {
        justify-content: center;
        gap: 15px;
    }

    .footer .footer_bottom .copyright_text,
    .footer .footer_bottom .trademark_text,
    .footer .footer_bottom .footer_bottom_links li a {
        font-size: 13px;
    }

    .footer .footer_bottom .copyright_text,
    .footer .footer_bottom .trademark_text {
        text-align: center;
        display: block;
    }

    .footer .footer_bottom .trademark_text {
        padding-left: 0;
        margin-top: 5px;
    }

    .footer .footer_bottom .trademark_text::before {
        display: none;
    }

    .social_link {
        justify-content: center;
    }
    
    
    
   

    

    
    
}

        .banner .banner_right .img{
       height: 100%;
       border-radius: 15px;
       overflow: hidden;
        }


 .top-badges {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }

    .top-badges img {
      max-height: 80px;
     }

    .bottom-badges {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 20px;
     }
   .bottom-badges img{
        width: 100px;
    border-radius: 15px;
   }
  

    .badge-card img {
      width: 100%;
     }

    .badge-title {
      font-size: 13px;
      font-weight: bold;
      color: #333;
      margin-top: 10px;
    }

 @media (max-width: 600px) {
    .top-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
}

.heading_area #offer{
       
    width: 100%;
}