:root {
    --gray-light: #efefef;
    --gray-light-100: #9E9E9E;
    --black: #000000;
    --white: #ffffff;
    --primary-color: #002D87;
    --gray: #353535;
}

body {
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
}


main.main-content {
    padding-top: var(--bs-gutter-x, .75rem);
}

header .navbar-toggler:focus {
    box-shadow: none;
}

.header_sec {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    z-index: 9;
    padding: 0px 60px;
    /*margin: 0 var(--bs-gutter-x, .75rem);*/
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1),
        opacity 0.3s ease;
}

.header_sec.inner_header {
    position: relative;
    top: 0;
    border: 1px solid #cdcdcd;
    margin: var(--bs-gutter-x, .75rem) var(--bs-gutter-x, .75rem) 0;
    border-radius: 12px;
    width: auto;
    padding: 0px 30px;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1),
        opacity 0.3s ease;
}

header.header_sec.affix,
.header_sec.inner_header.affix {
    position: fixed;
    top: 0;
    border: 1px solid rgba(205, 205, 205, 0.3);
    margin: var(--bs-gutter-x, .75rem) var(--bs-gutter-x, .75rem) 0;
    border-radius: 12px;
    width: calc(100% - var(--bs-gutter-x, 1.5rem));
    padding: 0px 30px;
    background: #fff;
    /* Animation */
    transform: translateY(20px);
    /* Start slightly down */
    opacity: 0;
    animation: slideUp .6s ease forwards;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.8);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

a.logo_main {
    max-width: 180px;
    display: block;
    position: relative;
}

img.logodark {
    position: absolute;
    left: 0;
    opacity: 0;
}

.header_sec.inner_header img.logodark,
header.header_sec.affix img.logodark {
    opacity: 1;
}

.header_sec.inner_header img.logolight,
header.header_sec.affix img.logolight {
    opacity: 0;
}

a.foot_logo {
    max-width: 150px;
    display: block;
}

ul.main_menu {
    padding: 0;
    display: flex;
    list-style: none;
    text-transform: uppercase;
    gap: 12px;
    margin: 0;
}

ul.main_menu a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    display: block;
}

/*ul.main_menu li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: width 0.4s ease;
}
 
ul.main_menu li a:hover::before {
    width: 100%;
}*/
nav.navbar {
    padding: 0;
}

/*ul.main_menu a:hover {
    background: #000;
}*/
.inner_header ul.main_menu a,
.inner_header ul.main_menu li.has_sub li a,
.header_sec.affix ul.main_menu a,
.header_sec.affix ul.main_menu li.has_sub li a {
    color: #000;
}

.inner_header ul.main_menu li:hover a,
.header_sec.affix ul.main_menu li:hover a {
    color: #fff;
}

ul.main_menu li.active>a,
.header_sec.affix ul.main_menu li.active>a {
    background: #000;
    color: #fff;
    /*padding-right: 40px;*/
}

li.has_sub ul {
    position: absolute;
    background: #ffffff;
    list-style: none;
    padding: 10px;
    min-width: 150px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    top: 100%;
    opacity: 0;
    visibility: hidden;
}

li.has_sub ul li {
    width: 100%;
    line-height: 2;
}

li.has_sub {
    position: relative;
    padding: 10px;
}

li.has_sub li a {
    color: #000;
    display: block;
    white-space: nowrap;
}

.inner_header ul.main_menu li.has_sub li a:hover,
.inner_header ul.main_menu li.has_sub li.sub-active a {
    color: #5b5b5b;
}

li.has_sub>a,
ul.main_menu li.active a {
    position: relative;
}

li.has_sub>a:after/*,
ul.main_menu li.active>a:after*/ {
    content: '';
    background: url(../images/menu_ic.svg) no-repeat;
    position: absolute;
    right: 5px;
    bottom: 12px;
    width: 5px;
    height: 6px;
    filter: brightness(0) invert(1);
}

