@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta/AvertaStd-Light.woff2') format('woff2'),
         url('../fonts/Averta/AvertaStd-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta/AvertaStd-Regular.woff2') format('woff2'),
         url('../fonts/Averta/AvertaStd-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta/AvertaStd-Semibold.woff2') format('woff2'),
         url('../fonts/Averta/AvertaStd-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta/AvertaStd-Bold.woff2') format('woff2'),
         url('../fonts/Averta/AvertaStd-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta/AvertaStd-Black.woff2') format('woff2'),
         url('../fonts/Averta/AvertaStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Averta' !important;
    font-size: 16px !important;
    color: #4D505D !important;
}
.container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #262832;
    margin-bottom: 10px;
}
/* Link Styles */
a {
    text-decoration: none !important;
    color: #33B1E0;
}
a:hover {
    color: #0056b3;
}
/* Basic Button Styles */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.cx_img_fluid {
    max-width: 100%;
}
html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}
html::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}
html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(0.44, rgb(122, 153, 217)),
            color-stop(0.72, rgb(73, 125, 189)),
            color-stop(0.86, #33B1E0));
}
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 10px;
    width: 100vw;
    z-index: 100;
    transition: all 0.5s ease-in-out;
}
header.scrolled {
    /* background: #000; */
    top: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); */
    transition: all 0.5s ease-in-out;
}
header .header_nav_holder {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* align-items: center; */
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14.2px);
    -webkit-backdrop-filter: blur(14.2px); 
    border-radius: 100px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    /* padding: 10px 16px; */
}
header.scrolled .header_nav_holder {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
}
header .header_nav_holder .cx_logo_holder {
    width: 240px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    padding: 16px;
}
/* Style for nested dropdown */
header .dropdown-menu .dropdown-submenu {
    position: relative;
}
header .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    display: none;
    position: absolute;
}
header .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
header .header_nav_holder ul.cx_menu_lists_holder {
    width: calc(100% - 250px);
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 25px; */
    margin-bottom: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li a {
    font-size: 16px;
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li a:active,
header .header_nav_holder ul.cx_menu_lists_holder li a:hover {
    background: transparent;
    color: #33B1E0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 13px;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-link.cstm_anchor_holder {
    font-weight: 400;
    padding: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-link.cstm_anchor_holder:hover,
header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown.active .nav-link.cstm_anchor_holder {
    /* font-family: 'Satoshi-Bold'; */
    color: #fff;
    text-decoration: none;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown.active .nav-link.cstm_anchor_holder::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    position: absolute;
    left: 0;
    bottom: -5px;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown .nav-link.cstm_anchor_holder::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last {
    height: auto;
    align-self: center;
    margin-left: 40px;
    display: inline-block;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(74deg, #01FFC7 0%, #0076F7 100%);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last .cx_gradient_btn {
    white-space: nowrap;
    background: rgba(0, 0, 0, 0) !important;
    color: #fff;
    max-height: 40px;
    padding: 10px 14px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last .cx_gradient_btn:hover {
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
    width: 100%;
    max-width: 1336px;
    /* min-height: 550px; */
    position: fixed;
    left: 50%;
    top: 77px;
    transform: translateX(-50%);
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background: #000;
    backdrop-filter: blur(40.3px);
    -webkit-backdrop-filter: blur(40.3px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 43px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.5s;
}
/* header.scrolled .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
    width: 100%;
    max-width: 100%;
    border-radius: 43px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    overflow: auto;
    transition: 0.5s;
} */
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container {
    width: 100%;
    display: flex;
    border-radius: 43px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel {
    width: 30%;
    background: #000;
    padding: 32px 30px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel .heading_holder {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 23px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel .content_holder {
    font-size: 14px;
    font-weight: 400;
    color: #B7B7B7;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel {
    width: 35%;
    /* background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%); */
    padding: 27px 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel {
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #383838 #0c0c0c;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel {
    width: 70%;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-left: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel ul .menu_item {
    width: calc(50% - 9px);
    list-style-type: none;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item .arrow,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item .arrow {
    display: none;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item.active,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item:hover {
    font-weight: 600;
    background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%);
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item:hover a {
    font-weight: 600;
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel {
    width: 35%;
    max-height: 100%;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #383838 #0c0c0c;
    background: #000;
    padding: 27px 10px;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .back_right_btn {
    display: none;
    color: #fff !important;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel::-webkit-scrollbar,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar {
    width: 8px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel::-webkit-scrollbar-track,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-track {
    background: #b6b3b3; /* Track background */
    border-radius: 10px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel::-webkit-scrollbar-thumb,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
    border: 2px solid #1e1e1e; /* Creates spacing */
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel::-webkit-scrollbar-thumb:hover,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-thumb:hover {
    background: #999393;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 27px;
    left: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group.active {
    display: flex;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .content_menu_holder {
    color: #fff;
    padding: 22px;
    padding-top: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .content_menu_holder .heading_holder {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .content_menu_holder .heading_holder .gradient_txt,
.pie_steps_carousel_section .left_section #stepNumber {
    display: inline-block;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .content_menu_holder .heading_holder::before {
    content: '';
    width: 20%;
    height: 1px;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    position: absolute;
    left: 0;
    bottom: -16px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .content_menu_holder .only_text {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item {
    padding: 0 12px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #aaa;
    transition: all 0.3s ease;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item .arrow {
    font-weight: 400;
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item .arrow {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item:hover,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item:hover .arrow {
    font-weight: 600;
    color: #02FFC7;
}
header .header_nav_holder .cx_hamburg_btn,
header .header_nav_holder .cx_delete_btn {
    display: none;
    background: linear-gradient(90deg, #01E3D2, #0187F2);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 8px;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}
header .header_nav_holder .cx_delete_btn {
    display: inline-flex;
    width: 0;
    transform: translateY(-200%);
    margin-right: 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .8rem;
    padding-left: .8rem;
}
.hero_banner_area {
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero_banner_area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.cx_heading_1 {
    color: #fff;
    /* font-family: 'Satoshi-Black'; */
    font-size: 60px;
    text-transform: uppercase;
}
.cx_heading_2 {
    /* font-family: 'Satoshi-Medium'; */
    color: #262832;
    font-size: 36px;
    font-weight: 500;
}
.cx_heading_4 {
    color: #262832;
    /* font-family: 'Satoshi-Medium'; */
    font-size: 24px;
    font-weight: 500;
}
.cx_heading_5 {
    color: #262832;
    /* font-family: 'Satoshi-Medium'; */
    font-size: 20px;
    font-weight: 500;
}
.mb_52 {
    margin-bottom: 52px;
}
.text_white {
    color: #fff;
}
.text_yellow {
    color: #FFCC00;
}
.hero_banner_area {
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.sub_hero_banner_area {
    min-height: 510px;
    max-height: 510px;
}
.sub_hero_banner_area, .sub_hero_banner_area .cx_content_block {
    height: auto;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder {
    min-height: 625px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.min_height_auto {
    min-height: auto !important;
}
.max_height_auto {
    max-height: 100% !important;
}
.hero_banner_area::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder::before {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.sub_hero_banner_area.no_overlay::before {
    content: none;
}
.hero_banner_area.sub_hero_banner_area .container {
    padding: 150px 15px 100px;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder .cx_content_block {
    display: block;
    max-width: 750px;
    height: auto;
    padding-left: 5px;
    position: relative;
    z-index: 2;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2 {
    font-family: 'Averta';
    font-size: 70px;
    margin-bottom: 50px;
    font-weight: 900;
    color: #EE8312;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2.font_36 {
    font-size: 36px;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2.line_height_1 {
    line-height: 1;
}
.gradient_heading_txt, 
.cx_heading_section_holder .gradient_heading_holder, 
.dark_bg_section .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder:hover .cx_heading_4, 
.dark_bg_section .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder:hover .cx_heading_5, 
.dark_bg_section .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active .cx_heading_5 {
    display: inline-block;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2 .font_48 {
    font-size: 48px;
    font-weight: 700;
}
.text_yellow {
    color: #FFCC00;
}
.bottom_mark_holder {
    position: relative;
    display: inline-block;
    width: 100%;
}
.bottom_mark_holder::after {
    content: '';
    width: 303px;
    height: 20px;
    background: url('../images/bottom-mark.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -25px;
    left: 210px;
}
.btn_gradient_area, .sub_inner_hero_banner_holder .btn_area {
    display: inline-block;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(90deg, #01E3D2, #0187F2);
}
.sub_inner_hero_banner_holder .btn_area a, .cx_gradient_btn {
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: 600;
    padding: 14px 25px;
    font-size: 16px;
    color: #fff;
    background: rgb(0, 0, 0, 0.8) !important;
    border: none !important;
    margin-left: 0 !important;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
}
.hero_banner_area .btn_area {
    margin-top: 30px;
}
.cx_default_para_16 {
    font-size: 16px;
}
.cx_default_para_18 {
    font-size: 18px;
}
.cx_default_para_18.light_grey {
    color: #EDEDED;
}
.cx_default_para_18.deep_grey {
    color: #333;
}
.cx_default_para_16.grey_txt,
.cx_default_para_18.grey_txt,
.cx_default_para_20.grey_txt {
    color: #4D505D;
}
.cx_default_para_18.semibold_txt {
    font-weight: 600;
}
.cx_default_para_20 {
    font-size: 20px;
}
.cx_default_para_22 {
    font-size: 22px;
}
.content_para_24 {
    font-size: 24px;
}
.fw_semibold {
    font-weight: 600 !important;
}
.cx_main_section_holder {
    padding: 75px 0;
}
.cx_heading_section_holder .gradient_heading_holder, 
.cx_heading_section_holder .gradient_heading_txt, 
.cx_heading_two_side_holder .cx_heading_container .top_heading_holder, 
.cx_heading_section_holder .top_heading_holder, 
.cx_heading_two_side_holder .cx_heading_container .gradient_heading_txt {
    font-family: 'Averta';
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 45px;
}
.cx_heading_section_holder .top_heading_holder, 
.cx_heading_two_side_holder .cx_heading_container .top_heading_holder {
    margin-bottom: 0;
}
.cx_heading_section_holder .top_heading_holder.gradient_btm_bolder {
    position: relative;
    padding-bottom: 14px;
}
.cx_heading_section_holder .top_heading_holder.gradient_btm_bolder::after {
    content: '';
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, #01FFC7 0%, #0177F7 100%);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.fullstack_engg_blur_section {
    background-image: url(../images/fullstack-engg-blur-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subscribe_banner_bg_holder {
    background-image: url(../images/subscribe-banner-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.top_tabs_outer_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}
.top_tabs_outer_holder .heading_holder {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #202428;
    margin-bottom: 0;
}
.top_tabs_outer_holder .tabs_holder {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top_tabs_outer_holder .tabs_holder .each_tab_holder_btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
}
.top_tabs_outer_holder .tabs_holder .each_tab_holder_btn.active {
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    color: #fff;
}
.slider_container {
    position: relative;
    margin: 20px auto;
    overflow: hidden;
}
.slider_container .slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}
.slider_container .slider .slide {
    flex: 0 0 calc(100% / 4);
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    color: #000;
    font-size: 18px;
    border: 1px solid #000;
}
.three_slider_container .slider .slide {
    flex: 0 0 calc((100% - 60px) / 3);
}
.slider_container .slider_controls_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 17px;
    margin-top: 40px;
}
.slider_container .slider_controls_wrapper .slider_dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.slider_container .slider_controls_wrapper .slider_dots .dot {
    width: 7px;
    height: 7px;
    background: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.slider_container .slider_controls_wrapper .slider_dots .dot.active {
    width: 16px;
    height: 3px;
    background: linear-gradient(90deg, #01ffc7 0%, #0076f7 100%);
    border-radius: 999px;
}
.slider_container .slider_controls_wrapper .cx_prev_next_btns_holder {
    display: inline-flex;
    gap: 17px;
    margin-top: 0;
}
.slider_container .slider_controls_wrapper .cx_prev_next_btns_holder button {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: linear-gradient(90deg, rgba(1, 255, 199, 0.27) 0%, rgba(0, 118, 247, 0.27) 100%);
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.slider_container .slider_controls_wrapper .cx_prev_next_btns_holder button {
    border: none;
}
.slider_container .slider_controls_wrapper .cx_prev_next_btns_holder button[disabled] {
    cursor: not-allowed;
}
.slider_container .slider_controls_wrapper .cx_prev_next_btns_holder button[disabled] svg path {
    stroke: #b7b7b7;
}
.news_outer_slider_container .slider .slide {
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    border: none;
    border-radius: 10px;
    padding: 1px;
}
.vertical_slider_container {
    scroll-margin-top: 90px;
}
.news_outer_slider_container .slider .slide .slide_card_holder {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
}
.news_outer_slider_container .slider .slide .slide_card_holder .top_holder img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}
.news_outer_slider_container .slider .slide .slide_card_holder .middle_holder .news_heading {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 58px;
    font-weight: 600;
    color: #253053;
    margin-bottom: 10px;
}
.news_outer_slider_container .slider .slide .slide_card_holder .middle_holder .news_content {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
    margin-bottom: 10px;
}
.news_outer_slider_container .slider .slide .slide_card_holder .middle_holder .news_content.no_min_height {
    min-height: auto;
}
.news_outer_slider_container .slider .slide .slide_card_holder .bottom_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.news_outer_slider_container .slider .slide .slide_card_holder .bottom_holder .each_info_holder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7F7F7F;
    margin-bottom: 0;
}
.news_outer_slider_container .slider .slide .slide_card_holder .bottom_holder .each_info_holder:not(:first-child)::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #7F7F7F;
    border-radius: 100%;
    display: inline-flex;
}
.blue_outlined_badge {
    display: inline-block;
    font-weight: 600;
    color: #0076F7;
    border: 1px solid #0076F7;
    border-radius: 100px;
    padding: 7px 14px;
}
.content_post_name_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.content_post_name_holder img {
    width: 30px;
    height: 30px;
    background: #ccc;
    object-fit: contain;
    object-position: center;
    border-radius: 100%;
}
.blue_text {
    color: #0076F7;
} 
.cx_two_sided_holder {
    display: flex;
    flex-wrap: wrap;
}
.cx_two_sided_holder .left_tabs_outer_holder {
    width: 250px;
    height: 100%;
    position: sticky;
    top: 90px;
}
.cx_two_sided_holder .left_tabs_outer_holder .heading_holder {
    padding-bottom: 16px;
    border-bottom: 1px solid #ABADB6;
}
.cx_two_sided_holder .left_tabs_outer_holder .tabs_holder {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
}
.cx_two_sided_holder .left_tabs_outer_holder .tabs_holder .each_tab_holder_btn {
    padding: 10px 0;
    cursor: pointer;
}
.cx_two_sided_holder .left_tabs_outer_holder .tabs_holder .each_tab_holder_btn:hover,
.cx_two_sided_holder .left_tabs_outer_holder .tabs_holder .each_tab_holder_btn.active {
    color: #0076F7;
}
.cx_two_sided_holder .right_tab_content_holder {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 250px);
    gap: 20px;
    padding: 0 15px;
}
.cx_two_sided_holder .right_tab_content_holder .each_blog_card_holder {
    width: calc(50% - 10px);
    padding: 20px;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    color: #4D505D;
}
.cx_two_sided_holder .right_tab_content_holder .each_blog_card_holder img.main_img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 15px;
}
.glass_input_outer_holder {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12.1px);
    -webkit-backdrop-filter: blur(12.1px); 
    padding: 10px 16px;
    padding-left: 26px;
    border-radius: 999px;
}
.glass_input_outer_holder svg {
    min-width: 18px;
}
.glass_input_outer_holder input,
.glass_input_outer_holder textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    color: #fff;
    border: none;
}
.glass_input_outer_holder input:focus,
.glass_input_outer_holder textarea:focus {
    outline: none;
}
.glass_input_outer_holder input::placeholder,
.glass_input_outer_holder textarea::placeholder {
    color: #fff;
}
.comment-form-cookies-consent,
.glass_checkbox_outer_holder {
    display: flex;
    align-items: center;
    gap: 10px;
}
.comment-form-cookies-consent input[type="checkbox"],
.glass_checkbox_outer_holder input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #D5D5D5;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    position: relative;
} 
.comment-form-cookies-consent input[type="checkbox"]:checked::after,
.glass_checkbox_outer_holder input[type="checkbox"]:checked::after {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: "\2713";
    position: absolute;
    top: 0;
    left: -2px;
    font-size: 16px;
    color: #fff;
}
.glass_input_outer_holder.border_radius_18 {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 18px;
    padding: 0 16px;
}
.subs_btn {
    background: linear-gradient(65deg, #01FFC7 0%, #0076F7 100%);
    color: #fff;
    border: 1px solid #01FFC7;
    border-radius: 999px;
    padding: 10px 16px;
}
.subs_btn:hover {
    color: #fff;
}
.three_sided_flex_holder {
    display: flex;
    flex-wrap: wrap;
}
.three_sided_flex_holder .left_holder {
    width: 250px;
}
.three_sided_flex_holder .right_holder {
    width: 300px;
}
.three_sided_flex_holder .left_holder,
.three_sided_flex_holder .right_holder {
    height: 100%;
    position: sticky;
    top: 90px;
}
.three_sided_flex_holder .middle_holder {
    width: calc(100% - 550px);
    padding: 0 30px;
}
.three_sided_flex_holder .middle_holder .heading_holder {
    font-weight: 700;
    scroll-margin-top: 90px;
}
.three_sided_flex_holder .left_holder ul.main_ul_holder {
    border-left: 1px solid #E4E4E4;
    margin-bottom: 30px;
}
.three_sided_flex_holder .left_holder ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.three_sided_flex_holder .left_holder a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}
.three_sided_flex_holder .left_holder ul.main_ul_holder ul a {
    padding-left: 20px;;
}
.three_sided_flex_holder .left_holder a.active {
    font-weight: bold;
    color: #00aaff;
}
.three_sided_flex_holder .left_holder a.active::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(65deg, #01FFC7 0%, #0076F7 100%);
    border-radius: 2px;
}
.three_sided_flex_holder .left_holder .share_holder {
    display: flex;
    flex-wrap: wrap;
}
.three_sided_flex_holder .left_holder .share_holder a {
    display: inline-block;
    padding: 0 12px 0 0;
}
.cx_advertise_holder {
    display: flex;
    align-items: flex-end;
}
.cx_advertise_holder .cx_right_holder {
    width: 100%;
    background-color: #0076F7;
    background-image: url('../images/contact-add-bg.webp');
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
}
.cx_advertise_holder .cx_right_holder::before {
    content: '';
    width: 50%;
    height: 100%;
    background: #33B1E0;
    position: absolute;
    left: -10%;
    top: 0;
    transform: skewX(-30deg);
    z-index: -1;
}
.cx_advertise_holder .cx_right_holder .cx_heading_2 {
    /* font-family: 'Satoshi-Bold'; */
    color: #fff;
}
.three_sided_flex_holder .right_holder .subscribe_banner_bg_holder {
    padding: 45px 20px;
    border-radius: 10px;
}
.three_sided_flex_holder .right_holder .subscribe_banner_bg_holder .cx_heading_section_holder .top_heading_holder,
.three_sided_flex_holder .right_holder .subscribe_banner_bg_holder .cx_heading_section_holder .gradient_heading_txt {
    font-size: 20px;
}
.three_sided_flex_holder .right_holder .subscribe_banner_bg_holder .glass_input_outer_holder {
    padding: 0 16px;
    padding-left: 18px;
    border-radius: 10px;
}
.three_sided_flex_holder .right_holder .subscribe_banner_bg_holder .glass_input_outer_holder input {
    padding: 15px 0;
}
.written_section_holder .container {
    border-top: 1px solid #ABADB6;
}
.written_section_holder .content_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.written_section_holder .content_holder .img_holder {
    width: 120px;
    height: 120px;
    border-radius: 100%;
}
.written_section_holder .content_holder .right_holder {
    width: calc(100% - 150px);
}
.dark_bluish_bg_holder {
    background: linear-gradient(90deg, #1A2635 0%, #151E29 100%);
}
.post_section_holder {
    position: relative;
}
.post_section_holder .background_img_holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.post_section_holder .each_blog_card_holder {
    height: 100%;
    background: linear-gradient(90deg, #01FFC7, #0076F7);;
    padding: 1px;
    border-radius: 5px;
}
.post_section_holder .each_blog_card_holder .inner_holder {
    height: 100%;
    background: #152548;
    padding: 20px;
    border-radius: 5px;
}
footer .cx_outer_top_holder {
    padding: 50px 0;
}
footer .cx_outer_top_holder .cx_row_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder {
    width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .heading_holder .h4_heading {
    font-size: 60px;
    font-weight: 900;
    color: #4a4949;
    line-height: 60px;
    margin-bottom: 0;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .heading_holder .h4_heading .gradient_txt {
    display: inline-block;
    background: linear-gradient(90deg, #01FFC7 0%, #0177F7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .btn_gradient_area .cx_gradient_btn {
    background: #fff !important;
    color: #0183F3;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .cx_outer_social_holder .heading_holder {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .cx_outer_social_holder .cx_social_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .cx_outer_social_holder .cx_social_holder .cx_each_social_holder {
    width: 48px;
    height: 48px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: relative;
}
footer .cx_outer_top_holder .cx_row_holder .left_holder .cx_outer_social_holder .cx_social_holder .cx_each_social_holder::before {
    content: '';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(-90deg, #01FFC7 0%, #0177F7 100%);
    border-radius: 100%;
    position: absolute;
    left: -2px;
    top: -2px;
    z-index: -1;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder {
    width: calc(100% - 588px);
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder {
    display: flex;
    gap: 20px;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder .img_holder {
    min-width: 110px;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder .right_content_holder .heading_block {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder .right_content_holder .content_block .each_content {
    color: #333;
    margin-bottom: 0;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder .right_content_holder .content_block .each_content .label_holder {
    font-weight: 600;
}
footer .cx_outer_top_holder .cx_row_holder .right_holder .cx_locations_holder .each_loc_holder .right_content_holder .content_block .each_content .info_holder {
    color: #333;
}
footer .cx_outer_middle_holder {
    padding: 50px 0;
    background-image: url(../images/footer-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
footer .cx_outer_middle_holder .cx_main_heading {
    font-size: 24px;
    font-weight: 900;
    color: #37374A;
    margin-bottom: 16px;
}
footer .cx_outer_middle_holder .cx_menu_lists_holder {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
footer .cx_outer_middle_holder .cx_menu_lists_holder li:not(:last-child) {
    margin-bottom: 16px;
}
footer .cx_outer_middle_holder .cx_menu_lists_holder li a {
    font-size: 16px;
    color: #fff;
}
footer .cx_outer_middle_holder .cx_secondbottommost_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    border-width: 1px 0;
    border-image: linear-gradient(90deg, #01FFC7, #0076F7);
    border-image-slice: 1;
    padding: 24px 0;
}
footer .cx_outer_middle_holder .cx_secondbottommost_holder .cx_left_holder, 
footer .cx_outer_middle_holder .cx_secondbottommost_holder .cx_right_holder {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
}
footer .cx_outer_middle_holder .cx_secondbottommost_holder .cx_right_holder {
    gap: 30px;
}
footer .cx_outer_middle_holder .cx_secondbottommost_holder .cx_right_holder img {
    max-height: 82px;
    object-fit: contain;
}
footer .cx_outer_middle_holder .cx_bottommost_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
}
footer .cx_outer_middle_holder .cx_bottommost_holder .cx_top_holder {
    display: inline-flex;
    flex-wrap: wrap;
}
footer .cx_outer_middle_holder .cx_bottommost_holder .cx_top_holder a {
    color: #fff;
    padding-right: 24px;
    position: relative;
}
footer .cx_outer_middle_holder .cx_bottommost_holder .cx_top_holder a:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 12px;
    background: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}
.pagination {
    margin-left: auto;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #0076F7;
}
.pagination .page-numbers:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.pagination .page-numbers:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pagination .page-numbers:not(:first-child) {
    border-left: none;
}
.pagination .page-numbers.current {
    background: #0076F7;
    color: #fff;
}
.pagination + .slider_controls_wrapper {
    display: none;
}
.glass_input_outer_holder + .response_msg_holder {
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12.1px);
    -webkit-backdrop-filter: blur(12.1px);
    margin-top: 10px;
    border-radius: 50px;
    font-weight: 700;
}
.written_section_holder .content_holder .img_holder img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.comment-form {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.comment-form > * {
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
.comment-respond h3.comment-reply-title {
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog_comments_area {
    color: #fff;
}
.blog_comments_area .comment {
    margin-bottom: 30px;
}
.blog_comments_area .comment .comment-body {
    position: relative;
    padding-left: 80px;
}
.blog_comments_area .comment .comment-body .comment-meta .comment-author img.avatar {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.blog_comments_area .comment .comment-body .comment-meta .comment-metadata a {
    color: #fff;
}
.comment-form-cookies-consent + .form-submit {
    width: 100%;
    margin: 0;
}
.cx_breadcrumb {
    padding: 10px 0 20px;
    background: #fff;
}
.cx_breadcrumb .breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    color: #333;
    padding-left: 0;
    margin-bottom: 0 !important;
    list-style-type: none;
}
.cx_breadcrumb .breadcrumb_list a {
    font-size: 12px;
    padding: 0;
    color: #333;
}
.cx_breadcrumb .breadcrumb_list li.active {
    color: #0076F7;
}
.cx_breadcrumb .breadcrumb_list li:not(:last-child) a::after {
    content: '/';
    display: inline-block;
    padding: 0 5px;
}
.object-cover {
    object-fit: cover;
}




@media (max-width: 1200px) {
    header .header_nav_holder ul.cx_menu_lists_holder {
        width: calc(100% - 150px);
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
        top: 72px;
    }
}
@media (max-width: 1100px) {
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
        top: 68px;
    }
}
@media (max-width: 1024px) {
    header .header_nav_holder .cx_logo_holder {
        width: 150px;
    }
    header .header_nav_holder .cx_hamburg_btn {
        display: inline-flex;
        transform: translateY(0);
        height: 100%;
        align-self: center;
    }
    header .header_nav_holder .cx_menu_lists_holder.active + .cx_delete_btn {
        width: 35px;
        transform: translateY(0);
        transition: transform 0.5s ease-in-out;
    }
    header .header_nav_holder .cx_delete_btn {
        position: absolute;
        right: 20px;
        top: 10px;
        margin-right: 0;
        z-index: 100;
    }
    header .header_nav_holder ul.cx_menu_lists_holder {
        position: fixed;
        top: -10px;
        /* left: -20.5%; */
        display: block;
        width: 100dvw;
        height: 100dvh;
        background: #000;
        padding: 20px;
        padding-top: 50px;
        overflow: auto;
        transform: translateX(-100%);
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item {
        height: auto;
        display: block;
        padding: 12px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.nav-item-last {
        height: auto;
        display: inline-block;
        margin-left: 20px;
        margin-top: 30px;
        padding: 2px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder .nav-link.cstm_anchor_holder {
        padding: 10px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown.active .nav-link.cstm_anchor_holder::before {
        content: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder.active {
        padding-top: 60px;
        transform: translateX(0%);
        transition: all 0.5s ease-in-out;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown ul.dropdown-menu {
        width: 100%;
        position: static;
        left: auto;
        top: auto;
        z-index: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-height: auto;
        margin-top: 10px;
        border: none;
        border-radius: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container {
        border-radius: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel, header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel {
        padding: 10px;
        gap: 10px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item.active, header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item:hover {
        background: transparent;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown a.cstm_anchor_holder {
        position: relative;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown a.cstm_anchor_holder::after {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .cx_right_menu_holder {
        padding: 20px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .cx_right_menu_holder ul {
        padding: 0 10px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .cx_right_menu_holder ul:not(:last-child) {
        border-right: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .cx_right_menu_holder ul li:not(:last-child),
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .cx_right_menu_holder ul li {
        padding-bottom: 20px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel,
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel.only_info_right_panel {
        display: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item, header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown .nav-link.cstm_anchor_holder::after {
        width: 8px;
        height: 8px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel .menu_item .arrow,
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel .menu_item .arrow {
        display: inline-block;
        font-size: 24px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1;
        width: 100dvw;
        height: 100dvh;
        border: none;
        border-radius: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel.more_menu_right_panel {
        position: fixed;
        left: 0;
        top: 0;
        width: 100dvw;
        height: 100dvh;
        display: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel.more_menu_right_panel {
        display: block;
        z-index: 1;
        padding: 30px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel.more_menu_right_panel .back_right_btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0 12px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel.more_menu_right_panel .back_right_btn .icon_holder {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(90deg, #01E3D2, #0187F2);
        border-radius: 100%;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel.more_menu_right_panel .back_right_btn .icon_holder svg {
        width: 18px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel.more_menu_right_panel .back_right_btn .dynamic_heading_holder {
        color: #fff;
        margin-bottom: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .right_panel .submenu_group {
        width: calc(100% - 50px);
        left: 30px;
        top: 100px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right_panel .submenu_group .submenu_item .arrow {
        display: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_panel, header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel,
    footer .cx_outer_top_holder .cx_row_holder .left_holder,
    footer .cx_outer_top_holder .cx_row_holder .right_holder {
        width: 100%;
    }
    footer .cx_outer_middle_holder .cx_secondbottommost_holder {
        justify-content: center;
    }
    footer .cx_outer_top_holder .cx_row_holder .left_holder {
        gap: 20px;
    }
    footer .cx_outer_top_holder .cx_row_holder .left_holder .heading_holder .h4_heading {
        font-size: 50px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2 {
        font-size: 60px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2 .font_48, 
    .cx_heading_section_holder .gradient_heading_holder, 
    .cx_heading_section_holder .gradient_heading_txt, 
    .cx_heading_two_side_holder .cx_heading_container .top_heading_holder, 
    .cx_heading_section_holder .top_heading_holder, 
    .cx_heading_two_side_holder .cx_heading_container .gradient_heading_txt {
        font-size: 36px;
    }
    .three_slider_container .slider .slide {
        /* flex: 0 0 100%; */
        flex: 0 0 calc((100% - 60px) / 1);
    }
    .cx_two_sided_holder .right_tab_content_holder .each_blog_card_holder {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .navbar-collapse.collapse:not(.show) {
        display: block;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        background: #212529;
        width: 215px;
        height: 100%;
        z-index: 9999;
        padding: 25px;
        transform: translateX(-215px);
        transition: 0.5s ease-in-out;
        display: block;
    }
    .navbar-collapse.show {
        transform: translateX(0px);
    }
    .nav-overlay {
        position: absolute;
        background: #0000007d;
        width: 100dvw;
        height: 100dvh;
        top: 0;
        left: 0;
        z-index: 2;
        transform: translateX(-100vw);
        transition: 0.5s ease-in-out;
        display: block;
    }
    .nav-overlay.active {
        transform: translateX(0);
    }
    /* Multilabel dropdown */
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: static;
        display: none;
        margin-left: 0;
    }
    .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
    body,
    .cx_heading_4,
    .cx_default_para_20,
    .content_para_22,
    .content_para_24,
    .cx_default_para_18,
    .cx_heading_5,
    .cx_main_section_holder .cx_content_holder .cx_lists_holder li strong,
    .cx_btn,
    .cx_anchor_holder,
    .cx_faq_section .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 16px !important;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2, 
    .hero_banner_area .cx_heading_2 {
        font-size: 36px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2.font_36 {
        font-size: 24x;
    }
    .cx_heading_section_holder .gradient_heading_holder, 
    .cx_heading_section_holder .gradient_heading_txt, 
    .cx_heading_two_side_holder .cx_heading_container .top_heading_holder, 
    .cx_heading_section_holder .top_heading_holder, 
    .cx_heading_two_side_holder .cx_heading_container .gradient_heading_txt {
        margin-bottom: 15px;
    }
    .top_tabs_outer_holder .tabs_holder {
        justify-content: flex-start;
    }
    .cx_main_section_holder {
        padding: 15px 0;
    }
    .cx_two_sided_holder .left_tabs_outer_holder {
        width: 100%;
        background: #fff;
        top: 70px;
        padding: 10px 0;
        z-index: 1;
    }
    .cx_two_sided_holder .right_tab_content_holder {
        width: 100%;
        padding: 0;
    }
    .cx_two_sided_holder .left_tabs_outer_holder .tabs_holder {
        flex-direction: row;
        gap: 10px;
    }
    .cx_two_sided_holder .left_tabs_outer_holder .tabs_holder .each_tab_holder_btn {
        padding: 0;
    }
    .three_sided_flex_holder .left_holder {
        display: none;
    }
    .three_sided_flex_holder .middle_holder {
        padding: 0;
        width: 100%;
    }
    .three_sided_flex_holder .right_holder {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .middle_right_mixed_panel ul .menu_item {
        width: 100%;
    }
    .bottom_mark_holder::after {
        width: 100%;
        left: 0;
    }
}
@media (max-width: 480px) {
    .slider_container .slider .slide {
        flex: 0 0 100%;
        /* Show 1 slide per frame on very small screens */
    }
    footer .cx_outer_top_holder .cx_row_holder .left_holder .heading_holder .h4_heading {
        font-size: 40px;
        line-height: 40px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2, .hero_banner_area .cx_heading_2 {
        font-size: 30px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2 .font_48, 
    .cx_heading_section_holder .gradient_heading_holder, 
    .cx_heading_section_holder .gradient_heading_txt, 
    .cx_heading_two_side_holder .cx_heading_container .top_heading_holder, 
    .cx_heading_section_holder .top_heading_holder, 
    .cx_heading_two_side_holder .cx_heading_container .gradient_heading_txt {
        font-size: 24px;
    }
    .sub_hero_banner_area.sub_inner_hero_banner_holder .cx_heading_2.font_36 {
        font-size: 22x;
    }
}

@media (max-height: 600px) {
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .left_panel img {
        height: 135px;
        object-fit: contain;
        object-position: left;
    }
}