:root {
    --main-color: #47BAB3;
    --secondary-color: #39958F;
    --dark-color: #21928F;
    --text-deep: #196D6B;
    --text-normal: #525252;
    --text-soft: #424242;
    --text-main: #29B6B3;
    --soft-bg: #F6F8E5;
    --soft-green: #61A84C;
    --soft-red: #EB5137;
    --soft-blue: #008EE2;
    --soft-border: 1px solid #eceff1;
    --theme-soft: #f5f5f5;
}

/* OPEN SANS FONTS */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Light.ttf');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* METROPOLIS FONTS */
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Regular.otf') format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Thin.otf') format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Light.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Bold.otf') format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-SemiBold.otf') format("opentype");
    font-weight: 600;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
}

body.frozen {
    overflow: hidden;
}

a.logo-holder {
    position: relative;
    display: block;
    padding: 22px 0;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.mb-6 {
    margin-bottom: 64px;
}

.gl-overlay {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
}

/* LOADER */
.loading-panel {
    width: 240px;
    height: 240px;
    position: relative;
    top: 50%;
    left: 50%;
    margin-top: -120px;
    margin-left: -120px;
    transition: all 0.4s ease-out;
}

.loading-panel .mj-spiner::before {
    animation: 0.85s linear infinite mj-loading-spin;
    animation-play-state: inherit;
    border: solid 5px var(--soft-bg);
    border-bottom-color: var(--dark-color);
    border-radius: 50%;
    content: '';
    position: absolute;
    height: 240px;
    width: 240px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}

.loading-panel > img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -90px;
    margin-left: -90px;
}

header {
    width: 100%;
    height: auto;
    background: #FFF;
    color: var(--main-color);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #E5E5E5;
    transition: all 0.15s linear;
}

header.fs {
    height: 100vh;
}

header img {
    height: 30px;
    transition: all 0.15s linear;
}

header .cta-btn {
    font-size: 13px;
    padding: 10px 12px;
}

header nav > ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

header nav > ul > li {
    list-style: none;
    position: relative;
    padding: 24px 0;
}

header nav > ul > li > a {
    display: inline-block;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: inherit;
    padding: 0 32px;
}

header nav > ul > li > a > i {
    display: inline-block;
    margin-left: 5px;
    transition: all 0.1s ease-out;
    transform-origin: center;
}

header nav > ul > li.w-children.active > a > i {
    transform: rotate(-180deg);
}

header nav > ul > li.w-children > .nav-inner {
    position: absolute;
    top: 100%;
    background: #FFF;
    width: 320px;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    transition: all 0.1s linear;
    opacity: 0;
}

@media (hover: hover), (-ms-high-contrast:none) {
    header nav > ul > li.w-children:hover > a > i {
        transform: rotate(-180deg);
    }
    header nav > ul > li.w-children:active > .nav-inner,
    header nav > ul > li.w-children:focus > .nav-inner,
    header nav > ul > li.w-children:hover > .nav-inner {
        box-shadow: 0 0 8px #10182814;
        border-radius: 12px;
        border: 1px solid #EAECF0;
        max-height: unset;
        opacity: 1;
    }
}

header nav > ul > li.w-children.active > .nav-inner {
    box-shadow: 0 0 8px #10182814;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    margin-top: 12px;
    max-height: unset;
    opacity: 1;
}

header nav > ul > li.w-children > .nav-inner > a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    align-items: center;
    color: #141414;
    /* Text md/Semibold */
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

header nav > ul > li.w-children > .nav-inner > a:hover {
    background: #f5f5f5;
    color: #29B6B3;
}

header nav > ul > li.w-children > .nav-inner > a > p {
    color: #475467;
    margin-top: 16px;
    margin-bottom: 0px;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    padding: 10px 16px;
    color: #FFF;
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.45) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #47BAB3 35.68%, #90C87D 91.67%);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Open Sans';
    font-style: normal;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    border: 1px solid var(--main-color);
    transition: all 0.15s linear;
}

.cta-btn:hover {
    background: var(--main-color);
    border: 1px solid #FFF;
    color: #FFF;
}

/* TRANSPARENT HEADER */
header.blending {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid #FFF;
    color: #FFF;
}

header.blending img {
    height: 30px;
    filter: brightness(10);
}

header.blending .cta-btn {
    background: #FFF;
    color: var(--main-color);
    border: 1px solid #FFF;
    font-size: 13px;
    padding: 10px 12px;
}

main {
    position: relative;
    margin-top: -72px;
    overflow-x: hidden;
}

.section-header > label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #21928F;
    display: block;
    text-align: center;
    padding-top: 48px;
}

.section-header > h2 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #39958F;
    padding: 0;
    margin: 0 0 8px 0;
}

.section-header > p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--text-soft);
    margin: 0;
    padding: 0;
}

.section-header.inverse > h2 {
    color: #FFF;
}

.section-header.inverse > p {
    color: #FFF;
}

ul.tab-switch {
    background: var(--soft-bg);
    mix-blend-mode: normal;
    border-radius: 36px;
    padding: 10px 6px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

ul.tab-switch > li {
    background: #FFFFFF;
    mix-blend-mode: normal;
    border-radius: 24px;
    padding: 8px 36px;
    list-style: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0 6px;
    color: var(--main-color);
    cursor: pointer;
    transition: all 0.15s ease-out;
}

ul.tab-switch > li.active,
ul.tab-switch > li.active.green-item {
    background: var(--soft-green);
    color: #FFF;
}

ul.tab-switch > li.active.toko-online,
ul.tab-switch > li.active.red-item {
    background: var(--soft-red);
    color: #FFF;
}

ul.tab-switch > li.active.keuangan,
ul.tab-switch > li.active.blue-item {
    background: var(--soft-blue);
    color: #FFF;
}

a.read-more {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-color);
    display: inline-flex;
    padding: 4px 16px;
    border: 1px solid var(--main-color);
    align-items: center;
    border-radius: 16px;
    transition: all 0.15s linear;
}

a.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.14);
}

a.read-more > i {
    font-size: 16px;
    margin-left: 6px;
    display: inline-block;
}

/* HERO */
.page-hero {
    background: url('../img/balloon.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    background-repeat: no-repeat;
    background-position: top right;
    padding-top: 96px;
    position: relative;
}

.page-hero .hero-content {
    padding-top: 48px;
    padding-bottom: 96px;
}

.page-hero .hero-content > h1 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    color: #FFFFFF;
    text-shadow: 0px 12px 16px rgba(16, 24, 40, 0.08), 0px 2px 6px rgba(16, 24, 40, 0.15);
    margin: 0 0 8px 0;
    padding: 0;
}

.page-hero .hero-content > p {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 12px 16px rgba(16, 24, 40, 0.08), 0px 2px 6px rgba(16, 24, 40, 0.15);
    padding: 0 64px 0 0;
}

.page-hero .hero-content > a.hero-cta,
.footer-promo-content > a.footer-cta {
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 2px rgba(161, 207, 126, 0.75), 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-block;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #21928F;
    transition: all 0.15s linear;
}