/*ul.main_menu li.active>a:after {
    right: 20px;
}*/

.header_sec.affix ul.main_menu .has_sub>a:after {
    filter: brightness(0) invert(0);
}

.header_sec.affix ul.main_menu .has_sub:hover>a:after {
    filter: brightness(0) invert(1);
}

.inner_header ul.main_menu .has_sub>a:after {
    filter: brightness(0) invert(0);
}

.inner_header ul.main_menu li.has_sub:hover>a:after {
    filter: brightness(0) invert(1);
}

.inner_header ul.main_menu .has_sub.active>a:after {
    filter: brightness(0) invert(1);
}

ul.main_menu a:hover:after {
    filter: brightness(0) invert(1);
}

ul.main_menu>li {
    padding: 0;
    position: relative;
}

li.has_sub:hover ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.btn_common_round {
    padding: 14px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
}

.btn_common_round:hover {
    background: #ef6364;
    color: #fff;
}

.btn_common {
    padding: 14px 25px;
    background: #ef6364;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    transition: 0.3s;
    font-size: 12px;
    border: none;
}

.btn_common:hover {
    background: #000;
    color: #fff;
}

.inner_header a.menu_btn,
.header_sec.affix a.menu_btn {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.inner_header a.menu_btn:hover,
.header_sec.affix a.menu_btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn_common.btn_dark {
    background: #000;
}

.btn_common.btn_dark:hover {
    background: #ef6364;
}

.btn_common:after {
    content: '';
    background: url(../images/arrow-top-right-3.svg) no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        padding: 25px 0;
    }

    .main_menu::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 0;
        height: calc(100% - 50px);
        width: var(--slider-width);
        background: #000;
        border-radius: 8px;
        transform: translateX(var(--slider-left));
        transition: all 0.3s ease;
        z-index: 0;
    }
}

hero-sec {
    background: #E2F6FF;
    padding-top: 30px;
}

.overlay_banner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.overlay_banner h1 {
    font-size: 72px;
    color: #fff;
    letter-spacing: -1px;
    font-weight: 400;
}

.overlay_banner p {
    font-size: 20px;
    color: #fff;
    margin: 10px 0 70px;
}

.banner-itemactive {
    position: relative;
}

/* ===== Banner ===== */

.hero-slider>.hero-slide+.hero-slide {
    display: none;
}

