:root {
    --color-primary: #4F2B72;
    --color-brand-green: #1AC577;
    --color-brand-green-light: #F1FBF6;
    --color-green-light: #E8FFF5;
    --color-light-green: var(--color-green-light);
    --color-light-gray: #FBFBFB;
    --color-red: #FF7A7A;
    --color-error: var(--color-red);
    --color-purple: #E0D2ED;
    --color-light-purple: #FCF9FF;
    --color-dark-purple: var(--color-primary);
    --color-disable: #F5F7F9;

    --color-white: #ffffff;
    --color-muted: #777;
    --color-bg: #ffffff;
    --color-stroke: #EAEAEA;
    --color-purple-stroke: #E0D2ED;

    --color-text: #333;
    --color-text-primary: var(--color-primary);
    --color-text-secondary: #52575C;
    --color-text-light: #52575C;
    --color-text-mid: #52575C;
    --color-text-dark: #25282B;
    --color-text-placeholder: #A0A0A0;
    --color-link: #2F80ED;

    --background-gradient: linear-gradient(90deg, rgba(224, 210, 237, 0.1) -0.49%, rgba(255, 255, 255, 0.1) 100.21%);
    --border-radius: 8px;
    --border-radius-12: 12px;
    --container-width: 1240px;
}

body {
    font-family: "proxima-nova", sans-serif !important;
}

header.header.pageheader {
    box-shadow: none;
    position: relative !important;
    background: var(--background-gradient);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 140%;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

.cls-headwidth .header .container {
    max-width: var(--container-width) !important;
}

.pageheader .menu-section .menucontainer {
    max-width: var(--container-width);
}

body.cls-pageinner {
    padding-top: 0 !important;
}

.page-breadcrumb {
    margin: 0;
    padding: 0;
    min-height: 0;
}

.text-heading {
    color: var(--color-primary);
}

.subtitle {
    color: var(--color-text-mid);
}

.text-size-32 {
    font-size: 32px !important;
}

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

.text-size-18 {
    font-size: 18px !important;
}

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

.text-size-14 {
    font-size: 14px !important;
}

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

.text-bold {
    font-weight: 700 !important;
}

.text-semi-bold {
    font-weight: 600 !important;
}

.text-medium {
    font-weight: 500 !important;
}

.text-regular {
    font-weight: 400 !important;
}

.text-light {
    font-weight: 300 !important;
}

.line-height-100 {
    line-height: 100% !important;
}

.line-height-140 {
    line-height: 140% !important;
}

.line-height-150 {
    line-height: 150% !important;
}

.text-color-primary {
    color: var(--color-primary) !important;
}

.text-color-light {
    color: var(--color-text-light);
}

.text-color-muted {
    color: var(--color-muted);
}

.text-color-dark {
    color: var(--color-text);
}

.text-color-mid {
    color: var(--color-text-mid);
}

.text-color-green {
    color: var(--color-brand-green);
}

.text-color-error {
    color: var(--color-error);
}

.roshi-table {
    border: 1px solid var(--color-purple-stroke);
    border-radius: 12px;
    overflow: hidden;
}

.roshi-table.compare-table {
    border: none;
}

.roshi-table.no-border {
    border: none;
}

.roshi-table .table.fist-col-bold tr td:first-child {
    font-weight: 700;
}

.roshi-table.compare-table th span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-primary);
    white-space: nowrap;
}

.roshi-table.compare-table th span:after {
    content: "";
    width: 36px;
    height: 3px;
    top: 4px;
    left: 0;
    background-color: var(--color-brand-green);
}

.roshi-table th span.greenline{
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-primary);
    white-space: nowrap;
}


.roshi-table th span.greenline:after {
    content: "";
    width: 36px;
    height: 3px;
    top: 4px;
    left: 0;
    background-color: var(--color-brand-green);
}

.roshi-table.compare-table .table thead th {
    border: 0;
}