.page-hero .hero-content > a.hero-cta:hover,
.footer-promo-content > a.footer-cta:hover {
    transform: translateY(-5px);
}

.page-hero .hero-content > label.lbl-download,
.footer-promo-content > label.lbl-download {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.page-hero .hero-content > label,
.footer-promo-content > label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
}

.page-hero .hero-image {
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.page-hero img.hero {
    width: 100%;
    aspect-ratio: 1/1;
}

/* FEATURE */
.majoolite-feature {
    padding-top: 96px;
    padding-bottom: 122px;
    position: relative;
    margin-top: -48px;
    background: #FFF;
    border-radius: 48px 48px 0 0;
}

.majoolite-feature .feature-item {
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    display: flex;
    flex-wrap: wrap;
    border-radius: 32px;
}

.majoolite-feature .feature-item > .feature-content {
    flex-basis: 60%;
    border-radius: 32px 0 0 32px;
    padding: 72px 48px 48px 48px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    border-left: 1px solid #E5E5E5;
    position: relative;
}

.majoolite-feature .feature-item > .feature-content > span.feature-title {
    display: block;
    position: absolute;
    top: 0;
    left: 48px;
    background: var(--soft-green);
    mix-blend-mode: normal;
    border-radius: 0px 0px 12px 12px;
    padding: 6px 16px 8px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.majoolite-feature .feature-item.toko-online > .feature-content > span.feature-title {
    background: var(--soft-red);
}

.majoolite-feature .feature-item.keuangan > .feature-content > span.feature-title {
    background: var(--soft-blue);
}

.majoolite-feature .feature-item > .feature-content > h3 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: var(--text-deep);
    padding: 0;
    margin: 0 0 8px 0;
}

.majoolite-feature .feature-item > .feature-content > p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-normal);
    margin: 0;
    padding: 0;
    padding-right: 72px;
}

.feature-content .feature-accordion > .accordion-item {
    padding: 16px 0;
    border-top: 1px solid #E5E5E5;
}

.feature-content .feature-accordion > .accordion-item > a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: var(--main-color);
}

.feature-content .feature-accordion > .accordion-item > a > i {
    display: inline-block;
    transition: all 0.15s linear;
}

.feature-content .feature-accordion > .accordion-item > p {
    height: 0;
    overflow: hidden;
    transition: all 0.15s linear;
    opacity: 0;
    margin: 0;
}

.feature-content .feature-accordion > .accordion-item.expanded > a > i {
    transform: rotate(180deg) translateY(8px);
}

.feature-content .feature-accordion > .accordion-item.expanded > p {
    height: 72px;
    opacity: 1;
    transform: translateY(8px);
    width: 90%;
}

.majoolite-feature .feature-item > .feature-image {
    flex-basis: 40%;
    border-radius: 0 32px 32px 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    background: linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.majoolite-feature .feature-item > .feature-image::after{
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    background: #000;
    border-radius: 50%;
    bottom: -280px;
    left: calc(50% - 560px/2 + 0.1px);
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #61A84C 8.33%, #90C87D 91.67%);
    border: 2px solid #F6F8E5;
}

.majoolite-feature .feature-item > .feature-image > img {
    width: 240px;
    display: block;
    z-index: 2;
    transition: all 0.1s ease-in-out;
}

.majoolite-feature .feature-item.toko-online > .feature-image::after{
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #EB5137 8.33%, #F2795C 91.67%);
}

.majoolite-feature .feature-item.keuangan > .feature-image::after{
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #008EE2 8.33%, #20BBEF 91.67%);
}

/** PRIVILEGE */
.majoolite-privilege {
    padding-top: 96px;
    padding-bottom: 32px;
    position: relative;
    background: url('../img/balloon-separate.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    background-repeat: no-repeat;
    background-size: cover;
}

#benefit-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.privilege-item {
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    margin-bottom: 64px;
    width: 83%;
    transition: all 0.55s ease-out;
}

.privilege-item .privilege-image {
    flex-basis: 60%;
    border-radius: 24px;
}

.privilege-item .privilege-content {
    flex-basis: 40%;
    background: transparent;
    padding: 40px 0;
    margin-left: -48px;
}

.privilege-item .privilege-content > .inner-content {
    background: #FFF;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 8px 8px 24px -4px rgba(16, 24, 40, 0.08), -8px -8px 8px -4px rgba(16, 24, 40, 0.03);
    height: 100%;
}

.privilege-content > .inner-content > h3 {
    margin: 0 0 12px 0;
    padding: 0;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

.privilege-content > .inner-content > p {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-normal);
}

.privilege-item .privilege-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/** PRODUCT */
.majoolite-product {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #FBFCF5;
}

.majoolite-product .product-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.majoolite-product .product-item {
    display: flex;
    flex-direction: column;
    flex-basis: 25%;
    align-items: center;
    margin-top: 56px;
    transition: all 0.55s ease-out;
}

.majoolite-product .product-item > .product-item-img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: radial-gradient(60.12% 60.12% at 0% 0%, #F6F8E5 0%, rgba(246, 248, 229, 0.450065) 38.02%, rgba(246, 248, 229, 0.215577) 67.19%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f6f8e5;
}

.majoolite-product .product-item > .product-item-img > img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.majoolite-product .product-item > label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: var(--main-color);
}

/** COMMUNITY */
.majoolite-community {
    padding-top: 64px;
    padding-bottom: 96px;
}

#community-slider {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.news-card {
    border: 1px solid #E5E5E5;
    box-shadow: 0px 8px 16px -4px rgba(16, 24, 40, 0.08), 0px 2px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 16px;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.news-card .news-card-content {
    background: #FFFFFF;
    padding: 20px 24px;
    box-shadow: 8px 8px 24px -4px rgba(16, 24, 40, 0.08), -8px -8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 0 0 16px 16px;
}