.hero-slide {
    border-radius: 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-img img {
    position: relative;
    max-width: 100%;
}

.hero-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-text p {
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-right: 50px;
    line-height: 26px;
}

.hero-slider .slick-arrow {
    right: 11px;
    left: auto;
    top: 45%;
    transform: translateY(-50%);
    width: 61px;
    height: 87px;
    background: url(../images/slickarrow1.png) no-repeat;
    z-index: 1;
}

.hero-slider .slick-arrow.slick-next {
    background: url(../images/slickarrow2.png) no-repeat;
    top: calc(45% + 85px);
}

.text_grad {
    font-size: 72px;
    background: linear-gradient(to right, #2d87c8, #52c1b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer.footer {
    background: #1c1d1d url(../images/footer_bg.svg) no-repeat;
    background-position: bottom;
    margin: var(--bs-gutter-x, .75rem);
    padding: 80px 0 30px;
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.social-icons {
    display: flex;
    gap: 40px;
    margin-top: 1.5rem;
}

.social-icons a {
    color: #fff;
}

hr.mid_hr {
    background: #fff;
    opacity: .75;
    margin: 4rem 0 6rem;
}

a {
    text-decoration: none;
}

.foot_menu ul {
    list-style: none;
    padding: 0;
}

.foot_menu ul a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.foot_menu ul a:hover {
    opacity: .6;
}

.foot_menu ul li {
    line-height: 2;
}

.foot_menu h6 {
    font-size: 18px;
}

.verticle_menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.verticle_menu a {
    color: #d9d9d9;
    font-size: 12px;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 5rem;
    font-size: 12px;
    color: #d9d9d9;
}

/* Side Nav Card */
.side-nav-card {
    background: #f4f4f4;
    border-radius: 20px;
}

.side-nav-card ul li {
    font-weight: 500;
    cursor: pointer;
    color: #6c757d;
    transition: 0.3s;
}

.side-nav-card ul li:hover {
    color: #000;
}

.side-nav-card ul li.active {
    color: #000;
    font-weight: 600;
}

/* Brochure Card */
.brochure-card {
    background: #2f3e7e;
    border-radius: 20px;
}

.brochure-card h3 {
    font-size: 36px;
    font-weight: 400;
}

.brochure-card .btn {
    border-radius: 10px;
    padding: 8px 20px;
}

/* Right Content */
.main-heading {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
}

.description {
    color: #555;
    /*max-width: 700px;*/
    line-height: 1.6;
}

.image-wrapper img {
    /*border-radius: 10px;*/
}

.features-advantages {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

.feature-list li:last-child {
    border-bottom: none;
}

.big_head {
    font-size: 62px;
}

.small_head {
    font-size: 16px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
}

.about_right h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
}

.fw-600 {
    font-weight: 600;
}

.slide_item {
    padding: 4rem;
    width: calc(33.33% - 12px);
    background-size: 100% 100%;
    border-radius: 20px;
    color: #fff;
    position: relative;
    margin-right: 12px;
}

.sec_padd.card_sec {
    padding-top: 12px;
}

.card_sec {
    background: url(../images/home_bg.webp) no-repeat;
    background-position: top right;
    background-repeat: no-repeat;
}

.card_sec+.sec_padd {
    background: url(../images/home_bg.webp) no-repeat;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.card_slider {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--bs-gutter-x) * .5);
}

.card_slider .slick-list {
    padding-right: 25%;
}

.slide_item img {
    /* max-width: 170px; */
    max-height: 40px;
    object-fit: contain;
}
.card_slider .slick-list {
    display: flex !important;
}
.card_slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
a.explore_more {
    text-decoration: underline;
    color: #fff;
    margin-top: 3rem;
    display: block;
}

a.explore_more:after {
    content: '';
    background: url(../images/arrow-top-right-3.svg) no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

a.read_more span {
    background: #fff;
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    transition: 0.3s;
}

a.read_more {
    position: absolute;
    right: 15px;
    top: 15px;
    transition: 0.3s;
    z-index: 1;
}

.slide_item:hover a.read_more {
    bottom: 0;
    top: auto;
    padding: 32px 10px 10px 32px;
    right: 5px;
}

.slide_item:after {
    display: block;
    position: absolute;
    content: '';
    bottom: -12px;
    top: auto;
    background: url(../images/bottomarrow.png);
    width: 90px;
    height: 80px;
    right: -12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.slide_item:hover:after {
    opacity: 1;
    visibility: visible;
    right: -2px;
    bottom: 0;
}

.slide_item h3 {
    font-size: 35px;
    color: #fff;
    margin: 2rem 0 .5rem;
}

.slide_item p {
    font-size: 14px;
    min-height: 42px;
}
p:empty{
    display: none;
}
.slide_item:hover a.read_more span {
    background: #000;
    border-radius: 12px;
}

.slide_item:hover a.read_more span img {
    filter: invert(1);
}

.whychoose_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.whychoose_list li {
    width: calc(20% - 12px);
    padding: 1.5rem;
    border: 1px solid #5d5c5c;
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.whychoose_list li:hover {
    background: #1c1d1d;
    color: #fff;
}

.whychoose_list li img {
    max-width: 40px;
    margin-bottom: 2rem;
}

.whychoose_list li h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Manrope", sans-serif;
    letter-spacing: -.5px;
}

.whychoose_list li p {
    font-size: 14px;
    font-weight: 500;
}

p.sub_head {
    font-size: 20px;
    font-weight: 700;
}

.count_sec.sec_padd {
    background: #f2f5f6;
    margin: 0 var(--bs-gutter-x, .75rem);
    border-radius: 20px;
    padding: 150px 0;
}

.count_number {
    font-size: 66px;
    background: linear-gradient(to right, #765ea8, #596cb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.count_item h4 {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.count_item {
    padding: 2rem 0;
}

.smart_sec {
    background: #000 url(../images/smart_banner.webp) no-repeat;
    background-size: cover;
    margin: 5rem var(--bs-gutter-x, .75rem);
    border-radius: 20px;
    padding: 150px 0;
    color: #fff;

}

.icon_list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.icon_list li {
    width: 40%;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
}

.icon_list li:before {
    content: '';
    background: url(../images/list_icon.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
}

.testimonial_sec {
    margin-bottom: 24px;
}

.testimonial_slider {
    background: #1c1d1d;
    color: #fff;
    padding: 5rem 10rem;
    border-radius: 20px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial_number {
    background: #1c1d1d url(../images/testimonial.webp);
    color: #fff;
    padding: 5rem;
    border-radius: 20px;
    height: 100%;
}

.testimonial_number span {
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
}

.testimonial_number h4.head_1 {
    margin-bottom: 6rem;
}

.testimonial_item h4 {
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1.5;
}

.testimonial_item h4:before {
    content: url(../images/test_icon.webp);
    display: block;
}

.testimonial_item p {
    font-size: 16px;
    margin-top: 5rem;
}

.testimonial_number h5 img {
    display: block;
}

.testimonial_slider .slick-arrow {
    left: 15%;
    transform: none;
    width: 65px;
    height: 50px;
    background: #fff url(../images/slickleft.svg) no-repeat;
    background-position: 70% center;
    background-size: 12px;
    z-index: 1;
    bottom: 0;
    top: auto;
    padding: 10px;
    border-radius: 20px 0px 0 0;
}

.testimonial_slider .slick-arrow.slick-next {
    background: #fff url(../images/slickright.svg) no-repeat;
    background-position: 30% center;
    background-size: 12px;
    left: calc(15% + 65px);
    border-radius: 0 20px 0 0;
}

.testimonial_slider .slick-arrow:before {
    content: none;
}

.contact-form-main {
    background: #f2f5f6;
    border-radius: 20px;
    padding: 5rem;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #ccc;
    background: #f2f5f6;
}

.input-box textarea {
    min-height: 120px;
}

.input-box {
    margin-bottom: 20px;
}

ul.contact_info {
    padding: 9rem 0 3rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    background: url(../images/map.svg) no-repeat;
}

ul.contact_info li {
    width: 48%;
}

ul.contact_info li h4 {
    font-size: 20px;
    font-weight: 500;
}

.contact_sec {
    position: relative;
}

.contact_sec:after {
    content: '';
    background: url(../images/body_bg.svg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -20%;
    width: 100%;
    height: 600px;
    z-index: -1;
    animation: bgMove 10s linear infinite;
}

@keyframes bgMove {
    0% {
        background-position: top 85% center;
        opacity: 1;
    }

    50% {
        background-position: bottom center;
        opacity: 0.4;
    }

    100% {
        background-position: top 85% center;
        opacity: 1;
    }
}

.btn_common.btn_light {
    background: #fff;
    color: #000;
    font-size: 14px;
}

.btn_common.btn_light:after {
    filter: invert(1);
}

.btn_common.btn_line {
    background: transparent;
    border: 1px solid #fff;
}

.btn_common.btn_line:hover {
    background: #000;
    border: 1px solid #000;
}

.btn_common.btn_light:hover {
    background: #000;
    color: #fff;
}

.btn_common.btn_light:hover:after {
    filter: invert(0);
}

ul.contact_info .social-icons a {
    color: #000000;
}

.social-icons a:hover {
    opacity: 0.6;
}

/************************/
/***** about page start *****/
/************************/
img {
    max-width: 100%;
}

.bnr_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bnr_image:before {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -2px;
    height: 85px;
    width: 260px;
    background-image: url(../images/banner_shape2.svg);
    background-size: 100% auto;
}

.bnr_image:after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    height: 230px;
    width: 100px;
    background-image: url(../images/banner_shape1.svg);
    background-size: 100% auto;
}

.inr_banner {
    position: relative;
}

.inrbanner_cap {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0, -50%);
}

.inrbanner_cap h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 58px;
}

.abt_main {
    position: relative;
}

.abt_main:after {
    content: '';
    background: url(../images/body_bg.svg) top center, url('../images/abt_bg_btm.svg') bottom right;
    background-size: 1000px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -100px;
    width: 100%;
    height: 600px;
    z-index: -1;
    animation: bgMove 10s linear infinite;
}

.abt_main {
    background: url(../images/about_btm.svg) no-repeat;
    background-position: bottom -100% center;
    margin-bottom: -12px;
}

/*.abt_main {
    background: url(../images/body_bg.webp) top center, url('../images/abt_bg_btm.svg') bottom right;
    background-size: 1000px;
    background-repeat: no-repeat;
}*/
.sec_padd {
    padding: 80px 0;
}

.head_1 {
    font-size: 50px;
}

.abt_secimg {
    width: 70%;
}

/************************/
/***** about page end *****/
/************************/


/************************/
/***** solution page start *****/
/************************/
.solution_sec,
.impact_sec {
    position: relative;
    background: url('../images/sol_sec_bg_left.webp') bottom left;
    background-size: 600px auto;
    background-repeat: no-repeat;
}

.solution_sec:after,
.impact_sec:after {
    content: '';
    background: url(../images/body_bg.svg) top -50% center;
    background-size: 1550px auto;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -20%;
    width: 100%;
    height: 45%;
    z-index: -1;
    animation: bgMove 10s linear infinite;
}

section.solution_sec {
    padding-top: 100px;
}

section.solution_sec .pagename {
    margin-bottom: 100px;
    font-size: 12px;
    font-weight: 500;
}

.pagename {
    font-size: 12px;
}

.side-nav-card {
    background: #f3f5f7;
    padding: 20px 0;
    border-radius: 15px;
}

.sidenav_menu li a {
    color: #9b9299;
    font-weight: 600;
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 18px;
}

.sidenav_menu li.active a {
    color: #000;
}

.brochure-card {
    background: #263779;
    padding: 30px;
    border-radius: 15px;
}

.brochure-card {
    background: #263779;
    padding: 60px 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.sidebaarstidky {
    position: sticky;
    top: 30px;
}

h4.table_head {
    font-size: 18px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.table_3col {
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.table_3col li {
    padding: 14px 10px 14px 0;
    width: 33%;
    font-weight: 700;
}

.table_col {
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.table_col li {
    padding: 14px 10px 14px 0;
    width: 100%;
    font-weight: 700;
}

.border_list {
    list-style: none;
    padding: 0;
    font-weight: 600;
}

.border_list li {
    border-bottom: 1px solid #666666;
    padding: 14px 0;
}

.border_list li:last-child {
    border: none;
}

.sol_block {
    font-weight: 700;
}

.table_3col li,
.border_list li {
    font-size: 14px;
}

/************************/
/***** solution page end *****/
/************************/


/************************/
/***** client page start *****/
/************************/
.ourclient_sec {
    position: relative;
}

.ourclient_sec:after {
    content: '';
    background: url(../images/body_bg.svg) top -100% center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 1000px;
    position: absolute;
    left: 0;
    top: -25%;
    width: 100%;
    height: 500px;
    z-index: -1;
    animation: bgMove 10s linear infinite;
}

.client_box {
    position: relative;
}

.client_box figure {
    overflow: hidden;
    border-radius: 12px;
}

.client_box figure img {
    transition: all .3s linear;
}

.client_box:hover figure img {
    transform: scale(1.05, 1.05);
}

.client_link {
    position: absolute;
    opacity: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: block;
}

/************************/
/***** client page end *****/
/************************/


/************************/
/***** impact page start *****/
/************************/
.impact_main:after,
.impact_main:before {
    content: "";
    display: table;
    clear: both;
}

.impact_left {
    float: left;
    width: 24.2%;
}

.impact_right {
    float: right;
    width: 75%;
}

.transaction_title {
    background: #2779ba;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 26px;
}

.table_custom th {
    color: #2779ba;
    font-weight: 600;
}

.table_custom span {
    border-top: 1px solid #2779ba;
    display: block;
    padding: 10px 0;
}

.table_custom td {
    padding: 0 10px;
}

.projected_box {
    background: #2779BA;
    background: linear-gradient(135deg, rgba(39, 121, 186, 1) 0%, rgba(49, 160, 215, 1) 68%);
    padding: 10px 15px;
    border-radius: 8px;
}

.projected_box_main h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2779BA;
}

.projected_box h3 {
    color: #fff;
}

.pro_inrbox p {
    margin-bottom: 5px;
    font-size: 13px;
}

.pro_inrbox h4 {
    font-weight: 500;
    margin: 0;
    font-size: 18px;
}

.pro_inrbox {
    background: #c0dea5;
    border-radius: 8px;
    padding: 3px 5px;
    color: #283792;
}

.brochure-card.orange-card {
    background: linear-gradient(to bottom, #f1625e, #f89f1e);
}

.brochure-card.gray-card {
    background: linear-gradient(to bottom, #333232, #8e989d);
}

.brochure-card.green-card {
    background: linear-gradient(to bottom, #1c7038, #4ea851);
}

.eco_logos figure {
    height: 100px;
    padding: 10px;
}

.eco_logos figure img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

a.btn_common.btn_blue {
    background: #30a5da;
    background: linear-gradient(to right, #30a5da, #2578bc);
}

a.btn_common.btn_blue:hover {
    background: linear-gradient(to right, #2578bc, #30a5da);
}

/*Impace Css*/
.card-box {
    border-radius: 18px;
}

/* LEFT GREY CARD */
.greyCard {
    background: #e5e5e5;
    position: relative;
    padding-bottom: 40px;
}

.greenCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #c0dea5;
    color: #335ca9;
}

.greenCard.dark {
    background: #aed393;
}

/* BLUE SECTION */
.blueCard {
    background: #30a5da;
    background: linear-gradient(to right, #30a5da, #2578bc);
    color: #fff;
    border-radius: 22px;
}

.big-number {
    font-size: 60px;
    font-weight: 500;
    color: #c5dd85;
}

/* MAINTENANCE BOX */
.maintenance-box {
    background: #c0dea5;
    border-radius: 18px;
    color: #2b4c7e;
    padding: 1.5rem;
}

.maintenance-box p {
    font-size: 18px;
}

.maintenance-box h4 {
    color: #335ca9;
    font-size: 64px;

}

/* ICON CIRCLE */
.icon-circle {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.target-img {
    margin-top: -70px;
}

.greyCard h2 {
    font-size: 23px;
    color: #293692;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}

.greyCard p {
    font-size: 19px;
    line-height: 1.2;
    color: #2e4aab;
    margin-left: 10px;
    padding-right: 20px;
    width: calc(100% - 100px);
    font-weight: 400;
}

.left-icon-wrapper {
    background-color: #ffffff;
    /* position: absolute; */
    width: 90px;
    height: 100px;
    padding: 10px;
    left: 0;
    border-radius: 0px 20px 20px 0px;
}


.left-icon-wrapper img {
    height: 100%;
    width: 100%;
}

.greenCard h6 {
    font-size: 26px;
    font-weight: 500;
}

.greenCard h2 {
    font-size: 80px;
    font-weight: 500;
    margin: 15px 0 0;
    line-height: 1;
}

.greenCard p {
    font-size: 20px;
}

.lighting-img {
    position: absolute;
    height: 55%;
    right: 8%;
    top: 27%;
}

.blueCard h2 {
    line-height: 1;
}

.blueCard h5 {
    font-size: 26px;
    font-weight: 500;
    color: #c5dd85;
}

.blueCard .top-text p {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.blueCard p {
    font-size: 19px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

.impact-highlight img {
    height: 80px;
}

/* Responsive spacing tweak */
@media (max-width: 991px) {
    .blueCard {
        margin-top: 20px;
    }
}


.card_slider .slick-arrow {
    right: -1px;
    left: auto;
    top: 40%;
    transform: translateY(-50%);
    width: 61px;
    height: 87px;
    background: url(../images/slickarrow1.png) no-repeat;
    z-index: 1;
}

.card_slider .slick-arrow.slick-next {
    background: url(../images/slickarrow2.png) no-repeat;
    top: calc(40% + 85px);
}

@keyframes flash {

    0%,
    100% {
        background-color: transparent;
        color: #ef6364;
        border: 1px solid #ef6364;
    }

    50% {
        background-color: #ef6364;
        color: white;
    }
}

a.menu_btn.btn_common_round {
    animation: flash 1.5s infinite;
    transition: background-color 0.75s, color 0.75s;
}


.client_box figure {
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    height: 150px;
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
}

.client_box figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.success-content p {
    font-size: 22px;
    margin-bottom: 0;
    font-family: "Sora", sans-serif;
}

.success-content h5 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0;
}

.offerd_card {
    padding: 40px 30px 30px 0px;
    background-color: #b6da9d;
}

.offerd_card .left-icon-wrapper {
    background-color: #ffffff;
    width: auto;
    height: auto;
    padding: 10px;
    left: 0;
    border-radius: 0px 20px 20px 0px;
}

.offerd_card .left-icon-wrapper img {
    width: 128px;
}

.icon_wtxt .left-icon-wrapper {
    width: 40%;
    text-align: center;
}

.offerd_card .icon_wtxt p {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    width: 60%;
    margin-left: 20px;
    letter-spacing: 1px;
}


.offer_card_p {
    line-height: 26px;
    padding-left: 35px;
}

.cfm_box {
    background: #e5e5e5;
    padding: 10px 15px;
    border-radius: 18px;
}

.cfm_box h3 {
    color: #253b97;
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
    width: 80%;
}
.cfm_box .pro_inrbox {
    padding: 5px;
}
.cfm_box p {
    margin-bottom: 0;
    font-size: 15px;
}

.chart-wrapper {
    padding: 30px 20px;
    border-radius: 18px;
    background: linear-gradient(90deg, #04a6dd , #0a7bc0);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.chart-wrapper h3 {
    color: #b6da9d;
    padding: 0 10px;
    font-size: 24px;
    letter-spacing: 0;
}

#chartContainer {
    /*height: calc(100% - 35px);*/
}

.succes_inr {
    padding: 24px 10px;
}

.projected_box .pro_inrbox h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #335ca9;
}
.cfm_box .pro_inrbox h4{
    font-size: 20px;
    color: #335ca9;
}
.success_sec{
    position: relative;
    background: url(../images/sol_sec_bg_left.webp) bottom left;
    background-size: 600px auto;
    background-repeat: no-repeat;
}
.success_sec:after{
    content: '';
    background: url(../images/body_bg.svg) top -50% center;
    background-size: 1550px auto;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 45%;
    z-index: -1;
    animation: bgMove 10s linear infinite;
}
@media (max-width:767px) {
    .chart-wrapper {
        height: 450px;
    }
}
#chartContainer {
    width: 100%;
    flex: 1;
}

.project_box_success h3 {
    font-size: 24px;
    margin-bottom: 0;
}


.project_box_success .col-lg-7 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}