html,
body {
    font-family: 'Inter-Regular';
}

html {
    scroll-behavior: smooth;
}

/* Start Fonts */
@font-face {
    font-family: 'Inter-Light';
    src: url('../fonts/Inter-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Black';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: 900;
    font-style: normal;
}

.inter-light {
    font-family: "Inter-Light";
}

.inter-regular {
    font-family: "Inter-Regular";
}

.inter-medium {
    font-family: "Inter-Medium";
}

.inter-semibold {
    font-family: 'Inter-SemiBold';
}

.inter-bold {
    font-family: "Inter-Bold";
}

/* End Fonts */
/* Start Common Css */

body {
    color: #031842;
    background: #fff;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.flex-auto {
    flex: auto;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-inline-flex {
    display: inline-flex;
}

.d-table {
    display: table;
}

.d-table-cell {
    display: table-cell;
}

.d-none {
    display: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.d-desktop {
    display: block;
}

.d-mobile {
    display: none;
}

.align-items-start {
    align-items: start;
}

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

.align-items-end {
    align-items: end;
}

.align-items-stretch {
    align-items: stretch;
}

.justify-content-start {
    justify-content: start;
}

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

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: end;
}

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

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

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-break {
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.color-white {
    color: #fff;
}

.color-primary {
    color: #2A5EE3;
}

.m-0 {
    margin: 0px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-60 {
    margin: 60px !important;
}

.m-70 {
    margin: 70px !important;
}

.m-80 {
    margin: 80px !important;
}

.m-90 {
    margin: 90px !important;
}

.m-100 {
    margin: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-0 {
    margin-left: 0px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

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

.ml-50 {
    margin-left: 50px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.neg-mx-60 {
    margin-left: -60px;
    margin-right: -60px;
}

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

.p-0 {
    padding: 0px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-60 {
    padding: 60px !important;
}

.p-70 {
    padding: 70px !important;
}

.p-80 {
    padding: 80px !important;
}

.p-90 {
    padding: 90px !important;
}

.p-100 {
    padding: 100px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-100 {
    padding-right: 100px !important;
}


.site-width {
    max-width: 1366px;
    margin: 0 auto;
}

.container-inner {
    padding-right: 20px;
    padding-left: 20px;
}

.logo_outer {
    width: inherit;
    max-width: 200px;
    height: 80px;
    vertical-align: middle;
    display: table-cell;
}

.logo_outer img {
    max-width: 200px;
    max-height: 80px;
    vertical-align: middle;
}

.circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    margin: 0px 3px;
}

.module-circle {
    background: #2A5EE3;
    width: 86px;
    height: 86px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5px;
    border-width: 2px;
    border-color: #2A5EE3;
    border-style: dotted;
    background-clip: content-box;
    padding: 7px;
    position: relative;
}

.label-box {
    margin: 0;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
    background: #2b5ee3;
    position: relative;
    z-index: 9;
    line-height: 18px;
}

.color-recruit {
    background: #A45A98;
    border-color: #A45A98;
    background-clip: content-box;
}

.color-learning {
    background: #57D1E1;
    border-color: #57D1E1;
    background-clip: content-box;
}

.color-core-hr {
    background: #4987F3;
    border-color: #4987F3;
    background-clip: content-box;
}

.color-performance {
    background: #62B1EA;
    border-color: #62B1EA;
    background-clip: content-box;
}

.color-analytics {
    background: #9E6BF0;
    border-color: #9E6BF0;
    background-clip: content-box;
}

.color-report {
    background: #D44099;
    border-color: #D44099;
    background-clip: content-box;
}

.bg-recruit,
.vertical-line-recruit {
    background: #A45A98;
}

.bg-learning,
.vertical-line-learning::after {
    background: #57D1E1 !important;
}

.bg-core-hr,
.vertical-line-core-hr::after {
    background: #4987F3 !important;
}

.bg-performance,
.vertical-line-performance::after {
    background: #62B1EA !important;
}

.bg-analytics,
.vertical-line-analytics::after {
    background: #9E6BF0 !important;
}

.bg-report,
.vertical-line-report::after {
    background: #D44099 !important;
}

.bg-primary {
    background: #2A5EE3;

}

.play-btn-dot img {
    width: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
    line-height: 20px;
}

.font-22 {
    font-size: 22px;
}

.bg-navy {
    background-color: #031842;
}

.bg-recruit {
    background: #A45A98;
}

.gen-logo h2 {
    font-size: 26px;
    max-width: 700px;
}

.gen-logo p {
    font-size: 20px;
}

.module-circle p {
    font-size: 10px;
    font-family: 'Inter-Medium';
    color: #fff;
}

.circle.small {
    width: 5px;
    height: 5px;
}

.module-circle.center-circle p {
    font-size: 14px;
}

.center-circle {
    width: 132px;
    height: 132px;
}

.play-btn {
    display: flex;
    align-items: center;
    color: #fff;
    border: 2px dotted #2A5EE3;
    padding: 5px 8px 5px 5px;
    border-radius: 10px;
    font-size: 10px;
}

.module-circle:after {
    content: "";
    position: absolute;
    border: 0.5px dashed #2b5ee3;
    height: 100px;
    bottom: 100%;
    width: 0.1px;
}

/* height: 43px; */


.module-circle::before {
    content: "";
    position: absolute;
    border: 0.5px dashed #2b5ee3;
    height: 0px;
    top: 100%;
    width: 0.1px;
}

/* height: 43px; */


.module-circle.small-line::after {
    height: 0px;
}

.module-circle.small-line::before {
    height: 80px;
}

.module-circle.color-recruit:after,
.module-circle.color-recruit::before,
.border-color-recruit {
    border-color: #A45A98;
}

.module-circle.color-learning:after,
.module-circle.color-learning::before,
.border-color-learning {
    border-color: #57D1E1;
}

.module-circle.color-core-hr:after,
.module-circle.color-core-hr::before,
.border-color-core-hr {
    border-color: #4987F3;
}

.module-circle.color-performance:after,
.module-circle.color-performance::before,
.border-color-performance {
    border-color: #62B1EA;
}

.module-circle.color-analytics:after,
.module-circle.color-analytics::before,
.border-color-analytics {
    border-color: #9E6BF0;
}

.module-circle.color-report:after,
.module-circle.color-report::before,
.border-color-report {
    border-color: #D44099;
}



.use-case-row>div {
    width: 372px;
    text-align: center;
}

.use-case-bottom>div {
    width: 175px;
    text-align: center;
}

.graph-view {
    overflow: auto;
}

.graph-view-container {
    min-width: 1200px;
}

.section-hd h2 {
    text-transform: capitalize;
    font-size: 30px;
    font-family: 'Inter-Bold';
    margin: 0px;
    margin-bottom: 20px;
}

.section-hd h5 {
    font-size: 20px;
    font-family: 'Inter-Light';
    margin: 0px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.section-hd p {
    font-size: 14px;
    font-family: 'Inter-Light';
    border-radius: 10px;
    padding: 10px 15px;
    max-width: 440px;
    margin: 0 auto;
    line-height: 20px;
}

.left-col,
.right-col {
    width: 49%;
}

.vertical-line {
    width: 8%;
}

.vertical-line::after {
    content: "";
    position: absolute;
    background: #A45A98;
    height: 108%;
    width: 1px;
    left: 50%;
    top: 0px;
}


.position-relative {
    position: relative;
    z-index: 9;
}

.video-img img {
    max-width: 400px;
    max-height: 400px;
    cursor: pointer;
}

.icon-label img {
    background: rgba(163, 90, 152, .47);
    width: 32px;
    height: 32px;
    left: 0;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
}

.benefits-list li {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    margin-left: 10px;
    font-family: "Inter-Light";
}

.link-line-right:after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    background: #a45a98;
    top: 40%;
}

.link-line-left:after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    background: #a45a98;
    top: 40%;
    right: 100%;
}

.right-col h4 {
    font-size: 16px;
    margin-top: 0px;
}

.text-color-primary {
    color: #2A5EE3;
}

.text-color-recruit {
    color: #A45A98;
}

.text-color-learning {
    color: #57D1E1;
}

.text-color-core-hr {
    color: #4987F3;
}

.text-color-performance {
    color: #62B1EA;
}

.text-color-analytics {
    color: #9E6BF0;
}

.text-color-report {
    color: #D44099;
}

.bg-core-hr-opacity {
    background: rgba(73, 135, 243, 0.47) !important;
}

.bg-learning-opacity {
    background: rgba(87, 209, 225, 0.47) !important;
}

.bg-performance-opacity {
    background: rgba(98, 177, 234, 0.47) !important;
}

.bg-analytics-opacity {
    background: rgba(158, 107, 240, 0.47) !important;
}

.footer {
    background: #fff;
    position: fixed;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0px;
}

.footer a {
    color: #031842;
    font-size: 13px;
    font-family: "Inter-SemiBold";
    padding-left: 18px;
    position: relative;

}

.footer h5 {
    margin: 0px 22px;
    position: relative;
}

.footer h5 a:before {
    content: "";
    position: absolute;
    width: 6px;
    z-index: 9;
    background: #031842;
    height: 6px;
    border-radius: 50%;
    top: 5px;
    left: 0;
}

.footer .footer-link.active h5 a:before {
    background-clip: content-box;
    border: 1px solid #031842;
    padding: 2px;
    top: 0px;
    left: -10px;
    width: 10px;
    height: 10px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
}

/* Styles for the modal overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

/* Styles for the modal content */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    z-index: 999;
    border-radius: 10px;
}

/* Style for the close button */

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    line-height: 20px;
    margin-bottom: 10px;
}

.modal video {
    max-width: 100% !important;
    max-height: 450px;
}

.bg-black {
    background: #000000;
}

.bg-black span.close:hover {
    color: #fff;
}

.benefits-list {
    padding-left: 5px !important;
}

.full-width {
    width: 100%;
}

.play-btn-dot {
    width: 25px;
    height: 25px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: -12px;
    position: relative;
    z-index: 9;
}

.circle:nth-last-child(1) {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}



@media only screen and (min-width: 1024px) {
    .ds-hide {
        display: none;
    }
}

@media only screen and (max-width: 1180px) {
    .graph-view-container {
        padding-left: 20px;
    }

    .link-line-right:after,
    .link-line-left:after {
        width: 84px;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .graph-view-container {
        padding-left: 20px;
    }

    .video-img img {
        max-width: 380px;
        max-height: 350px;
        cursor: pointer;
    }

    .tb-hide {
        display: none;
    }

    .ds-hide {
        display: none;
    }

    .benefits-list li {
        font-size: 12px;
    }

    .font-14 {
        font-size: 12px;
    }

    .link-line-right:after,
    .link-line-left:after {
        width: 42px;
    }

    .section-hd h5 {
        font-size: 15px !important;
    }

    .label-box {
        padding: 8px !important;
    }

    .footer h5 {
        margin: 0px 12px;
        position: relative;
        white-space: nowrap !important;
    }

    .footer a {
        font-size: 12px;
    }

    .font-14 {
        font-size: 12px;
    }

    .benefits-list li {
        font-size: 12px;
    }

    .section-hd.pr-40 {
        padding-right: 12px !important;
    }

    .section-hd.ml-40 {
        margin-left: 12px !important;
    }

    .logo_outer {
        height: 60px;
    }

    .logo_outer img {
        height: 60px;
    }

    footer.footer .site-width {
        max-width: 793px;
        overflow: auto;
    }

    footer.footer .site-width .container-inner {
        min-width: 820px;
    }

    .footer a {
        line-height: 20px;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}

@media only screen and (max-width: 767px) {

    .circle {
        margin: 0px auto !important;
        margin-bottom: 5px !important;
    }

    .label-box {
        display: inline-block;
        position: relative;
        font-size: 11px;
        line-height: 18px;
    }

    .video-img img {
        max-width: 250px;
        max-height: 400px;
        cursor: pointer;
    }


    .graph-view {
        overflow: visible;
    }

    .module-circle:after {
        content: none !important;
    }

    .module-circle::before {
        height: 120% !important;
    }

    .module-circle.height-160::before {
        height: 175% !important;
    }

    .module-circle.height-74::before {
        height: 75% !important;
    }

    .module-circle.height-84::before {
        height: 84% !important;
    }

    .module-circle.height-60::before {
        height: 55% !important;
    }

    .mb-ml-0 {
        margin-left: 0px !important;
    }

    footer.footer .site-width {
        max-width: 370px;
        overflow: auto;
    }

    footer.footer .site-width .container-inner {
        min-width: 793px;
    }

    .footer h5 a:before {
        top: 4px;
    }

    .footer .footer-link.active h5 a:before {
        left: -3px;
        width: 7px;
        height: 7px;
    }

    .logo_outer {
        height: 48px;
    }

    .logo_outer img {
        height: 40px;
    }

    .section-hd.pr-40 {
        padding-right: 10px !important;
    }

    .footer h5 {
        margin: 0px 10px;
    }


    .module-circle {
        margin: 0 auto;
    }

    .mb-hide {
        display: none;
    }

    .modal-content {
        margin: 25% auto !important;
    }

    .gen-logo.ml-50 {
        margin-left: 0px !important;
    }

    .gen-logo h2 {
        font-size: 16px;
    }

    .gen-logo img {
        width: 50px;
    }

    .gen-logo p {
        font-size: 12px;
    }

    .row.d-flex.position-relative {
        flex-wrap: wrap;
    }

    .left-col,
    .right-col {
        width: 100%;
    }

    .section-hd h5 {
        font-size: 14px !important;
    }

    .vertical-line {
        display: none !important;
    }

    .link-line-right:after {
        width: 30px;
    }

    .pt-140,
    .pt-100 {
        padding-top: 20px !important;
    }

    .reverse-col {
        flex-direction: column-reverse;
    }

    .pb-100 {
        padding-bottom: 50px !important;
    }

    .footer a {
        font-size: 11px;
        line-height: 20px;
    }

    .footer {
        padding: 12px 0px !important;
    }

    .font-14 {
        font-size: 12px;
    }

    .mb-pb-0 {
        padding-bottom: 0px !important;
    }

    .mb-pt-0 {
        padding-top: 0px !important;
    }

    .benefits-list li {
        font-size: 12px;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}