.news-card .news-card-content > h3 {
    margin: 0 0 12px 0;
    padding: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card-content > img {
    width: auto;
    height: 30px;
    object-fit: contain;
}

/** PRICING */
.majoolite-pricing {
    padding-top: 96px;
    padding-bottom: 96px;
    background: url('../img/balloon-bw.png'), radial-gradient(100% 100% at 100% 0%, #91D6D1 0%, rgba(145, 214, 209, 0) 100%), radial-gradient(100% 100% at 0% 0%, #BCDEB1 0%, rgba(188, 222, 177, 0) 100%), #FBFCF5;
}

.pricing-item-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-item {
    border: 1px solid #E5E5E5;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.pricing-item > a > img {
    width: 100%;
    border-radius: 24px;
}

.pricing-item.highlight {
    border: 4px solid #B4D998;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 32px;
}

.pricing-item > .pricing-item-content {
    background: #FFFFFF;
    padding: 24px 72px;
    border-radius: 32px 32px 0 0;
}

.pricing-item > .pricing-item-detail {
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    padding: 28px;
    border-radius: 2em;
    font-family: 'Open Sans';
}

.pricing-item > .pricing-item-detail > .heading {
    display: flex;
    gap: 0.5em;
    align-items: end;
    font-weight: 600;
}

.pricing-item > .pricing-item-detail > .heading > h2 {
    color: #21928F;
    font-size: 3em;
    line-height: 56px;
}

.pricing-item > .pricing-item-detail > .heading > span {
    color: #6F6C90;
    font-size: 1em;
    line-height: 56px;
}

.pricing-item > .pricing-item-detail > p {
    font-weight: 600;
    font-size: 18px;
}

.pricing-item > .pricing-item-detail > ul {
    padding: 0;
    margin: 0;
}

.pricing-item > .pricing-item-detail > ul > li {
    list-style: none;
    padding: 6px 0;
    display: flex;
    align-items: baseline;
}

.pricing-item > .pricing-item-detail > ul > li > span {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--text-soft);
    text-align: left;
}

.pricing-item > .pricing-item-detail > ul > li > img {
    display: inline-block;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 20px;
    transform: translateY(5px);
}

.pricing-item > .pricing-item-detail > ul > li > div > p {
    margin-top: 8px;
    color: #29B6B3;
    font-size: 12px;
    font-weight: 600;
}


/** FAQ */
.majoolite-faq {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #FBFCF5;
}

.faq-accordion {
    padding: 18px 0 12px 0;
    border-bottom: 1px solid #E5E5E5;
}

.faq-accordion > a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
    justify-content: space-between;
    display: flex;
    align-items: baseline;
    text-align: left;
}

.faq-accordion > a > i {
    transition: all 0.15s linear;
    display: inline-block;
}

.faq-accordion > a.expanded > i {
    transform: rotate(180deg);
}

.faq-accordion > p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-normal);
    text-align: left;
    padding: 0;
    margin: 12px 0 0 0;
    display: none;
}

/** FOOTER PROMO */
#footer-promo {
    padding: 96px 0 48px 0;
    background: linear-gradient(180deg, rgba(227, 241, 216, 0) 0%, #E3F1D8 45.83%);
    position: relative;
}

#footer-promo::after {
    content: '';
    display: block;
    background: var(--dark-color);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-promo-body {
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 36px;
    padding: 36px 48px;
    background: url('../img/balloon.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 140%;
    position: relative;
    z-index: 2;
}

.footer-promo-content > h3 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 12px 16px rgba(16, 24, 40, 0.08), 0px 4px 6px rgba(16, 24, 40, 0.03);
}

.footer-promo-body img.footer-image {
    position: absolute;
    height: 100%;
    bottom: 0;
    right: 0;
}

/* FOOTER */
footer {
    padding: 56px 0;
    background: var(--dark-color);
}

.footer-desc > img {
    height: 40px;
}

.footer-desc > p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.footer-address label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #A9E2E1;
    display: block;
    margin: 0 0 8px 0;
    padding: 0;
}

.footer-address a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-address a > img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.footer-address a > span {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-address span {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-address p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
    margin: 0;
    padding: 0;
}

.footer-nav {
    width: 100%;
}

.footer-nav > ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
    gap: 0 2rem;
}

.footer-nav ul > li {
    list-style: none;
    padding: 4px 0;
}

.footer-nav ul > li > a {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.footer-nav ul > li > a:hover {
    color: #A9E2E1;
}

.footer-nav ul > li > label {
    color: #d6d6d6;
    font-family: 'Metropolis', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.28px;
}

.footer-nav ul > li > ul {
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-nav ul > li > ul > li {
    list-style: none;
    padding: 4px 0;
    flex-basis: 100%;
}

.footer-nav ul > li > ul > li > a {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

footer span.copy-txt {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #F5F5F5;
}

.f-copy {
    margin-top: 42px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

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

.f-icon > a > span {
    margin-left: 1em;
}

.f-icon > a > img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 12px;
    display: inline-block;
    transition: all 0.15s ease;
    opacity: 0.7;
}

.f-icon > a:hover > img {
    opacity: 1;
}

.flipped-out {
    opacity: 0;
    transform: scaleX(0);
}

.flipped-in {
    animation: 0.1s ease-in-out flipped-in;
}

.slide-out {
    opacity: 0 !important;
    transform: translateX(-200px) !important;
}

.slide-in {
    opacity: 1;
    transform: translateX(0);
}

/* TAB */
.tab-content-holder {
    position: relative;
    min-height: 600px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.25s ease-out;
    transform: translateX(-200px);
    z-index: -1;
}

.tab-content.active {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    transform: translateX(0);
}

.hide-on-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

.overlay-content {
    height: 100px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.15s ease;
}

.overlay-content > .overlay-content-inner > h4 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #727272;
    margin: 8px 0 12px 0;
    padding: 0;
}

.overlay-content p {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 200;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #A3A3A3;
    margin: 0 0 12px 0;
    padding: 0;
}

.overlay-content > .overlay-content-inner ul,
.overlay-content > .overlay-content-inner ol {
    margin: 0 0 12px 0;
}

.overlay-content > .overlay-content-inner ul > li,
.overlay-content > .overlay-content-inner ol > li {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 200;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #A3A3A3;
    margin: 0 0 8px 0;
    padding: 0;
}

.overlay-content::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: linear-gradient(180deg, rgba(251, 252, 245, 0) 0%, #FBFCF5 100%);
    z-index: 2;
}

.overlay-content.expanded::after {
    display: none;
}

a.overlay-content-control {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #21928F;
    display: flex;
    align-items: center;
}

a.overlay-content-control > i {
    display: block;
    margin-left: 8px;
}

/** PANDUAN */
.hero-panduan {
    background: url('../img/baloon-panduan.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 96px;
    padding-bottom: 48px;
    position: relative;
}

.hero-panduan-content {
    padding-top: 48px;
}

.hero-panduan-content > h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0;
    margin: 0 0 24px 0;
}

.hero-panduan-content > h1 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    text-shadow: 0px 12px 16px rgba(16, 24, 40, 0.08), 0px 2px 6px rgba(16, 24, 40, 0.15);
}

.panduan-navigation {
    padding: 96px 0;
}

.panduan-navigation-holder > ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
}

.panduan-navigation-holder > ul > li {
    list-style: none;
    flex: 1;
}

.panduan-navigation-holder > ul > li > a {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.02em;
    display: block;
    color: #737373;
    padding: 12px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(#e5e5e5, #e5e5e5) border-box;
}

.panduan-navigation-holder > ul > li > a.active {
    color: #2B706B;
    background: linear-gradient(white, white) padding-box, linear-gradient(#47BAB3, #A1CF7E) border-box;
}

.panduan-container {
    padding: 0;
}

#panduan-holder {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#panduan-holder .panduan-item {
    margin-bottom: 64px;
    padding: 0 18px;
    flex-basis: 50%;
    transition: all 0.4s linear;
}

#panduan-holder .panduan-item > h3 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #196D6B;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: center;
}

