:root {
    --primary-font: "Plus Jakarta Sans", sans-serif;
    /* --primary-color: #dd9933; */
    /* --primary-color: #E88E64; */
    /* --secoundry-color: #205168; */
    --primary-color: #00ffc2;
    --secoundry-color: #1b272b;
    --third-color: #223035;
    --black : #181817;
    /* --white : #FFFFFF; */
    /* --white : #AFC1C5; */
    --white : #FFF;
    /* --text-color : #494945; */
    /* --text-color : #69797D; */
    --text-color : #AFC1C5;
}
:focus,
:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
body {
    font-family: var(--primary-font);
    font-style: normal;
    letter-spacing: 0;
    white-space: 0;
    color: var(--text-color);
}
.container {
    max-width: 100%;
    padding-left: 6%;
    padding-right: 6%;
}
.container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

body #magicPointer {
   background: var(--primary-color) !important;
   z-index:999999 !important;
}
body #magicMouseCursor {
   border: 1px solid var(--primary-color) !important;
   z-index:999999 !important;
}
body #magicPointer.pointer-blur {
    /*background:none !important;*/
    z-index:999999 !important;
}

/* width */
::-webkit-scrollbar {
    width: 7px;
    background: #ddd;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}
/*--------------------- General ---------------------*/
body {
    background: var(--secoundry-color);
}
.bg_primary {
    background: var(--primary-color);
}
.bg_section {
    background: #FDFCF9;
}
section {
    margin-top: 100px;
    margin-bottom: 100px;
}
.section_padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
a {
    text-decoration: none;
}

.br-30 {
    border-radius: 30px;
}

.title {
    color: var(--white);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2em;
}

.counter {
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2em;
}

.sub_title {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
}

.dec p,
.dec a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
}
.dec.black p {
    color: var(--black);
}
.dec p:last-child {
    margin-bottom: 0;
}

.form-control {
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--white);
    color: var(--white);
}
.form-control:focus {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.form-control::placeholder {
    color: var(--white);
}

.button {
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    text-transform: initial;
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    width: auto;
    margin: 0;
    text-decoration: none;
    outline: 0;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
    box-shadow: none;
    background-image: none;
    opacity: 1;
    border-radius: 50px;
    padding: 13px 40px;
    border: 1px solid var(--black);
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out,transform .3s cubic-bezier(.29,.11,.2,.96);
    transform-style: preserve-3d;
}
.button:hover {
    transform: translate3d(-4px,-4px,0);
}
.button:hover:before {
    transform: translate3d(2px,-3px,-1px);
}
.button:before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 8px;
    left: 5px;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    border-radius: inherit;
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    transition: .25s cubic-bezier(.22,.61,.36,1);
    transform: translate3d(-5px,-8px,-1px);
    box-sizing: border-box;
}

.button.button_primary {
    background-color: white;
    border-color: white;
    color: black;
}

.button.button_secoundry {
    background-color: black;
    border-color: black;
    color: white;
}

.text_btn {
    display: flex;   
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}
.text_btn:hover {
    color: white;
}
.text_btn i {
    font-size: 20px;
    line-height: 1em;
}
.text_btn span {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    display: flex;   
    align-items: center;
    gap: 10px;
}
/*--------------------- General ---------------------*/

/* .main_wrapper:before {
    will-change: transform;
    animation: qode-grain 2s steps(10) infinite;
    content: ""!important;
    display: block;
    position: absolute;
    top: -150%;
    left: -150%;
    height: 500%;
    width: 500%;
    background-image: url("../assets/noise.png");
    pointer-events: none;
}

@keyframes qode-grain{ 
    0%,100%{transform:translate(0,0)}10%{ 
    transform:translate(-5%,-10%)}20%{ 
    transform:translate(-15%,5%)}30%{ 
    transform:translate(7%,-20%)}40%{ 
    transform:translate(-5%,20%)}50%{ 
    transform:translate(-15%,10%)}60%{ 
    transform:translate(15%,0)}70%{ 
    transform:translate(0,15%)}80%{ 
    transform:translate(3%,-15%)}90%{ 
    transform:translate(-10%,10%)}
} */

