:root {
    --font-family: "Poppins", Tahoma, sans-serif;
    --ts-pr-clear-button: 0rem;
    --ts-pr-caret: 0rem;
    --ts-pr-min: 0.75rem;
}
body {
    --text-primary: hsl(240, 3%, 12%);
    --text-secondary: hsla(0, 0%, 0%, 0.8);
    --inverted-text-primary: hsl(0, 0%, 100%);
    --inverted-text-secondary: hsl(0, 0%, 95%);
    --text-shade: hsl(0, 0%, 82%);
    --primary: hsl(290, 44%, 41%);
    --primary-hover: hsl(290, 44%, 37%);
    --primary-active: hsl(289, 45%, 33%);
    --black: hsl(240, 2%, 9%);
    --white: hsl(0, 0%, 100%);
    --gray: hsl(240, 11%, 96%);
    --shade-violet: hsl(288, 33%, 94%);
    --header-color: hsla(240, 2%, 9%, 0.9);
    --footer-color: var(--black);
    --link: hsl(210, 100%, 40%);
    --bgColor: hsl(0, 0%, 100%);
}
@media (prefers-color-scheme: dark) {
    body:not([data-lightMode="light"]) {
        --text-primary: hsl(240, 3%, 12%);
        --text-secondary: hsla(0, 0%, 0%, 0.8);
        --inverted-text-primary: hsl(0, 0%, 100%);
        --inverted-text-secondary: hsl(0, 0%, 95%);
        --text-shade: hsl(0, 0%, 82%);
        --primary: hsl(290, 44%, 41%);
        --primary-hover: hsl(290, 44%, 37%);
        --primary-active: hsl(289, 45%, 33%);
        --black: hsl(240, 2%, 9%);
        --white: hsl(0, 0%, 100%);
        --gray: hsl(240, 11%, 96%);
        --shade-violet: hsl(288, 33%, 94%);
        --header-color: hsla(240, 2%, 9%, 0.9);
        --footer-color: var(--black);
        --link: hsl(210, 100%, 40%);
        --bgColor: hsl(0, 0%, 100%);
    }
}
/* Duplicated dark mode for button action */
body[data-lightMode="dark"] {
    --text-primary: hsl(240, 3%, 12%);
    --text-secondary: hsla(0, 0%, 0%, 0.8);
    --inverted-text-primary: hsl(0, 0%, 100%);
    --inverted-text-secondary: hsl(0, 0%, 95%);
    --text-shade: hsl(0, 0%, 82%);
    --primary: hsl(290, 44%, 41%);
    --primary-hover: hsl(290, 44%, 37%);
    --primary-active: hsl(289, 45%, 33%);
    --black: hsl(240, 2%, 9%);
    --white: hsl(0, 0%, 100%);
    --gray: hsl(240, 11%, 96%);
    --shade-violet: hsl(288, 33%, 94%);
    --header-color: hsla(240, 2%, 9%, 0.9);
    --footer-color: var(--black);
    --link: hsl(210, 100%, 40%);
    --bgColor: hsl(0, 0%, 100%);
}
::-moz-selection {
    color: inherit;
    background: var(--shade-violet);
}
::selection {
    color: inherit;
    background: var(--shade-violet);
}

