/* common css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Metropolis", sans-serif!important; */
}

html {
    font-family: "Metropolis", sans-serif !important;
    font-weight: 600;
    color: #181818;
}

body {
    font-family: "Metropolis", sans-serif !important;
    color: #181818 !important;
    background-color: #f8f9fa !important;
    overflow-x: hidden;
}

.hide-md {
    display: none !important;
}

.flex-center-align {
    align-items: center;
}

.btn:focus {
    box-shadow: none;
}

.btn_theme_outline {
    background-color: transparent;
    padding: 10px 6px !important;
    border-radius: 50px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    width: 111px !important;
}



.btn_grey_outline {
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #B2B0B0;
    color: #B2B0B0;
    border-radius: 50px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.btn_grey_outline:hover {
    color: #fff;
    background: #B2B0B0;
}

.btn_link {
    background-color: transparent;
    border: 0;
    color: #253A68;
    border-radius: 50px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    text-decoration: underline;
}

.btn_link.btn-border {
    border: 1px solid transparent;
    /* reserve space */
    padding: 4px 0px;
}


*/ .btn_link:hover {
    color: #253A68;
}

.btn_link_light {
    background-color: transparent;
    border: 0;
    color: #33BAD1;
    border-radius: 50px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
}

.btn_link_light:hover {
    color: #33BAD1;
    text-decoration: underline;
}

.btn_red_outline {
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #DB0D15;
    color: #DB0D15;
    border-radius: 50px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.btn_red_outline:hover {
    color: #fff;
    background: #DB0D15;
}

.main_wrapper {
    margin-top: 70px;
}

.section_wrapper {
    margin-bottom: 125px;
}

.section_wrapper_60 {
    margin-bottom: 60px;
}

.section_wrapper_small {
    margin-bottom: 20px;
}

.section_space_top {
    margin-top: 100px;
}

.section_text_block {
    margin: 70px 0px 60px 0px;
}

.section_wrapper_padding {
    padding-top: 70px;
}

.row_space_10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row_space_8 {
    margin-left: -8px;
    margin-right: -8px;
}

.col_space_10 {
    padding-left: 10px;
    padding-right: 10px;
}

.col_space_8 {
    padding-left: 8px;
    padding-right: 8px;
}

.text-xl h1 {
    color: #253A68;
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 0;
}

.text-lg h1 {
    color: #253A68;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 0;
}

.text-lg h2 {
    color: #253A68;
    line-height: 38px;
    margin-bottom: 0;
}


.text-md h1 {
    color: #253A68;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.text-space {
    margin-bottom: 40px;
}

.text-space-1 {
    margin-bottom: 125px;
}

/* .separator h1:before {
    content: "";
    display: block;
    background: #33BAD1;
    width: 58px;
    height: 4px;
    margin-bottom: 15px;
} */

/* header css */
.header {
    /* position: absolute; */
    /* z-index: 11; */
    /* top: 40px; */
    /* transform: translateY(-40%); */
    position: sticky;
    width: 100%;
    opacity: 1;
    visibility: initial;
    background: #ffffff;
    top: 0px;
    z-index: 11;
}

/* .header_sticky {
    background-color: #fff;
    z-index: 10;
    position: fixed;
    top: -60px;
    box-shadow: 0 0 30px 0 rgba(24,24,24,.05);
    transform: translateY(100%);
    transition: transform 600ms ease;
    padding: 0;
} */
.header_navbar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    padding: 0;
    transition: 0.15s;
    padding: 0px 30px;
}

.header_left_side {
    display: flex;
}

.header_logo {
    width: 100%;
}

.header_logo img {
    width: 90%;
    max-width: 200px;
}

.right_side {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    column-gap: 45px;
}

.header_menu_item a {
    font-size: 16px;
    color: #B2B0B0;
    display: block;
    position: relative;
    font-weight: 400;
    line-height: 109px;
    padding: 0;
}

.header_menu_item a:hover {
    cursor: pointer;
    text-decoration: none;
    color: #33BAD1;
}

.header_menu_item:hover:after {
    content: ' ';
    display: block;
    position: absolute;
    z-index: 5;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #68c4d6 !important;
}

.submenu_list {
    opacity: 0;
    transition: all 400ms ease 0s;
    transform: translateY(-50px);
    position: fixed;
    width: 100%;
    right: 0;
    top: auto;
    left: 0;
    background-color: #fff;
    z-index: 1;
    pointer-events: none;
    padding: 1.5em 1em 0em 3em;
}

.header_menu_item:hover>.dropdown_item {
    transition: color 0.3s;
}

/* .submenu_list_small {
    position: absolute;
    min-width: 220px;
    padding: 20px 10px 0px;
    left: -65px;
} */


.dropdown_list:hover .submenu_list_small {
    opacity: 1;
    transform: translateX(-50%) translateY(-9px) !important;
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 3px 5px 0 rgba(24, 24, 24, .1);
}


.submenu_list_small {
    position: absolute;
    min-width: 220px;
    padding: 20px 10px 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) !important;
}

.submenu_list ul {
    margin-left: 0;
}

.submenu_list_small .submenu_box .submenu_items {
    margin-bottom: 0;
}

.submenu_list_small .submenu_box .submenu_items li a {
    text-align: center;
}

.small_list:after {
    display: none !important;
}

.submenu_list p {
    font-size: 18px;
    line-height: 23px;
    color: #B2B0B0;
    font-weight: 400;
}

.dropdown_list {
    position: relative;
    display: inline-block;
}

.dropdown_list:hover .submenu_list {
    opacity: 1;
    transform: translateY(-9px);
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 3px 5px 0 rgba(24, 24, 24, .1);
}

.submenu_box h4 a {
    color: #253A68 !important;
    font-size: 15px !important;
    font-weight: bold;
    line-height: 20px;
}

/* .header_menu_item::after {
    border-top: 2px solid #253A68;
} */

.submenu_box h6 {
    color: #B2B0B0;
    font-size: 14px !important;
}

.submenu_box .submenu_items {
    list-style: none;
    margin-bottom: 1rem;
}

.submenu_box .submenu_items li {
    padding-bottom: 20px;
}

.submenu_box .submenu_items li a {
    font-size: 14px;
    line-height: 20px;
    color: #B2B0B0;
    font-weight: 500;
    white-space: unset;
}