.roshi-table .table td,
.roshi-table .table th {
    padding: 12px 20px;
}

.roshi-table.compare-table .table td:nth-of-type(odd),
.roshi-table.compare-table .table th:nth-of-type(odd) {
    background-color: #fff;
}

.roshi-table.compare-table .table td:nth-of-type(even),
.roshi-table.compare-table .table th:nth-of-type(even) {
    background-color: var(--color-light-gray);
}

.roshi-table.compare-table .table tbody td:first-child {
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}

.table tr td:first-child, .table tr th:first-child {
    padding-left: 20px;
}

.table tr td:last-child, .table tr th:last-child {
    padding-right: 20px;
}

.faqs .roshi-table .table tr th, .faqs .roshi-table .table tr td {
    padding: 10px 20px;
}

.table thead th {
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0px;
    border-top: none;
    border-bottom: 1px solid var(--color-purple-stroke);
}

.roshi-table.no-border thead th {
    border: none;
}

.table.header-primary-color thead th {
    color: var(--color-primary);
}

.table tbody tr td {
    border: none;
    padding: 12px 0px;
    font-size: 16px;
}

.table tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

.table tbody tr:nth-of-type(even) {
    background-color: var(--color-light-gray);
}

.table.strip2 tbody tr:nth-of-type(even) {
    background-color: #fff;
}

.table.strip2 tbody tr:nth-of-type(odd) {
    background-color: var(--color-light-gray);
}

.table tbody tr:last-child {
    border-radius: 0 0 8px 8px;
    border: 1px solid transparent;
}

.table.no-borber thead th {
    border: none;
}


.table.strip-col td:nth-of-type(odd),
.table.strip-col th:nth-of-type(odd) {
    background-color: #fff;
    padding: 12px 20px;
}

.table.strip-col td:nth-of-type(even),
.table.strip-col th:nth-of-type(even) {
    background-color: var(--color-light-gray);
    padding: 12px 20px;
}

.header-underline-green {
    position: relative;
    padding-bottom: 6px;
}

.header-underline-green:after {
    content: "";
    width: 61px;
    height: 3px;
    background: var(--color-brand-green);
    position: absolute;
    bottom: 0px;
    left: 0;
}

.card-shadow {
    box-shadow: 0px 8px 16px 0px #4F2B721A;
}

.inner-shadow {
    box-shadow: 0px 0px 6px 0px #4E0C580F inset;
}

.header .menu > ul > li .menu-subs {
    margin-top: 25px;
}

.background-gradient {
    background: var(--background-gradient);
}

.container {
    max-width: var(--container-width);
}

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

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

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

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

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

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

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

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

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

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

.gap-8 {
    gap: 8px !important;
}

.gap-6 {
    gap: 6px !important;
}