/* main classes */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
blockquote,
pre,
code,
table,
th,
td,
label,
input,
textarea,
button,
select,
option {
    font-family: var(--font-family);
}
body {
    color: var(--text-secondary);
    background-color: var(--bgColor);
    transition: background-image 0.3s ease-out, background-color 0.3s ease-out,
        color 0.3s ease-out;
}
img:not([src*=".svg"]) {
    filter: var(--imgFilter);
    transition: filter 0.3s ease-out;
}
a:hover,
a:focus {
    color: var(--linkColorHover);
}
.mt-0-f {
    margin-top: 0px !important;
}
.radius-20 {
    border-radius: 20px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.max-w-900 {
    max-width: 900px;
}
.m-0-auto {
    margin: 0 auto;
}
.p-20-0 {
    padding: 20px 0;
}
.pb-15 {
    padding-bottom: 15px;
}
.pt-15 {
    padding-top: 15px;
}
.m-0 {
    margin: 0px;
}

/* Header classes */
#body-main .backfill {
    background: var(--header-color);
    height: 45px;
    width: 100%;
}
.header .uk-dropbar.mega-menu-dropdown {
    background-color: var(--header-color);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    height: fit-content;
    min-height: 75px;
    padding-top: 30px;
    padding-bottom: 20px;
}
.header .uk-dropbar.mega-menu-dropdown .dropbar-navigation-container {
    max-width: 670px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
}
.header .uk-dropbar.mega-menu-dropdown ul.menu-dropbar li a {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
.header .uk-navbar-container:not(.uk-navbar-transparent) {
    background: transparent;
}
.header {
    height: 45px;
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.75s ease, backdrop-filter 0.75s ease,
        height 0.75s ease, background-color 0.75s ease;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--header-color);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.header .header-logo {
    height: 25px;
}
.header .link-menu {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-shade);
    text-transform: capitalize;
    min-height: 45px;
}
.header .link-menu:hover,
.header .link-menu.active:hover {
    color: var(--white);
}
.header .link-menu.active {
    color: var(--text-shade);
}
.header .logo-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .language-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
}
.header .mode-status {
    display: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
}
body[data-lightmode="light"] .header .light-mode {
    display: flex;
}
body[data-lightmode="dark"] .header .dark-mode {
    display: flex;
}
body .header .language-option .light-mode,
body .header .language-option .dark-mode {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 12px;
    padding: 0.6rem;
    border-radius: 6px;
}
body .header .language-option .light-mode:hover,
body .header .language-option .dark-mode:hover {
    background: var(--gray);
}
body[data-lightmode="light"] .header .language-option .light-mode,
body[data-lightmode="dark"] .header .language-option .dark-mode {
    color: var(--primaryColor);
}
.header .btn-language-mode {
    line-height: 0;
    border: 0;
    color: var(--text-shade);
    padding: 0;
    font-size: 12px;
}
.header .btn-language-mode:hover {
    color: var(--white);
}
.header .language-dropdown .uk-inline {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .language-dropdown .dropdown-language-mode {
    padding: 0.5rem;
    background: var(--bgColor);
    background-clip: padding-box;
    border: 1px solid var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%);
}
.header .uk-navbar-nav .uk-navbar-toggle,
.header .hide-when-expanded {
    position: relative;
    z-index: 1021;
    min-height: 45px;
}
.header .uk-navbar-nav .uk-navbar-toggle svg {
    width: 14px;
    height: 14px;
}
.header .uk-navbar-nav,
.header .uk-navbar-center {
    gap: 40px;
}
.header .navbar {
    height: 45px;
}
.header .uk-dropbar {
    padding: 60px 0 0 0;
    min-height: 100dvh;
    background-color: var(--black);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.header .dropbar-navigation-container {
    padding-left: 15px;
    padding-right: 15px;
}
.header .hide-when-expanded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.6, 1) 80ms,
        visibility 0.24s step-start 80ms;
}
.header .hide-when-expanded.expanded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms cubic-bezier(0.4, 0, 0.6, 1) 0ms,
        visibility 0s step-end;
}

.header ul.menu-dropbar {
    display: block;
}
.header ul.menu-dropbar li a {
    color: var(--text-shade);
    width: auto;
    max-width: none;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 3px;
    padding-bottom: 4px;
    padding-inline-start: 48px;
    padding-inline-end: 48px;
    white-space: normal;
    font-size: 24px;
    line-height: 1.1428571429;
    font-weight: 600;
    letter-spacing: 0.007em;
    min-height: 55px;
}
.header ul.menu-dropbar {
    opacity: 0;
    transform: translateY(-8px);
    transition-delay: 340ms;
    transition-duration: 240ms;
    transition-property: opacity, transform, visibility;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1),
        cubic-bezier(0.4, 0, 0.6, 1), step-start;
}
.header ul.menu-dropbar.expanded {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}
@media (min-width: 640px) {
    .header .dropbar-navigation-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .header ul.menu-dropbar {
        transition-delay: 200ms;
    }
}
@media (min-width: 960px) {
    .header .dropbar-navigation-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 959px) {
    .header .uk-navbar-center {
        margin-left: auto;
        position: unset;
        transform: unset;
    }
    .header .uk-navbar-center {
        gap: 20px;
    }
    .header .uk-navbar-nav {
        gap: 0;
    }
}