#panduan-holder .panduan-item > a.panduan-item-inner {
    display: flex;
    width: 100%;
    padding: 12px;
    background: #F6F8E5;
    border-radius: 8px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #21928F;
    margin: 0 0 12px 0;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s ease-out;
}

#panduan-holder .panduan-item > a.panduan-item-inner.active {
    background: #21928F;
    color: #FFF;
}

#panduan-holder .panduan-item > a.panduan-item-inner:hover {
    background: #21928F;
    color: #FFF;
}

#panduan-holder .panduan-item.selected {
    flex-basis: 30%;
}

#panduan-holder .panduan-item.selected > h3 {
    font-size: 14px;
}

#panduan-holder .panduan-item.selected > a.panduan-item-inner {
    font-size: 16px;
    line-height: 20px;
}

.panduan-searchbar {
    width: 100%;
    position: relative;
}

.panduan-searchbar > i {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #39958F;
    position: absolute;
    left: 0;
    top: 0;
}

.panduan-searchbar > input[type=text] {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 14px 12px 54px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #39958F;
    outline: 0;
}

#panduan-content-holder {
    flex: 1;
    padding-left: 80px;
}

.panduan-container-item {
    margin-bottom: 112px;
}

.panduan-container-item h2 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #39958F;
    margin: 24px 0 0 0;
    padding: 0;
}

#panduan-content-holder > h2 {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.05em;
    color: #196D6B;
    padding: 12px 0 0 0;
    border-top: 1px solid #d6d6d6;
    margin: 0 0 20px 0;
}

#panduan-content-holder a.back-nav {
    display: inline-flex;
    margin-bottom: 24px;
    font-size: 16px;
    align-items: center;
    color: #39958F;
}

#panduan-content-holder a.back-nav > i {
    margin-right: 12px;
}

#panduan-content-holder .panduan-content-inner p {
    line-height: 24px;
    margin: 0 0 18px 0;
}

#panduan-content-holder .panduan-content-inner ol {
    margin: 0;
    padding: 0 0 0 18px;
}

#panduan-content-holder .panduan-content-inner ol > li {
    padding-left: 12px;
}

#panduan-content-holder .panduan-content-inner img {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    height: 500px;
    object-fit: contain;
}

.mj-left-entry {
    transform: translateX(-400px);
    opacity: 0;
}

.mj-right-entry {
    transform: translateX(400px);
    opacity: 0;
}

.mj-dim {
    transform: translateY(40px);
    opacity: 0;
}

.mj-videoplayer-body {
    height: 100%;
    width: 100%;
    /* max-height: 540px;
    aspect-ratio: 16 / 9; */
}

.mj-videoplayer > a {
    display: block;
    position: relative;
    width: 100%;
}

.mj-videoplayer > a > img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.mj-videoplayer > a > img.img-vt-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
}

.mj-videoplayer > video {
    width: 100%;
}

.list-vt > .list-item >.vt-title > label {
    color: #21928F;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-top: 16px;
}

/* GLOBAL OVERLAY */
.mj-global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
    overflow: auto;
    display: none;
}

.mj-global-overlay.show {
    display: block;
}

.fp-content {
    width: 100%;
    height: 100%;
    padding: 48px 18px 24px 18px;
    background: #000;
    position: relative;
}

.fp-content > .fp-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-content > .fp-body > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fp-content > .fp-body > iframe {
    width: 100%;
    height: 100%;
}

.fp-content > .fp-footer {
    position: fixed;
    z-index: 6;
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    margin-left: -18px;
}

.fp-content > .fp-footer > a {
    display: inline-flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    /* background: var(--mj-gradient-green); */
    background: #000;
    color: #fff;
    border-radius: 50%;
}

.fp-content > .fp-footer > a > i {
    font-size: 16px;
}

/** CARD **/
.card-accordion {
    background: #FFF;
    padding: 48px;
    border-radius: 32px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    position: relative;
}

.card-label {
    border-radius: 0px 0px 12px 12px;
    padding: 6px 16px 8px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 48px;
}

h3.card-title {
    margin: 16px 0 48px 0;
    font-family: 'Metropolis', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 126.667% */
    color: #196D6B;
}

.card-accordion > .accordion-item-single {
    padding: 24px 0;
    border-top: 1px solid #d6d6d6;
}

.card-accordion > .accordion-item-single > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #21928F;
    /* Text xl/Semibold */
    font-family: 'Metropolis', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.card-accordion > .accordion-item-single > a > i {
    transition: all 0.1s ease-out;
}

.card-accordion > .accordion-item-single > a.expanded > i {
    transform: rotate(-180deg);
}

.card-accordion > .accordion-item-single > .accordion-detail {
    display: none;
}