.submenu_box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* .submenu_list li a{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #181818;
    padding: 1em 1.5em;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 0 #f66542;
}
.submenu_list li a:after{
    content: ' ';
    display: block;
    position: absolute;
    left: 1.5em;
    right: 1.5em;
    bottom: 0;
    height: 1px;
    background-color: rgba(24,24,24,.1);
}
.submenu_list li a:hover{
    box-shadow: inset 0 0 0 3px #fff, inset 5px 0 0 0 #f66542;
    transition: all ease 300ms;
} */
.header_actions {
    margin-left: 40px;
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.contact_menu a {
    font-size: 16px;
    /* color: #253A68; */
    display: block;
    position: relative;
    font-weight: 500;
    line-height: 87px;
    padding: 0;
}

.contact_menu a:hover {
    text-decoration: none;
}

.search a img {
    margin-right: 10px;
}

.search a {
    padding: 5px 15px !important;
}

.search a:hover {
    background-color: transparent;
    color: #253A68;
}

.search-box {
    display: none;
    position: absolute;
    right: 15px;
    left: auto;
    padding: 15px;
    background-color: #fff;
    width: 274px;
    margin-top: 16px;
    z-index: 22;
}

.search-input input {
    border: 1px solid #EAEAEF;
    border-radius: 0 !important;
}

.search-input input:focus {
    outline: 0;
    box-shadow: none;
}

.search_btn button {
    border-radius: 0;
    background: #33BAD1;
    border: 1px solid transparent;
}

.search_btn button:hover {
    background: #33BAD1;
    border: 1px solid transparent;
}

/* header sticky css */
.header_sticky .header_navbar .header_left_side a {
    line-height: calc(100px*0.6);
    font-size: 1.5em;
}

.header_sticky .header_navbar .right_side .header_menu .header_menu_item a {
    line-height: calc(100px*0.6);
}

.header_sticky .header_navbar .right_side .header_menu .header_menu_item .submenu_list li a {
    line-height: 20px;
}

/* header mobile menu css */
.mobile_menu_dropdown_wrapper {
    overflow: auto;
    position: fixed;
    z-index: 1;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(.230, 1, .320, 1);
}

.sidebar {
    transform: translateX(0);
}

.mobile_menu_dropdown {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 4.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

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

.dropdown_button {
    background-color: transparent;
    border: none;
}

.close_button img {
    width: 24px;
}

.dropdown_button svg path {
    fill: #253A68;
}

.mobile_menu {
    display: none;
}

.mobile_menu_button_small {
    height: 2rem;
    width: auto;
}

.mobile_nav {
    margin-top: 50px;
}

.mobile_nav_list {
    /* padding: 1em 0 1em 1.8em; */
    list-style: none;
    margin-bottom: 0;
}

/* .mobile_nav_list .dropdown_list_mobile {
    padding-bottom: 40px;
} */

.dropdown_nav_list a {
    font-size: 24px;
    color: rgba(78, 77, 77, 0.7);
    display: block;
    position: relative;
    font-weight: 400;
    line-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dropdown_nav_list a:hover {
    text-decoration: none;
}

.dropdown_nav_menu {
    display: none;
    margin-top: 2rem;
}

.dropdown_nav_menu p {
    margin-bottom: 20px;
    color: #B2B0B0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.arrow {
    border: solid #B2B0B0;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    margin-top: -10px;
    transition: 300ms ease all;
}

.dropdown_nav_list .selected .arrow {
    transform: rotate(225deg);
    margin-top: 0px;
    /* border: solid #33BAD1; */
    border-width: 0 2px 2px 0;
}

.mobile_submenu_box h4 a {
    color: #253A68 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 38px !important;
    margin-bottom: 0 !important;
    padding: 0;
}

.mobile_submenu_list {
    list-style: none;
    margin-left: 0;
}

.mobile_submenu_list li a {
    padding: 0;
    color: #B2B0B0;
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
}

.submenu_box a h6 {
    padding: 0;
    color: #B2B0B0 !important;
    /* font-size: 16px !important; */
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0 !important;
}

.mobile_submenu_box a {
    display: block;
}

.mobile_submenu_box a img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.service_list li {
    padding-bottom: 10px;
}

/* Footer */

.footer_block {
    padding-bottom: 0px;
    padding-top: 0px;
}

.footer_block .footer_row {
    align-items: center;
}

.social_block ul {
    list-style: none;
    margin-bottom: 1.5rem;
    justify-content: end;
    display: flex;
    text-align: end;
    gap: 10px;
}

.social_block ul li {
    display: inline-block;
    /* margin-right: 20px; */
}

.social_block ul li a {
    background-color: #b3b1b1;
    width: 24px;
    display: block;
    height: 24px;
    text-align: center;
    line-height: 26px;
    color: #fff;
    border-radius: 50%;
}



.footer_links ul {
    list-style: none;
    margin-bottom: 0;
    /* text-align: center; */
    font-size: 16px;
}

.footer_links ul li a {
    font-size: 15px !important;
    color: #253A68 !important;
}


.footer_links ul li {
    display: inline-block;
}

.footer_links ul li a {
    color: #4e4d4d;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.footer_links ul li a:hover {
    text-decoration: none;
}

.footer_links ul li a:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #4e4d4d;
    border-radius: 50%;
    margin-right: 12px;
    margin-left: 8px;
}

.web_link a {
    color: #253A68;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
}

.web_link a img {
    width: 15px;
    margin-left: 15px;
}

.web_link a:hover {
    text-decoration: none;
}

.dot_image_block img {
    width: 100%;
}

.copyright {
    color: #4e4d4d;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
}

/* top bar section csss */
.top_bar {
    /* min-height: 34px; */
    background: #253A68;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 2px 0px;
    z-index: 11;
}


.bottom_bar {
    width: 100%;
    padding: 2px 0px;
    z-index: 11;
    height: 11px;
    margin-top: 30px;
}

/* .top_bar_sticky{
    position: fixed;
} */
.top_bar_list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 20px;
    margin-bottom: 0;
    padding: 0px 30px;
}

.top_bar_panel {
    max-width: 150px;
    width: 100%;
}

.top_bar_list .language_item a {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.top_bar_list .language_item.active {
    width: 20px;
    height: 20px;
    line-height: 19px;
    background: #fff;
    border-radius: 50%;
    padding: 0px 3px 0px 2px;
    ;
}

.top_bar_list .language_item.active a {
    color: #253A68;
}

.top_bar_list .language_item a:hover {
    text-decoration: none;
}


/* home banner section csss */

.banner_wrapper {
    /* padding-top: 4.2rem; */
}

.banner_image {
    /* background: url(../images/home-banner.jpg); */
    width: 100%;
    height: 527px;
    /* object-fit: cover; */
}

.dots {
    z-index: 1;
}

.dots li {
    width: 13px;
    height: 13px;
    border: 1.5px solid #e5e5e5;
    background: transparent;
    border-radius: 50%;
}

.dots li.active {
    width: 13px;
    height: 13px;
    border: 1.5px solid #e5e5e5;
    background: #b3b1b1;
    border-radius: 50%;
}

/* home page section 1 cssss */

.card_wrapper {
    position: relative;
}

.card_wrapper:hover {
    text-decoration: none;
}

.image_wrapper {
    border-radius: 4px;
    overflow: hidden;
    background: rgba(24, 24, 24, .07);
    position: relative;
}

.image_wrapper .image_box img {
    position: relative;
    display: block;
    transition: 300ms ease all;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card_wrapper .image_wrapper .overlay_wrapper {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.card_wrapper .image_wrapper .overlay_wrapper:before {
    position: absolute;
    background: rgb(37 58 104 / 54%);
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 300ms ease opacity;
}

.card_wrapper:hover .image_wrapper .overlay_wrapper:before {
    opacity: .85;
}

.card_content {
    margin-top: 20px;
    text-align: center;
}

.card_content h4 {
    color: #253A68;
    height: 50px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0px;
}

.card_content1 {
    margin-top: 20px;
    text-align: center;
}

.card_content1 h4 {
    color: #253A68;
    height: 50px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}

.card_content h4:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 5px;
    width: 5px;
    margin-right: 0.5rem;
    background-color: #253A68;
}

.card_content p {
    color: #4E4D4D;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.round_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded_one {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rounded_two {
    margin-top: -80px;
    margin-left: -25px;
}

.round_sm {
    width: 154px;
    height: 154px;
    border-radius: 50%;
    border: 1px solid #253A68;
    background-color: rgba(37, 58, 104, 0.45);
    text-align: center;
    padding: 0px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 0px auto 0px 80px; */
}

.round_sm h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 42px;
}

.round_sm p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0px;
}

.round_md {
    width: 177px;
    height: 177px;
    border-radius: 50%;
    border: 1px solid #253A68;
    background-color: rgba(37, 58, 104, 0.64);
    text-align: center;
    padding: 0px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* position: absolute;
    right: 20px;
    top: 20%; */
}

.round_md h2 {
    color: #fff;
    font-size: 39px;
    font-weight: 500;
    margin-bottom: 0px;
}

.round_md p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0px;
}

.round_lg {
    width: 227px;
    height: 227px;
    border-radius: 50%;
    border: 1px solid #253A68;
    background-color: transparent;
    text-align: center;
    padding: 0px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
}

.round_lg h2 {
    color: #253A68;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 0px;
}

.round_lg p {
    color: #253A68;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0px;
}

.content_block {
    column-gap: 30px;
    margin-bottom: 20px;
}

.content_wrapper p {
    color: #000000;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0;
}


/* solution section cssss */

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

.solution_item {
    width: 76px;
    height: 600px;
    position: relative;
    cursor: pointer;
}

.solution_item_card_wrapper {
    position: relative;
}

.solution_item_card_wrapper:hover {
    text-decoration: none;
}