/* Preloader classes */
.is-loaded.is-ready .preloader {
    opacity: 0;
}
.is-loaded.is-ready.redirecting .preloader,
.is-loaded.is-ready.redirecting .preloader:before {
    opacity: 1;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1900;
    pointer-events: none;
}
.is-loaded .preloader:before {
    opacity: 0;
}
.preloader:before {
    content: "";
    display: block;
    position: absolute;
    top: 1.125rem;
    right: 0.85rem;
    margin-top: -0.46875rem;
    width: 0.9375rem;
    height: 0.9375rem;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: preloaderSpinner 0.3s linear infinite;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 20;
}
.is-loaded .preloader span {
    transform: translate3d(0, -100%, 0);
}
.is-loaded.is-ready .preloader span {
    transform: translate3d(0, 100%, 0);
}
.is-loaded.is-ready.redirecting .preloader span {
    transform: translate3d(0, 0, 0);
}
.preloader span {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0%, 0);
    transition: transform 1s cubic-bezier(0.82, 0, 0.36, 1);
}
.is-loaded.is-ready.redirecting .preloader span:nth-child(1) {
    transition-delay: 0.1s;
}
.is-loaded.is-ready.redirecting .preloader span:nth-child(2) {
    transition-delay: 0.06s;
}
.is-loaded.is-ready.redirecting .preloader span:nth-child(3) {
    transition-delay: 0s;
}
.preloader span:nth-child(1) {
    background-color: var(--secondaryColor);
    z-index: 10;
}
.preloader span:nth-child(2) {
    background-color: var(--primaryColor);
    z-index: 5;
    transition-delay: 0.09s;
}
.preloader span:nth-child(3) {
    background-color: var(--secondaryColor);
    z-index: 2;
    transition-delay: 0.12s;
}
@keyframes preloaderSpinner {
    100% {
        transform: rotate(360deg);
    }
}
.is-loading .logo-preloader {
    transform: scale(1);
    opacity: 1;
    transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}
.is-loaded.is-ready.redirecting .logo-preloader {
    transform: scale(1);
    opacity: 1;
    transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1) 0.6s;
}
.is-loaded .logo-preloader {
    transform: scale(0.8);
    opacity: 0;
    transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1) 0s;
}
.logo-preloader {
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 1901;
    width: 60px;
    height: auto;
    pointer-events: none;
    transform: scale(1);
    opacity: 1;
}

/* Footer clases */
#footer .main {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid var(--text-shade);
    font-size: 17px;
    background: var(--footer-color);
}
#footer .main .content {
    display: flex;
    justify-content: space-between;
    min-height: 200px;
}
#footer .copyright {
    background: var(--footer-color);
}
#footer .copyright .copy {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid var(--text-shade);
    font-size: 12px;
    color: var(--text-shade);
}
#footer .footer-menu {
    margin: 0;
    max-width: 220px;
}
#footer .footer-menu .heading {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    text-transform: capitalize;
}
#footer ul.footer-menu li {
    margin-top: 5px;
}
#footer ul.footer-menu li a {
    color: var(--text-shade);
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 959px) {
    #footer .footer-menu {
        max-width: 100%;
    }
    #footer .main {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #footer .main .content {
        display: block;
        justify-content: space-between;
    }
    #footer .main .content ul:first-child {
        border-top: 1px solid var(--footer-color);
    }
    #footer .main .content ul {
        border-top: 1px solid var(--text-shade);
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Announcement Banner Classes */
.announcement-banner {
    font-size: 14px;
    color: var(--text-primary);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.announcement-banner a,
.announcement-banner span {
    font-size: 14px;
    color: var(--link);
}

/* Wa Button CLasses */
.wa-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
}