.gap-16 {
    gap: 16px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-24 {
    gap: 24px !important;
}

.gap-32 {
    gap: 32px !important;
}

.gap-12 {
    gap: 12px !important;
}

.br-xs,
.br-md,
.br-lg {
    display: none;
}

.section-title {
    font-size: 24px;
    color: var(--color-primary);
    text-align: center;
}

.section-sub-title {
    color: var(--color-primary);
    text-align: center;
}

.fact-check-list-1 {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.fact-check-list-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 4px;
    margin-bottom: 0;
}

ul.fact-check-list-1 li {
    margin: 0;
    padding: 0;
}

ul.fact-check-list-1 li:before {
    display: none !important;
    margin: 0;
    padding: 0;
}

.fact-check-list-1 li, .fact-check-list-2 li {
    display: flex;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid var(--color-primary);
    margin-right: 10px;
    margin-top: 8px;
}

.arrow-right-black {
    border-left-color: #000000;
}

.arrow-right-primary {
    border-left-color: var(--color-primary);
}

.fact-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
    align-self: self-start;
    margin-right: 8px;
    margin-top: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.fact-icon-check {
    background-image: url("../../images/icons/fact-check.svg");
}

.fact-icon-success {
    background-image: url("../../images/icons/fact-checkbox.svg");
}

.fact-icon-danger {
    background-image: url("../../images/icons/fact-checkbox-error.svg");
}

.fact-icon-warning {
    background-image: url("../../images/icons/warning_gray.svg");
}

.fact-icon-warning-red {
    background-image: url("../../images/icons/warning.svg");
}

.author-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The tooltip popup */
.author-tooltip .tooltip-bar {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 4px;
    padding: 12px 10px;
    width: 280px;
    box-shadow: 0px 4px 14px 4px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

/* Tooltip content */
.author-tooltip .tooltip-content {
    color: #333;
    text-align: left;
    position: relative;
    padding-right: 26px;
    font-size: 14px !important;
    line-height: 140%;
}

.author-tooltip .tooltip-content a {
    display: inline;
    color: var(--color-link);
}

/* Close button */
.author-tooltip .tooltip-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #666;
    font-size: 20px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-tooltip .tooltip-close:hover {
    color: #333;
}

/* Arrow pointing down */
.author-tooltip .tooltip-bar::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

/* Show tooltip on hover */
.author-tooltip:hover .tooltip-bar {
    visibility: visible;
    opacity: 1;
}

.author-tooltip ul.fact-check-list-1 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;

}

.author-tooltip ul.fact-check-list-1 li {
    margin: 0;
    padding: 0;
    font-size: 14px !important;
}

.author-tooltip ul.fact-check-list-1 li:before {
    display: none;
    margin: 0;
    padding: 0;
}

.author-tooltip ul.fact-check-list-1 li {
    display: flex;
}

.author-tooltip .fact-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    align-self: self-start;
    margin-right: 8px;
    flex-shrink: 0
}

.author-tooltip .fact-icon-success {
    background: url("../../images/icons/fact-checkbox.svg") no-repeat top center;
}

.sperator {
    width: 1px;
    height: auto;
    background-color: var(--color-stroke);
}

.flex-column > .sperator {
    width: auto;
    height: 1px;
}

@media screen and (min-width: 768px) {
    .flex-md-row > .sperator {
        width: 1px;
        height: auto;
    }
}


.bg-light-gray {
    background-color: var(--color-light-gray);
}

.bg-light-purple {
    background-color: var(--color-light-purple);
}

.bg-light-green {
    background-color: var(--color-light-green);
}



/* XS: <576px */
@media (max-width: 575.98px) {
    .br-xs {
        display: inline;
    }
}

/* MD: ≥768px */
@media (min-width: 768px) {
    .br-md {
        display: inline;
    }
}

/* LG: ≥992px */
@media (min-width: 992px) {
    .br-lg {
        display: inline;
    }
}


/** hero **/

.hero-section {
    background: var(--background-gradient);
    padding: 40px 0;
}

.hero-section .hero-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 28px;
    padding-bottom: 20px;
}

.hero-section .hero-text .text-heading {
    font-size: 44px;
    position: relative;
    padding-left: 12px;
    font-weight: 700;
    line-height: 100%;
}

.hero-section .hero-text .text-heading:before {
    content: "";
    width: 4px;
    height: 100%;
    background: var(--color-brand-green);
    display: block;
    margin-right: 12px;
    position: absolute;
    left: 0;
}

.hero-section .fact-note {
    position: absolute;
    bottom: 0;
    line-height: 100%;
}

.hero-section .left {
    padding-right: 60px;
    position: relative;
}

.hero-section .right {
    flex: 0 0 534px;
    padding: 0;
}

.accordion-wrap-content {
    margin-top: 0px;
}

.hero-section .fact-check-list-1 {
    line-height: 150%;
}

.section-card {
    background-color: var(--color-light-purple);
    padding: 16px 0;
}

.section-card.primary-color {
    background-color: var(--color-primary);
    color: #fff;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-radius-8 {
    border-radius: 8px;
}

.p-16 {
    padding: 16px;
}