.solution_item_image_wrapper {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.solution_item_image_wrapper .solution_item_image_box .thumbnail_image {
    position: relative;
    display: block;
    transition: 300ms ease all;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.solution_item_card_wrapper .solution_item_image_wrapper .overlay_wrapper {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.solution_item_card_wrapper .solution_item_image_wrapper .overlay_wrapper:before {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    transition: 300ms ease opacity;
}

.solution_item_card_wrapper:hover .solution_item_image_wrapper .overlay_wrapper:before {
    opacity: 0;
}

.thumbnail_content {
    position: absolute;
    bottom: 60px;
    width: 76px;
    transform: rotate(-90deg);
}

.thumbnail_content h5 {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 0;
    width: calc(600px - 100px);
}

/* .thumbnail_content h5:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 1.5rem;
    background-color: #fff;
} */

.thumbnail_content {
    display: flex;
    white-space: nowrap;
}

.thumbnail_content .thumbnail_content_dot:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 1.5rem;
    background-color: #fff;
}

.solution_main_content {
    background: white;
    position: absolute;
    bottom: 0;
    padding: 25px 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 100%;
    opacity: 88%;
}

.solution_main_content h5 {
    color: #253A68;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* .solution_main_content h5:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 1rem;
    background-color: #33BAD1;
} */


.solution_main_content .text-dot:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 1rem;
    background-color: #33BAD1;
}

.solution_main_content p {
    color: #B2B0B0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.solution_item .solution_item_image_box .main_image {
    display: none;
}

.solution_item.active {
    width: 638px;
    animation: fadeIn 1s;
}

.solution_item.active .solution_item_image_box .thumbnail_image {
    display: none;
}

.solution_item.active .solution_item_image_box .main_image {
    display: block;
    position: relative;
    transition: 300ms ease all;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.solution_item.active .solution_item_image_wrapper .overlay_wrapper {
    display: none;
}

.solution_item .solution_item_card_wrapper .solution_main_content {
    display: none;
}

.solution_item.active .solution_item_card_wrapper .solution_main_content {
    display: block;
}

.solution_item.active .solution_item_card_wrapper .thumbnail_content {
    display: none;
}


/* product card section csss */

.product_card {
    background-color: #fff;
    padding: 10px 5px;
    border-radius: 8px;
    text-align: center;
}

.product_card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product_card h3 {
    color: #33BAD1;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    height: 40px;
}

.product_card p {
    color: #4E4D4D;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    height: 44px;
}


/* home page section 2nd last cssss */

.information_wrapper {
    padding: 0px 0px 0px 115px;
}

.image_block {
    border-radius: 8px;
}

.image_block img {
    width: 100%;
    border-radius: 8px;
}

.information_block p {
    color: #000000;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.bottom_block {
    margin-top: 50px;
    background-color: #fff;
    padding: 40px 25px 40px 15px;
    border-radius: 8px;
}

.bottom_block h4 {
    color: #253A68;
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bottom_block_content ul {
    list-style: none;
    margin: 1rem 0;
}

.bottom_block_content ul li {
    color: #212121;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 5px;
}

.bottom_block_content ul li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #33BAD1;
}

.bottom_block p {
    color: #253A68;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.bottom_block_content {
    padding: 20px 20px 20px;
}

.bottom_block_content p {
    color: #4E4D4D;
    margin-bottom: 0px;
}

.bottom_block_content h4 {
    color: #4E4D4D;
}

.brand_images img {
    filter: grayscale(100%);
    /* width: auto!important; */
    width: 163px;
    mix-blend-mode: multiply;
}


.div_gap {
    margin-top: 40px;
}

.brand_images img {
    height: 70px !important;
}

.brand_images img[src*="sicamindoCropped2_1"] {
    padding-top: 8px;
    height: auto !important;
}

.client_slider_homes .owl-nav .owl-prev:hover,
.client_slider_homes .owl-nav .owl-next:hover {
    background: transparent !important;
}

.client-slider .owl-nav .owl-prev:hover,
.client-slider .owl-nav .owl-next:hover {
    background: transparent !important;
}

.owl-nav button.owl-prev {
    font-family: 'Roboto', sans-serif !important;
    color: #B2B0B0 !important;
    font-size: 65px !important;
    display: block !important;
    font-weight: 400 !important;
    background-size: contain;
    position: absolute;
    top: -25%;
    left: 0;
    opacity: 0.8;
}

.owl-nav button.owl-next {
    font-family: 'Roboto', sans-serif !important;
    color: #B2B0B0 !important;
    font-size: 65px !important;
    display: block;
    font-weight: 400 !important;
    background-size: contain;
    position: absolute;
    top: -25%;
    right: 0;
    opacity: 0.8;
}

.owl-nav .owl-prev.disabled {
    display: none !important;
}

.owl-nav .owl-next.disabled {
    display: none !important;
}

.client_slider_homes {
    position: relative;
    padding: 0px 50px !important;
}

.brand_images {
    display: flex;
    justify-content: center;
}

.brand_images:hover img {
    filter: none;
}


/* produits page csssss */

.banner_main {
    padding-top: 3.2rem;
    position: relative;
}

.banner_main .image_overlay {
    position: relative;
}

.banner_image_route1 {
    background: url(../images/home-banner.jpg);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_image_route2 {
    background: url(../images/main-banner.jpg);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_image_route3 {
    background: url(../images/product_location.png);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_image_route4 {
    background: url(../images/home-banner.jpg);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_image_route5 {
    background: url(../images/main-banner.jpg);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_image_route6 {
    background: url(../images/product_location.png);
    background-size: cover;
    width: 100%;
    height: 310px;
    background-position: top center;
}

.banner_overlay {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(192, 210, 233, 0.9);
}

.breadcrumb_holder {
    position: absolute;
    width: 100%;
    top: 17%;
    transform: translate(-50%, -83%);
    left: 49%;
}

.breadcrumb_holder_wimg {
    position: absolute;
    width: 100%;
    top: 28%;
    transform: translate(-50%, -83%);
    left: 49%;
}

.breadcrumb_list {
    list-style: none;
}

.breadcrumb_list li {
    display: inline-block;
}

.breadcrumb_list>li+li::before {
    content: ">";
    padding: 0 5px 0 5px;
    font-size: 10px;
    line-height: 38px;
}

.breadcrumb_list li a {
    /* color: #4E4D4D; */
    font-size: 10px;
    font-weight: 500;
    line-height: 38px;
}

.breadcrumb_list li a:hover {
    color: #006FB9;
    text-decoration: none;
}

.breadcrumb_list li a i {
    font-size: 12px;
}

.banner_content_holder {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.banner_content .large {
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 0;
    color: #253A68;
    padding-left: 30px;
}

.banner_content .small {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 0;
    color: #006FB9;
    padding-left: 30px;
}

/* .banner_content:before {
    content: ' ';
    height: 100%;
    width: 4px;
    position: absolute;
    top: 0;
} */

.sidebar_nav {}

.sidebar_nav h3 {
    color: #B2B0B0;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 50px;
}

.nav-pills-custom li .nav-link {
    color: #B2B0B0;
    font-size: 16px;
    line-height: 36px;
    font-weight: 600;
    padding: 0rem 1rem 0rem 1.7rem;
    position: relative;
}

.nav-pills-custom li .nav-link.active {
    color: #006FB9;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-custom li .nav-link.active:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #006FB9;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
    /* transition: all 400ms ease 0s; */
}

.custom_tab_content .tab-pane {
    animation-duration: 0.7s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.tab_heading h3 {
    color: #006FB9;
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tab_heading p {
    color: #4E4D4D;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.tab_heading img {
    width: 100%;
}

.listing_products_wrapper {
    margin-top: 10px;
}

.listing_product_items {
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 0px 5px 0px 20px;
    margin-bottom: 15px;
}

.listing_product_image {
    width: 20%;
}

.listing_product_info {
    width: 80%;
}

.listing_product_image img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}

.listing_product_info h4 {
    color: #006FB9;
    font-size: 16px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.listing_product_info h4 span {
    background-color: #006FB9;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
}

.listing_product_info p {
    color: #4E4D4D;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.listing_product_info a {
    color: #006FB9;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

/* services page csssss */

.services_banner_content_holder {
    top: 57%;
    transform: translate(-50%, -45%);
}

.service_banner_image {
    /* background: url(https://sicamefrance.com/Medias_SICAMEFRANCE/CONTROLE%20ET%20MAINTENANCE/catu.jpg); */
    background-size: cover !important;
    width: 100%;
    height: 250px;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}

.banner_overlay_dark {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    /* background: rgba(37, 58, 104, 0.8); */
}

.banner_content .text_light {
    color: #fff;
}

.w-30 {
    width: 30%;
}

.width-50 {
    width: 50%;
}

.banner_paragraph_holder {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}

.banner_paragraph_holder_catalogue {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}

.banner_para p {
    color: #EAEAEF;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}


.banner_para_catalouge p {
    color: #b3b1b1 !important;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}


.breadcrumb_list_light li a {
    color: #FFFFFF;
}

.breadcrumb_list_light li a:hover {
    color: #FFFFFF;
}

.breadcrumb_list_light>li+li::before {
    color: #FFFFFF;
}

.nav-pills-list {
    flex-direction: column;
}

.nav-pills-list li .nav-link {
    color: #B2B0B0;
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    padding: 0rem 1rem 0rem 1.7rem;
    position: relative;
}

.nav-pills-list li .nav-link.active {
    color: #33BAD1;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-list li .nav-link.active:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #33BAD1;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
    /* transition: all 400ms ease 0s; */
}

.services_information_wrapper {
    padding: 0px 100px 0px 0px;
}

.services_content_list {
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 0;
}

.services_content_list li {
    color: #212121;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.services_content_list li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #33BAD1;
}

.services_information_block p {
    color: #212121;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.services_btn {
    margin-top: 2rem;
}

.services_bottom_block {
    margin-top: 60px;
    margin-right: 70px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.services_bottom_block img {
    width: 170px;
    height: 330px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.services_bottom_content {
    padding: 0px 15px;
}

.services_bottom_content p {
    color: #212121;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.services_bottom_content ul {
    list-style: none;
    margin: 1rem 0;
}

.services_bottom_content ul li {
    color: #212121;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 5px;
}

.services_bottom_content ul li span {
    color: #33BAD1;
    font-weight: 500;
}

.services_bottom_content ul li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #33BAD1;
}

.services_bottom_content h4 {
    color: #253A68;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service_tabs_content {
    padding: 20px 30px;
}

.information_wrapper_right {
    padding: 0px 100px 0px 0px;
}

.sicame_academy_services {
    margin-top: 60px;
    margin-left: 70px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.sicame_academy_services img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service_assistance {
    bottom: 15%;
}

.service_assistance_info p {
    margin-bottom: 1.5rem;
}

.contact_assistance {
    border-radius: 8px;
    background-color: #fff;
    padding: 25px 20px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.contact_assistance h1 {
    color: #253A68;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.contact_assistance h1 img {
    width: 180px;
}


/* a props page csssss */

.text_block {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
}

.text_block p {
    color: #253A68;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

.mission_card {}

.mission_card img {
    width: 100%;
}

.misson_content {
    margin-top: 1.5rem;
}

.misson_content h4 {
    color: #253A68;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 2rem;
}

.misson_content p {
    color: #4E4D4D;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 2rem;
}

.misson_content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.misson_content ul li {
    color: #212121;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 5px;
}

.misson_content ul li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #33BAD1;
}

.clients_logo img {
    width: 100%;
}


/* media page catalog page cssss */
.banner_no_image {
    width: 100%;
    height: 310px;
}

.banner_para_dark p {
    color: #4E4D4D;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.catalog_wrapper {
    text-align: center;
}

.catalog_wrapper img {
    width: 100%;
}

.catalog_btn {
    margin-top: 40px;
}

.sticky_sidebar {
    position: sticky;
    top: 120px;
}

.single_tabs {
    margin-bottom: 120px;
}

.single_tabs:last-child {
    margin-bottom: 0;
}

.broucher_row {
    row-gap: 15px;
}

/* .broucher_listing_wrappper{
    margin-top: 10px;
} */
.listing_heading h3 {
    /* color: #006FB9; */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.broucher_listing_container {
    margin-top: 40px;
}

.broucher_listing_container h6 {
    color: #4E4D4D;
    height: 50px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.broucher_listing_container h6:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 5px;
    width: 5px;
    margin-right: 0.5rem;
    /* background-color: #006FB9; */
}

.broucher_listing_item {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.broucher_listing_item img {
    width: 100%;
    margin-bottom: 15px;
}

.broucher_listing_item p {
    color: #4E4D4D;
    font-size: 10px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.broucher_btn {
    text-decoration: none;
}

.broucher_btn:hover {
    text-decoration: underline;
}

.nav-pills-listing li .nav-link {
    color: #B2B0B0;
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    padding: 0rem 1rem 0rem 1.7rem;
    position: relative;
}

/* .nav-pills-listing li .nav-link.active_link1 {
    color: #006FB9;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link1:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #006FB9;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.nav-pills-listing li .nav-link.active_link2 {
    color: #744595;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link2:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #744595;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.nav-pills-listing li .nav-link.active_link3 {
    color: #C7AF8D;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link3:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #C7AF8D;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.nav-pills-listing li .nav-link.active_link4 {
    color: #95C11F;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link4:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #95C11F;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.nav-pills-listing li .nav-link.active_link5 {
    color: #DB0D15;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link5:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #DB0D15;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.nav-pills-listing li .nav-link.active_link6 {
    color: #F7AD1A;
    background-color: transparent;
    transition: all 400ms ease 0s;
}

.nav-pills-listing li .nav-link.active_link6:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #F7AD1A;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
} */

/* .custom_listing_tab_content #one.single_tabs .listing_heading h3 {
    color: #006FB9;
}

.custom_listing_tab_content #one.single_tabs .broucher_listing_container h6:before {
    background-color: #006FB9;
}

.custom_listing_tab_content #two.single_tabs .listing_heading h3 {
    color: #744595;
}

.custom_listing_tab_content #two.single_tabs .broucher_listing_container h6:before {
    background-color: #744595;
}

.custom_listing_tab_content #three.single_tabs .listing_heading h3 {
    color: #C7AF8D;
}

.custom_listing_tab_content #three.single_tabs .broucher_listing_container h6:before {
    background-color: #C7AF8D;
}

.custom_listing_tab_content #four.single_tabs .listing_heading h3 {
    color: #95C11F;
}

.custom_listing_tab_content #four.single_tabs .broucher_listing_container h6:before {
    background-color: #95C11F;
}

.custom_listing_tab_content #five.single_tabs .listing_heading h3 {
    color: #DB0D15;
}

.custom_listing_tab_content #five.single_tabs .broucher_listing_container h6:before {
    background-color: #DB0D15;
}

.custom_listing_tab_content #six.single_tabs .listing_heading h3 {
    color: #F7AD1A;
}

.custom_listing_tab_content #six.single_tabs .broucher_listing_container h6:before {
    background-color: #F7AD1A;
} */


/* aprops page main csssss */
.banner_no_image_content {
    width: 100%;
    height: 150px;
}

.breadcrumb_holder_no_content {
    position: absolute;
    top: 30%;
    transform: translate(-50%, -70%);
    left: 50%;
    width: 100%;
}

.page_wrapper {
    margin-bottom: 30px;
}

.page_data p {
    color: #4E4D4D;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.full_image_block img {
    width: 100%;
    height: 100%;
}

.full_image_block {
    height: 600px !important;
}

.produits-map-block {
    background-color: #253A68;
    padding: 80px 0px;
}

.map_right_image img {
    width: 100%;
}

.map_left_content {
    border-right: 5px solid #68C4D6;
    padding-right: 20px;
}

.map_left_content p {
    color: #F5F6F7;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 30px;
    text-align: right;
}

.map_left_content p:last-child {
    margin-bottom: 0;
}

.produits-text-block {
    background-color: #fff;
    padding: 25px 0px;
}

.produits-text-block .text-block {
    width: 75%;
    margin: auto;
}

.produits-text-block .text-block p {
    color: #B2B0B0;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    text-align: center;
    margin-bottom: 0;
}

.counter_wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 40px 30px;
    margin: 0px 80px;
}

.counter_item {
    text-align: center;
}

.counter_item h1 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #68C4D6;
}

.counter_item p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #B2B0B0;
}

.activities_image img {
    width: 100%;
}

.activities_content {
    padding-left: 40px;
}

.activities_content:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 2px;
    background-color: #33BAD1;
}

.activities_content h1 {
    color: #253A68;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 30px;
}

.activities_content p {
    color: #4E4D4D;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    padding-left: 30px;
}

.text-dark p {
    color: #253A68;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0;
}

.align-right-content {
    text-align: right;
    margin-left: auto;
}

.aprops-holder-para {
    bottom: 0;
}

.container_image_block {
    margin-top: 30px;
    margin-bottom: 30px;
}

.container_image img {
    width: 100%;
}

.content_slider .owl-dot {
    border: 1px solid transparent;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.content_slider .owl-dot.active {
    border: 1px solid #B2B0B0;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.content_slider .owl-dot span {
    background-color: transparent;
    border: 1px solid #B2B0B0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin: auto;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.content_slider .owl-dot.active span {
    background-color: #B2B0B0;
    border: 1px solid transparent;
    width: 12px;
    height: 12px;
    animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-direction: normal;
}

.content_slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    column-gap: 10px;
}


/* Research page csss */
.research_main {
    margin-top: -30px;
}

.research_input {
    position: relative;
}

.w-35 {
    width: 35%;
}

.research_input input {
    width: 100%;
    border: 1px solid #253A68;
    border-radius: 18px;
    background: transparent;
    height: 30px;
}

.research_input input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #253A68;
    background: transparent;
}

.research_input button {
    background-color: transparent;
    border: 0;
    color: #253A68;
    position: absolute;
    right: 15px;
    top: 3px;
}

.research_input label {
    margin-bottom: 0;
    color: #253A68;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.research_input select {
    width: 100%;
    border: 1px solid #253A68;
    border-radius: 18px;
    background: transparent;
    height: 30px;
}

.research_input select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #253A68;
    background: transparent;
}

.research_actions {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-top: 30px;
}

.result_founded_listing {
    margin-top: 50px;
}

.research_listing_container {
    margin-top: 80px;
}

.research_listing {
    margin-bottom: 30px;
}

.research_image img {
    width: 100%;
}

.research_content h1 {
    color: #DB0D15;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

.research_content h4 {
    color: #4E4D4D;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.research_content ul {
    list-style: none;
    margin-bottom: 0;
}

.research_content ul li {
    color: #4E4D4D;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 20px;
}

.research_content ul li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #DB0D15;
    position: relative;
    top: -3px;
}

/* Solution page css */
.solution-page {
    /* margin-top: 7.5rem; */
}

.sol-head-wrap {
    padding: 5rem 2rem;
}

.sol-head-wrap h3 {
    color: #253a68;
    font-weight: 600;
    line-height: 1.357em;
}

.slide-product {
    /* color: #68c4d6; */
    background-color: #fff;
    border-radius: 4px;
    padding: 2.25rem;
    scroll-behavior: smooth;
}



.slide-product .active .active-circle {
    border-radius: 50%;
    height: 12px;
    width: 12px;
    visibility: visible;
}

.slide-product .active-circle {
    background-color: #68c4d6;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    visibility: hidden;
}

.position-button {
    top: 120px;
    left: 0;
}

/* .slide-product .col-md-10 {
    transition: opacity 0.2s ease-in-out, left 0.2s ease-in-out;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 0;
  } */
/* .slide-product .col-md-10.tr-invisible {
    position: absolute;
    opacity: 0;
    left: -20%;
    visibility: hidden;
  } */
.slide-product .btn.btn-outline {
    color: rgba(128, 128, 128, 0.279);
    font-size: 16px;
    font-weight: 500;
}

.slide-product .active .btn.btn-outline {
    color: inherit;
}

.slide-product .slide-head-wrapper {
    margin-bottom: 3rem;
}

.slide-product .slide-head-wrapper h2 {
    font-weight: 510;
    font-size: 25px;
    letter-spacing: 0.8px;
}

.prod-para {
    color: #4e4d4d;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.product-row .col-md-6:first-child {
    padding-bottom: 0.75rem;
    /* border-bottom: 4px solid #68c4d6; */
}

.product-row .col-md-6 img {
    border-radius: 4px;
    mix-blend-mode: multiply;
    /* position: relative;
    top: -2.75rem; */
}

.prod-para span {
    color: var(--Light-Blue-Sicame, #68c4d6);
    font-weight: 600;
    line-height: 20px;
    /* 133.333% */
}

.bottom-para {
    font-size: 12px !important;
}

.power-row {
    margin-top: 8rem;
}

.power-row.flex-row-reverse .para-pad {
    /* padding-left: 6rem; */
}

.para-pad {
    color: #4e4d4d;
    font-size: 14px;
    font-weight: 400;
    /* padding-left: 4.5rem; */
    width: 100%;
    line-height: 20px;
    /* 114.286% */
}

/* .slide-product {
    margin-top: 8rem;
} */

.slide-product .horizon-line {
    width: 80%;
    height: 0px;
    border: 1px solid #68c4d6;
    border-radius: 4px;
}

.desktop-view-padding {
    margin-top: 25px;
}

/* .trusted-slider-wrapper {
    margin-top: 8rem;
} */

.trusted-slider .owl-dots {
    display: flex;
    justify-content: center;
}

.trusted-slider .owl-dot {
    width: 13px;
    height: 13px;
    border: 1px solid #b2b0b0;
    background: transparent;
    border-radius: 50%;

    margin-right: 3px;
    margin-left: 3px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.trusted-slider .owl-dot.active {
    opacity: 1;
    background: #b2b0b0;
}

.top-line {
    width: 58px;
    border: 2px solid #68c4d6;
    margin-bottom: 1.312rem;
}

.trusted-head {
    color: #253a68;
    font-size: 28px;
    font-weight: 700;
    line-height: 26px;
    /* 92.857% */
    margin-bottom: 2.25rem;
}

.trusted-slider .desc-wrapper {
    padding: 1rem 0;
}

.trusted-slider .desc-wrapper p:first-child {
    color: #4e4d4d;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 4px;
}

.desc-wrapper p:last-child {
    color: #4e4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 1px;
}

.kiosk-wrapper {
    /* margin-top: 8rem;
    padding: 1rem 2rem; */
    background-color: #fff;
}

.kiosk-wrapper p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    font-size: 24px;
    color: #253a68;
    font-weight: 400;
    line-height: 32px;
}

.kiosk-wrapper p span {
    /* font-weight: 600; */
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 15px;
}

/* .main-img-wrapper {
    margin-top: 8rem;
} */

.main-text-wrapper {
    margin-top: 8rem;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-text-wrapper h3 {
    padding: 2rem;
    margin-bottom: 3rem;
    color: #253a68;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    /* padding: 0 5rem;
    margin-bottom: 4rem;
    margin-left: 2rem;
    color: #253a68;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px; */
}

.main-text-wrapper p {
    color: #4e4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* .product-card-wrapper {
    margin-top: 8rem;
} */

.product-card-wrapper .img-wrapp img {
    border-radius: 2px;
    width: 100%;
}

.product-card-wrapper .card-titles {
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.product-card-wrapper .card-titles h3 {
    color: #253a68;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.product-card-wrapper .card-desc p {
    color: #4e4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.prodcut-card2-wrapper {
    margin-top: 8rem;
}

.prodcut-card2-wrapper .col-md-2 {
    padding-left: 0;
}

.prodcut-card2-wrapper .col-md-2 .md2-inner-wrapper {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prodcut-card2-wrapper .img-wrapp {
    margin: 9px;
}

.prodcut-card2-wrapper .card-text-wrap {
    text-align: center;
    padding: 1rem 0.2rem;
}

.prodcut-card2-wrapper .card-text-wrap h3 {
    color: #33bad1;
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
}

.prodcut-card2-wrapper .card-text-wrap h4 {
    color: #33bad1;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
}

.prodcut-card2-wrapper .card-text-wrap p {
    color: #4e4d4d;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

/* .prod-info-wrapper {
    margin-top: 8rem;
} */

.prod-info-wrapper .col-md-5 .md5-inner-wrapper {
    border-radius: 8px;
    background-color: #fff;
    padding: 1rem 3rem;
}

.prod-info-wrapper h2 {
    color: #68c4d6;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.prod-info-wrapper .col-md-5 .md5-inner-wrapper img {
    width: 100%;
    max-width: 294px;
}

.prod-info-wrapper .view-more {
    border-radius: 2rem;
    margin: 1rem 0;
    width: fit-content;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
}

.prod-info-wrapper .view-more:hover {
    background-color: #253A68;
}

.view-more:hover a button {
    color: #fff !important;
}


.view-more button {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}


.prod-info-wrapper .texts p {
    color: #000000;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
    font-size: 16px;
}

.md7-inner-wrapper .bot-md7,
.md7-inner-wrapper .top-md7 {
    border-radius: 8px;
    background-color: #fff;
    padding: 1rem 3rem;
}

.img-sliding-wrapper {
    /* margin-top: 8rem; */
}

.img-sliding.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.img-sliding.owl-carousel .owl-item img {
    height: 560px;
}

.img-sliding.owl-carousel .owl-item.active img {
    height: 480px;
    transition: height 0.5s ease-in-out;
}

.img-sliding.owl-carousel .owl-item.active.center img {
    height: 560px;
}

.img-sliding-wrapper .title-sliding {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

.img-sliding-wrapper .title-sliding h3 {
    position: absolute;
    bottom: 4rem;
    left: 1.5rem;
    color: white;
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 1em;
    width: 85%;
}


.img-sliding-wrapper .center .title-sliding h3 {
    bottom: 6.5rem;
}

/* media css  solution page */
@media screen and (max-width: 767px) {
    .position-md-static {
        position: static !important;
    }

    .solution-page {
        /* margin-top: 10rem; */
    }

    .para-pad {
        width: 90%;
    }

    .btns-wrapper {
        overflow: auto;
        gap: 4px;
    }

    /* .btns-wrapper .btn-wrapper {
        border: 1px solid #707070;
        border-radius: 50px;
    } */

    /* .active.btn-wrapper {
        color: #fff;
        border: 1px solid #194a91;
        background-color: #194a91;
    } */

    .btns-wrapper .btn-wrapper .btn {
        padding: 5px 20px !important;
        color: #707070;
        font-size: 18px !important;
        line-height: 20px;
        font-weight: 400;
        white-space: nowrap;
    }

    .sol-head-wrap {
        padding: 5rem 1rem;
        text-align: left !important;
    }

        .detail-custom-padding img {
            width: 100% !important;
            height: 281px;
            object-fit: contain;
        }
}

/* media css  solution page end */
/* Solution page css end */

/* HEADER CSS */
/* .header_menu_item a {
    white-space: nowrap;
} */

.main_wrapper {
    position: relative;
}

.side_block {
    /* position: absolute; */
    position: fixed;
    right: -108px;
    top: 70%;
    transform: rotate(-90deg);
    overflow: hidden;
    visibility: visible;
    animation: fadeIn 0.5s;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px 12px 0px 0px;
}

.side_block.hidden {
    visibility: hidden;
    animation: fadeOut 0.5s;
}

.side_block_item {
    background: #253A68;
    width: 250px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0px 0px;
}

.side_block_item img {
    width: 24px;
    height: 24px;
}

.side_block_item a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-align: right;
    display: block;
    padding-right: 10px;
}

.side_block_item a:hover {
    text-decoration: none;
}

.side_block_data {
    background: #fff;
    position: fixed;
    right: 0;
    bottom: 12%;
    width: 300px;
    visibility: hidden;
    border-radius: 12px 0px 0px 12px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.side_block_data.active {
    visibility: visible;
    animation: fadeIn 0.5s;
}

.side_block_data ul {
    list-style: none;
    margin-bottom: 0;
    padding: 15px 10px 15px 25px;
}

.side_block_data ul li {
    padding-bottom: 20px;
}

.side_block_data ul li:last-child {
    padding-bottom: 0px;
}

.side_block_data li a {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: #B2B0B0;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.side_block_data li a:hover {
    text-decoration: none;
}

.side_block_data li a svg {
    width: 45px;
}


.top-line {
    border: none !important;
}

/* .top-line:before {
    content: "";
    display: block;
    height: 4px !important;
    background-color: #f7c751 !important;
    margin-bottom: 15px !important;
    width: 58px !important;
} */

.btn_theme_outline {
    padding: 10px 20px !important;
    /* color: #253A68!important; */
    border-radius: 50px !important;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    width: auto !important;
}

@media (max-width: 1024px) {
    .btn_theme_outline {
        padding: 10px 12px !important;
        width: 111px !important;
    }

    .header_logo img {
        width: 150px !important;
        max-width: 200px;
    }
}


@media (max-width: 1300px) {
    .header_logo img {
        width: 150px !important;
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .header {
        top: 54px;
        padding: 14px 0px;
    }

    .header_navbar {
        padding: 0 !important;
        height: 65px !important;
    }

    .header_logo img {
        width: 90%;
        max-width: 200px;
    }

    .btn_theme_outline {
        padding: 10px 12px !important;
        width: 100% !important;
    }

    .map-dropdown {
        width: 20% !important;
    }
}


.map-dropdown:hover {
    background-color: #253A68;
    color: white !important;
}

.submenu_box .submenu_items li a {
    font-size: 14px !important;
}

.colors1 .submenu_items li a {
    font-size: 12px !important;
}

.btn_theme_outline:hover {
    background-color: #253A68;
    color: white !important;
}


.contact_menus .hed-con {
    font-size: 16px;
    color: #fff;
    display: block;
    position: relative;
    font-weight: 500;
    line-height: 2 !important;
    text-decoration: none;
    /* padding: 5px 25px; */
    border-radius: 30px;
    width: 100px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.header_logo img {
    width: 90%;
    max-width: 200px;
}

.header_actions {
    margin-left: 40px !important;
}

.search a img {
    margin-right: 6px;
}

.header_menu {
    column-gap: 45px !important;
}

.header_menu_item a {
    font-size: 16px !important;
}

.header_navbar {
    padding: 0 30px !important;
    height: 100px;
}

.flex-header {
    display: flex;
    align-items: center;
    column-gap: 30px;
    /* border: 2px dashed #ddd; */
    margin-bottom: 20px;
    /* padding: 10px 5px; */
}

.flex-header span {
    width: 40%;
}

.header_input {
    /* border: 1px solid #eee; */
    width: 60%;
    padding: 5px;
}

/* .mobile_submenu_list li a {
    padding: 0 !important;
    color: #B2B0B0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 38px !important;
} */

.contact_menu .contact-btn {
    font-size: 16px;
    color: #253A68;
    display: block;
    position: relative;
    font-weight: 500;
    line-height: 0;
    padding: 0;
}

.search .fa-magnifying-glass {
    font-size: 12px;
    /* margin-right: 6px; */
}


.colors1,
.mobile_submenu_list {
    margin-top: 10px;
}

.dropdown_list_mobile a {
    padding: 15px;
}

.colors1 a {
    padding: 0;
}

.contact_menu {
    padding: 15px;
}

/* HEADER CSS */

/* Footer */
.footer_border {
    /* border-bottom: 2px solid #253A68; */
    margin-left: -8px;
    margin-right: -8px;
}

.middle_block,
.footer_image {
    padding-left: 0;
}

.up-rotate {
    rotate: 45deg;
    font-size: 12px;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
}

ul li.dot1 a:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #f8f9fa00;
    border-radius: 50%;
    margin-right: 4px;
}

ul li.dot5 a:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #f8f9fa00;
    border-radius: 50%;
    margin-right: 4px;
}


/* Footer */


/* SLider */

/* SLider */


/* Card Style */
.card_margin {
    margin-top: 40px;
}

/* Card Style */

/* Click Slider */
.solution_item a {
    text-decoration: none;
}

p.btn_link {
    background-color: transparent;
    border: 0;
    /* color: #253A68; */
    border-radius: 50px;
    font-size: 12px;
    line-height: 10px;
    font-weight: 600;
    text-decoration: none;
}

a.btn_link {
    background-color: transparent;
    border: 0;
    color: #253A68;
    border-radius: 50px;
    font-size: 12px;
    line-height: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-border {
    border-radius: 0 !important;
    width: fit-content;
}


/* .separator h1:before {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-bottom: 15px;
} */

.separator .divider:before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin-bottom: 15px;
}

.separator .menu-divider:before {
    content: "";
    display: block;
    width: 302px;
    height: 1.99px;
    margin-bottom: 15px;
}

/* .separator h2:before {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-bottom: 15px;
} */


.custom-btn {
    border-radius: 25px;
}




.btn-auto {
    width: auto !important;
}

/* Click Slider */


/* Home Product Section */
.pro-img-section {
    background: #ffffff;
    border-radius: 8px;
}

.heading {
    font-weight: Bold;
    font-size: 16px;
    color: #253A68 !important;
    padding: 5px 0px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.3em;
    max-height: calc(1.3em * 2);
    height: 42px;
    margin: 15px 0px 0px;
}

.content-para {
    font-size: 10px;
    color: #B2B0B0 !important;
    font-weight: 400;
    padding: 8px 0;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 10px;
    max-height: calc(12px * 3);
    height: 46px;
}


.product-btn {
    /* color: #253A68 !important; */
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0px 10px;
    padding: 0;
    border-radius: 0;
}

.product-btn:hover {
    /* border-bottom: 1px solid #243865; */
    border-radius: 0;
}

.img-box {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}


.img-content {
    padding-bottom: 0 !important;
}

.img-box img {
    width: auto;
    height: 100%;
    display: block;
}

.custom-padding {
    padding-right: 10px;
    padding-left: 10px;
}

/* Home Product Section */


/* Breadcrumb Css without Image */
.wo-img li a {
    color: #4E4D4D;
}

.wot-img {
    color: #253A68;
}

.woimg>li+li::before {
    color: #253A68;
}

/* .breadcrumb_list li a:hover {
    color: #253A68;
} */


.service_banner_woimage {
    width: 100%;
    height: 90px;
}

/* Breadcrumb Css without Image */



/* Breadcrumb Css Image */
.banner_overlay_dark {
    background: rgba(37, 58, 104, 0.8);
}

/* Breadcrumb Css Image */


/* img slider */
/* All images are blurred by default */
.img-sliding.owl .owl-item {
    filter: brightness(0.4);
    transition: filter 0.3s ease;
    /* smooth transition */
}

/* Remove blur when hovering on the image */
.img-sliding.owl .owl-item:hover {
    filter: brightness(1);
}

/* img slider */


/* Hide every slide except the first one */
.product-slide-content:not(:first-of-type) {
    display: none;
}

span {
    font-family: "Metropolis", sans-serif !important;
}

.btn-wrapper .btn {
    width: 220px;
    display: flex;
    justify-content: flex-start;
}


.detail-custom-padding {
    padding-left: 0;
}

.detail-custom-padding img {
    width: 449px;
    height: 281px;
    object-fit: contain;
}


ul {
    margin-left: 14px;
}

.separator h1 {
    line-height: unset;
    padding-bottom: 1rem;
}

.lineH h1 {
    line-height: 30px !important;
}


.short-details-img img {
    max-width: 100%;
    width: 185px;
    height: 131px;
}

.short-img img {
    max-width: 100%;
}

.prod-info-wrapper .info-desc p,
li {
    font-size: 16px;
    color: #000000;
}


.md5-inner-wrapper {
    flex-direction: column;
}


.prod-info-wrapper .col-md-5 .md5-inner-wrapper {
    padding: 1rem 1rem 1rem 3rem;
}

.text-md h1 {
    margin-bottom: 10px;
}

.top-line {
    margin-bottom: 0 !important;
}

.img-wrapp img {
    max-width: 100%;
}


.designs:hover {
    color: #fff !important;
}

.linki {
    text-align: center;
}

.linki a {
    text-decoration: none;
    color: #253a68 !important;
}


.product-slider .content-box p {
    margin-bottom: 0;
}

.product-slider .product-btn {
    margin: 5px 0px 5px;
}

.product-slider .img-box {
    height: 135px;
}

.product-slider .img-box img {
    object-fit: contain;
}

.product-slider .img-box {
    margin-bottom: 20px;
}

.conditional-btn {
    font-size: 14px;
    font-weight: normal;
}

.kiosk-wrapper p {
    margin-bottom: 0;
}

.simple_card_padding {
    padding-left: 0;
    padding-right: 0;
}

.trusted-slider .owl-nav span {
    display: none;
}


.trusted-slider .owl-dots.disabled {
    display: block;
}

.trusted-slider .owl-dot {
    border: 1px solid #b2b0b0 !important;
}

.trusted-slider .owl-dot span {
    display: none !important;
}

.trusted-head {
    font-size: 24px !important;
}

.downImg1 {
    margin-bottom: .5rem;
}


.counter_wrapper {
    margin: 0px 80px 100px;
}

.counter_item h1 {
    margin-bottom: 0 !important;
    color: #243865 !important;
}

.counter_item p {
    color: #000 !important;
}

.map_left_content {
    border-right: none;
    position: relative;
    padding-right: 0;
}

.map_left_content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

.map_left_content p {
    font-size: 22px !important;
    line-height: 28px;
    margin-top: 20px;

}

.map_left_content {
    position: relative;
}

.map_left_content .divider::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    /* place it on the right edge */
    width: 5px;
    /* actual line thickness */
    height: 100%;
    /* match parent’s height */
    background-color: #68C4D6;
}

.map-bottom-text {
    color: #b3b1b1;
}


.disc {
    background: #253a68;
    padding: 14px 35px;
    font-size: 27px;
    color: #fff;
    border-radius: 10px;
    margin: 70px auto 0;
    display: inline-block;
}

.disc:hover {
    color: #fff;
    text-decoration: none;
}

.graphtext p {
    font-size: 23px !important;
    color: #253a68 !important;
    font-weight: 500;
}

.banner_content:before {
    background: #33BAD1 !important;
}



.graphtext .text-divider::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -20px;
    width: 18px;
    height: 18px;
    background-color: #68C4D6;
    border-radius: 50%;
}

.mail-back {
    padding: 10px;
    border-radius: 25px;
    width: fit-content;
}

.mail-back a {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.map-other a {
    font-size: 14px;
    color: #000000;
}

.map-other {
    font-size: 14px;
    color: #000000;
}

.contact-form input {
    font-size: 14px;
    color: #263b69;
}

.author_block {
    position: relative;
}


.product-list .sub-menu-item.active a {
    color: #253a68 !important;
}


.product-list .sub-menu-item a {
    color: #a3abbf !important;
}


.product-list .sub-menu {
    margin-left: 18px;
}


a:focus,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    /* in case some browsers use shadow */
}


/* SLIDER-UPDATE */
#demos .owl-carousel .item {
    height: auto;
    background: transparent;
    padding: 1rem;

}

#demos {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.url {
    width: 100%;
    background: transparent !important;
    border: 0 !important;
    padding: 0;
    display: inline-block;
    margin: 0 10px 0 0;
}

.url.current {
    /* border: 2px solid #ccc !important; */
}

.url img {
    width: 100%;
}

.scroll-content {
    display: flex;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-bottom: 55px;
}

.scroll-content a {
    flex: 0 0 auto;
}

.scroll-button {
    position: absolute;
    top: 35px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-family: 'Roboto', sans-serif !important;
    color: #B2B0B0 !important;
    font-size: 65px !important;
    cursor: pointer;
    color: #B2B0B0 !important;
    padding: 0;
    z-index: 1;
}

.scroll-button:hover,
.scroll-button:active,
.scroll-button:focus {
    background-color: transparent;
    color: #B2B0B0 !important;
}

.heading-wrapper {
    padding-left: 115px;
    margin-bottom: 1rem;
}

#scroll-left {
    left: -20px;
}

#scroll-right {
    right: -31px;
}

.scroll-content a:focus {
    outline: 0;
}

.current img {
    filter: grayscale(0%);
    width: 163px;
    mix-blend-mode: multiply;
    border: none;
}

.client-slider {
    margin-bottom: 70px;
}

.client_logos img {
    width: 100% !important;
}

.content_slider .owl-dots {
    margin-top: 40px !important;

}


.content_slider .owl-dot {
    border: 1px solid transparent !important;
    display: flex !important;
}

.content_slider .owl-dot span {
    background-color: transparent !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin: auto !important;
}

.content_slider .owl-dot.active {
    border: 1px solid #B2B0B0 !important;
}

.content_slider .owl-dot.active span {
    background-color: #B2B0B0 !important;
    width: 12px !important;
    height: 12px !important;
}

.client-slider .owl-stage-outer .owl-item.active.current .item .brand_images img {
    filter: none;
}

.brand_images img {
    height: 70px !important;
}

.owl-nav button.owl-prev {
    font-family: 'Roboto', sans-serif !important;
    color: #B2B0B0 !important;
    font-size: 65px !important;
    display: block;
    font-weight: 400 !important;
    background-size: contain;
    position: absolute;
    top: -25%;
    left: 0;
    opacity: 0.8;
}

.owl-nav button.owl-next {
    font-family: 'Roboto', sans-serif !important;
    color: #B2B0B0 !important;
    font-size: 65px !important;
    display: block;
    font-weight: 400 !important;
    background-size: contain;
    position: absolute;
    top: -25%;
    right: 0;
    opacity: 0.8;
}

.owl-nav .owl-prev.disabled {
    /* display: none !important; */
}

.owl-nav .owl-next.disabled {
    /* display: none; */
}

.owl-nav .owl-prev,
.owl-nav .owl-next:hover {
    background: transparent !important;
}

.client-slider {
    position: relative;
    padding: 0px 50px !important;
}

#sync2 {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* .separator h1:before {
            background: #33BAD1 !important;
        } */

.list_block ul {
    list-style: none;
}

.list_block ul li {
    color: #212121;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 5px;
}

.list_block ul li:before {
    display: inline-block;
    content: '';
    border-radius: 50%;
    height: 3px;
    width: 3px;
    margin-right: 0.5rem;
    background-color: #33BAD1;
}

/* Sanjay's Style start */
.heading-wrapper {
    padding-left: 115px;
    margin-bottom: 1rem;

}

.heading-wrapper h1 {
    line-height: 1;
}

.img-height {
    height: auto;
}

.content_slider .col-md-4.mobile_container {
    margin-top: 0.75rem;
}

.content_slider .information_wrapper h1 {
    line-height: 1.75rem;
}

h1 {
    line-height: 26px;
    font-size: 24px;
}

/* Sanjay's Style ends here */
/* SLIDER-UPDATE */

.contact-select select {
    padding-left: 12px;
}


.header-search {
    border: none;
    width: 100%;
}

.search {
    width: 150px;
}

.header-search:focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}

.media_frame {
    width: 80%;
    border-radius: 10px;
}


/* PRODUCT SECTION CSS */
.research_search button {
    background: #33BAD1;
    border-radius: 0;
}

.research_heading {
    color: #B2B0B0;
    font-size: 18px !important;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize !important;
}

.btn-feature-reverse {
    background-color: #253A68 !important;
}

.btn-feature-reverse {
    height: 38px !important;
    border-radius: 0 !important;
    line-height: 38px !important;
}

.btn-gray span {
    width: 100% !important;
    height: 38px !important;
    line-height: 38px;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.btn-featured {
    padding: 0;
}

.btn-gray {
    background-color: #B2B0B0 !important;
    height: 38px;
    border-radius: 0;
}

.btn-featured span {
    color: #fff;
}

.mt-10 {
    margin-top: 10px !important;
}

.search-global {
    margin-bottom: 30px;
}

.space-research {
    margin-top: 28px;
}

.mt-20 {
    margin-top: 20px !important;
}

.research_search {
    border: 1px solid #EAEAEF;
}

.research_tab_head {
    color: #253A68;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
}

.research_para p {
    color: #B2B0B0;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

.research_btn {
    background-color: #006FB9 !important;
    border: 1px solid transparent !important;
    border-top: 2px solid transparent !important;
    border-radius: 0;
}


.mb-10 {
    margin-bottom: 10px !important;
}

.database {
    font-size: 12px;
    letter-spacing: normal;
    margin: 0 0 20px 0;
}

.search .btn {
    background: none;
}


.list-group-item.active a {
    background-color: #E5E5F8;
    border-radius: 8px;
}

/* Only non-active list items */
.list-group-item:not(.active) a span {
    color: #b3b1b1 !important;
    font-size: 19px;
}

.sidebar_li .sub-menu-ul li.active a span {
    font-size: 16px;
}


/* Only non-active submenu items */
.sidebar_li .sub-menu-ul li:not(.active) a span {
    color: #969db0 !important;
    /* gray color for non-active */
    font-size: 16px;
}

.arrowpro {
    font-size: 16px;
}

.sidebar_li.active a span {
    font-size: 19px;
    font-weight: 500;
}


.sub-menu-ul li a {
    background-color: transparent !important;
    color: #969db0 !important;
}

div.side-nav ul.list-group-bordered>li>a {
    border: none;
}

.submenu_list {
    padding: 20px 10px 0px !important;
}

/* When active */


.sub-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-menu-ul li {
    position: relative;
    padding-left: 25px;
    /* space reserved for dot for ALL li */
}

/* Default link style */
.sub-menu-ul li a.loadProducts {
    display: inline-block;
    color: #253A68;
    text-decoration: none;
}

/* Dot visible only on active */
.sub-menu-ul li a.loadProducts.active:before {
    content: "•";
    font-size: 33px;
    position: absolute;
    left: 0;
    top: 8px;
}


.sub-menu-ul li a {
    padding-left: 25px !important;
}

#accordiongsl {
    margin-left: 0 !important;
}

.side-nav h4 {
    color: #253A68;
}


.prod-inner-heading {
    font-size: 16px !important;
    color: #253A68 !important;
}

.sortdesc {
    font-size: 14px;
    min-height: 63px !important;
}

.default-color {
    font-size: 16px;
    width: fit-content !important;
    padding: 0;
}

.default-color:hover {
    width: fit-content !important;
    padding: 0;
}

/* PRODUCT SECTION CSS */

.fa-linkedin-in {
    color: white;
}

.about-number {
    font-size: 48px;
    color: #33BAD1;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -6%;
    text-align: center;
    vertical-align: middle;
}

.about-para {
    color: #b3b1b1;
    font-size: 16px;
    font-weight: 700;
    padding: 0 35px;
    font-style: Bold;
    margin-top: 15px;
}

.banner_content .wot-img {
    position: relative;
    padding-left: 15px;
    /* space for the line */
}

.banner_content .wot-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.22em;
    height: auto;
    width: 4px;
    /* thickness of the vertical line */
    background-color: #32b9d1;
    /* line color */
}


.banner_content .text_light {
    position: relative;
    padding-left: 15px;
    /* space for the line */
}

.banner_content .text_light::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.13em;
    bottom: 0.22em;
    height: auto;
    width: 4px;
    /* thickness of the vertical line */
    background-color: #32b9d1;
    /* line color */
}

.pagination .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #253A68;
}


.page-item .page-link {
    line-height: 16px !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    border-radius: 50% !important;
    border: 1px solid #253A68 !important;
    margin-right: 11px !important;
}

.pagination>li>a {
    color: #253A68;
}


/* Catalouge Css */
.catalouge-heading {
    font-size: 30px;
    color: #253A68;
    margin-top: 15px;
}

.modal-close-btn {
    padding: 5px;
    border: 1px solid #253A68;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #253A68;
}

.close-icon {
    color: #253A68;
}

.custom-modal-content {
    border-radius: 30px;
}

.custom-label {
    font-size: 12px;
    color: #253A68;
}

.champsob {
    font-size: 10px;
    color: #7c88a3;
}

.close1 {
    border: none;
    background-color: transparent;
}


.custom-documentation-heading {
    color: #253A68;
}

.main-doc-button a {
    color: #253A68;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    /* reserve space */
}

.main-doc-button a:hover {
    color: #253A68;
    font-weight: bold;
    border-bottom: 1px solid #253A68;
}

/* Catalouge Css */


div.shop-item {
    margin-bottom: 35px !important;
    height: 310px;
}

.prod-inner-heading {
    height: 25px;
}

.downImg1 {
    width: 100%;
}


.pro-detail-title-container {
    margin-top: 45px;
}

.removeTitle {
    display: none;
}

.about-us .breadcrumb_holder {
    top: 45% !important;
}

.submenu_list .row {
    justify-content: space-around;
}

.sub-menu-ul .list-group-item {
    padding: .5rem 1.25rem !important;
}

.sub-menu-ul .list-group-item a {
    padding-left: 0px !important;
}


@media (min-width: 1200px) {
    .container {
        width: 1140px;
        max-width: 100%;
    }
}

.owl-item .item img {
    border-radius: 4px;
}

.shop-price-item {
    line-height: 1.2;
}

/* Gray when NOT active */
.btn-wrapper:not(.active) button p span {
    color: gray !important;
}