/* Home Slider Classes */
.home-slider-grid {
    height: 530px;
    overflow: auto;
    padding-bottom: 20px;
}
.home-slider .uk-dotnav > .uk-active > * {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}
.home-slider .uk-dotnav > * > * {
    background: var(--text-shade);
    border: 1px solid var(--text-shade);
}
.home-slider .uk-slidenav-next,
.home-slider .uk-slidenav-previous {
    color: var(--text-shade);
}
.home-slider .uk-slidenav-next:hover,
.home-slider .uk-slidenav-previous:hover {
    color: var(--text-primary);
}
.home-slider .content {
    position: relative;
}
.home-slider .image-banner.uk-slide-active .slider-overlay {
    opacity: 0.001;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: -1;
}
.home-slider .content .slider-overlay {
    opacity: 0.999;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10;
}
.home-slider .image-banner.uk-slide-active .row-action {
    opacity: 0.999;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    transition-delay: 0.8s;
}
.home-slider .image-banner.uk-slide-active .row-action > p:first-child {
    margin-bottom: 0px;
}
.home-slider .content .row-action {
    opacity: 0.001;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    bottom: 40px;
    gap: 15px;
    flex-direction: column;
    padding: 0px 15px;
}
.home-slider .content .row-action .description.invert {
    color: var(--inverted-text-secondary);
}
.home-slider .content .row-action .description {
    order: -9999;
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
    text-align: center;
}
.home-slider .image-banner {
    width: 300px;
}
@media (min-width: 100px) {
    .home-slider .content .row-action {
        padding-top: 150px;
        padding-bottom: 50px;
        bottom: 0;
        background: rgb(0, 0, 0);
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.75) 45%,
            rgba(0, 0, 0, 1) 100%
        );
    }
}
@media (min-width: 640px) {
    .home-slider .content .row-action {
        padding-top: 120px;
        padding-bottom: 20px;
    }
    .home-slider .image-banner {
        width: 550px;
    }
    .home-slider-grid {
        height: 350px;
    }
}
@media (min-width: 960px) {
    .home-slider .content .row-action {
        justify-content: start;
        padding: 50px;
        gap: 25px;
        flex-direction: row;
    }
    .home-slider .content .row-action .description {
        order: 9999;
        text-align: left;
    }
    .home-slider .image-banner {
        width: 980px;
    }
    .home-slider-grid {
        height: 530px;
    }
}
@media (min-width: 1200px) {
    .home-slider .image-banner {
        width: 1200px;
    }
    .home-slider-grid {
        height: 630px;
    }
}