/*--------------------- Header ---------------------*/
.main_header {
    border-bottom: 1px solid var(--white);
    z-index: 9;
}
.main_header .header_row {
    /* min-height: 70px;
    max-height: 70px; */
    min-height: 75px;
    max-height: 75px;
}
.main_header .logo {
    width: 100%;
    /* max-width: 120px; */
    max-width: 175px;
}
.main_header .nav_menu {
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
}
.main_header .nav_menu .nav-item .nav-link {
    color: var(--white);
    padding: 0;
    font-weight: 500;
}
.main_header .nav_menu .nav-item .nav-link:hover,
.main_header .nav_menu .nav-item .nav-link.active {
    color: var(--primary-color);
}
.main_header .contact_btn {
    color: var(--white);
    font-weight: 500;
}
/*--------------------- Header ---------------------*/

/*--------------------- Page Title ---------------------*/
.page_title {
    margin: 0;
    padding: 171px 0 100px;
    background-image: url("../assets/pt_background.png");
    background-size: auto;
    background-position: top left;
    position: relative;
}
.page_title:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secoundry-color);
    opacity: 90%;
    z-index: 1;
}
.page_title h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 10px;
}
/*--------------------- Page Title ---------------------*/

/*--------------------- Footer ---------------------*/
.main_footer {
    background: var(--third-color);
}
.main_footer .mf_col:not(:last-child) {
    border-right: 1px solid var(--white);
}
.main_footer .mf_col {
    position: relative;
    padding: 65px 50px 42px;
}
.main_footer .mf_col .logo {
    width: 100%;
    max-width: 250px;
}
.main_footer .mf_col .box_space {
    /* height: 160px; */
    height: 100px;
}
.main_footer .mf_col .quick_links {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.main_footer .mf_col .quick_links a {
    color: var(--white);
    font-weight: 500;
}
.main_footer .mf_col .quick_links a:hover,
.main_footer .mf_col .quick_links a.active {
    color: var(--primary-color) ;
}
.social_icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--white);
}
.social_icons a i {
    line-height: 1em;
    font-size: 18px;
}
.social_icons a:hover {
    background: white;
}
.social_icons a:hover i {
    color: black;
}
.main_footer .mf_col .cpy_right p {
    font-size: 14px;
}
/*--------------------- Footer ---------------------*/

/*--------------------- Home ---------------------*/
/*------ Hero Section ------*//*
.hero_slider {
    max-height: 78vh;
    min-height: 78vh;
    background-image: url("../assets/home-slide-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slider_section .form_column {
    padding: 60px 90px;
    border-left: 1px solid var(--black);
}
.slider_section .form_box {
    background: var(--primary-color);
    padding: 80px 45px;
}
.slider_section .form_box h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    color: white;
}
/*------ Hero Section ------*/

/*------ Client Section ------*/
/*.client_section {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.client_section img {
    width: auto;
    display: inline-block;
    --qode-move: -3px;
    transform: translateY(0);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    max-height: 69px;
}
.client_section img:hover {
    transform: translateY(var(--qode-move));
}
/*------ Client Section ------*/

/*------ Client Section ------*/
/*.services_section {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
/*------ Client Section ------*/
/*--------------------- Home ---------------------*/

/*--------------------- New Home ---------------------*/
.hero_Section {
    height: 100vh;
    position: relative;
}
.hero_Section:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secoundry-color);
    opacity: 90%;
    z-index: 1;
}
.hero_Section .main_video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
.hero_Section h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 30px;
}
.hero_Section h1 span {
    color: var(--text-color);
}
.hero_Section .dec {
    max-width: 70%;
}   
.hero_Section .dec p {
    font-size: 24px;
}

