* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
    font-display: swap;
}

body {
    /* font-family: "Heebo", sans-serif; */
    /* font-family: "Work Sans", sans-serif; */
    font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

li {
    list-style: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* padding: 0 2rem; */
    background: #fff;
    box-shadow: 0px 17px 7px rgba(5, 82, 163, 0.01),
        0px 9px 6px rgba(5, 82, 163, 0.02), 0px 4px 4px rgba(5, 82, 163, 0.03),
        0px 1px 2px rgba(5, 82, 163, 0.04);
    /* height: 60px; */
    z-index: 1000;
}

header a {
    text-decoration: none;
    text-transform: none;
    color: #262f39;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    transition: 0.4s ease-in-out;
}
.justify-center {
    display: inline-flex;
    justify-content: center;
}
.navbar {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    /* align-items: center; */
    justify-content: space-between;
    padding: 0px 16px;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

header .fa-bars {
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    display: none;
}

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

.navbar .nav_buttons_holder,
.navbar .header_buttons,
.nav_buttons_holder {
    display: flex;
    align-items: normal;
    gap: 16px;
}

.nav_buttons_holder.center {
    justify-content: center;
    flex-wrap: wrap;
}

.navbar .nav_buttons_holder.align-center {
    align-items: center;
}

.hamburg_btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.navbar .logo {
    padding: 16px 0;
}

.navbar .nav-links .nav_buttons_holder,
.hamburg_btn {
    display: none;
}

.navbar .header_buttons .sign_in {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-right: 1px solid #ddd;
}

.padding-20 {
    padding: 20px 0;
}
.pl-0 {
    padding-left: 0 !important;
}
.padding-40 {
    padding: 40px 0;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-40 {
    margin-top: 40px;
}
.mb-40 {
    margin-bottom: 40px;
}

.img_fluid {
    max-width: 100%;
    margin: 0 auto;
}

.main_semibold_heading {
    font-size: 24px;
    font-weight: 600;
    color: #0974F2;
    margin-bottom: 10px;
}

.main_section {
    padding: 40px 0;
}

.main_section .small_heading {
    font-size: 16px;
    font-weight: 600;
    color: #253053;
    margin-bottom: 20px;
}

.sub_content_heading {
    font-size: 20px;
    color: #636B83;
    margin-bottom: 64px;
}

.sub_content_heading.mb-0 {
    margin-bottom: 0;
}

.main_h4_heading {
    font-size: 20px;
    color: #253053;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
}

.lg_block {
    display: block;
}

.lg_none {
    display: none;
}

.primary_btn {
    background: #0974F2;
    color: #fff;
    border: 1px solid #0974F2;
}

.primary_outlined_btn {
    background: #fff;
    color: #0974F2;
    border: 1px solid #0974F2;
}

.white_btn {
    background: #fff;
    color: #0974F2;
    border: 1px solid #fff;
}

.white_outlined_btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.container_holder {
    max-width: 1360px;
    padding: 0 16px;
    margin: 0 auto;
}

.navbar .header_buttons {
    padding: 16px 0;
}

.nav-links ul {
    display: flex;
    height: 100%;
}

.nav-links li.list_holder {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    padding-right: 35px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.nav-links li.list_holder.dropdown {
    position: relative;
}

.nav-links .dropdown a.main_anchor::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 1px solid #000;
    border-width: 0 0 1px 1px;
    transform: translateY(-50%) rotate(-45deg);
}

.nav-links li.list_holder:hover {
    border-color: #0974F2;
}

.nav-links .dropdown:hover a.main_anchor {
    color: #0974F2;
}

.nav-links .dropdown:hover a.main_anchor::after {
    border-color: #0974F2;
}

.nav-links .dropdown:hover .dropdown_content {
    display: block;
}

.dropdown_content {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #E6E6E6;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.dropdown_content .mega_menu {
    max-width: 1170px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.dropdown_content .mega_menu .left_holder {
    width: 376px;
    padding: 32px 10px 10px 10px;
}

.dropdown_content .mega_menu .right_holder {
    width: calc(100% - 376px);
    padding: 32px 10px 10px 10px;
}

.dropdown_content .mega_menu .right_holder .sub_menu_list_holder {
    display: none;
}

.dropdown_content .mega_menu .right_holder .sub_menu_list_holder.tab_btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dropdown_content .mega_menu .left_holder,
.light_blue_bg {
    background: #F4F7FA;
}

.bg_white {
    background: #fff;
}

.light_offwhite_bg {
    background: #F6FFFF;
}

.dropdown_content .mega_menu .left_holder .heading_holder {
    font-size: 14px;
    font-weight: 400;
    color: #8B9CB0;
    padding: 6px 10px;
}

.dropdown_content .mega_menu .sub_menu_holder.tab_content {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.dropdown_content .mega_menu .sub_menu_holder.tab_content .each_ul_holder {
    width: 50%;
    display: block;
    padding: 22px;
}

.dropdown_content .mega_menu .sub_menu_holder.tab_content .each_ul_holder:not(:last-child) {
    border-right: 1px solid #DBE1E8;
}

.dropdown_content .mega_menu .sub_menu_holder {
    display: block;
}

.dropdown_content .mega_menu .sub_menu_holder.hidden {
    display: none;
}

.no_tabs_holder .dropdown_content .mega_menu .sub_menu_holder.hidden {
    display: flex;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder,
.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    font-size: 17px;
    font-weight: 400;
    color: #253053;
    cursor: pointer;
}

.dropdown_content .mega_menu .sub_menu_holder.tab_content .sub_menu_list_holder {
    padding: 0;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder.active,
.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder:hover,
.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder:hover {
    color: #0974F2;
    border-bottom: none;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-bottom: none;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder {
    align-items: flex-start;
    padding: 0;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder:not(:last-child) .anchor_content_holder {
    margin-bottom: 29px;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder:hover .list_content_holder .heading {
    color: #0974F2;
    border-bottom: none;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder img {
    width: 22px;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder .list_content_holder {
    width: calc(100% - 32px);
    /* max-width: 222px; */
    text-align: left;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder .list_content_holder .heading {
    font-size: 14px;
    font-weight: 600;
    color: #636B83;
    padding-bottom: 10px;
}

.dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder .list_content_holder .content {
    font-size: 12px;
    font-weight: 400;
    color: #636B83;
}

.dropdown_content .mega_menu .left_holder .demo_img_holder {
    padding: 6px 10px;
}

.dropdown_content .mega_menu .left_holder .demo_img_holder img {
    width: 100%;
    border-radius: 6px;
}

.dropdown_content .mega_menu .left_holder .watch_demo_link {
    font-size: 14px;
    font-weight: 400;
    color: #0974F2;
    padding: 6px 10px;
}

.whatsapp_clickable_holder {
    display: inline-block;
    position: fixed;
    right: 0;
    top: 320px;
    z-index: 100000;
}

/* .popover_banner span.cursor {
    display: inline-block;
    background-color: transparent;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
} */
.popover_banner span.cursor.typing {
    animation: none;
}

.popover_banner .typed-text {
    position: relative;
    display: inline-block;
    text-align: left;
    min-height: 57px;
}

.popover_banner .typed-text::after {
    content: '';
    width: 3px;
    height: 100%;
    background: #0974f2;
    animation: blink 1s infinite;
    position: absolute;
    top: 0;
    right: -5px;
}

@keyframes blink {
    0% {
        background-color: #0974f2;
    }

    49% {
        background-color: #0974f2;
    }

    50% {
        background-color: #0974f2;
    }

    99% {
        background-color: #0974f2;
    }

    100% {
        background-color: #0974f2;
    }
}

.main_row_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.row_reverse_holder {
    flex-direction: row-reverse;
}

.main_row_holder .left_holder {
    width: calc(50% - 15px);
}

.main_row_holder .right_holder {
    width: calc(50% - 15px);
}

.home {
    /* max-height: 97.5vh; */
    padding: 40px 0;
    background: url("../image/banner.webp") no-repeat;
    background-size: cover;
    background-position: center;
}

.banner_text {
    color: #0974f2;
}

.left_banner {
    width: calc(55% - 10px);
}

.right_banner {
    width: calc(45% - 10px);
}

.banner_buttons {
    margin-top: 40px;
}

.left_banner .sub_banner_text,
.left_banner .typed-text {
    color: #0974f2;
    font-size: 48px;
}

.content .popover_banner {
    margin-top: 10px;
    margin-bottom: 20px;
}

.content ul {
    list-style-type: none;
}

.content ul li {
    line-height: 2;
    display: flex;
    align-items: center;
}

.content .left_banner li h5 {
    font-weight: 600;
    font-size: 18px;
    color: #262f39;
}

.content .left_banner ul li span {
    color: #808080;
}

.content ul li::before,
.project_management ul li::before,
.main_index_page ul li::before {
    content: "";
    background-color: #29cc59;
    display: inline-block;
    /* margin-left: 0em; */
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.main_heading_one {
    color: #253053;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.main_heading_two {
    color: #253053;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 48px;
}

.main_heading_three {
    font-weight: 600;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 17px;
}

.main_heading_four {
    color: #253053;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.main_heading_five {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.banner_section {
    margin-top: 75px;
}

.subpage_banner_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 542px; */
    background-color: #F4F7FA;
    background-image: url('../image/sub-banner.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 50px 0;
    margin-top: 75px;
}

.subpage_banner_section .sub_heading_content {
    font-size: 18px;
    color: #636B83;
    margin-bottom: 34px;
}

.subpage_banner_section .nav_buttons_holder,
.three_card_row_holder+.nav_buttons_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.subpage_banner_section .muted_txt {
    font-size: 16px;
    color: #636B83;
}

.subpage_banner_section.operational_banner {
    padding-bottom: 170px;
}

.management_nav {
    overflow-x: auto;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 41px 16px rgba(161, 183, 206, 0.01),
        0px 23px 14px rgba(161, 183, 206, 0.05),
        0px 10px 10px rgba(161, 183, 206, 0.09),
        0px 3px 6px rgba(161, 183, 206, 0.1);
    border-top: 1px solid #c6dafd;
    border-bottom: 1px solid #c6dafd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 5px;
    gap: 10px;
}

.management_nav a {
    color: #515c69;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    width: auto;
}

.management_nav a:hover {
    border-bottom: 3px solid #0974f2;
    color: #0974f2;
}

.management_nav a.active {
    border-bottom: 3px solid #0974f2;
    color: #0974f2;
}

.text_grey {
    text-align: left;
    color: #253053;
}

.ordered_list_content_holder ul li {
    margin-bottom: 10px;
    color: #464d62;
    position: relative;
    padding-left: 15px;
}

.ordered_list_content_holder .text_grey li::before {
    content: "";
    background-color: #29cc59;
    display: inline-block;
    /* margin-left: 0em; */
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 8px;
}

.right_holder_list_view .ordered_list_content_holder .text_grey li::before {
    height: 8px;
    width: 8px;
}

.right_holder_list_view .ordered_list_content_holder ul li {
    margin-bottom: 20px;
    color: #464d62;
}

.our_story_content ul li {
    margin-bottom: 22px;
}

.teamtrace_toolCard {
    background: url("../image/toolCard.webp") no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.toolCard_text {
    padding-left: 60px;
}


.workCulture {
    background: #dfeeff;
}

.work_culture_content {
    display: block;
    text-align: center;
    padding: 40px 0px;
}

/* .work_culture_head h2 {
    font-size: 42px;
  } */

.work_culture_head span {
    color: #0974f2;
}

.work_culture_head p {
    color: #000;
    font-size: 13px;
}

.work_culture_cards {
    margin: 44px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work_culture_cards .work_culture_card {
    height: 120px;
    width: 280.75px;
    padding: 16px 10px;
    background: #ffffff;
    border: 1px solid #dfeeff;
    box-shadow: 0px 15px 6px rgba(35, 93, 209, 0.01),
        0px 8px 5px rgba(35, 93, 209, 0.05), 0px 4px 4px rgba(35, 93, 209, 0.09),
        0px 1px 2px rgba(35, 93, 209, 0.1);
    border-radius: 6px;
    gap: 10px;
}

.work_culture_cards .work_culture_text {
    font-size: 16px;
    font-weight: 600;
    color: #515c69;
}

.work_culture_content .banner_buttons {
    margin-top: 10px;
}

.daily_challenges_content,
.main_div {
    display: block;
    text-align: center;
}

.daily_challenges_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;
}

.daily_challenges_header .each_daily_challenge_header {
    width: 33.33%;
    font-size: 18px;
    text-align: center;
}

.daily_challenges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.daily_challenges .each_daily_challenge_body {
    width: calc(33.33% - 14px);
    text-align: center;
}

.daily_challenges .each_daily_challenge_body img {
    margin: 0 auto;
}

.daily_challenges .problem_structure,
.daily_challenges .analyzes_structures,
.daily_challenges .solution_structure {
    /* margin-top: 30px; */
    display: flex;
    align-items: center;
}

.daily_challenges ._problems_card {
    padding: 16px 10px;
    gap: 10px;
    width: 100%;
    height: 80px;
    display: flex;
    /* align-items: center; */
    background: #ffffff;
    border-bottom: 1px solid #c7d1de;
    box-shadow: 0px 27px 11px rgba(128, 163, 234, 0.01),
        0px 15px 9px rgba(128, 163, 234, 0.05),
        0px 7px 7px rgba(128, 163, 234, 0.09), 0px 2px 4px rgba(128, 163, 234, 0.1);
    border-radius: 8px;
}

._problems_card .card_text {
    display: flex;
    align-items: center;
}

._problems_card span {
    font-size: 14px;
}

.daily_challenges ._problems_card:not(:first-child) {
    margin-top: 14px;
}

.daily_challenges ._problems_card:hover {
    background: #fffcec;
}

.analyzes_structure .analyzes_body_center {
    background: url("../image/Ellipse-248.webp") no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 256px;
    width: 253px;
}

.analyzes_structure .analyzes_outer_layer {
    background: #2cacdb;
    height: 219px;
    width: 219px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analyzes_structure .analyzes_inner_layer {
    background: #0974f2;
    height: 208px;
    width: 207px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analyzes_structure .analyzes_center {
    /* background: #E2FFE3; */
    background: rgba(255, 255, 255, 0.2);

    height: 146px;
    width: 145px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analyzes_structure ._analyzes_logo {
    background: #fff;
    height: 113px;
    width: 113px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.traceable_result {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 64px;
}

/* Traceable Result */

/* .content_home_header h2, .management_content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #262F39;
  } */

.traceable_result_cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.traceable_card {
    background: #ffffff;
    border: 1px solid #e4f0ff;
    box-shadow: 0px 14px 6px rgba(80, 119, 159, 0.01),
        0px 8px 5px rgba(80, 119, 159, 0.05), 0px 4px 4px rgba(80, 119, 159, 0.09),
        0px 1px 2px rgba(80, 119, 159, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 8px 10px;
    gap: 20px;
    width: calc(33.33% - 8px);
}

.traceable_card p,
.traceable_small_card p {
    font-size: 12px;
}

.traceable_small_card {
    width: calc(25% - 8px);
    background: #ffffff;
    border: 1px solid #e4f0ff;
    box-shadow: 0px 14px 6px rgba(80, 119, 159, 0.01),
        0px 8px 5px rgba(80, 119, 159, 0.05), 0px 4px 4px rgba(80, 119, 159, 0.09),
        0px 1px 2px rgba(80, 119, 159, 0.1);
    border-radius: 10px;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    padding: 8px 10px;
    gap: 20px;
    margin-top: 20px;
}

.home_page_blue_full_BG {
    background: url("../image/SimplifyBg.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.simplify_strategy .main_heading_two {
    color: #ffffff;
}

.simplify_strategy .main_heading_two,
.features .main_heading_two,
.about .main_heading_two {
    margin: 0px;
}

.ourStory .main_heading_two,
.empowering .main_heading_two,
.clientSuccessStories .main_heading_two {
    margin-top: 0px;
}

.simplify_strategy .text__para {
    font-size: 16px;
    color: #ffffff;
    margin-top: 14px;
    margin-bottom: 14px;
}

.cstm_download_button {
    padding: 15px 32px;
    background: transparent;
    border-radius: 8px;
    gap: 10px;
    color: #fff;
    border: 1px solid #ffffff;
    /* font-size: 17px; */
    display: inline-block;
}

.cstm_download_button span {
    font-size: 17px;
    font-weight: 600;
}

.header_in_card {
    color: #fff;
    display: block;
    text-align: center;
    font-size: 36px;
}
.header_in_card.text-lg-left {
    text-align: left;
}
.content_inside {
    padding: 30px;
}

.right_outcome {
    display: flex;
    /* align-self: center; */
    justify-content: space-between;
    width: calc(50% - 35px);
    flex-wrap: wrap;
}

.right_outcome p {
    padding: 20px 0px;
    font-size: 20px;
    color: #ffffff;
}

.right_outcome .main_heading_two {
    color: #ffffff;
    margin: 0px;
    font-size: 30px;
}

.left_outcome {
    width: calc(50% - 35px);
}

.left_outcome .left_outcome_content {
    padding: 12px 0px;
}

.right_outcome {
    display: flex;
    /* align-self: center; */
    justify-content: space-between;
    width: calc(50% - 35px);
    flex-wrap: wrap;
}

.right_outcome p {
    padding: 20px 0px;
    font-size: 20px;
    color: #ffffff;
}

.our_story_content ul li::before {
    content: "";
    background-color: #0974f2;
    display: inline-block;
    /* margin-left: 0em; */
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 10px;
}

.text__para {
    color: #253053;
    font-weight: 400;
    font-size: 16px;
    display: block;
    text-align: left;
    gap: 18px;
    margin-bottom: 28px;
}

/* 464D62 */
.ourInnovation .main_heading_two {
    margin: 0px;
}

.ourInnovation .text__para {
    margin-bottom: 48px;
}

.see_more_link {
    padding-top: 28px;
}

.see_more_link a {
    color: #0974f2;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.project_management .project_management_right_side li h5 {
    font-size: 18px;
    color: #515c69;
}

.dotted_image {
    position: absolute;
    right: 35%;
}

/* About */

.about {
    padding: 40px 0px;
    background: url("../image/Aboutbanner.webp") no-repeat;
    background-size: cover;
    background-position: center;
}

.banner_center_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about_technology_image {
    margin: 18px 0px;
}

.client_success_stories {
    background: url("../image/blue_BG_strategy.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 30px 30px;
    color: white;
}

.main_sub_heading {
    color: #0974f2;
    font-weight: 500;
    font-size: 20px;
}

.right_holder .text_highlight {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #253053;
}

.get_more_time {
    background: url("../image/moreTime.webp");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.get_more_time_content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
}

.get_more_time_content .main_heading_two {
    margin-left: 22px;
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.left_cards_holder {
    width: calc(50% - 30px);
}

.success_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px;
}

.success__card {
    background: #ffffff;
    border: 1px solid #dfeeff;
    box-shadow: 0px 15px 6px rgba(35, 93, 209, 0.01),
        0px 8px 5px rgba(35, 93, 209, 0.05), 0px 4px 4px rgba(35, 93, 209, 0.09),
        0px 1px 2px rgba(35, 93, 209, 0.1);
    border-radius: 6px;
    height: 129px;
    width: 235px;
    padding: 15px 10px;
    gap: 20px;
    font-size: 16px;
}

.founder_content {
    background: url("../image/about_Bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: cover; */
    /* background-position: center; */
    border-radius: 20px;
}

.content_inside {
    padding: 30px 16px;
}

.founder_name {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.text_bold_name {
    font-size: 24px;
    font-weight: 500;
}

.text_about_name {
    font-size: 18px;
}

.simplifyStrategy {
    background: url("../image/Simplify.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.simplify_strategy .main_heading_two {
    color: #ffffff;
}

.simplify_strategy .main_heading_two,
.features .main_heading_two,
.about .main_heading_two {
    margin: 0px;
}

.ourStory .main_heading_two,
.empowering .main_heading_two,
.clientSuccessStories .main_heading_two {
    margin-top: 0px;
}

.simplify_strategy .text__para {
    font-size: 16px;
    color: #ffffff;
    margin-top: 14px;
    margin-bottom: 14px;
}


/* Footer */

.footerSection {
    background: #253053;
    padding-top: 40px;
    padding-bottom: 29px;
    /* margin-top: 50px; */
}

.footer_section .footer_list ul {
    padding-top: 17px;
    gap: 17px;
}

.footer_section .footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_section .footer-col {
    width: calc(20% - 16px);
    /* padding: 0 15px; */
}

.footer_section .footer-col h4 {
    font-size: 16px;
    color: #0974F2;
    text-transform: capitalize;
    margin-bottom: 17px;
    font-weight: 600;
    position: relative;
}

.footer_section .middle_header {
    margin-top: 20px;
}

.footer_section .sub_header {
    color: #636d79;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 17px;
}

/* .footer_section .footer-col h4::before{
      content: '';
      position: absolute;
      left:0;
      bottom: -10px;
      background-color: #e91e63;
      height: 2px;
      box-sizing: border-box;
      width: 50px;
  } */

.footer_section .footer-col ul li:not(:last-child) {
    margin-bottom: 17px;
}

.footer_section .footer-col ul li a {
    font-size: 14px;
    text-transform: capitalize;
    color: #edf3f9;
    text-decoration: none;
    font-weight: 400;
    display: block;
    transition: all 0.3s ease;
}

.footer_section .footer-col ul li span {
    color: #edf3f9;
    padding-top: 2px;
    font-size: 14px;
}

.footer_section .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer_section .footer-col .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    /* background-color: rgba(255,255,255,0.2); */
    margin: 0 5px 5px 0;
    text-align: center;
    border-radius: 50%;
    /* color: #ffffff; */
    line-height: 22px;
    transition: all 0.5s ease;
    border: 1px solid #ffffff;
}

.footer_section .footer-col .social-links .social-links_list {
    display: flex;
}

/* .footer_section .footer-col .social-links a:hover{
      color: #24262b;
      background-color: #ffffff;
  } */

.footer_section .email_optin_text {
    color: #edf3f9;
    font-size: 12px;
}

.footer_submit_button {
    margin: 17px 0px;
}

.footer_section .submit_button {
    padding: 12.2px 21.2px;
    background: #0974f2;
    gap: 10px;
    border-radius: 5px;
    color: #edf3f9;
    border: none;
    font-size: 14px;
}

.footer_section .input_email {
    background: transparent;
    padding: 12.2px 40px;
    border-radius: 5px;
    border: 1px solid #0974f2;
}

.footer_section .input_email::placeholder {
    color: #edf3f9;
}

/* End Footer */

.endfooter {
    background: #1e252d;
    border-bottom: 1px solid #36424f;
    padding: 16px 0px;
}

.footer_section .end_footer_row {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.footer_section .end_footer_row p {
    color: #edf3f9;
    font-size: 14px;
}

.footer_section .end_footer_list ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /* flex-wrap: wrap; */
}

.footer_section .end_footer_list ul li a {
    color: #edf3f9;
    font-size: 14px;
}

.project_management .project_management_right_side a.anchor_holder {
    font-size: 18px;
    color: #0974f2;
    margin-top: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.project_management .project_management_right_side ul li {
    display: flex;
    align-items: center;
    line-height: 1.5;
}


/* -------- Pricing Section ------- */

.switch {
    position: relative;
    display: inline-block;
    width: 260px;
    height: 57px;
    background-color: #ffffff;
    border: 1px solid #ccd6e3;
    border-radius: 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Pricing Toggle Button */
.pricing_toggle_button .toggle_switch_button {
    display: flex;
    justify-content: center;
}

.pricing_toggle_button .toggle_switch_button .arrow_toggle {
    position: relative;
    top: 25px;
}

.pricing_toggle_button .text__para {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 5px;
    margin-left: 100px;
}

.pricing_toggle_button .toggle_switch_button .toggle_tabs {
    display: flex;
    border: 1px solid #ccd6e3;
    border-radius: 8px;
    padding: 5px;
    background-color: #ffffff;
}

.pricing_toggle_button .toggle_switch_button .toggle_tabs input[type="radio"] {
    display: none;
}

.pricing_toggle_button .toggle_switch_button .toggle_tabs label {
    padding: 0 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing_toggle_button .toggle_switch_button .toggle_tabs input[type="radio"]:checked+label {
    background-color: #0974f2;
    color: white;
    border-color: #007bff;
}

.pricing_toggle_button .toggle_switch_button .toggle_tabs label:hover {
    background-color: #e0e0e0;
}

.plan_list .text__para {
    margin-left: 5px;
    font-size: 14px;
    color: #636b83;
}

.plan_list ul li {
    line-height: 1.5;
}

.features_list {
    list-style-type: none;
}

.features_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #464d62;
    margin-bottom: 15px;
}

.features_list li::before {
    content: url('../image/tick-circle-icon.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
}

.features .text__para {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.features .features_comparison_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.5px;
}

.features .features_comparison_table thead th {
    padding: 16px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #d2e3f7;
}

.feature_comparison_table_head,
.feature_comparison_table_button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.features .features_comparison_table thead th:first-child {
    border: 1px solid #d2e3f7;
    border-top-left-radius: 8px;
    border-top-right-radius: 0px;
}

.features .features_comparison_table thead th:nth-child(2) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.features .features_comparison_table thead th:last-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 8px;
}

.features .features_comparison_table tbody td {
    text-align: center;
}

.features .features_comparison_table tbody td .xmark::after {
    filter: hue-rotate(0deg) saturate(20) brightness(1) invert(1);
}

.features .features_comparison_table .text_head_bold {
    font-weight: 600;
}

.text_head_bold {
    font-size: 32px;
    font-weight: 700;
}

.reload-icon {
  color: #000;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

.reload-icon.white-icon {
    color: #fff;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.feature_comparison_table_head .main_sub_heading {
    border-bottom: 1px solid #d2e3f7;
    width: 100%;
    padding-bottom: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #636b83;
}

.feature_comparison_table_head .text_about_name {
    font-weight: 400;
    color: #636b83;
}


.pricing_plan_cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.our_pricing_card {
    background: #ffffff;
    border: 1px solid #d2e3f7;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 16px;
    gap: 16px;
    border-radius: 10px;
    width: calc(25% - 16px);
}

.ourPricing .btn {
    width: 100%;
}

.ourPricing .text__para {
    margin-bottom: 0px;
}

.our_pricing_card .feature_comparison_table_button {
    border-bottom: 1px solid #d2e3f7;
    padding: 20px 0px;
}

.faq_main_content {
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

.faq_collapsible {
    border: none;
    color: #000;
    cursor: pointer;
    padding: 21px 10px;
    width: 100%;
    font-size: 15px;
    border-left: none;
    border-right: none;
    background: #ffffff;
}

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

.each_faq_holder {
    border-top: 1px solid #0974f2;
}

.each_faq_holder:last-child {
    border-bottom: 1px solid #0974f2;
}

/* .active, .faq_collapsible:hover {
    background-color: #555;
  } */

.faq_content {
    padding: 0px 10px 12px 10px;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
    /* border-top: 1px solid #0974f2; */
    text-align: left;
}

.faq_content .text__para {
    margin-bottom: 0px;
    font-size: 15px;
}

.faq_collapsible .text_about_name {
    font-size: 18px;
    font-weight: 600;
    color: #253053;
    margin-left: 12px;
    text-align: left;
}

.faq_collapsible.active+.faq_content {
    display: block;
}

.cstm_white_card .white_card_in_line_data {
    display: flex;
    align-items: center;
}

.cstm_white_card .heading__only .img_holder,
.cstm_white_card .heading__only .heading {
    margin-bottom: 0px;
}

.cstm_white_card .white_card_in_line_data .heading {
    margin-left: 20px;
}

/* Workforce scheduling */

.report_progress_card {
    background: #edf3f9;
    border-radius: 10px;
    padding: 16px;
    gap: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.report_progress_card .text__para {
    color: #464d62;
    font-size: 16px;
}

/* Circular Radial Progress Bar */

.report_progress_card .radial_progress_bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .report_progress_card .progress-circle {
    display: inline-block;
    position: relative;
  } */

.report_progress_card .circle {
    width: 100px;
    height: 100px;
    position: relative;
}

.report_progress_card svg {
    position: relative;
    width: 100px;
    height: 100px;
    transform: rotate(90deg);
}

.report_progress_card circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}

.report_progress_card .bg {
    stroke: #9ac5f7;
}

.report_progress_card .progress_85 {
    stroke: #007bff;
    /* Blue progress color */
    stroke-dasharray: 283;
    /* Circumference of the circle (2 * Pi * r) */
    stroke-dashoffset: calc(283 - (283 * 85) / 100);
    /* 85% progress */
}

.report_progress_card .progress_90 {
    stroke: #007bff;
    /* Blue progress color */
    stroke-dasharray: 283;
    /* Circumference of the circle (2 * Pi * r) */
    stroke-dashoffset: calc(283 - (283 * 90) / 100);
    /* 90% progress */
}

.report_progress_card .percent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.report_progress_card .percent span {
    color: #333;
}


.about_client .main_row_holder {
    justify-content: left;
    gap: 0px;
}

.about_client .left_holder {
    width: calc(32% - 10px);
}

.about_client .right_holder {
    text-align: left;
    color: #ffffff;
    width: calc(68% - 10px);
}

.about_client_content {
    background: url("../image/clientBlueBackground.svg");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: cover; */
    /* background-position: center; */
    border-radius: 20px;
}

.about_client_content .text_about_name {
    font-size: 14px;
}

.green_highlight {
    color: #29cc59;
}

.hovered_cstm_vertical_tabs_holder .each_holder .text__para {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #464d62;
    margin-bottom: 0px;
}

.integrated_tools {
    background-image: url("../image/integrationNewBackground.svg");
    background-color: #f4f7fa;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
    padding: 16px 10px;
    color: white;
}

.integrated_tools .content_holder {
    max-width: 85%;
    font-size: 18px;
    color: #464d62;
}

.__integration {
    font-size: 38px;
}

.content_management_tabs {
    overflow-x: auto;
    background-color: #fff;
    width: 100%;
    border-top: 1px solid #c6dafd;
    border-bottom: 1px solid #c6dafd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 10px;
    gap: 10px;
}

.content_management_tabs a {
    color: #464d62;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    background-color: #f4f7fa;
    border-radius: 5px;
    white-space: nowrap;
    width: auto;
}

.content_management_tabs a:hover {
    background-color: #0974f2;
    color: #ffffff;
}

.content_management_tabs a.active {
    background-color: #0974f2;
    color: #ffffff;
}

.cstm_card_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.right_holder_content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ordered_list_content_holder {
    padding: 12px;
}
.ordered_list_content_holder.p-0 {
    padding: 0;
}
.ordered_list_content_holder.p-0 ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
}
.ordered_list_content_holder.p-0 ul li {
    padding-left: 0;
}
.wide_range_roles .ordered_list_content_holder {
    padding: 12px 22px;
    text-align: left;
}

.expanded_sub_list li span {
    font-size: 16px;
    color: #464d62;
}

.banner_row_card_holder .cstm_banner_white_card {
    padding: 16px;
    text-align: left;
    width: 321px;
}

.banner_row_card_holder .cstm_white_card .img_holder {
    margin-bottom: 0px;
}

/* Sign Up */

.user_signup_background {
    background-image: url("../image/SignUpBackground.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.user__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    height: 100%;
}

/* Left side styling */
.sign_up_left_side {
    padding-left: 80px;
    padding-right: 20px;
}

.sign_up_left_side_bg {
    background: url("../image/signUpRounded.webp") no-repeat;
    background-size: cover;
    height: 500px;
    width: 500px;
}

.rounded_image_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Right side styling */
.sign_up_right_side {
    width: calc(60% - 10px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

/* User sign-up details form */
.user_signUp_detail {
    background-image: url("../image/rightWhiteImage.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 135px 10px 80px;
    border-radius: 60px 0px 0px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.form_input_values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}

.form_input_values input {
    padding: 16px 10px;
    border-radius: 8px;
    border: 1px solid #aab5c1;
    width: calc(50% - 10px);
}

.form_input_values .select_option {
    width: calc(50% - 5px);
}

.form_input_values select {
    padding: 16px 10px;
    border-radius: 8px;
    border: 1px solid #aab5c1;
    width: 100%;
    background: #ffffff;
}

.form_input_values .country__code {
    width: calc(25% - 5px);
}

.form_input_values .select_option input {
    width: calc(75% - 5px);
}

.form_full_width_values {
    margin-top: 20px;
}

.form_full_width_values input {
    padding: 16px 10px;
    border-radius: 8px;
    border: 1px solid #aab5c1;
    width: 100%;
}

.sign_up_buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0px;
    gap: 25px;
}

.user_signUp_detail .main_heading_two {
    margin: 0px;
    font-weight: 600;
}

.user_sign_up_form .text__para {
    margin: 0px;
    color: #636b83;
    font-weight: 400;
    font-size: 13px;
}

.rounded_image_content .text_in_detail {
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.__divide_line {
    position: relative;
    display: flex;
    align-items: center;
}

.__divide_line::before,
.__divide_line::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #cfcfcf;
    /* margin: 0 20px; */
}

.__divide_line::before {
    margin-right: 20px;
}

.__divide_line::after {
    margin-left: 20px;
}

/* Captcha  */

.recaptcha_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin: 15px 0px;
}

.recaptcha_box .checkbox-container {
    display: flex;
    align-items: center;
}

.recaptcha_box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.recaptcha_box label {
    font-size: 14px;
    color: #444;
}

.recaptcha_box .captcha-logo img {
    width: 40px;
}

.recaptcha_box .captcha_right_end {
    font-size: 10px;
    text-align: right;
    margin-top: 5px;
}

.recaptcha_box .captcha_right_end a {
    color: #888;
    text-decoration: none;
    margin: 0 2px;
    font-size: 10px;
}

.privacy_checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0px 36px 0px;
}


/* Contact Us */

.banner_boxes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cstm_banner_box {
    background: #b0ffc7;
    border-radius: 23px;
    padding: 12px 24px;
    font-size: 18px;
}

.user_detail_floated_card {
    background: #ffffff;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #d4dee9;
    border-radius: 10px 0px;
    width: 493px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.user_detail_floated_card .text__para {
    margin: 0px;
    font-size: 16px;
    color: #515C69;
}

.user_detail_floated_card .text__style {
    font-size: 12px;
    font-weight: 600;
    color: #464D62
}

/* .form_container {
    width: 100%;
  } */

.form_container .form-group {
    margin-bottom: 15px;
}

.form_container label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form_container input,
.form_container select,
.form_container textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #aab5c1;
    border-radius: 8px;
    margin-bottom: 10px;
    outline: none;
}

.form_container select option[disabled] {
    color: #9ba4ae;
}

.form_container input::placeholder,
textarea::placeholder {
    color: #9ba4ae;
}

.form_container .name-fields,
.phone-input,
.company-fields {
    display: flex;
    gap: 10px;
}

.form_container .name-fields input,
.company-fields select,
.company-fields input,
.phone-input select,
.phone-input input {
    flex: 1;
}

.form_container textarea {
    height: 102px;
    resize: none;
}

.form_container .privacy-notice {
    font-size: 18px;
    color: #464d62;
    margin-top: 15px;
    text-align: left;
}

.form_container .privacy-notice a {
    color: #1a73e8;
    text-decoration: none;
}

.monitoring_testimonal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cstm_banner_white_card .rating {
    color: #29cc59;
    margin-left: 5px;
}

.bordered_outercard_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.bordered_outercard_holder .bordered_card_holder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    border: 1px solid #C8DEF7;
    border-radius: 25px;
    padding: 16px;
    box-shadow: 0 14px 31px 0px rgba(77, 149, 163, 0.1);
}

.text_center {
    text-align: center;
}

.two_columns_holder,
.flexbox_holder {
    display: flex;
    flex-wrap: wrap;
}

.w-33 {
    width: 33.33%;
}

.two_columns_holder .w-50 {
    width: 50%;
}

.three_columns_holder {
    justify-content: space-between;
    gap: 16px;
}

.three_columns_holder .w-33 {
    width: calc(33.33% - 16px);
}

.border_btm {
    border-bottom: 1px solid #e5e5e5;
}

.vertical_tabs_holder,
.image_content_tabs {
    display: flex;
    align-items: flex-start;
}

.vertical_tabs_holder .left_tabs_holder,
.image_content_tabs .left_tabs_holder {
    width: 311px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
    padding-right: 30px;
    border-right: 1px solid #C0D3E9;
}

.vertical_tabs_holder .left_tabs_holder .each_tab,
.image_content_tabs .left_tabs_holder .each_tab {
    font-size: 16px;
    padding: 18px 24px;
    cursor: pointer;
    background-color: transparent;
    color: #253053;
    margin-bottom: 5px;
    transition: background-color 0.3s;
    border-radius: 28px;
}

.vertical_tabs_holder .left_tabs_holder .each_tab.active {
    background-color: #E5FFEC;
}

.vertical_tabs_holder .outer_content_holder,
.image_content_tabs .outer_content_holder {
    width: calc(100% - 311px);
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 20px;
    gap: 41px;
}

.vertical_tabs_holder .outer_content_holder .content_section h2,
.image_content_tabs .outer_content_holder .content_section h2 {
    margin-bottom: 15px;
}

.image_content_tabs {
    position: relative;
}

.image_content_tabs .left_tabs_holder {
    width: 50%;
    border-right: none;
}

/* .image_content_tabs .left_tabs_holder .each_tab {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
} */
.image_content_tabs .left_tabs_holder .each_tab {
    min-height: 50vh;
    align-items: center;
}

.image_content_tabs .left_tabs_holder .each_tab.active {
    background: transparent;
    z-index: 1;
}

.image_content_tabs .left_tabs_holder .each_tab img {
    animation: fadeIn 1s forwards;
}

/* .image_content_tabs .left_tabs_holder .each_tab.active img {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}  */
.image_content_tabs .outer_content_holder {
    width: 50%;
}

.image_content_tabs .outer_content_holder .content_section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image_content_tabs .outer_content_holder .content_section .problem_holder {
    margin-bottom: 48px;
}

.image_content_tabs .outer_content_holder .content_section[data-feature-slider-content] {
    max-width: 480px;
}

.image_content_tabs .outer_content_holder .content_section[data-feature-slider-content] .main_heading_three+p.text_grey {
    line-height: 26px;
    margin-bottom: 10px;
}

.overview_header_holder {
    padding: 0 60px 10px;
    margin-bottom: 19px;
}

.grey_rounded_badge {
    display: inline-block;
    background: #EDF3F9;
    color: #253053;
    border: 1px solid #A0AFC1;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.difference_holder .two_columns_holder {
    margin-top: 11px;
}

.difference_holder .two_columns_holder>div {
    padding: 11px 32px;
}

.difference_holder .two_columns_holder>div:first-child {
    border-right: 1px solid #B8C8DA;
}

.difference_holder .two_columns_holder .content_holder {
    max-width: 340px;
    font-size: 16px;
    color: #636B83;
    margin: 27px auto 0;
}

.checkmark::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../image/checkbox-circle-fill.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.xmark::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../image/cross-icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.outer_comparison_table {
    width: 100%;
    overflow: auto;
}

.comparison_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.5px;
}

.comparison_table thead th {
    padding: 4px 10px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #D2E3F7;
}

.comparison_table thead th:first-child {
    border: none;
}

.comparison_table thead th:nth-child(2) {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.comparison_table thead th:last-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.comparison_table tbody tr th {
    border: 1px solid #D2E3F7;
    padding: 6px 16px;
    text-align: left;
}

.comparison_table tbody tr td:first-child {
    text-align: left;
}

.comparison_table tbody tr td {
    /* min-width: 240px; */
    font-size: 14px;
    font-weight: 400;
    color: #253053;
    border: 1px solid #D2E3F7;
    padding: 12px 16px;
    line-height: 22px;
    position: relative;
}

.comparison_table tbody tr td ul li.mb-10,
.comparison_table tbody tr td p.mb-10 {
    margin-bottom: 10px;
}

.comparison_table tbody tr:nth-child(odd) td {
    background: #F3F7FD;
}

.comparison_table .table_tab_content {
    display: none;
}

.comparison_table .table_tab_content.active {
    display: table-row-group;
}

.comparison_table .table_tabs_holder {
    display: inline-flex;
    border: 1px solid #0974F2;
    border-radius: 5px;
}

.comparison_table .table_tabs_holder .table_tab {
    font-size: 16px;
    font-weight: 600;
    color: #0974F2;
    padding: 8px 17px;
    cursor: pointer;
}

.comparison_table .table_tabs_holder .table_tab.active {
    background: #0974F2;
    color: #fff;
}

.comparison_table .flex_header_holder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison_table .xmark::after {
    filter: brightness(0) saturate(100%) invert(45%) sepia(86%) saturate(643%) hue-rotate(321deg) brightness(95%) contrast(99%);
}

.comparison_table tr td .info_icon_holder {
    display: inline-block;
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.comparison_table tr td .info_icon_holder .tooltip_holder {
    background: #464D62;
    font-size: 14px;
    color: #fff;
    border-radius: 8px 8px 8px 0;
    white-space: nowrap;
    padding: 10px;
    position: absolute;
    top: calc(-20px - 100%);
    z-index: 1;
    display: none;
}

.comparison_table tr td .info_icon_holder:hover .tooltip_holder {
    display: block;
}

.cstm_tabular_holder {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow: auto;
    border: 1px solid #C6DAFD;
    border-width: 1px 0;
    padding: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 18px rgba(161, 183, 206, 0.4);
}

.outer_cstm_tabular_holder .cstm_tabular_holder .each_tabular_holder {
    font-size: 16px;
    color: #636B83;
    padding: 12px 20px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.outer_cstm_tabular_holder .cstm_tabular_holder .each_tabular_holder.active {
    color: #0974F2;
    font-weight: 600;
    border-bottom: 2px solid #0974F2;
}

.outer_cstm_tabular_holder .content_section,
.outer_cstm_tabular_holder .content_section1 {
    display: none;
}

.outer_cstm_tabular_holder .content_section.active,
.outer_cstm_tabular_holder .content_section1.active {
    display: block;
}

.cstm_white_card {
    background: #fff;
    border: 1px solid #DFEEFF;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 4px rgba(35, 93, 209, 0.1);
}

.cstm_card_holder {
    background: #fff;
    border: 1px solid #EDF3F9;
    border-radius: 8px;
    padding: 15px;
}

.cstm_white_card .heading_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cstm_white_card .heading_container .heading {
    font-size: 16px;
    font-weight: 600;
    color: #0974F2;
    margin-bottom: 0;
}

.cstm_white_card .content_holder {
    font-size: 14px;
    color: #636B83;
}

.cstm_white_card .img_holder {
    margin-bottom: 20px;
}

.cstm_white_card .heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #253053;
}

.cstm_white_card .content {
    font-size: 14px;
    color: #636B83;
}

.cstm_white_card .read_link {
    display: inline-block;
    font-size: 14px;
    color: #0974F2;
    padding-top: 20px;
}

.cstm_white_card.no_content {
    padding: 16px;
}

.cstm_white_card.no_content .flexbox_holder {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

/* .cstm_white_card.no_content .img_holder {
    width: 32px;
} */
.cstm_white_card.no_content .img_holder,
.cstm_white_card.no_content .heading,
.cstm_white_card .heading.mb-0 {
    margin-bottom: 0;
}

.two_card_row_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.two_card_row_holder .cstm_white_card,
.two_card_row_holder .cstm_card_holder {
    width: calc(50% - 10px);
}

.three_card_row_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.three_card_row_holder .cstm_white_card {
    width: 376px;
}

.traceable_result_cards.three_card_row_holder .cstm_white_card {
    width: calc(33.33% - 15px);
}
.three_card_row_holder.center {
    justify-content: center;
}

.four_card_row_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.four_card_row_holder .cstm_white_card {
    width: 276px;
}
.traceable_result_cards.four_card_row_holder .cstm_white_card {
    width: calc(25% - 15px);
}
.traceable_result_cards .cstm_white_card {
    padding: 15px;
    border-radius: 10px;
    box-shadow: none;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card {
    width: 100%;
    height: 100%;
    background: linear-gradient(37deg, #E3F0FF 0%, rgba(187, 255, 207, 0.06) 100%);
    border: 1px solid rgba(9, 116, 242, 0.2);
    border-radius: 6px;
    padding: 16px 10px;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .top_heading_holder {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .top_heading_holder .left_holder {
    text-align: left;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .top_heading_holder .left_holder h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0974F2;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .top_heading_holder .left_holder p {
    font-size: 16px;
    font-weight: 600;
    color: #253053;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .top_heading_holder .right_holder {
    max-width: 80px;
}
.traceable_result_cards .cstm_white_card .cstm_inner_card .bottom_content_holder {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #253053;
}

/* Video card styling */

.video_section .video_card {
    width: 100%;
    max-width: 844px;
    aspect-ratio: 16 / 9;
    /* Maintain a 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: white;
}

.video-container .video_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #0974f2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%, 0 100%);
    z-index: 1;
}

.video-container .video_card::after {
    content: "";
    /* position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 60px; */
    background-color: white;
    /* z-index: 2; */
}

.video_section .center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    z-index: 3;
}

.video_section .video_card .blue-play-button-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 79px;
    height: 79px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 4;
    background: rgba(9, 116, 242, 0.38);
    box-shadow: 0px 35px 14px rgba(0, 0, 0, 0.01),
        0px 20px 12px rgba(0, 0, 0, 0.05), 0px 9px 9px rgba(0, 0, 0, 0.09),
        0px 2px 5px rgba(0, 0, 0, 0.1);
}

.video_section .blue-play-button {
    background: #0974f2;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    color: white;
    height: 63px;
    width: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_section .video_card .iframe_holder {
    display: none;
    width: 100%;
    height: 100%;
    border: none;
}

.video_section .video-container.active .video_card::before,
.video_section .video-container.active .video_card::after,
.video_section .video-container.active .center-image,
.video_section .video-container.active .blue-play-button-shadow {
    display: none;
}

.video_section {
    margin-top: -175px;
}

.video_section .video-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    cursor: pointer;
}

.video_section .thumbnail {
    width: 100%;
    display: block;
}

.video_section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FF6F6F;
    padding: 15px 32px;
    border-radius: 12px;
    border: none;
    font-size: 24px;
    color: #fff;
    z-index: 1;
}

.video_section .iframe_holder {
    display: none;
    width: 100%;
    height: 287px;
    border: none;
}

.video_section .video-container.active .iframe_holder {
    display: block;
}

.video_section .video-container.active .thumbnail,
.video_section .video-container.active .play-button {
    display: none;
}

.success_heading_bg {
    display: inline-block;
    background: #0AA20F;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    padding: 6px 20px;
}

.danger_heading_bg {
    display: inline-block;
    background: #FF2121;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    padding: 6px 20px;
}

.eff_content_holder {
    margin: 20px 0;
}

.eff_content_holder .success_heading_bg,
.eff_content_holder .danger_heading_bg {
    margin-bottom: 20px;
}

.eff_content_holder .one_tool_holder,
.eff_content_holder .multi_tool_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.light_blue_bg .main_section {
    top: 0;
    padding: 20px 0;
}

.light_blue_bg .main_section.normal_padding {
    padding: 40px 0;
}

.blue_gradient_bg_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    background: url("../image/Simplify.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 20px;
}

.blue_gradient_bg_holder .main_heading_two,
.blue_gradient_bg_holder .main_heading_five,
.blue_gradient_bg_holder .sub_content_heading {
    color: #fff;
    margin-bottom: 24px;
}

.blue_gradient_bg_holder .sub_content_heading.mb-0 {
    margin-bottom: 0;
}

.blue_gradient_bg_holder .main_heading_five.mb-40 {
    margin-bottom: 40px;
}

.blue_gradient_bg_holder .content_holder {
    font-size: 18px;
    margin-bottom: 40px;
}

.container_holder>.blue_gradient_bg_holder {
    padding: 60px 30px;
    border-radius: 20px;
}

.container_holder>.blue_gradient_bg_holder .main_heading_two {
    font-size: 36px;
}

.blue_gradient_bg_holder .two_sided_equal_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.blue_gradient_bg_holder .two_sided_equal_container .main_heading_two {
    text-align: left;
    margin-bottom: 0;
}

.blue_gradient_bg_holder .two_sided_equal_container .each_sided_holder {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.green_txt {
    color: #29CC59;
}

.yellow_txt {
    color: #FFDC21;
}

.quotation_section .left_holder {
    width: 450px;
}

.quotation_section .left_holder .quotation_holder {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    position: relative;
}

.quotation_section .left_holder .quotation_holder::after {
    content: '';
    width: 21px;
    height: 16px;
    background-image: url('../image/colonAbout.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 16px;
    top: 16px;
}

.quotation_section .left_holder .quotation_holder .quotation_content {
    font-size: 18px;
    color: #253053;
    padding-top: 25px;
    padding-bottom: 30px;
}

.quotation_section .left_holder .quotation_holder .commented_user_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quotation_section .left_holder .quotation_holder .commented_user_holder img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
}

.quotation_section .left_holder .quotation_holder .commented_user_holder .user_name {
    font-size: 18px;
    font-weight: 600;
    color: #253053;
}

.quotation_section .left_holder .quotation_holder .commented_user_holder .desgination {
    font-size: 12px;
    color: #464D62;
}

.quotation_section .right_holder {
    width: calc(100% - 450px);
    text-align: right;
}

.billable_section .flexbox_holder.outer_holder {
    justify-content: center;
    gap: 16px;
}

.subpage_banner_section .two_columns_holder .nav_buttons_holder {
    justify-content: flex-start;
}

.cstm_form_control {
    background: #F4F7FA;
    border: 1px solid #88A5C7;
    border-radius: 8px;
    font-size: 14px;
    padding: 13px 14px;
}

.cstm_form_control::placeholder {
    color: #9BA4AE;
}

.cstm_form_control.w-100,
.w-100 {
    width: 100%;
}

.select_holder {
    position: relative;
}

.select_holder select {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
}

.cstm_label_holder {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #253053;
    margin-bottom: 6px;
}

.cstm_label_holder.block {
    display: block;
}

.banner_form_holder {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-left: 40px;
}

.banner_form_holder .each_input_holder .flexbox_holder {
    flex-wrap: nowrap;
    gap: 16px;
}

.sticky_section {
    position: sticky;
    top: 70px;
    z-index: 1;
}

.main_heading_two.mb-0 {
    margin-bottom: 0;
}

.main_heading_two.mb-20 {
    margin-bottom: 20px;
}

h2.main_heading_two.sticky_section {
    padding: 20px 0;
}

.sticky_section+.container_holder .each_row_container {
    padding: 50px 0;
}

.sticky_section+.container_holder .each_row_container .right_holder .our_story_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.para_default_3 {
    font-size: 14px;
    font-weight: 600;
}

.cstm_vertical_tabs_holder .tab_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 22px 16px;
    border: 1px solid #C8DEF7;
    border-radius: 10px;
    cursor: pointer;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active,
.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder:hover {
    box-shadow: 0 10px 20px rgba(77, 149, 163, 0.3);
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .tabs_heading {
    font-size: 18px;
    font-weight: 600;
    color: #253053;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .expand_content {
    display: none;
    font-size: 14px;
    color: #464D62;
    padding-top: 10px;
    transition: max-height 0.3s ease;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active .expand_content {
    display: block;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .expand_content .green_list_holder {
    margin-top: 10px;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .expand_content .green_list_holder li {
    font-size: 16px;
    color: #253053;
}

.cstm_vertical_tabs_holder .tab_content {
    padding: 20px;
    display: none;
}

.cstm_vertical_tabs_holder .tab_content.active {
    display: block;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .arrow_icon {
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active .arrow_icon {
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}

.hovered_cstm_vertical_tabs_holder {
    justify-content: unset;
}

.hovered_cstm_vertical_tabs_holder .left_holder {
    display: inherit;
    align-items: center;
}

.hovered_cstm_vertical_tabs_holder .each_holder {
    padding: 10px 16px;
    border-radius: 10px;
}

.hovered_cstm_vertical_tabs_holder .each_holder.active,
.hovered_cstm_vertical_tabs_holder .each_holder:hover {
    background: #F4F7FA;
}

.hovered_cstm_vertical_tabs_holder .each_holder .text__para {
    margin-bottom: 0;
}

.hovered_cstm_vertical_tabs_holder .image_holder {
    display: none;
}

.hovered_cstm_vertical_tabs_holder .image_holder img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    height: auto;
}

.hovered_cstm_vertical_tabs_holder .image_holder.active {
    display: block;
}

.light_blue_card_holder {
    background: #EDF3F9;
    padding: 15px;
}

.blogs_holder .main_heading_two {
    margin-bottom: 20px;
}

.blogs_holder .light_blue_card_holder {
    width: 100%;
}

.blogs_holder .light_blue_card_holder img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #ccc;
    border-radius: 20px;
}

.blogs_holder .light_blue_card_holder .link_holder {
    display: inline-block;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    color: #253053;
    margin-top: 20px;
}

.blogs_holder .light_blue_card_holder:hover .link_holder {
    color: #0974F2;
}

.green_list_holder li {
    position: relative;
    padding: 5px 10px;
}

.green_list_holder li:last-child {
    padding-bottom: 0;
}

.green_list_holder li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #29CC59;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 0;
}

.bordered_card_holder {
    border: 1px solid #BACDE4;
    border-radius: 10px;
    padding: 16px;
}

.downloaded_outer_holder {
    justify-content: space-between;
    gap: 10px;
}

.downloaded_outer_holder .downloaded_holder {
    min-width: 226px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.downloaded_outer_holder .downloaded_holder .content_holder .label_holder {
    font-size: 16px;
    color: #464D62;
}

.downloaded_outer_holder .downloaded_holder .content_holder .item_name_holder {
    font-size: 21px;
    font-weight: 600;
    color: #253053;
}

.light_grey_bg {
    background: #F4F7FA;
    padding: 10px 16px;
}

.list_content_holder .main_heading_four {
    position: relative;
    padding-left: 30px;
}

.list_content_holder .main_heading_four::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border: 3px solid #29CC59;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 8px;
}

.list_content_holder .text__para {
    padding-left: 30px;
    margin-bottom: 0;
}

.by_grey_card_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #EDF3F9;
    border-radius: 10px;
    padding: 45px 16px 32px;
    position: relative;
}

.by_grey_card_holder::before {
    content: '';
    width: 100%;
    height: 13px;
    border-radius: 0 0 5px 5px;
    background: #0974F2;
    position: absolute;
    left: 0;
    top: 0;
}

.by_grey_card_holder .circular_icon {
    max-width: 100px;
    margin: 0 auto;
}

.by_grey_card_holder .content_holder {
    color: #464D62;
    margin-top: 16px;
    margin-bottom: 0;
}

.our_story_content ul.list_with_icon li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style-type: none;
}

.our_story_content ul.list_with_icon li::before,
.no_bullet_list li::before {
    content: none !important;
}

.no_bullet_list li .banner_text {
    font-weight: 600;
}

.counter_list_holder {
    list-style: none;
    margin: 0;
    counter-reset: counter;
    position: relative;
}

.counter_list_holder::before {
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    top: -10px;
    background: #F4F7FA;
}

.counter_list_holder li {
    counter-increment: counter;
    padding: 0 20px 16px 50px;
    position: relative;
    overflow: hidden;
    background: #F4F7FA;
}

.counter_list_holder li::before {
    content: counter(counter);
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    background: #fff;
    color: #323A43;
    border: 4px solid #ccc;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
}

.section-to-detect.in-view .right_holder .counter_list_holder li:not(:last-child):after {
    content: '';
    width: 2px;
    height: 0;
    background: #29CC59;
    position: absolute;
    left: 26px;
    top: 34px;
}

.section-to-detect .left_holder div[data-image] img {
    display: none;
    max-height: 400px;
}

.section-to-detect.in-view .left_holder div[data-image] img.active-image {
    display: block;
}

/* .simplifyStrategy .header_in_card {
    text-align: left;
} */

.section-to-detect .right_holder .counter_list_holder li {
    animation: fadeIn 1s forwards;
}

.section-to-detect .right_holder .counter_list_holder li * {
    opacity: 0.5;
}

.section-to-detect.in-view .right_holder .counter_list_holder li.active-li {
    display: block;
}

.section-to-detect.in-view .right_holder .counter_list_holder li.active-li * {
    opacity: 1;
}

.section-to-detect.in-view .right_holder .counter_list_holder li.active-li::before {
    border-color: #29CC59;
}

.section-to-detect.in-view .right_holder .counter_list_holder li.active-li:not(:last-child):after {
    animation: growLine 1s forwards;
}

.demo_page_holder {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
}

.demo_page_holder .demo_left_holder,
.demo_page_holder .demo_right_holder {
    width: 50%;
}

.demo_page_holder .demo_left_holder {
    background: #0974F2;
    min-height: 100vh;
    position: relative;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.demo_page_holder .demo_left_holder::before {
    content: '';
    width: 176px;
    height: 255px;
    background: url('../image/shape_bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.demo_page_holder .demo_left_holder::after {
    content: '';
    width: 56px;
    height: 146px;
    background: url('../image/add_shape_bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 50px;
    top: -10px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content::before {
    content: '';
    width: 176px;
    height: 255px;
    background: url('../image/shape_bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotateY(-180deg);
}

.demo_page_holder .demo_left_holder .demo_inner_left_content::after {
    content: '';
    width: 56px;
    height: 146px;
    background: url('../image/add_shape_bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 35px;
    bottom: -45px;
    transform: rotate(-90deg);
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .main_heading_two {
    max-width: 433px;
    color: #fff;
    margin-bottom: 40px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .main_heading_four {
    max-width: 433px;
    color: #fff;
    margin-bottom: 24px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .main_heading_four .green_txt_holder {
    color: #7CFFA3;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .lists_holder {
    width: 433px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .lists_holder li {
    position: relative;
    padding: 10px 10px 10px 30px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .lists_holder li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../image/check_circle.svg');
    position: absolute;
    left: 0;
    top: 14px;
}

.demo_page_holder .demo_left_holder .demo_inner_left_content .lists_holder li .main_heading_five {
    margin-bottom: 0;
}

.demo_page_holder .demo_right_holder {
    background: #fff;
    padding: 40px;
}

.demo_page_holder .demo_right_holder .logo_holder {
    margin-bottom: 30px;
}

.demo_page_holder .demo_right_holder .appointment-container {
    max-width: 650px;
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #AAB5C1;
    border-radius: 8px;
}

.demo_page_holder .demo_right_holder .main_heading_five {
    color: #253053;
    margin-bottom: 10px;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar {
    width: 310px;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    margin-bottom: 20px;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar .calendar-header .arrow_btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table {
    width: 100%;
    border-collapse: collapse;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td {
    text-align: center;
    padding: 5px 0;
    cursor: pointer;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td.disabled {
    cursor: not-allowed;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    font-size: 15px;
    color: #3c4043;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td.disabled span {
    color: #919599;
    text-decoration: line-through;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td.available span {
    background: rgba(0, 105, 255, 0.15);
    color: #0060d4;
}

.demo_page_holder .demo_right_holder .appointment-container .calendar table td.selected span {
    background: rgba(0, 105, 255, 1);
    color: #ffffff;
    font-weight: 600;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots {
    width: calc(100% - 310px);
    color: #000;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .appointment-summary {
    margin-bottom: 20px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .appointment-summary #appointmentDetails li {
    font-size: 18px;
    font-weight: 700;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .appointment-summary #appointmentDetails li span {
    color: #0069ff;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder {
    display: flex;
    max-height: 215px;
    overflow: auto;
    padding-right: 10px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row .date-label {
    width: 150px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row .time-slots-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row .time-slots-wrapper .time-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid #0069ff;
    border-radius: 4px;
    cursor: pointer;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row .time-slots-wrapper .time-slot:hover {
    border-width: 2px;
}

.demo_page_holder .demo_right_holder .appointment-container .time-slots .time_slots_holder .date-row .time-slots-wrapper .time-slot.selected {
    background: #0069ff;
    color: #fff;
    font-weight: 600;
}

.demo_page_holder .demo_right_holder .appointment_form {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box,
.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box input,
.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box textarea {
    width: 100%;
}

.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box input::placeholder,
.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box textarea::placeholder {
    color: #464D62;
}

.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box input,
.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box textarea {
    background: transparent;
    border-color: #AAB5C1;
}

.demo_page_holder .demo_right_holder .appointment_form .each_cstm_input_box textarea {
    min-height: 106px;
    resize: none;
}

.vertical_scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.vertical_scrollbar::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.vertical_scrollbar::-webkit-scrollbar-thumb {
    background: #b6bac8;
    border-radius: 4px;
}

.vertical_scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.each_conditions_content_holder .main_heading_three {
    color: #253053;
}

.each_conditions_content_holder ul li {
    padding-left: 15px;
}

.each_conditions_content_holder ul li,
.each_conditions_content_holder p {
    color: #464D62;
    line-height: 25px;
}

.each_conditions_content_holder p {
    margin-bottom: 20px;
}

.each_conditions_content_holder .green_list_holder li::before {
    top: 15px;
}

.blue_info_container_block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: #0974F2;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
}

.blue_info_container_block .left_holder,
.blue_info_container_block .right_holder {
    width: calc(50% - 16px);
}

.blue_info_container_block .left_holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue_info_container_block .right_holder .white_bg_time_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0974F2;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 100px;
    margin-bottom: 15px;
}

.blue_info_container_block .right_holder .heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blue_info_container_block .right_holder .content {
    font-size: 14px;
    margin-bottom: 30px;
}

.webinar_card_holder .img_holder {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.webinar_card_holder .img_holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.webinar_card_holder .time_badge_holder {
    display: inline-flex;
    gap: 8px;
    background: #DFEEFF;
    color: #0974F2;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 100px;
}

.webinar_card_holder .heading {
    display: inline-block;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 24px;
    font-weight: 600;
    color: #253053;
    margin: 10px 0;
}

.webinar_card_holder .content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #464D62;
    margin-bottom: 20px;
}

.blue_outlined_rounded_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #0974F2;
    border: 1px solid #0974F2;
    border-radius: 8px;
    padding: 18px 30px;
    cursor: pointer;
}

.white_outlined_rounded_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 18px 30px;
    cursor: pointer;
}


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

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

@keyframes growLine {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}


.list_with_no_icon li {
    line-height: 1.4;
    font-size: 16px;
    color: #253053;
}

.list_with_no_icon .text__para {
    margin-bottom: 10px;
    font-style: italic;
}

.text__italic {
    font-style: italic;
    font-weight: 500;
}

/* Step Progress Bar */

.progress__bar_container {
    background-color: #f4f7fa;
    display: flex;
    padding: 20px 30px;
    /* max-height: 595px; */
    min-height: auto;
}

.progress-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-fill {
    position: absolute;
    top: 0;
    width: 3px;
    background-color: #29cc59;
    transition: height 0.3s;
    height: 0;
    z-index: 0;
}

.progress__bar_container .step-marker {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #29cc59;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: -14px;
    transition: background-color 0.3s, border-color 0.3s;
    z-index: 1;
}

.progress__bar_container .step-marker.active {
    background-color: #29cc59;
    color: #000;
    border-color: #fff;
}

/* Steps styling */
.progress__bar_container .steps {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    border-radius: 8px;
}

.progress__bar_container .steps ul {
    list-style-type: none;
    padding: 0;
}

.progress__bar_container .step {
    display: none;
    transition: opacity 0.3s;
    padding: 0px 10px;
}

.progress__bar_container .step.active {
    display: block;
    text-align: left;
}

.progress__bar_container .step-description {
    font-size: 16px;
    color: #253053;
    margin-bottom: 12px;
}

.progress__bar_container .step-marker {
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
}

.progress__bar_container .step-marker.active {
    opacity: 1;
    border-color: #29cc59;
    background-color: #fff;
}

/* Image Styling */
.steps_imageContainer img {
    display: none;
}

.steps_imageContainer img.active {
    display: block;
}

/* Base styles for all cards */
.by_hover__grey_card_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dfeeff;
    box-shadow: 0px 15px 6px rgba(35, 93, 209, 0.01),
        0px 8px 5px rgba(35, 93, 209, 0.05), 0px 4px 4px rgba(35, 93, 209, 0.09),
        0px 1px 2px rgba(35, 93, 209, 0.1);
    border-radius: 6px;
    padding: 35px 10px;
    position: relative;
}

.by_hover__grey_card_holder .content_holder {
    color: #464d62;
    margin-top: 16px;
    margin-bottom: 0;
}

.by_hover__grey_card_holder::before {
    content: "";
    width: 100%;
    height: 13px;
    border-radius: 0 0 5px 5px;
    background: #0974f2;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Active (first card) */
.by_hover__grey_card_holder:hover::before {
    opacity: 1;
}

.by_hover__grey_card_holder:hover {
    background: #edf3f9;
}

.subpage_banner_section .divided__line {
    border-top: 1px solid #b2c3d4;
}

.text__green {
    color: #29cc59;
    text-decoration-line: underline;
    font-weight: 600;
}

/* .install_teamtrace_button {
    position: relative;
    top: 24%;
} */

.ordered_alternate_list_color_holder ul li {
    margin-bottom: 10px;
    color: #464d62;
}

.ordered_alternate_list_color_holder .text_grey li::before {
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

/* For odd list items - blue */
.ordered_alternate_list_color_holder .text_grey li:nth-child(odd)::before {
    background-color: blue;
}

/* For even list items - green */
.ordered_alternate_list_color_holder .text_grey li:nth-child(even)::before {
    background-color: #29cc59;
}

.five_card_row_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.five_card_row_holder .cstm_white_card {
    width: 218px;
}

.text__para_bold {
    font-weight: 600;
    font-size: 16px;
}

.case_study_cstm_white_card {
    padding: 15px !important;
}

.case_study_cstm_white_card .img_holder img {
    width: 100%;
}

.case_study_cstm_white_card .content_holder {
    margin-bottom: 20px;
}

.case_study_cstm_white_card .img_holder {
    margin-bottom: 0px !important;
}

/* Collapsive Left Holder */

.collapsible-section {
    margin-bottom: 10px;
}

.collapsible-header {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 100px;
    /* margin-bottom: 10px; */
    border: 1px solid #edf3f9;
}

.collapsible-header.active {
    background-color: #e0e7ff;
}

.collapsible-header:hover {
    background-color: #e0e7ff;
}

.collapsible-content {
    display: none;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
}

.collapsible-content .each_tab {
    padding: 10px !important;
    cursor: pointer;
}

.each_tab:hover {
    background-color: #f0f0f0;
}

.violet_gradient_bg_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    background: url("../image/violet-background.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 20px;
    border-radius: 20px;
}

.violet_gradient_bg_holder .main_heading_two,
.violet_gradient_bg_holder .main_heading_five,
.violet_gradient_bg_holder .sub_content_heading {
    color: #fff;
    margin-bottom: 24px;
}

.four_columns_holder {
    justify-content: space-between;
    gap: 16px;
}

.four_columns_holder .w-25 {
    width: calc(25% - 16px);
}

.cstm_rounded_box {
    background: #edf3f9;
    border-radius: 100px;
    padding: 5px 10px;
    font-size: 14px;
    color: #0974f2;
    margin-left: 14px;
}

.violet_gradient_bg_holder .ordered_list_content_holder ul li {
    color: #ffffff;
}

.inner_light_blue_boxes {
    background: #edf3f9;
    border: 1px solid #0974f2;
    box-shadow: 0px 4px 4px rgba(9, 116, 242, 0.15);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #253053;
    font-size: 16px;
}

.mb-30 {
    margin-bottom: 30px;
}

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

.line-height {
    line-height: 2;
}

.main_row_holder .left_inner_page_holder {
    width: calc(65% - 30px);
}

.main_row_holder .right_inner_page_holder {
    width: calc(35% - 30px);
}

.main_row_holder .right_inner_page_holder .form_container {
    background: #ffffff;
    border: 1px solid #0974f2;
    box-shadow: -8px 0px 4px rgba(148, 179, 214, 0.2),
        0px -8px 4px rgba(148, 179, 214, 0.2), 0px 8px 4px rgba(148, 179, 214, 0.2),
        8px 0px 4px rgba(148, 179, 214, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.blue_gradient_bg_holder .ordered_list_content_holder li {
    color: #ffffff;
}

.text_red {
    color: red;
}

.transparent_background_section .main_row_holder {
    margin-top: -75px;
}

.transparent_background_section .flexbox_holder {
    margin-top: -110px;
}

.transparent_background {
    margin-top: -190px;
    display: flex;
    align-items: end;
    justify-content: end;
}

.hs-form-required {
    color: red !important;
}

.bordered_cards_holder .each_bordered_card_holder {
    padding: 0;
    border-radius: 16px;
    box-shadow: none;
}

.bordered_cards_holder .each_bordered_card_holder .top_heading_holder {
    background: #EEF3F8;
    text-align: center;
    padding: 12px 16px;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #D2E3F7;
}

.bordered_cards_holder .each_bordered_card_holder .top_heading_holder .logo_holder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.bordered_cards_holder .each_bordered_card_holder .top_heading_holder .logo_holder .main_heading_five {
    color: #253053;
    margin-bottom: 0;
}

.bordered_cards_holder .each_bordered_card_holder .top_heading_holder .info_holder {
    font-size: 16px;
    color: #253053;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder {
    padding: 16px;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder li {
    display: flex;
    gap: 8px;
    font-size: 16px;
    color: #4D505D;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder li::before {
    content: '';
    min-width: 18px;
    width: 18px;
    height: 18px;
    background: url('../image/checkbox-circle-fill.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder li:not(:last-child) {
    margin-bottom: 10px;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder .normal_lists_holder {
    padding-left: 25px;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder .normal_lists_holder li::before {
    content: '';
    min-width: 8px;
    width: 8px;
    height: 8px;
    background: #d9d9d9;
    border-radius: 100%;
    display: inline-block;
}

.bordered_cards_holder .each_bordered_card_holder .lists_content_holder .lists_holder .normal_lists_holder li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.indiasoft_modal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.indiasoft_modal .back_overlay {
    content: '';
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
}
.indiasoft_modal .content_holder {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1002;
}
.indiasoft_modal .content_holder img {
    max-width: 100%;
    max-height: 100%;
}
.indiasoft_modal.hidden .content_holder {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    pointer-events: none;
}
.indiasoft_modal .content_holder .big_img,
.indiasoft_modal.minimized .content_holder .side_img {
    display: block;
}
.indiasoft_modal.minimized .back_overlay {
    display: none;
}
.indiasoft_modal.minimized .content_holder {
    top: auto;
    bottom: 5%;
    left: 5%;
    transform: scale(1);
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
.indiasoft_modal .content_holder .side_img,
.indiasoft_modal.minimized .content_holder .big_img {
    display: none;
}
.indiasoft_modal .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.indiasoft_modal.minimized .close-btn {
    display: none;
}

.cstm_download_card {
    background: #FFFFFF;
    border-bottom: 1px solid #DFEEFF;
    box-shadow: 0px 1px 2px rgba(35, 93, 209, 0.1);
    border-radius: 6px;
}

.cstm_download_card .one_card_row_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 11px 24px;
    justify-content: space-between;
}

.one_card_row_holder .flex_holder {
    display: flex;
    align-items: center;
}

.cstm_download_card .heading {
    color: #253053;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
    margin-left: 20px;
}

.cstm_download_card .btn {
    padding: 8.2px 15px;
    border-radius: 5px;
}

.employee__activity {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
}

.employee__activity .emp_track_activity {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 18px;
}

/* .employee__activity .emp_track_activity:last-child {
    margin-left: -60px;
} */

.employee__activity .emp_track_activity .sub_content {
    font-size: 20px;
    color: #05394D;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
}

.employee__activity .emp_track_activity .main_heading_four {
    color: #05394D;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

.employee__activity .emp_track_activity .numbers {
    text-align: end;
}

.center_tracking_activity {
    display: flex;
    margin-top: 90px;
}

.center_tracking_activity .numbers {
    margin-top: -45px;
}

.center_tracking_activity .step__arrow {
    margin-right: -50px;
}

.cstm_download_card .btn__text {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.cstm_download_card .no_Bg .btn__text {
    color: #0974F2;
}

.mt-25 {
    margin-top: 25px;
}

.last__step_arrow {
    margin-right: -70px !important
}

.employee__activity .fourth {
    margin-left: -30px;
}


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

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 156px;
    z-index: 1;
    background: #FFFFFF;
    border: 1px solid #0974F2;
    box-shadow: 0px 37px 15px rgba(41, 41, 41, 0.01), 0px 21px 12px rgba(41, 41, 41, 0.05), 0px 9px 9px rgba(41, 41, 41, 0.09), 0px 2px 5px rgba(41, 41, 41, 0.1);
    border-radius: 5px;
}

.dropdown-content a {
    color: #313131;
    padding: 8px;
    display: block;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}
.three_cards_holder {
    display: flex;
    flex-wrap: wrap;
}
.three_cards_holder .each_card_holder {
    width: 33.33%;
}
.green_dot_lists_holder ul li::before {
    content: "";
    background-color: #29cc59;
    display: inline-block;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}
.blue_dot_lists_holder ul li::before {
    content: "";
    background-color: #0974F2;
    display: inline-block;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}
.dotted_lists_holder ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.dotted_lists_holder ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #464D62;
    line-height: 24px;
}
.one_lined_lists_icon_holder {
    display: flex;
    margin-top: 64px;
}
.one_lined_lists_icon_holder li {
    position: relative;
}
.one_lined_lists_icon_holder li::before {
    content: '';
    width: 100%;
    height: 1px;
    border-top: 1px dashed #0974F2;
    position: absolute;
    left: 0;
    top: 46px;
}
.one_lined_lists_icon_holder li::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #0974F2;
    border-radius: 100%;
    position: absolute;
    left: calc(50% + 34px);
    top: 42px;
}
.one_lined_lists_icon_holder li:not(:last-child) {
    padding-right: 26px;
}
.one_lined_lists_icon_holder li:last-child::before,
.one_lined_lists_icon_holder li:last-child::after {
    content: none;
}
.one_lined_lists_icon_holder li .icon_holder {
    position: relative;
    z-index: 1;
}
.one_lined_lists_icon_holder li .icon_holder img {
    min-width: 93px;
    min-height: 93px;
    max-width: 93px;
    max-height: 93px;
    background: #fff;
    border-radius: 100%;
}
.one_lined_lists_icon_holder li .heading_content_holder .heading_holder {
    font-size: 16px;
    font-weight: 600;
    color: #253053;
    margin: 12px 0;
}
.one_lined_lists_icon_holder li .heading_content_holder .content_holder {
    color: #464D62;
    margin-bottom: 0;
}

.contact_body {
    width: 100%;
    padding: 50px 0px;
}

.contact_body .main_heading_three{
    color: #253053;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 48px;
}

.contact_body_cnt {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 7px 6px #00000029;
    display: flex;
}

.contact_left_box {
    background-color: #F4F7FA;
    border-radius: 20px 0px 0px 20px;
    padding: 40px 20px;
    width: 50%;
}

.cmn_cnt_box p {
    color: #61666D;
    font-weight: 400;
    padding-bottom: 10px;
}

p.cmn_p {
    color: #01AAD1;
    display: block;
}

.delete-desc{
  padding-top: 30px;
}

.cmn_cnt_box ul {
    padding-left: 0;
}

.cmn_cnt_box ul li {
    list-style: none;
    color: #49535E;
    font-size: 1em;
    padding-bottom: 30px;
    padding-left: 46px;
    position: relative;
}

.cmn_cnt_box ul li span{
    font-weight: 500;
}

.cmn_cnt_box ul li::before {
    content: url('../image/star_tick.webp');
    position: absolute;
    top: 0px;
    left: 0;
    width: 12px;
    height: 12px;
    transform: scale(0.9);
}

.contact_rgt_box {
    background-color: #dfeeff;
    border-radius: 0px 20px 20px 0px;
    width: 50%;
    padding: 40px 20px;
}

.form-fields-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
    gap: 20px;
}

.full-width {
  grid-column: 1 / -1;
}

.contact_form_area {
    width: 100%;
}

.form-field-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact_form_area label {
    width: 100%;
    color: #1F2730;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
}

.contact_form_area input, .contact_form_area textarea {
    width: 100%;
    border-radius: 8px;
    background-color: #ffffffc9;
    border: none;
    padding: 12px 14px;
    font-size: 1em;
}

.contact_form_area button {
    padding: 13px 0px;
    cursor: pointer;
}

.text-center{
    text-align: center;
}
/* media Queries */

@media (max-width: 1200px) {
    .main_content {
        max-width: 1170px;
    }

    header .dropdown_menu a {
        margin: 0.2rem;
        padding: 0.2rem;
        /* background: #fff; */
        display: block;
    }

    header .menu-btn {
        padding: 0 1rem;
    }

    header .navbar a {
        font-size: 14px;
    }

    .banner_buttons {
        margin-top: 10px;
    }

    .workforce {
        padding: 0 1rem;
    }

    .daily_challenges_content,
    .case_studies,
    .main_div {
        padding: 0 1rem;
    }

    .footer_section .footer-col {
        width: calc(50% - 16px);
        padding: 0 15px;
    }

    .footer_section .footer-col:nth-child(-n + 3) {
        width: calc(33.33% - 16px);
    }

    .user__details {
        display: block;
        text-align: center;
    }

    /* .sign_up_right_side {
      width: 100%;
      padding: 30px;
      margin: 0 auto;
    } */

    .user_signUp_detail {
        border-radius: 60px;
        padding: 15px;
    }

    /* .user_signup_background {
      height: 100vh;
    } */

    .sign_up_left_side_bg {
        display: none;
    }

    .sign_up_right_side {
        width: 100%;
        padding: 20px;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .md_block {
        display: block;
    }

    .md_none {
        display: none;
    }

    .container_holder {
        max-width: 90%;
    }

    header .navbar .logo {
        padding: 16px;
    }

    .navbar .nav-links,
    .navbar .header_buttons .nav_buttons_holder {
        display: none;
    }

    .navbar .header_buttons .hamburg_btn {
        display: inline-block;
        margin-right: 10px;
    }

    .menu_open .navbar .nav-links {
        display: block;
        width: 100%;
        height: calc(100vh - 20px);
        overflow: auto;
        position: absolute;
        left: 0;
        top: 82px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    }

    .menu_open .navbar .nav-links ul {
        flex-wrap: wrap;
        height: auto;
        gap: 0;
    }

    .menu_open .navbar .nav-links ul .list_holder,
    .menu_open .navbar .nav-links ul .list_holder a {
        display: block;
        width: 100%;
        text-align: left;
    }

    .menu_open .navbar .nav-links ul .list_holder:not(:last-child) {
        border-bottom: 1px solid #e6e6e6;
    }

    .menu_open .navbar .nav-links ul .list_holder a {
        position: relative;
        padding: 15px 10px;
    }

    .menu_open .nav-links .dropdown a.main_anchor::after {
        right: 16px;
    }

    .menu_open .navbar .nav-links .nav_buttons_holder {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

    /* .menu_open .navbar .nav-links .nav_buttons_holder .btn {
        display: block;
        width: 100%;
    } */

    .menu_open .list_holder .dropdown_content .mega_menu .left_holder {
        display: none;
    }

    .menu_open .list_holder .dropdown_content .mega_menu .right_holder,
    .three_cards_holder .each_card_holder {
        width: 100%;
    }

    .three_cards_holder .each_card_holder {
        text-align: center;
    }

    .dotted_lists_holder ul li {
        display: block;
        justify-content: center;
    }

    .menu_open .list_holder.dropdown .dropdown_content {
        position: static;
    }

    .menu_open .list_holder .dropdown_content .mega_menu .sub_menu_holder.tab_content {
        height: auto;
        padding-bottom: 20px;
    }

    .menu_open .list_holder .dropdown_content .mega_menu .sub_menu_holder.tab_content .each_ul_holder {
        width: 100%;
        padding: 0 22px;
    }

    .dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder:not(:last-child) .anchor_content_holder {
        margin-bottom: 0;
    }

    .menu_open .list_holder .dropdown_content .mega_menu .sub_menu_holder .sub_menu_list_holder .anchor_content_holder .list_content_holder,
    .image_content_tabs .outer_content_holder .content_section[data-feature-slider-content] {
        max-width: 100%;
    }

    .menu_open .list_holder .dropdown_content .mega_menu .right_holder .sub_menu_list_holder {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .section-to-detect .left_holder {
        display: none;
    }

    .section-to-detect .right_holder {
        width: 100%;
    }

    .section-to-detect .right_holder .counter_list_holder {
        text-align: center;
    }

    .section-to-detect .right_holder .counter_list_holder li * {
        opacity: 1;
    }

    .hovered_cstm_vertical_tabs_holder .image_holder,
    .menu_open .list_holder .dropdown_content .mega_menu .sub_menu_holder.hidden,
    .section-to-detect .right_holder .counter_list_holder li {
        display: block;
    }

    .section-to-detect .right_holder .counter_list_holder li {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-to-detect.in-view .right_holder .counter_list_holder li.active-li:not(:last-child):after,
    .section-to-detect .right_holder .counter_list_holder li::before {
        content: none;
    }

    .section-to-detect .right_holder .counter_list_holder li strong,
    .section-to-detect .right_holder .counter_list_holder li p {
        display: block;
        margin-bottom: 20px;
    }

    .banner_form_holder .each_input_holder .flexbox_holder {
        flex-wrap: wrap;
    }

    .cstm_vertical_tabs_holder .left_holder,
    .hovered_cstm_vertical_tabs_holder .left_holder {
        display: none;
    }

    .cstm_vertical_tabs_holder .right_holder,
    .hovered_cstm_vertical_tabs_holder .right_holder {
        width: 100%;
    }

    .hovered_cstm_vertical_tabs_holder .each_holder .text__para {
        text-align: center;
        margin-bottom: 20px;
    }

    .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder {
        flex-wrap: wrap;
        justify-content: center;
        border: none;
    }

    .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active {
        box-shadow: none;
    }

    .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder.active .expand_content,
    .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .expand_content {
        display: block;
        margin-bottom: 20px;
    }

    .cstm_vertical_tabs_holder .tab_buttons .each_tab_holder .arrow_icon {
        display: none;
    }

    .blue_gradient_bg_holder .two_sided_equal_container {
        justify-content: center;
    }

    .blue_gradient_bg_holder .two_sided_equal_container .each_sided_holder img {
        width: 45px;
    }

    .our_pricing_card {
        width: calc(50% - 16px);
    }
    .content_management_tabs {
        justify-content: left;
    }
    .one_lined_lists_icon_holder {
        flex-direction: column;
        gap: 15px;
    }
    .one_lined_lists_icon_holder li {
        display: flex;
        flex-wrap: wrap;
        gap: 26px;
    }
    .one_lined_lists_icon_holder li .heading_content_holder {
        width: calc(100% - 120px);
    }
    .one_lined_lists_icon_holder li::before,
    .one_lined_lists_icon_holder li::after {
        content: none;
    }
    .one_lined_lists_icon_holder li:not(:last-child) {
        padding-right: 0;
    }
    .traceable_result_cards.four_card_row_holder .cstm_white_card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 991px) {
    .sm_block {
        display: block;
    }

    .sm_none {
        display: none;
    }

    .vertical_tabs_holder .left_tabs_holder,
    .blue_gradient_bg_holder .two_sided_equal_container .equal_icon_heading,
    .simplifyStrategy .mid_line {
        display: none;
    }

    .vertical_tabs_holder .outer_content_holder {
        width: 100%;
        padding-left: 0;
    }

    .two_columns_holder .w-50 {
        width: 100%;
    }

    .banner_form_holder {
        padding-left: 0;
    }

    .two_card_row_holder .cstm_white_card,
    .two_card_row_holder .cstm_card_holder,
    .three_card_row_holder .cstm_white_card,
    .four_card_row_holder .cstm_white_card,
    .blue_info_container_block .left_holder,
    .blue_info_container_block .right_holder {
        max-width: 100%;
        width: 100%;
    }

    .w-33 {
        width: 100% !important;
    }

    .image_content_tabs {
        flex-wrap: wrap;
    }

    .image_content_tabs .left_tabs_holder,
    .image_content_tabs .outer_content_holder {
        width: 100%;
        position: static;
    }

    .image_content_tabs .left_tabs_holder {
        min-height: auto;
        display: none;
    }

    .toolCard_text {
        padding-left: 0;
    }

    .home.banner_section .ordered_list_content_holder ul li,
    .home.banner_section .nav_buttons_holder,
    .toolCard_text .nav_buttons_holder,
    .project_management .project_management_right_side ul li,
    .project_management .project_management_right_side a.anchor_holder,
    .simplifyStrategy .teamtrace_toolCard_buttons,
    .cstm_white_card>div {
        justify-content: center;
    }

    .project_management .project_management_right_side ul li {
        justify-content: left;
    }

    .image_content_tabs .outer_content_holder .content_section {
        min-height: auto;
    }

    .home.banner_section .main_heading_two,
    .home.banner_section .popover_banner,
    .home.banner_section .muted_txt,
    .home.banner_section .right_banner.right_holder,
    .project_management .project_management_right_side p.text__para,
    .simplifyStrategy .header_in_card,
    .simplifyStrategy .simplify_strategy .text__para,
    .cstm_white_card,
    .image_content_tabs .outer_content_holder .content_section[data-feature-slider-content],
    .image_content_tabs .outer_content_holder .content_section[data-feature-slider-content] *,
    .header_in_card.text-lg-left.text-md-center,
    .simplify_strategy .text__para {
        text-align: center;
    }

    .simplifyStrategy .right_outcome {
        display: flex;
    }

    .simplifyStrategy .right_outcome>div {
        width: 100%;
        order: 2;
    }

    .simplifyStrategy .right_outcome .right_outcome_img {
        order: 1;
    }

    .demo_page_holder .demo_left_holder,
    .demo_page_holder .demo_right_holder,
    .demo_page_holder .demo_left_holder .demo_inner_left_content .lists_holder {
        width: 100%;
    }

    .home .content {
        padding: 0 1rem;
    }

    .management .management_content {
        display: inline-block;
    }

    .project_management {
        display: block;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .teamtrace_toolCard {
        margin: 0 1rem;
        display: block;
        text-align: center;
    }

    .daily_challenges,
    .see_more_link a {
        justify-content: center;
    }

    .footerSection {
        padding-left: 20px;
    }

    .banner_center_content {
        display: block;
        text-align: center;
    }

    .right_holder,
    .main_row_holder .left_holder,
    .main_row_holder .right_holder,
    .main_row_holder .left_inner_page_holder,
    .main_row_holder .right_inner_page_holder,
    .traceable_result_cards.four_card_row_holder .cstm_white_card,
    .traceable_result_cards.three_card_row_holder .cstm_white_card {
        width: 100%;
        /* margin-top: 15px; */
    }

    .main_row_holder .left_holder {
        order: 1;
    }

    .right_outcome_img img {
        margin-top: 10px;
    }

    .left_outcome,
    .right_outcome {
        width: auto;
    }

    .main_row_holder,
    .row_reverse_holder {
        display: block;
        text-align: center;
    }

    .clientSuccessStories .main_row_holder {
        display: flex;
    }

    .ourInnovation .left_cards_holder {
        width: 100%;
        margin-top: 30px;
    }

    .row_reverse_holder {
        display: flex;
        flex-direction: column-reverse;
    }

    .faq_main_content {
        max-width: 100%;
        margin: 0 auto;
    }

    .pricing_plan_cards {
        justify-content: center;
    }

    .pricing_plan_cards {
        gap: 20px;
    }

    .form_container .text__para {
        text-align: center;
    }

    .management_nav {
        justify-content: left;
    }

    .content_management_tabs {
        justify-content: left;
    }

    .four_columns_holder .w-25 {
        width: 100%;
    }

    .main_row_holder .right_inner_page_holder .form_container label {
        text-align: left;
    }

    .video_section {
        margin-top: -100px;
    }

    .our_story_content {
        margin-top: 20px;
    }

    .indiasoft_modal .content_holder {
        min-width: 90%;
        z-index: 10000000;
    }

    .indiasoft_modal.minimized .content_holder {
        min-width: auto;
    }

    .center_tracking_activity .step__arrow,
    .simplify_strategy .mid_line {
        display: none;
    }

    .employee__activity {
      gap: 20px;
    }

    .left_banner {
        width: 100%;
    }

    .right_banner {
        width: 100%;
        margin-top: 25px;
    }

    .text_align_center {
        text-align: center;
    }

}

@media (max-width: 768px) {
    .demo_page_holder .demo_right_holder .appointment-container {
        flex-wrap: wrap;
    }

    .demo_page_holder .demo_right_holder .appointment-container .calendar,
    .demo_page_holder .demo_right_holder .appointment-container .time-slots {
        width: 100%;
    }

    .footer_section .footer-col {
        width: calc(50% - 16px);
    }

    .footer_section .footer-col:nth-child(-n + 3) {
        width: calc(33.33% - 16px);
    }

    .home .content {
        display: block;
        text-align: center;
    }

    .management .management_content {
        display: inline-block;
        margin: 0px;
        position: relative;
    }

    .teamtrace_toolCard {
        display: block;
    }

    .work_culture_cards {
        flex-direction: column;
    }

    .work_culture_card {
        margin-top: 10px;
    }

    .traceable_result_cards {
        text-align: center;
        gap: 16px;
    }

    .traceable_card,
    .traceable_small_card {
        width: calc(50% - 8px);
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .case_studies {
        flex-direction: column;
    }

    .mid_line {
        display: none;
    }

    .teamtrace_toolCard_buttons {
        justify-content: center;
        align-items: center;
    }

    .case_studies .case_studies_body {
        display: block;
        align-items: center;
        justify-content: center;
    }

    .case_studies_body .case_studies__text_area {
        width: 100%;
    }

    /* .left_banner {
        width: 100%;
    }

    .right_banner {
        width: 100%;
        margin-top: 25px;
    } */

    .left_banner .popover_banner {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left_banner .sub_banner_text {
        margin-bottom: 0px;
    }

    .left_cards_holder {
        width: 100%;
    }

    .success_cards {
        justify-content: center;
    }

    .right_outcome {
        display: block;
        text-align: center;
    }

    .clientSuccessStories .main_row_holder {
        display: block;
    }

    .faq_main_content {
        padding: 20px;
    }

    .form_input_values .select_option {
        width: 100%;
    }

    .form_input_values {
        gap: 15px;
    }

    .user_detail_floated_card {
        width: auto;
        overflow: auto;
    }

    .form_full_width_values input,
    .form_input_values select,
    .form_input_values input {
        padding: 12px 10px;
    }

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

    .sign_up_left_side_bg {
        height: 300px;
        width: 300px;
        margin-bottom: 20px;
    }

    .dotted_image {
        display: none;
    }

    .blue-play-button {
        font-size: 3vw;
    }

    .main_heading_one {
        font-size: 30px;
    }

    .main_heading_two {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .left_banner .sub_banner_text,
    .left_banner .typed-text {
        font-size: 30px;
    }

    .project_management .project_management_right_side li h5,
    .content .left_banner li h5 {
        font-size: 13px;
    }

    .popover_banner .typed-text {
        min-height: auto;
    }

    .main_semibold_heading {
        font-size: 14px;
    }

    .management_nav {
        margin-top: 5px;
    }

    .header_in_card {
        font-size: 22px;
    }

    .nav_buttons_holder {
        justify-content: center;
        flex-wrap: wrap;
    }

    .our_pricing_card {
        width: 100%;
    }

    .form_container .contact_us_header {
        margin-top: 20px;
    }

    .text_align_center {
        text-align: center;
    }

    .employee__activity .emp_track_activity {
        width: 100%;
    }

    .center_tracking_activity {
        width: 100%;
    }

    .employee__activity .fourth {
        margin-left: 0px;
    }

    /* user delete css */
    .contact_body_cnt {
      flex-direction: column;
    }

    .contact_body {
      padding: 40px 0px;
    }
    
    .contact_left_box, .contact_rgt_box {
      width: 100%;
      border-radius: 20px 20px 0 0;
      padding: 20px;
    }

    .contact_rgt_box {
      border-radius: 0 0 20px 20px;
    }

    .contact_body .main_heading_three {
      font-size: 22px;
      margin-bottom: 30px;
    }
}

@media (max-width: 574px) {

    .footer_section .footer-col,
    .footer_section .footer-col:nth-child(-n + 3) {
        width: calc(100% - 16px);
    }

    .footer_section .footer-col {
        text-align: center;
    }

    .footer_section .end_footer_row {
        text-align: center;
        flex-direction: column;
    }

    .footer_section .end_footer_list ul {
        padding: 10px 15px;
    }

    .footer_section .email_optin_text {
        padding: 0px 15px;
    }

    .footer_section .footer-col ul {
        display: inline-block;
        text-align: center;
    }

    .downloaded_outer_holder {
        justify-content: center;
    }

    .btn {
        font-size: 12px;
    }

    .downloaded_outer_holder .downloaded_holder {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .one_lined_lists_icon_holder li .heading_content_holder {
        width: 100%;
    }
    .one_lined_lists_icon_holder li {
        gap: 0;
    }
    .blue_dot_lists_holder ul li::before,
    .green_dot_lists_holder ul li::before,
    .project_management ul li::before {
        content: none;
    }
    .tab_main_section_holder .project_management .project_management_right_side ul li {
        justify-content: center;
    }
}