/* Section Classes */
.main-section,
.secondary-section {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 500px;
}
.main-section::before,
.secondary-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.main-section .uk-container,
.secondary-section .uk-container {
    z-index: 1;
    position: relative;
}
.main-section .content,
.secondary-section .content {
    padding-top: 40px;
    max-width: 850px;
    margin: 0 auto;
}
.main-section .content .head.invert,
.secondary-section .content .head.invert {
    color: var(--inverted-text-primary);
}
.main-section .content .head,
.secondary-section .content .head {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
    margin: 0;
}
.main-section .content .sub-head.invert,
.secondary-section .content .sub-head.invert {
    color: var(--inverted-text-secondary);
}
.main-section .content .sub-head,
.secondary-section .content .sub-head {
    font-size: 16px;
    line-height: 1.21053;
    font-weight: 400;
    letter-spacing: 0.012em;
    margin-top: 8px;
}
@media (min-width: 960px) {
    .main-section {
        height: 650px;
    }
    .secondary-section {
        height: 490px;
    }
    .main-section .content,
    .secondary-section .content {
        padding-top: 100px;
    }
    .secondary-section .content .head {
        font-size: 38px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: 0em;
        margin-bottom: 10px;
    }
    .secondary-section .content .sub-head {
        font-size: 18px;
        line-height: 1.19048;
        font-weight: 400;
        letter-spacing: 0.011em;
        margin-bottom: 30px;
    }
    .main-section .content .head {
        font-size: 42px;
        line-height: 1.07143;
        font-weight: 600;
        letter-spacing: -0.005em;
        margin-bottom: 10px;
    }
    .main-section .content .sub-head {
        font-size: 20px;
        line-height: 1.14286;
        font-weight: 400;
        letter-spacing: 0.007em;
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .main-section {
        height: 700px;
    }
    .secondary-section {
        height: 580px;
    }
}

/* Buttons Classes */
.button-outline-elt .uk-button.invert {
    border: 1px solid var(--inverted-text-primary);
    color: var(--inverted-text-primary);
}
.button-outline-elt .uk-button {
    border-radius: 30px;
    line-height: 38px;
    border: 1px solid var(--primary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: capitalize;
    padding: 4px 30px;
    color: var(--primary);
}
.button-outline-elt:hover .uk-button,
.button-outline-elt:focus .uk-button,
.button-outline-elt:active .uk-button {
    border: 1px solid var(--primary);
    color: #fff;
}
.button-outline-elt:hover .uk-button div {
    transform: scaleY(1);
    transform-origin: 0 bottom;
}
.button-outline-elt .uk-button div {
    background: var(--primary);
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: transform 0.3s cubic-bezier(0.52, 0.24, 0.08, 1);
    will-change: transform;
}
.button-fill.uk-button {
    border-radius: 30px;
    line-height: 38px;
    border: 1px solid var(--primary);
    background: var(--primary);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    padding: 4px 30px;
    color: var(--white);
}
.button-fill.sm.uk-button {
    font-size: 14px;
}
.button-fill:hover,
.button-fill:focus,
.button-fill:active {
    border: 1px solid var(--primary-hover);
    color: #fff;
}

/* Breadcrumb Banner Classes */
.breadcrumb input {
    height: 30px !important;
    padding-left: 30px !important;
}
.breadcrumb a,
.breadcrumb a:hover {
    color: var(--text-primary);
    text-decoration: none;
}
.breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.breadcrumb span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}
.breadcrumb form input,
.breadcrumb form input:focus {
    border-color: var(--text-shade);
    font-size: 12px;
    border-radius: 5px;
}

/* Blog Classes */
.blog.detail .head {
    padding-top: inherit;
}
.blog.blog-bg {
    background: var(--gray);
    min-height: 50vh;
}
.blog .head {
    padding: 24px 0;
}
.blog .head h2 {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
    margin: 0;
}
.blog .card-blog {
    background: var(--white);
    border-radius: 20px;
    overflow: auto;
}
.blog .card-blog.transparent {
    background: transparent;
}
.blog .card-blog .featured-image {
    border-radius: 20px 20px 0 0;
}
.blog .card-blog.single .featured-image {
    border-radius: 20px 20px 0 0;
}
.blog .card-blog.transparent .featured-image {
    border-radius: 20px;
}
.blog .card-blog .category {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}
.blog .card-blog .title {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}
.blog .card-blog.single .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.blog .card-blog .date {
    font-size: 12px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--text-primary);
}
.blog .card-blog.transparent .date {
    margin-top: 10px;
}
.blog a:hover {
    text-decoration: none;
}
.blog .description-container {
    padding: 24px;
}
.blog.detail {
    padding: 40px 0;
}
.blog .description-container-horizontal {
    padding-left: 15px;
}
.blog .description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    height: 100%;
}
.blog .uk-container-small {
    max-width: 380px;
}
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 20px 0;
}
.pagination p {
    color: var(--text-primary);
    font: 14px;
}
.pagination button {
    background: transparent;
    border: 0 solid;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination button:hover {
    background: var(--white);
}
.pagination button:disabled {
    color: var(--text-shade);
}
@media (max-width: 959px) {
    .blog .uk-width-featured-image {
        width: 110px;
    }
}
@media (min-width: 960px) {
    .blog .head {
        padding: 40px 0;
    }
    .blog .uk-container-small {
        max-width: 900px;
    }
    .blog .card-blog .featured-image {
        border-radius: 20px 0 0 20px;
    }
    .blog .card-blog .title {
        font-size: 28px;
        line-height: 1.3;
        font-weight: 600;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
    .blog .card-blog.single .title {
        font-size: 22px;
    }
    .blog .description-container {
        padding: 32px;
    }
    .blog.detail {
        padding: 40px 0;
    }
    .blog .description-container-horizontal {
        padding-left: 32px;
    }
}

/* Blog Detail Classes */
.detail-post {
    border-top: 1px solid var(--text-shade);
}
.detail-post .head {
    padding-top: 60px;
}
.detail-post .head .category,
.detail-post .head .date {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 5;
}
.detail-post .head .title {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-secondary);
    margin: 15px 0;
}
.detail-post .uk-container-xsmall {
    max-width: 600px;
}
.detail-post .social-links {
    display: flex;
    gap: 12px;
}
.detail-post .featured-image-container {
    padding-top: 50px;
    padding-bottom: 40px;
}
.detail-post .content-post {
    color: var(--text-primary);
    font-family: var;
}

/* uk-switcher */
.uk-switch {
    position: relative;
    display: inline-block;
    height: 34px;
    width: 60px;
}
.uk-switch input {
    display: none;
}
.uk-switch-slider {
    background-color: rgba(0, 0, 0, 0.22);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 500px;
    bottom: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: 0.2s;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
}
.uk-switch-slider:before {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    transition-property: transform, box-shadow;
    transition-duration: 0.2s;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
input:checked + .uk-switch-slider {
    background-color: #39f !important;
}
input:checked + .uk-switch-slider:before {
    transform: translateX(26px);
}
.uk-switch-slider.uk-switch-on-off {
    background-color: #f0506e;
}
input:checked + .uk-switch-slider.uk-switch-on-off {
    background-color: #32d296 !important;
}
.uk-switch-slider.uk-switch-big:before {
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}
.uk-switch-slider.uk-switch-small:before {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}
input:checked + .uk-switch-slider.uk-switch-big:before {
    transform: translateX(26px) scale(1.2);
}
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
    background-color: rgba(255, 255, 255, 0.22);
}
.language-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
}
.language-toggle .uk-switch {
    width: 35px;
    height: 20px;
}
.language-toggle .uk-switch input:checked + .uk-switch-slider:before {
    transform: translateX(15px);
}
.language-toggle .uk-switch .uk-switch-slider:before {
    width: 16px;
    height: 16px;
}
.language-toggle input:checked + .uk-switch-slider {
    background-color: var(--primary) !important;
}
.language-toggle .uk-switch-slider {
    background-color: var(--text-shade);
}
.language-toggle input:checked + .uk-switch-slider:before {
    content: "EN";
}
.language-toggle .uk-switch-slider:before {
    content: "ID";
}