/* Our Services */
.our_services {
    display: grid;
    grid-template-columns: 23% 77%;
}
.our_services .service_card img {
    aspect-ratio: 1/1;
    display: block;
}
.our_services .service_card,
.our_services .os_left {
    padding: 44px 50px 58px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    background-color: var(--third-color);
}
/* Our Services */

/* When we serve */
.location_weserve .sub_title{
    font-size: 18px;
}
/* When we serve */

/* Testimonials */
.testimonials_section .ts_left {
    border: 1px solid var(--text-color);
    border-radius: 30px;
    padding: 50px;
}
.testimonials_section .ts_left h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 20px;
}
.testimonials_section .ts_left .starts i {
    color: var(--primary-color);
    font-size: 18px;
}
.testimonials_section .ts_left .clients_image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.testimonials_section .ts_left .clients_image img {
    width: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 40px;
}
.testimonials_section .ts_left .clients_image img:hover {
    z-index: 2;
}
.testimonials_section .ts_left .clients_image img:not(:last-child) {
    margin-right: -15px;
}
.testimonials_section .testimonial_item {
    display: grid;
    grid-template-columns: 26% 70%;
    gap: 4%;
    align-items: center;
}
.testimonials_section .testimonial_item .quot_icon {
    width: 65px;
    border-radius: 0;
    object-fit: contain;
    position: absolute;
    top: 5px;
    left: 5px;
}
.testimonials_section .testimonial_item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
}
.testimonials_section .testimonial_item .sub_title {
    line-height: 1.5em;
}
.testimonials_section .lSPager{
    display: none;
}
/* Testimonials */
/*--------------------- New Home ---------------------*/

/*--------------------- About ---------------------*/
/* Industries */
.industries_section {
    background: var(--third-color);
}
.industries_section .is_card {
    padding: 16px;
}
.industries_section .is_card {
    border-right: 1px solid var(--white);
}
.industries_section .is_card:nth-child(6n+6) {
    border-right: none;
}
.industries_section .is_card:nth-child(n+7) {
    border-top: 1px solid var(--white);
}
.industries_section .is_card img {
    max-width: 33%;
    width: 100%;
    display: block;
    margin: 0 auto 8px;
    opacity: 0.2;
}
.industries_section .is_card:hover img {
    opacity: 1;
}
.industries_section .is_card:hover .dec p {
    color: white;
}