.card-accordion > .accordion-item-single > .accordion-detail > p {
    color: #525252;
    /* Text md/Regular */
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.card-accordion > .accordion-item-single > .accordion-detail > p > sup {
    font-size: 12px;
    color: red;
}

.card-accordion > .accordion-item-single > .accordion-detail > p > span.hl {
    display: block;
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

/** COLOR **/
.majoolite-lbl-green {
    background: var(--soft-green);
    color: #FFF;
}

.majoolite-lbl-blue {
    background: var(--soft-blue);
    color: #FFF;
}

.majoolite-lbl-red {
    background: var(--soft-red);
    color: #FFF;
}

.majoolite-rd-green {
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #61A84C 8.33%, #90C87D 91.67%);
}

.majoolite-rd-blue {
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #008EE2 8.33%, #20BBEF 91.67%)
}

.majoolite-rd-red {
    background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #EB5137 8.33%, #F2795C 91.67%)
}

.majoolite-news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.majoolite-news-card {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
}

.majoolite-news-container > .majoolite-news-card {
    gap: 20px;
}

.majoolite-news-container > .majoolite-news-card.hr {
    margin-bottom: unset;
    gap: 20px;
}

.majoolite-news-container > .majoolite-news-card:nth-child(1) {
    grid-row: span 2;
}

.majoolite-news-container > .majoolite-news-card:nth-child(1) > .news-card-img {
    flex-basis: 100%;
}

.majoolite-news-container > .majoolite-news-card:nth-child(1) > .news-card-img > img {
    width: 100%;
    height: 100%;
}

.majoolite-news-container > .majoolite-news-card > .news-card-img {
    flex-basis: 50%;
    min-width: 240px;
}

.majoolite-news-container > .majoolite-news-card > .news-card-img > img {
    width: 100%;
    height: 228px;
    object-fit: cover;
    border-radius: 24px;
}

.majoolite-news-container > .majoolite-news-card > .news-card-content {
    padding: 20px 0px;
}

.majoolite-news-container > .majoolite-news-card > .news-card-content > a {
    font-size: 20px;
    line-height: unset;
}

.majoolite-news-card > .news-card-img {
    flex-basis: 50%;
}

.majoolite-news-card > .news-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.majoolite-news-card > .news-card-content {
    padding: 16px 24px;
    flex: 1;
}

.mj-date {
    color: #737373;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 200% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.news-card-content > a {
    color: #21928F;
    /* Display md/Semibold */
    font-family: 'Metropolis', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 133.333% */
    display: block;
}

.news-card-content > p {
    color: #525252;
    /* Text lg/Regular */
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.majoolite-news-card.md {
    gap: 20px 0;
}

.majoolite-news-card.hr {
    gap: 0 20px;
    margin-bottom: 40px;
}

.majoolite-news-card.md > .news-card-img {
    flex-basis: 100%;
}

.majoolite-news-card.md > .news-card-img > img {
    height: 220px;
}

.majoolite-news-card.md > .news-card-content {
    flex-basis: 100%;
    padding: 0;
}

.majoolite-news-card.hr > .news-card-img {
    flex-basis: unset;
}

.majoolite-news-card.hr > .news-card-img > img {
    width: 480px;
    height: 240px;
    object-fit: cover;
}

.majoolite-news-card.md > .news-card-content > a {
    font-size: 24px;
    line-height: 32px; /* 133.333% */
}

.majoolite-news-card.hr > .news-card-content > a {
    font-size: 24px;
    line-height: 32px;
}

.majoolite-coverage-card {
    border-radius: 24px;
    border: 1px solid rgba(181, 227, 225, 0.75);
    background: #fcfcfc;
    padding: 20px 24px;
    height: 100%;
}

.majoolite-coverage-card > img {
    height: 44px;
    width: auto;
    max-width: 100%;
}

.majoolite-coverage-card > a {
    display: block;
    color: #21928F;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    min-height: 120px;
}

.majoolite-news-list {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.majoolite-news-list > .majoolite-news-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.majoolite-news-list > a {
    color: #21928F;
    /* Text xl/Semibold */
    font-family: 'Metropolis', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
}

ul.majoolite-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

ul.majoolite-breadcrumb > li {
    display: inline-block;
}

ul.majoolite-breadcrumb > li::after {
    display: inline-block;
    content: '/';
    padding: 0 8px;
    color: #d8d8d8;
}

ul.majoolite-breadcrumb > li:last-child:after {
    display: none;
}

ul.majoolite-breadcrumb > li > a {
    color: #21928F;
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
}

ul.majoolite-breadcrumb > li > label {
    color: #525252;
    font-size: 15px;
    line-height: 22px;
}

.majoolite-article-detail > h2 {
    font-size: 36px;
    line-height: 52px;
    margin: 0 0 24px 0;
    padding: 0;
    color: #21928F;
}

.majoolite-article-detail > img {
    max-width: 100%;
    border-radius: 16px;
    margin: 18px 0 36px 0;
}

.majoolite-article-detail > .mj-pers-content > p {
    margin: 0 0 24px 0;
    padding: 0;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
    color: #525252;
}

.schedule-wrapper {
    padding: 48px;
    border-radius: 32px;
    border: 1px solid #B5E3E1BF;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    width: fit-content;
}

.badge-calender {
    border-radius: 50%;
    background: #EAF8F7;
    width: 24px;
    height: 24px;
    display: flex;
    gap: 0 8px;
}

.label-date {
    color: #196D6B;
    font-weight: 600;
    margin: 0;
}

.schedule-container {
    display: flex;
    padding: 16px 24px 24px 24px;
    flex-direction: column;
    gap: 16px;
    border-radius: 24px;
    border: 1px solid rgba(181, 227, 225, 0.75);
    background: #FFF;
}

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

.majoolite-container-wbg {
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(181, 227, 225, 0.75);
    background: url('../img/balloon-bw.png'), radial-gradient(100% 100% at 100% 0%, #91D6D1 0%, rgba(145, 214, 209, 0) 100%), radial-gradient(100% 100% at 0% 0%, #BCDEB1 0%, rgba(188, 222, 177, 0) 100%), #FBFCF5;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.brosur-content {
    padding: 0 24px;
}

.brosur-content > h3 {
    color: #21928F;
    /* Display lg/Semibold */
    font-family: 'Metropolis', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px; /* 116.667% */
}

.brosur-content > p {
    color: #424242;
    /* Text xl/Regular */
    font-family: 'Metropolis', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

.majoolite-display-card {
    width: 100%;
    border-radius: 24px;
    border: rgba(181, 227, 225, 0.75);
    background: #fff;
}

.majoolite-display-card > figure {
    border-radius: 24px 24px 0px 0px;
    background: radial-gradient(100% 100% at 100% 0%, #A9E2E1 0%, rgba(169, 226, 225, 0.00) 100%), radial-gradient(100% 100% at 0% 0%, #D9ECCB 0%, rgba(217, 236, 203, 0.00) 100%), #F5F5F5;
    height: 160px;
    margin: 0;
    padding: 0;
}

.majoolite-display-card > figure > img {
    border-radius: 24px 24px 0px 0px;
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.majoolite-display-card > figcaption {
    display: block;
    padding: 24px;
    background: #FFF;
    border-radius: 0 0 24px 24px;
}

.majoolite-display-card > figcaption > a {
    display: flex;
    width: 100%;
    gap: 0 8px;
    align-items: center;
    justify-content: center;
    color: #21928F;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

ul.list-poin {
    margin: 0;
    padding: 0;
}

ul.list-poin > li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-normal);
    margin: 0 0 12px 0;
    padding: 0;
    gap: 0 4px;
}

#majoolite-testimony {
    background: #FBFCF5;
    padding: 48px 0 96px 0;
}

.testimony-holder {
    background: #FFF;
    padding: 48px 32px;
    border: 1px solid #B5E3E140;
    border-radius: 48px;
}

.testimony-holder .testimony-inner {
    padding: 0 16px;
}

.testimony-content {
    display: flex;
    flex-direction: column;
}

.testimony-content > h3 {
    flex: 1;
}

.testimony-holder .testimony-inner .testimony-detail > label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    display: block;
    margin: 0;
}

.testimony-holder .testimony-inner .testimony-detail > span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
    display: block;
}

section.nobg {
    padding: 96px 0 48px 0;
}

.snk-content ol > li {
    line-height: 1.7;
    margin: 0 0 6px 0;
}

.snk-content ol > li > img {
    display: block;
    width: auto;
    height: 420px;
    margin: 24px 0 36px 0;
}

.mj-button {
    margin: 0;
    padding: 12px 28px;
    transition: all 0.15s ease-out;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    font-size: 14px;
    display: inline-flex;
    border: 2px solid transparent;
    outline: 0;
    align-items: center;
    border-radius: 12px;
    width: fit-content;
    font-weight: 600;
}

.mj-button > i {
    display: inline-block;
    padding: 0 6px;
    transition: all 0.1s ease-in;
}

.mj-button > i.rotated {
    transform: rotate(180deg);
}

.mj-button.sm {
    padding: 8px 18px;
    border-radius: 8px;
}

.mj-button.xs {
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
}

.mj-button:hover {
    color: #FFF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0px 6px 3px 1px rgba(16, 24, 40, 0.15);
}

/** BUTTON PRIMARY **/
.mj-primary-btn {
    color: #F5F5F5;
    /* background: var(--deep-gradient); */
    background: radial-gradient(100% 100% at 100% 0%, #B4D998 0%, #29B6B3 100%);
    border: 2px solid #E8F4E8;
}

.mj-primary-btn:hover {
    background: var(--text-main);
    transform: translateY(0);
    box-shadow: unset;
}

.mj-primary-btn.white-bordered {
    border: 2px solid #FFF;
}

.mj-primary-btn.white-bordered:hover {
    border: 2px solid #FFF;
}

.mj-title-text {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.02em;
    color: var(--text-deep);
    margin: 0;
    padding: 0;
}

.mj-title-text.sm {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
}

.mj-title-text.xs {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.04px;
}

.mj-title-text.xxs {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
}

.mj-title-text.xxxs {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.01em;
}

/* CAPSULE */
.mj-capsule {
    padding: 8px 12px;
    border-radius: 32px;
    border: var(--soft-border);
    outline: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    background: var(--theme-soft);
    color: var(--text-normal);
    font-size: 14px;
    line-height: 20px;
    font-family: 'Open Sans';
    font-weight: 600;
    gap: 4px;
}

.mj-capsule.md {
    font-size: 14px !important;
    line-height: 20px !important;
    padding: 4px 12px !important;
    border-radius: 16px !important;
}

.mj-capsule.sm {
    font-size: 12px !important;
    line-height: 16px !important;
    padding: 2px 12px !important;
    border-radius: 12px !important;
}

.mj-capsule.xs {
    font-size: 10px !important;
    line-height: 14px !important;
    padding: 2px 12px !important;
    border-radius: 12px !important;
}

.mj-capsule.naked-capsule {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    background: #FFF;
}

.mj-capsule.prime-capsule {
    border-radius: 50px;
    background: linear-gradient(148deg, rgba(117, 110, 151, 0.40) 13.94%, rgba(117, 110, 151, 0.06) 28.68%, rgba(117, 110, 151, 0.00) 74.85%, rgba(117, 110, 151, 0.40) 91.21%), #19181E;
    color: #FFF !important;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.mj-capsule > img {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.mj-capsule span {
    display: block;
}

.mj-capsule > i {
    display: inline-block;
}

a.mj-capsule:hover {
    color: #FFF !important;
}

/** NEW POPUP PROMO **/
.popup-promo-holder {
    position: absolute;
    top: 50px;
    width: 844px;
    height: 420px;
    left: 50%;
    margin-left: -400px;
    border-radius: 36px;
    overflow: hidden;
}

.popup-promo-holder > .popup-promo-image {
    width: 460px;
    height: 420px;
}

.popup-promo-holder > .popup-promo-image > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px 0 0 36px;
}

.popup-promo-holder > .popup-promo-content {
    width: 420px;
    height: 420px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 36px 36px 36px 0;
    padding: 24px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popup-promo-holder > .popup-promo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -36px;
    background: transparent;
    height: 420px;
    width: 36px;
    border-radius: 0 0 36px 0;
    box-shadow: 0 36px 0 0 rgba(255, 255, 255, 1);
}

a#p-promo-close {
    position: absolute;
    top: 16px;
    z-index: 3;
    right: 16px;
}

.footer-snk {
    display: flex;
    justify-content: end;
    gap: 2em;
}

#pagination-holder {
    display: flex;
    justify-content: center;
    overflow: visible;
    margin-top: 0 !important;
}

@media all and (max-width: 992px) {
    header.blending .cta-btn {
        color: #FFF;
        background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.45) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #47BAB3 35.68%, #90C87D 91.67%);
    }

    img.img-vt {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .hide-on-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
    }

    .mb-nav {
        display: none;
        position: relative;
        top: 100%;
        background: #FFF;
        padding-top: 18px;
    }

    header {
        height: auto;
        padding: 24px 0 12px 0;
    }

    header.blending {
        background: #FFF;
        border-bottom: 1px solid #FFF;
        color: unset;
    }

    header a.navigation-opener {
        font-size: 22px;
        display: block;
        margin-top: -4px;
    }

    header.blending a.navigation-opener {
        color: #29B6B3;
    }

    header a.navigation-opener {
        color: #29B6B3;
    }
    
    header.blending img {
        height: unset;
        filter: unset;
    }
    
    header nav > ul > li {
        padding: 8px 0;
        flex-basis: 100%;
    }
    
    header nav > ul > li > a {
        display: inline-block;
        font-family: 'Metropolis';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #29B6B3;
        padding: 0 0 0 12px;
    }

    header nav > ul > li > a.nav-exp {
        color: #29B6B3!important;
        display: flex;
        justify-content: space-between;
    }
    
    header nav > ul > li.w-children > .nav-inner {
        position: relative;
        top: 100%;
        background: #FFF;
        width: 100%;
        height: auto;
        border-radius: unset;
        border: unset;
        box-shadow: unset;
        transition: all 0.1s linear;
    }
    
    header nav > ul > li.w-children > .nav-inner > a {
        display: block;
        width: 100%;
        padding: 16px 30px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        line-height: 20px; /* 150% */
    }

    .section-header > h2 {
        font-size: 30px;
        line-height: 38px;
    }
    
    .section-header > p {
        font-size: 14px;
        line-height: 20px;
    }
    
    main {
        margin-top: -128px;
    }

    ul.tab-switch {
        flex-wrap: nowrap;
    }
    
    ul.tab-switch > li {
        min-width: 200px;
    }
    
    ul.tab-switch > li.active {
        background: var(--soft-green);
        color: #FFF;
    }
    
    a.read-more {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: var(--main-color);
        display: inline-flex;
        padding: 4px 16px;
        border: 1px solid var(--main-color);
        align-items: center;
        border-radius: 16px;
        transition: all 0.15s linear;
    }
    
    a.read-more:hover {
        transform: translateY(-3px);
        box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.14);
    }
    
    a.read-more > i {
        font-size: 16px;
        margin-left: 6px;
        display: inline-block;
    }

    .horizontal-scrolling {
        display: block;
        overflow-x: auto;
        padding-bottom: 12px;
    }

    .page-hero {
        background: url('../img/baloon-mobile-hero.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding-top: 96px;
        position: relative;
    }

    .page-hero .hero-content {
        padding-top: 48px;
        padding-bottom: 18px;
        text-align: center;
    }
    
    .page-hero .hero-content > h1 {
        font-size: 30px;
        line-height: 39px;
    }
    
    .page-hero .hero-content > p {
        font-size: 16px;
        line-height: 24px;
        padding: 0;
    }
    
    .page-hero .hero-content > a.hero-cta,
    .footer-promo-content > a.footer-cta {
        background: #FFFFFF;
        box-shadow: 0px 0px 25px 2px rgba(161, 207, 126, 0.75), 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
        border-radius: 12px;
        padding: 12px 20px;
        display: inline-block;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        color: #21928F;
        transition: all 0.15s linear;
    }
    
    .page-hero .hero-content > a.hero-cta:hover,
    .footer-promo-content > a.footer-cta:hover {
        transform: translateY(-5px);
    }
    
    .page-hero .hero-content > label,
    .footer-promo-content > label {
        text-shadow: 0px 4px 8px rgba(16, 24, 40, 0.1), 0px 2px 4px rgba(16, 24, 40, 0.06);
        display: inline-block;
        width: 100%;
    }
    
    .page-hero .hero-image {
        height: unset;
        width: 100%;
        position: relative;
    }

    /* FEATURE */
    .majoolite-feature {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .majoolite-feature .feature-item {
        box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
        display: flex;
        flex-wrap: wrap;
        border-radius: 32px;
    }

    .majoolite-feature .feature-item > .feature-content {
        flex-basis: 100%;
        border-radius: 32px 32px 0 0;
        border-top: 1px solid #E5E5E5;
        border-left: 1px solid #E5E5E5;
        border-right: 1px solid #E5E5E5;
        border-bottom: unset;
        text-align: center;
        padding: 60px 24px 0 24px;
    }

    .majoolite-feature .feature-item > .feature-content > span.feature-title {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
    }

    .majoolite-feature .feature-item > .feature-content > h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .majoolite-feature .feature-item > .feature-content > p {
        padding-right: unset;
    }

    .feature-content .feature-accordion > .accordion-item > p {
        text-align: left;
        height: 0;
        padding-bottom: 0;
    }

    .feature-content .feature-accordion > .accordion-item.expanded > a > i {
        transform: rotate(180deg) translateY(8px);
    }

    .feature-content .feature-accordion > .accordion-item.expanded > p {
        height: unset;
        padding-bottom: 12px;
        max-height: 120px;
        opacity: 1;
        transform: translateY(8px);
    }

    .majoolite-feature .feature-item > .feature-image {
        flex-basis: 100%;
        border-radius: 0 0 32px 32px;
        border-top: unset;
        border-left: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
        border-right: 1px solid #E5E5E5;
        padding-top: 24px;
    }

    .majoolite-feature .feature-item > .feature-image::after{
        content: '';
        position: absolute;
        width: 560px;
        height: 560px;
        background: #000;
        border-radius: 50%;
        bottom: -280px;
        left: calc(50% - 560px/2 + 0.1px);
        background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #61A84C 8.33%, #90C87D 91.67%);
        border: 2px solid #F6F8E5;
    }

    .majoolite-feature .feature-item > .feature-image > img {
        width: 240px;
        display: block;
        z-index: 2;
        transition: all 0.1s ease-in-out;
    }

    .majoolite-feature .feature-item.toko-online > .feature-image::after{
        background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #EB5137 8.33%, #F2795C 91.67%);
    }

    .majoolite-feature .feature-item.keuangan > .feature-image::after{
        background: radial-gradient(50% 100% at 0% 0%, rgba(246, 248, 229, 0.675) 0%, rgba(246, 248, 229, 0) 100%), linear-gradient(26.57deg, #008EE2 8.33%, #20BBEF 91.67%);
    }

    /** PRIVILEGE */
    .majoolite-privilege {
        padding-top: 48px;
        padding-bottom: 48px;
        position: relative;
        background: url('../img/baloon-separate-mb.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    #benefit-slider {
        display: block;
    }

    .privilege-item {
        display: block;
        flex-wrap: unset;
        min-height: unset;
        width: 100%;
        padding: 0 6px;
        margin-bottom: 24px;
    }

    .privilege-item .privilege-image {
        flex-basis: unset;
        width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .privilege-item .privilege-content {
        flex-basis: unset;
        background: #FFF;
        padding: 0;
        margin-left: 0;
        border-radius: 0 0 24px 24px;
    }

    .privilege-item .privilege-content > .inner-content {
        background: #FFF;
        padding: 32px;
        border-radius: 0;
        height: 100%;
        border-radius: 0 0 24px 24px;
    }

    .privilege-item .privilege-image > img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 24px 24px 0 0;
    }

    /** PRODUCT */
    .majoolite-product {
        padding-top: 64px;
        padding-bottom: 48px;
    }

    .majoolite-product .product-item {
        flex-basis: 50%;
        margin-top: 32px;
    }

    .majoolite-product .product-item > label {
        height: 40px;
    }

    /** COMMUNITY */
    .majoolite-community {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    #community-slider {
        display: block;
        position: relative;
        width: 100%;
    }

    .news-card {
        margin-bottom: 24px;
        display: block;
        width: 100%;
    }

    /** PRICING */
    .majoolite-pricing {
        padding-top: 48px;
        padding-bottom: 24px;
        background: url('../img/balloon-bw.png'), radial-gradient(100% 100% at 100% 0%, #91D6D1 0%, rgba(145, 214, 209, 0) 100%), radial-gradient(100% 100% at 0% 0%, #BCDEB1 0%, rgba(188, 222, 177, 0) 100%), #FBFCF5;
    }

    .pricing-item {
        margin: unset;
        margin-bottom: 24px;
        height: unset;
    }

    /** FAQ */
    .majoolite-video,
    .majoolite-faq {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .majoolite-video .section-header > label {
        padding-top: unset;
    }

    .faq-accordion {
        padding: 18px 12px 12px;
        border-bottom: 1px solid #E5E5E5;
    }

    .faq-accordion > a {
        align-items: center;
    }

    .faq-accordion > a > i {
        display: inline-block;
        padding: 0 0 0 12px;
    }

    .faq-accordion > a.expanded > i {
        transform: rotate(180deg) translateX(-50%);
    }

    /** FOOTER PROMO */
    #footer-promo {
        padding: 24px 0 48px 0;
        background: linear-gradient(180deg, rgba(227, 241, 216, 0) 0%, #E3F1D8 45.83%);
        position: relative;
    }

    .footer-promo-body {
        padding: 24px 24px 0 24px;
    }

    .footer-promo-content {
        text-align: center;
    }

    .footer-promo-content > h3 {
        font-size: 30px;
        line-height: 38px;
    }

    .footer-promo-content > label {
        width: 65%;
    }

    .footer-promo-body img.footer-image {
        position: relative;
        height: unset;
        width: 95%;
        display: block;
        margin: 0 auto;
    }

    /* FOOTER */
    footer {
        padding: 56px 0;
        background: var(--dark-color);
    }

    .footer-desc > img {
        height: 40px;
    }

    .footer-nav {
        padding-top: 12px;
        padding-bottom: 12px;
        margin-top: 16px;
    }

    .footer-nav > ul {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-nav ul > li {
        list-style: none;
        padding: 4px 12px;
        flex-basis: 100%;
        text-align: left;
    }

    .footer-nav ul > li > ul {
        padding-left: 18px;
    }

    footer span.copy-txt {
        padding: 12px 0;
        text-align: center;
    }

    .f-copy {
        margin-top: 0;
        padding-top: 12px;
        padding-bottom: 12px;
    }

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

    /** PANDUAN */
    .hero-panduan {
        background: url('../img/baloon-panduan.png'), linear-gradient(26.57deg, #47BAB3 8.33%, #90C87D 91.67%);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: cover;
        padding-top: 96px;
        padding-bottom: 48px;
        position: relative;
    }

    .hero-panduan-content {
        padding-top: 72px;
    }

    .hero-panduan-content > h2 {
        font-size: 14px;
        line-height: 16px;
    }

    .hero-panduan-content > h1 {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
    }

    .panduan-navigation {
        padding: 32px 0;
    }

    .panduan-navigation-holder > ul {
        overflow-x: auto;
        padding-bottom: 18px;
    }

    .panduan-navigation-holder > ul > li > a {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
    }

    #panduan-holder {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    #panduan-holder .panduan-item {
        margin-bottom: 64px;
        padding: 0;
        flex-basis: 100%;
    }
    
    #panduan-holder .panduan-item > h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    #panduan-holder .panduan-item > a.panduan-item-inner {
        font-size: 16px;
        line-height: 20px;
    }
    
    #panduan-holder .panduan-item > a.panduan-item-inner.active {
        background: #21928F;
        color: #FFF;
    }
    
    #panduan-holder .panduan-item > a.panduan-item-inner:hover {
        background: #21928F;
        color: #FFF;
    }
    
    #panduan-holder .panduan-item.selected {
        flex-basis: 100%;
    }
    
    #panduan-holder .panduan-item.selected > h3 {
        font-size: 14px;
    }
    
    #panduan-holder .panduan-item.selected > a.panduan-item-inner {
        font-size: 16px;
        line-height: 20px;
    }
    
    .panduan-searchbar {
        width: 100%;
        position: relative;
    }
    
    .panduan-searchbar > i {
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #39958F;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .panduan-searchbar > input[type=text] {
        display: block;
        width: 100%;
        margin-bottom: 24px;
        border: 1px solid #E5E5E5;
        border-radius: 8px;
        padding: 12px 14px 12px 54px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #39958F;
        outline: 0;
    }
    
    #panduan-content-holder {
        padding-left: 0;
    }
    
    #panduan-content-holder > h2 {
        font-size: 22px;
        line-height: 28px;
    }

    #panduan-content-holder .panduan-content-inner img {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .panduan-container-item {
        margin-bottom: 96px;
    }
    
    .panduan-container-item h2 {
        font-size: 24px;
        line-height: 32px;
        margin: 0 0 24px 0;
        text-align: center;
    }
    
    .pricing-item > .pricing-item-content {
        background: #FFFFFF;
        padding: 24px 48px;
        border-radius: 32px 32px 0 0;
    }

    /** CARD **/
    .card-accordion {
        padding: 24px;
        border-radius: 16px;
    }

    .card-accordion > .accordion-item-single {
        padding: 24px 0;
        border-top: 1px solid #d6d6d6;
    }

    .majoolite-news-card {
        gap: 20px 0;
    }
    
    .majoolite-news-card > .news-card-img {
        flex-basis: 100%;
    }
    
    .majoolite-news-card > .news-card-img > img {
        height: 220px;
    }
    
    .majoolite-news-card > .news-card-content {
        flex-basis: 100%;
        padding: 0;
    }
    
    .majoolite-news-card > .news-card-content > h2 {
        font-size: 24px;
        line-height: 32px; /* 133.333% */
    }

    /** NEW POPUP PROMO **/
    .popup-promo-holder {
        width: 360px;
        height: fit-content;
        min-height: 90vh;
        max-height: 95vh;
        left: 50%;
        margin-left: -180px;
        border-radius: 24px;
        overflow: hidden;
        top: 1.5em;
    }

    .popup-promo-holder > .popup-promo-image {
        width: 360px;
        height: 60%;
        position: absolute;
        bottom: 0px;
    }

    .popup-promo-holder > .popup-promo-image > picture > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 0 24px 24px;
    }

    .popup-promo-holder > .popup-promo-content {
        width: 360px;
        height: fit-content;
        min-height: 45%;
        background: #fff;
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 24px 24px 24px 0;
        padding: 24px 24px;
        font-size: 14px;
    }

    .popup-promo-holder > .popup-promo-content > .mj-title-text {
        font-size: 24px;
        line-height: 32px;
    }

    .popup-promo-holder > .popup-promo-content::before {
        top: unset;
        left: 0;
        bottom: -24px;
        height: 24px;
        width: 360px;
        border-radius: 24px 0 0 0;
        box-shadow: -24px 0 0 0 rgba(255, 255, 255, 1);
    }

    a#p-promo-close {
        top: 8px;
        right: 8px;
    }

    .footer-snk {
        display: flex;
        justify-content: space-around;
        gap: 1em;
        margin-top: 12px;
    }

    .fp-download {
        display: flex;
        justify-content: center;
        gap: 1em;
        margin: 12px 0px;
    }

    .majoolite-news-container {
        display: grid;
        grid-template-columns: unset;
        grid-template-rows: repeat(2, auto);
        gap: 20px;
    }

    .majoolite-news-container > .majoolite-news-card.hr {
        flex-direction: unset;
    }

    .majoolite-news-card.hr {
        flex-direction: column-reverse;
    }

    .majoolite-news-container > .majoolite-news-card > .news-card-content {
        padding: 12px 0px;
    }

    .majoolite-news-container > .majoolite-news-card > .news-card-img {
        flex-basis: 100%;
    }

    .majoolite-news-container > .majoolite-news-card > .news-card-img > img {
        width: 100%;
        height: 100%;
    }

    .majoolite-news-card.hr > .news-card-img > img {
        width: 100%;
        height: 100%;
    }
}

@media all and (max-width: 767px) {
    .brosur-content > h3 {
        font-size: 28px;
        line-height: 40px;
    }
    
    .brosur-content > p {
        font-size: 16px;
        line-height: 22px; /* 140% */
    }

    .schedule-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .brosur-content {
        padding: 0;
    }

    section.nobg {
        padding: 48px 0 32px 0;
    }
    
    .snk-content ol > li > img {
        display: block;
        width: 100%;
        height: auto;
        margin: 24px 0;
    }
}

@media all and (max-width: 540px) {
    .page-hero .hero-content > label,
    .footer-promo-content > label {
        text-shadow: 0px 4px 8px rgba(16, 24, 40, 0.1), 0px 2px 4px rgba(16, 24, 40, 0.06);
        display: inline-block;
        width: 100%;
    }
}

/** ANIMATION */
@keyframes flipped-out {
    0% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes flipped-in {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes mj-loading-spin {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

@keyframes on-enter-slide-right {
    0% {
        transform: translateX(-400px);
        opacity: 0;
    }
    100% {
        transform: translateX(400px);
        opacity: 1;
    }
}