/* Link Tree */
.link-tree {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background: #252525;
}
.link-tree .logo {
    width: 150px;
    margin-bottom: 50px;
}
.link-tree .content {
    text-align: center;
    max-width: 340px;
    padding: 40px;
    width: 100%;
    min-height: 600px;
    background-color: rgba(13, 13, 13, 0.4);
    border-radius: 10px;
}
.link-tree .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 10px;
    color: var(--white);
}
.link-tree .title.mt-30 {
    margin-top: 30px;
}
.link-tree .description {
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 30px;
    color: var(--text-shade);
}
.link-tree .link-to-home {
    color: var(--text-primary);
    background: white;
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
}
.link-tree .link-to-home:hover {
    text-decoration: none;
}
.link-tree .button-fill.uk-button {
    padding: 0px 20px;
    width: 100%;
    border-radius: 6px;
    font-weight: 400;
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3) 0s;
}
.link-tree .button-fill.uk-button:hover {
    transform: scale(1.02);
}

@media (max-width: 640px) {
    .link-tree .content {
        border-radius: 0px;
        background-color: transparent;
    }
}

@media (max-width: 390px) {
    .link-tree .content {
        padding: 20px;
    }
}

/* facilities banner */
.facilities-banner {
    height: 550px;
}
.facilities-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.facilities-banner .banner-container {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}
.facilities-banner .title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 10px;
    color: var(--inverted-text-primary);
}
.facilities-banner .description {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin: 0px;
    color: var(--inverted-text-primary);
    max-width: 780px;
}
.facilities-content {
    padding: 60px 0 20px 0;
}
.facilities-content .description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.facilities-content .lightbox-images-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.facilities-content .lightbox-images-container img {
    position: relative;
}
.facilities-content .lightbox-images-container .caption {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 60px;
    margin-top: 10px;
}
.facilities-content .lightbox-images-container a:hover {
    text-decoration: none;
}
.facilities-content .lightbox-images-container .content-center {
    margin: 0 auto;
}
.facilities-content .lightbox-images {
    max-width: 900px;
    max-height: 500px;
    margin: 0 auto;
    border-radius: 20px;
}
.facilities-subtitle {
    font-size: 24px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
    max-width: 900px;
    margin: 0 auto;
}
.facilities.blog.detail .uk-container {
    max-width: 900px;
}
.facilities-gmap {
    position: relative;
    max-width: 900px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px auto 40px auto;
}
.facilities-gmap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
/* In-flow row directly under the "Lokasi Kami" (or equivalent) heading */
.facilities-gmap-directions-bar {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 14px auto;
    text-align: left;
}
.facilities-gmap-directions-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 16px 16px 12px 16px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.2) 55%,
        transparent 100%
    );
}
.facilities-gmap-directions-wrap .facilities-gmap-directions {
    margin-left: 0;
    margin-right: auto;
}
.facilities-gmap-directions {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.15s ease;
}
.facilities-gmap-directions:hover,
.facilities-gmap-directions:focus {
    color: var(--white);
    text-decoration: none;
    filter: brightness(1.06);
}
.facilities-gmap-directions:active {
    transform: scale(0.98);
}
.featured-facilities {
    position: relative;
}
.featured-facilities .uk-slider-items .uk-slider-item {
    position: relative;
}
.featured-facilities .uk-slider-items .uk-slider-item:not(:last-child) {
    margin-right: -30%;
}
.featured-facilities .flicking-camera {
    padding-top: 40px;
    padding-bottom: 40px;
}
.featured-facilities .facilities-card {
    width: 450px;
    background: var(--white);
    border-radius: 20px;
    overflow: auto;
    box-shadow: 0px 0px 16px 4px rgba(140, 140, 140, 0.24);
    -webkit-box-shadow: 0px 0px 16px 4px rgba(140, 140, 140, 0.24);
    -moz-box-shadow: 0px 0px 16px 4px rgba(140, 140, 140, 0.24);
    margin-right: 30px;
}
.featured-facilities .facilities-card a {
    color: inherit;
}
.featured-facilities .facilities-card a:hover {
    text-decoration: none;
}
.featured-facilities .facilities-card .featured-image {
    margin: 20px 0;
}
.featured-facilities .facilities-card .top {
    padding: 30px 30px 0 30px;
}
.featured-facilities .facilities-card .bottom {
    padding: 0 30px 30px 30px;
}
.featured-facilities .facilities-card:last-child {
    margin-right: 0px;
}
.featured-facilities .facilities-card .title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
}
.featured-facilities .facilities-card .sub-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}
.featured-facilities .facilities-card .note {
    font-size: 12px;
    margin: 0;
}
.featured-facilities .flicking-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    color: var(--primary);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: -99999;
    display: none;
}
.featured-facilities .flicking-nav-button.prev {
    left: 20px;
}
.featured-facilities .flicking-nav-button.next {
    right: 20px;
}
@media (max-width: 640px) {
    .facilities-banner .title {
        font-size: 28px;
    }
    .facilities-banner .description {
        font-size: 16px;
    }
    .facilities-content .lightbox-images-container .caption {
        padding-left: 0px;
    }
    .featured-facilities .facilities-card {
        width: calc(100% - 30px);
    }
    .featured-facilities .facilities-card .title {
        font-size: 24px;
    }
    .featured-facilities .facilities-card .note {
        font-size: 10px;
    }
    .featured-facilities .flicking-nav-button {
        z-index: 10;
        display: block;
    }
}