/* Why us */
.why_us .wu_caresoul {
    background: var(--third-color);
}
.why_us .wu_caresoul .sub_title {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.why_us .wu_caresoul .dec p {
    font-size: 20px;
}
.why_us .wu_caresoul .lSPager {
    margin: 0 !important;
    position: absolute;
    top: calc(50% - 91.5px);
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why_us .wu_caresoul .lSPager li {
    padding: 0;
    display: flex;
    line-height: 1;
}
.why_us .wu_caresoul .lSPager li a {
    width: 10px;
    height: 10px;
    background: var(--white);
}
.why_us .wu_caresoul .lSPager li.active a {
    width: 10px;
    height: 25px;
    background: var(--primary-color) !important;
}
/*--------------------- About ---------------------*/

/*--------------------- services ---------------------*/
.services_tabs .nav-tabs li {
    width: 20%;
}
.services_tabs .nav-tabs li button {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0 8px 32px;
    height: 100%;
    margin-bottom: -1px;
}
.services_tabs .nav-tabs li button:hover {
    border-color: transparent;
}
.services_tabs .nav-tabs li button.active {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.services_tabs .nav-tabs li button .img_box {
    max-width: 60px;
    padding: 10px;
    border-radius: 16px;
    background: var(--text-color);
}
.services_tabs .nav-tabs li button.active .img_box {
    background: var(--primary-color);
}
.services_tabs .nav-tabs li button.active img {
    filter: brightness( 0% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}

.services_tabs .card {
    background: var(--third-color);
}

.services_tabs .tab-content .sub_title {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.services_tabs .tab-content .dec p {
    font-size: 20px;
}
.services_tabs .tab-content .sub_services {
    margin: 30px 0 0;
    list-style-type: none;
    padding: 0;
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
}
.services_tabs .tab-content .sub_services li {
    padding-left: 27px;
    background-image: url("../assets/arrow.png");
    background-position: top left;
    background-size: 20px;
    background-repeat: no-repeat;
}
.services_tabs .tab-content .sub_services li {
    /* padding: 8px 16px;
    border-radius: 20px;
    background: var(--secoundry-color); */
    color: var(--white);
    font-size: 14px;
}
.services_tabs .tab-content .sub_services li:hover {
    color: var(--primary-color);
}
/*--------------------- services ---------------------*/

/*--------------------- industries ---------------------*/
.tab_investment .investment_list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}
.tab_investment .investment_list li.active {
    color: var(--primary-color);
}
.tab_investment .il_card {
    background: var(--third-color);
}
.tab_investment .il_card .pratice_areas ul {
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px; */
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
}
.tab_investment .il_card .pratice_areas ul li {
    padding-left: 29px;
    background-image: url("../assets/arrow.png");
    background-position: top left;
    background-size: 23px;
    background-repeat: no-repeat;
}
.tab_investment .il_card .pratice_areas ul li {
    /* padding: 8px 16px;
    border-radius: 20px; */
    color: white;
    /* position: relative;
    border-radius: 50px;
    background: var(--secoundry-color);
    border: 1px solid #FFFFFF24; */
}


.il_card {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}
.il_card.active-card {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in */
.slide-in-up {
    animation: slideInUp 0.3s ease forwards;
}
.slide-in-down {
    animation: slideInDown 0.3s ease forwards;
}

/* Slide out */
.slide-out-up {
    animation: slideOutUp 0.3s ease forwards;
}
.slide-out-down {
    animation: slideOutDown 0.3s ease forwards;
}

/* Keyframes */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideOutUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-50px); }
}
@keyframes slideOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(50px); }
}
/*--------------------- industries ---------------------*/

/*--------------------- Contact ---------------------*/
.contact_form_fields textarea.form-control {
    resize: none;
}
.toast_msg {
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 9;
}
.toast_msg .dec p {
    font-size: 16px;
    color: var(--white);
}
.toast_msg.success {
    background: #dff4e1;
}
.toast_msg.success .dec p {
    color: #22c55e;
}
.toast_msg.error {
    background: #fae3e2;
}
.toast_msg.error .dec p {
    color: #ef5f5f;
}
/*--------------------- Contact ---------------------*/

/*--------------------- Responsive ---------------------*/
/* 1680 */
@media only screen and (min-width: 1650px) and (max-width: 1700px) {
    .zoom_effect {
        zoom: 87.5%;   
    }
}
/* 1600 */
@media only screen and (min-width: 1550px) and (max-width: 1649px) {
    .zoom_effect {
        zoom: 83.33%;   
    }
}
/* 1520 */
@media only screen and (min-width: 1450px) and (max-width: 1549px) {
    .zoom_effect {
        zoom: 79.17%;   
    }
}
/* 1440 */
@media only screen and (min-width: 1400px) and (max-width: 1449px) {
    .zoom_effect {
        zoom: 75%;   
    }
}
/* 1366 */
@media only screen and (min-width: 1300px) and (max-width: 1399px) {
    .zoom_effect {
        zoom: 71.15%;   
    }
}
/* 1280 */
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .zoom_effect {
        zoom: 66.67%;   
    }
}