@media screen and (max-width: 767px) {
    .hero-section {
        padding: 0;
        background: #ffffff;
    }

    .hero-section .hero-text {
        gap: 8px;
        padding-bottom: 0;

    }

    .hero-section .page-breadcrumb ul li:before {
        mask: url('../../images/breadcrumb-arrow.svg') center no-repeat;
        background: #ffffff;
    }

    .hero-section .hero-text .text-heading:before {
        display: none;
    }

    .hero-section .hero-text .text-heading {
        text-align: center;
        font-size: 26px;
    }

    .hero-section .left {
        padding-right: 15px;
        position: relative;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(136, 86, 171, 1) 0%, rgba(78, 43, 114, 1) 100%);
        color: #fff !important;
        padding-bottom: 10px;
        text-align: center;
        min-height: 230px !important;
        padding-top: 10px;
    }

    .hero-section .left *, .page-breadcrumb ul li:last-child {
        color: #fff;
    }

    .hero-section .left .accordion-wrap *,
    .hero-section #facts-accordion .accordion-item .accordion-title.collapsed .text,
    .hero-section #facts-accordion .accordion-item .accordion-title .text {
        color: #fff;
    }

    .hero-section .left:before {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        content: '';
        top: 0;
        background: url('../../images/backgrounds/home-banner-shape.png') no-repeat center center;
        background-size: 50%;
        opacity: .07;
    }

    .hero-section .left:after {
        position: absolute;
        content: "";
        background: url('../../images/backgrounds/Shape1.svg') bottom center no-repeat;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
        background-position: center calc(100% + 33px);
    }

    .hero-section .fact-note {
        position: relative;
        margin-top: 12px;
        display: none;
    }

    .hero-section .right {
        flex: 0 0 100%;
        padding: 0 15px;
    }

    .hero-section .text-subheading {
        font-size: 15px;
    }

    .hero-section .accordion-wrap {
        gap: 12px;
        margin-bottom: 10px;
    }

    .mobile-expand {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 15px;
        gap: 8px;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .mobile-expand.active {
        position: relative;
        bottom: 0;
    }

    .mobile-expand:after {
        content: " ";
        width: 15px;
        height: 15px;
        display: block;
        background: var(--color-light-gray);
        mask: url("../../images/icons/double-arrow-up-green.svg") no-repeat center center;
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .mobile-expand.active:after {
        transform: rotate(0deg);
        background: var(--color-brand-green);
    }

    .mobile-expand img {
        width: 15px;
        height: 15px;
        transform: rotate(180deg);
    }

    .accordion-wrap-content {
        display: none;
        margin-top: -2px;
    }

}

.tippy-box[data-theme~='roshi-tooltip'] {
    background: #fff;
    color: #222;
    border-radius: 4px;
    box-shadow: 0px 4px 14px 4px rgba(0, 0, 0, 0.12);
    padding: 12px 10px;
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-content {
    padding: 0;
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-arrow {
    color: #fff;
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-inner {
    position: relative;

}

.tippy-box[data-theme~='roshi-tooltip'] .tooltip-content {
    color: #333;
    text-align: left;
    position: relative;
    padding-right: 26px;
    font-size: 14px !important;
    line-height: 140%;
    min-width: 254px;
}

.tippy-box[data-theme~='roshi-tooltip'] .tooltip-content a {
    display: inline;
    color: var(--color-link);
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-close {
    position: absolute;
    top: 12px;
    right: 12px;
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    color: #666;
    font-size: 20px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tippy-box[data-theme~='roshi-tooltip'] .tippy-close:hover {
    color: #333;
}

/** hero section 2 */

.hero-section-2 {
    background: var(--background-gradient);
    padding: 12px 0 52px;
    position: relative;
}

.hero-section-2 .wrapper {
    max-width: 808px;
    margin: 28px auto 0;
}

.hero-section-2 .fact-note {
    position: absolute;
    bottom: 0;
    line-height: 100%;
}

.hero-section-2 .left {
    padding-right: 60px;
    position: relative;
}

.hero-section-2 .right {
    flex: 0 0 534px;
    padding: 0;
}

.hero-section-2 .accordion-wrap-content {
    margin-top: 0px;
}

.hero-section-2 .fact-check-list-1 {
    line-height: 150%;
}

.hero-section-2 .hero-sec {
    gap: 12px;
}

.hero-section-2 .hero-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 16px;
}

.hero-section-2 .hero-title:after {
    content: '';
    width: 92px;
    height: 5px;
    background: var(--color-brand-green);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.hero-section-2 .wrapper {
    background-image: url('../../images/backgrounds/logo1.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 218px;
}

.hero-section-2 .hero-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--color-primary);
}

.hero-section-2 .hero-accordion-wrapper {
    margin-top: 28px;
}

.hero-section-2 .wrapper {
    gap: 16px;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .hero-section-2 {
        padding: 0;
        background: #ffffff;
    }

    .hero-section-2 .wrapper {
        gap: 8px;
        margin-top: 28px;
    }

    .hero-section-2 .hero-text {
        gap: 8px;
        padding-bottom: 0;

    }

    .hero-section-2 .hero-subtitle {
        font-size: 15px;
    }

    .hero-section-2 .page-breadcrumb ul li:before {
        mask: url('../../images/breadcrumb-arrow.svg') center no-repeat;
        background: #ffffff;
    }

    .hero-section-2 .hero-text .text-heading:before {
        display: none;
    }

    .hero-section-2 .hero-title {
        text-align: center;
        font-size: 26px;
        padding-bottom: 0;
    }

    .hero-section-2 {
        padding-right: 15px;
        position: relative;
        z-index: 10;
        background: linear-gradient(to bottom, rgba(136, 86, 171, 1) 0%, rgba(78, 43, 114, 1) 100%);
        color: #fff !important;
        padding-bottom: 10px;
        text-align: center;
        min-height: 230px !important;
        padding-top: 10px;
    }

    .hero-section-2 * {
        color: #fff !important;
    }

    .hero-section-2:before {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        content: '';
        top: 0;
        background: url('../../images/backgrounds/home-banner-shape.png') no-repeat center center;
        background-size: 50%;
        opacity: .07;
        z-index: -1;
    }

    .hero-section-2:after {
        position: absolute;
        content: "";
        background: url('../../images/backgrounds/Shape1.svg') no-repeat center calc(100% + 33px);
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        background-position: center calc(100% + 33px);
    }

    .hero-section-2 .fact-note {
        position: relative;
        margin-top: 12px;
        display: none;
    }

    .hero-section-2 .right {
        flex: 0 0 100%;
        padding: 0 15px;
    }

    .hero-section-2 .text-subheading {
        font-size: 15px;
    }

    .hero-section-2 .accordion-wrap {
        gap: 12px;
        margin-bottom: 10px;
    }

    .hero-section-2 .hero-title:after {
        display: none;
    }

    .hero-section-2 .mobile-expand {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 15px;
        gap: 8px;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .hero-section-2 .mobile-expand.active {
        position: relative;
        bottom: 0;
    }

    .hero-section-2 .mobile-expand:after {
        content: " ";
        width: 15px;
        height: 15px;
        display: block;
        background: var(--color-light-gray);
        mask: url('../../images/icons/double-arrow-up-green.svg') no-repeat center center;
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .hero-section-2 .mobile-expand.active:after {
        transform: rotate(0deg);
        background: var(--color-brand-green);
    }

    .hero-section-2 .mobile-expand img {
        width: 15px;
        height: 15px;
        transform: rotate(180deg);
    }

    .hero-section-2 .accordion-wrap-content {
        display: none;
        margin-top: -2px;
    }

    .hero-section-2 .hero-accordion-wrapper {
        padding-bottom: 8px;
        margin-top: 8px;
    }

}