/* section slider classes */
.section-slider {
    border-radius: 20px;
    overflow: auto;
}
.section-slider .content {
    padding: 20px 15px;
    padding-top: 40px;
    background: rgb(10, 10, 10);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.75) 45%, rgba(10, 10, 10, 1) 100%);
}
.section-slider .content .description {
    font-size: 14px;
    margin: 0;
    color: var(--inverted-text-secondary);
    max-width: 100%;
}
@media (min-width: 960px) {
    .section-slider .content {
        padding: 40px;
        padding-top: 80px;
    }
}

/* faq section */
.faq-section {
    padding: 80px 0;
}
.faq-section .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}
.faq-section .description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
}
.faq-section li a {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
.faq-section li:first-child a {
    padding-top: 0px;
    border-top: 0px solid #e5e5e5;
}
.faq-section .uk-accordion-title:before{
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.5%204L6.5%209L11.5%204%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.5%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
}
.faq-section .uk-open{
    .uk-accordion-title:before{
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.5%209L6.5%204L11.5%209%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.5%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
    }
}
@media (max-width: 960px) {
    .faq-section {
        padding: 40px 0;
    }
}

/*important sticky footer*/
html, body {
    height: 100%;
}

#body-main {
    min-height: 100vh;
    margin-bottom: -370px;
}

#body-main:after {
    content: "";
    display: block;
}

#footer, #body-main:after {
    height: 370px;
}

#body-main.disable-after:after {
    height: 0px !important;
}

@media(max-width: 640px) {
    #body-main {
        min-height: auto;
        margin-bottom: 0;
    }

    #footer, #body-main:after {
        height: auto;
    }
}
/*important sticky footer*/

/* contact section */
.contact-section {
    padding-top: 40px;
    padding-bottom: 80px;
}
.contact-section .title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    padding-bottom: 40px;
}
.contact-section .sub-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}
.contact-section .small-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 13px 0;
}
.contact-section .description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    margin: 13px 0;
}
.facilities-content .uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
.facilities-content .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
    position: absolute !important;
    width: auto !important;
    padding: 5px 10px !important;
    margin: 15px !important;
    overflow: inherit !important;
    clip-path: inherit !important;
    white-space: inherit !important;
    height: auto !important;
}