/* 600 */
@media only screen and (max-width: 600px) { 
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .section_padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .title {
        font-size: 32px;
    }

    .dec p,
    .dec a {
        font-size: 16px;
    }
    .dec p {
        margin-bottom: 10px;
    }

    .main_header .header_row {
        min-height: 60px;
        max-height: 60px;
    }
    .main_header .logo {
        max-width: 120px;
    }
    .main_header .nav_menu {
        border-right: none;
        justify-content: end !important;
    }
    .main_header .nav_menu .navbar {
        position: unset;
    }
    .main_header .navbar-toggler {
        border: none;  
        padding: 0; 
    }
    .main_header .navbar-toggler img {
        max-width: 24px;
    }
    .main_header .navbar-collapse {
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
    }
    .main_header .nav_menu .navbar .navbar-nav {
        width: 100%;
        background: var(--third-color);
        gap: 15px !important;
        padding: 15px;
    }

    /* hero */
    .hero_Section {
        height: 75vh;
    }
    .hero_Section .main_video {
        width: 300%;
    }
    .hero_Section h1 {
        font-size: 52px;
        margin-bottom: 15px;
    }
    .hero_Section .dec {
        max-width: 100%;
    }
    .hero_Section .dec p {
        font-size: 18px;
    }
    /* hero */

    .our_services {
        grid-template-columns: 100%;
    }
    .our_services .service_card, 
    .our_services .os_left {
        padding: 20px;
        border: 1px solid var(--white);
        background-color: var(--third-color);
    }
    .our_services .service_card {
        border-top: none;
    }
    
    .location_weserve .sub_title {
        font-size: 16px;
    }

    .testimonials_section .testimonial_item {
        align-items: start;
    }
    .testimonials_section .ts_left h1 {
        font-size: 52px;
    }
    .testimonials_section .ts_left {
        padding: 20px;
    }
    .testimonials_section .testimonial_text {
        font-size: 16px;
    }
    .testimonials_section .testimonial_item .quot_icon {
        width: 30px;
    }

    /* Footer */
    .main_footer .mf_col {
        padding: 20px 15px;
        text-align: center;
    } 
    .main_footer .mf_col .logo {
        width: 100%;
        max-width: 200px;
        display: block;
        margin: 0 auto;
    }
    .main_footer .mf_col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--white);
    }
    .main_footer .mf_col .box_space {
        height: 0;
    }
    .main_footer .mf_col .sub_title {
        margin-bottom: 15px !important;
    }
    .main_footer .social_icons {
        justify-content: center;
    }
    /* Footer */

    .page_title h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }
    .page_title {
        padding: 110px 0 50px;
    }

    .industries_section .is_card {
        border-right: 1px solid var(--white);
    }
    .industries_section .is_card:nth-child(even) {
        border-right: none;
    }
    .industries_section .is_card:nth-child(n+3) {
        border-top: 1px solid var(--white);
    }
    .industries_section .wu_caresoul .card-body {
        padding: 20px;
    }
    .why_us .wu_caresoul .sub_title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .why_us .wu_caresoul .dec p {
        font-size: 16px;
    }
    .why_us .wu_caresoul .lSPager {
        right: 0px;
        gap: 5px;
    }
    .why_us .wu_caresoul .lSPager li a {
        height: 5px !important;
        width: 5px !important;
    }
    .why_us .wu_caresoul .lSPager li.active a {
        width: 5px !important;
        height: 20px !important;
    }

    .services_tabs .nav-tabs li {
        width: 100%;
    }
    .services_tabs .nav-tabs {
        gap: 15px;
    }
    .services_tabs .nav-tabs li button {
        font-size: 16px;
        padding: 0 8px 15px;
        flex-direction: row !important;
    }
    .services_tabs .nav-tabs .services_card {
        padding: 20px;
    }
    .services_tabs .tab-content .sub_title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .services_tabs .tab-content .dec p {
        font-size: 16px;
    }
    .services_tabs .tab-content .sub_services {
        margin: 16px 0 0;
    }

    .tab_investment .investment_list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
        justify-content: center;
    }
    .tab_investment .il_card .card-body {
        padding: 20px;
    }
    .tab_investment .il_card .pratice_areas ul li {
        font-size: 14px;
    }

    .map_ifram {
        height: 350px;
    }
}