@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:600,700|Montserrat:400,500,600&display=swap');

:root {
    --primary-color: #E98404;
    --secondary-color: #0394B6;
    --primary-color-dark: #975912;
    --primary-dark: #3A3A3A;
    --primary-dark-intense: #1f1f1f;
    --primary-light: #F4EBD8;
    --text-color: #2F3732;
    --text-color-light: #979797;
    --primary-bg-light: #F0F0F0;
    --light-bg: #F4F4F4;
    --base-letter-spacing: 0.02rem;
    --header-height: 0;
    --header-nav-offset: 80px;
    --section-gap: 3.125rem;
    --nav-width: 250px;
    --container-width: 100%
}

@media screen and (min-width: 576px) {
    :root {
        --container-width: 540px;
    }
}

@media screen and (min-width: 768px) {
    :root {
        --container-width: 720px
    }
}

@media screen and (min-width: 992px) {
    :root {
        --container-width: 960px;
        --section-gap: 3.75rem;
    }
}

@media screen and (min-width: 1200px) {
    :root {
        --container-width: 1140px;
    }
}

@media screen and (min-width: 1400px) {
    :root {
        --container-width: 1320px;
        --section-gap: 4.375rem;
    }
}

* {
    padding: 0;
    margin: 0;
    outline: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    min-width: 360px;
}

a,
button,
.smooth {
    -webkit-transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
    -ms-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

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

.bg-primary-light {
    background-color: var(--primary-bg-light) !important;
}

.bg-primary-dark {
    background-color: rgba(8, 39, 64, 1);
}

.bg-dark {
    background-color: var(--primary-dark-intense) !important;
}

.bg-input {
    background-color: #eee;
    border: none;
    outline: none;
}

.img-container {
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
}

.img-cover,
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-cover {
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

.long-img-container {
    aspect-ratio: 16/9;
}

@media (orientation: portrait) {
    .long-img-container {
        aspect-ratio: 4/3;
    }
}

/* custom colors */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

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

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

.bg-soft {
    background-color: #f8f8f8 !important;
}

/* custom spacing */
.section-gap-top {
    padding-top: var(--section-gap);
}

.section-gap-bot {
    padding-bottom: var(--section-gap);
}

.pe-container-offset {
    padding-right: 1rem;
}

@media screen and (min-width: 1200px) {
    .pe-container-offset {
        padding-right: calc((100% - 1320px)/2);
    }
}

/* custom layout */
.flex-1 {
    flex: 1;
}

.shrink-0 {
    flex-shrink: 0;
}

.ratio-1 {
    aspect-ratio: 1;
}

.ratio-4_3 {
    aspect-ratio: 4/3;
}

.ratio-3_4 {
    aspect-ratio: 3/4;
}

.ratio-4_5 {
    aspect-ratio: 4/5;
}

.ratio-5_4 {
    aspect-ratio: 5/4;
}

.ratio-16_10 {
    aspect-ratio: 16/10;
}

.all-block>* {
    display: block;
}

.rounded-circle {
    border-radius: 50%;
}

.img-blend {
    mix-blend-mode: darken;
}

.flex-break {
    flex: 1 0 100% !important;
    height: 0 !important;
}

@media screen and (min-width: 1198px) {
    .col-xl-3_5 {
        flex: 0 0 auto;
        width: 20%;
    }
}


/* custom typography */
.sub-title {
    font-size: 18px;
    color: var(--primary-dark);
    letter-spacing: var(--base-letter-spacing);
    text-transform: uppercase;
    font-weight: 400;
    display: block;
}

*[class*="heading-"] {
    font-family: "Libre Baskerville";
    color: var(--primary-dark);
    font-weight: 600;
}

*[class*="heading-"]>a {
    color: inherit
}

.heading-ultra {
    font-size: clamp(2.5rem, 2rem + 2.2222vw, 4rem);
}

.heading-main {
    font-size: clamp(2.125rem, 1.9756rem + 0.6639vw, 2.625rem);
}

.heading-section,
.title-section,
.heading-mid {
    font-size: clamp(1.5rem, 1.3333rem + 0.7407vw, 2rem);
}

.heading-info {
    font-size: 1.5rem;
}

*[class*="highlighted-title-"] {
    padding: 12px 12px 10px;
    display: inline-block;
    margin-bottom: 0;
    color: #fff;
}

.highlighted-title-inc {
    background-color: var(--secondary-color);
}

.highlighted-title-exc {
    background-color: var(--primary-color);
}

.u-lined {
    position: relative;
}

.u-lined::after {
    content: "";
    height: 3px;
    width: 50px;
    position: absolute;
    left: calc(50% - 25px);
    bottom: -10px;
    background-color: var(--primary-color);
}

.u-lined-left::after {
    left: 0
}

.lined-heading {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-top: 20px;
    position: relative;
}

.lined-heading>* {
    position: absolute;
    background: #fff;
    padding-right: 16px;
    top: 0
}

.wrap-head {
    background-color: rgba(233, 132, 4, 0.6);
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-lg,
.lg-descriptions :is(p, li) {
    font-size: 1rem;
}

.bg-descriptions {
    background-color: #f6f6f5;
    padding: 16px;
}

@media screen and (min-width: 1400px) {

    .text-lg,
    .lg-descriptions :is(p, li) {
        font-size: 1.125rem;
    }
}

.text-xl {
    font-size: 1.25rem;
}

.leading-sm {
    letter-spacing: var(--base-letter-spacing);
}

.leading-none {
    letter-spacing: 0 !important;
}

.line-heading {
    display: block;
    color: var(--primary-dark);
}

*[class*="title-"] {
    font-weight: 600;
    color: var(--primary-dark);
}

.title-showcase {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.4;
}

.title-card {
    font-size: 1.5rem;
}

.title-common {
    font-size: 1.25rem;
}

@media screen and (min-width: 992px) {
    .title-common {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .title-common {
        font-size: 1.65rem;
    }
}

.title-card-content {
    font-size: 1.25rem;
}

.title-lite {
    font-size: 1.125rem;
}

.underline-heading {
    position: relative;
    padding-bottom: 1rem;
}

.underline-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary-dark);
    position: absolute;
    bottom: 0;
    left: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.normal-text {
    font-size: 1rem;
    color: var(--primary-dark);
}

.single-line-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.break-word {
    word-break: break-all;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.text-shadow {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.descriptions img,
.descriptions table {
    max-width: 100% !important;
    height: auto !important;
}

/* custom button and links */
a {
    text-decoration: none;
    display: inline-block;
}

.inline-link {
    display: inline;
    color: inherit;
}

.inline-link:hover {
    color: var(--primary-color);
}

.link {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: var(--base-letter-spacing);
    color: var(--base-letter-spacing);
    text-decoration: underline solid var(--primary-dark) 1px;
    text-underline-offset: 10px;
}

.link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color)
}

.link-text {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: var(--primary-dark);
}

.link-with-icon {
    color: var(--primary-dark-intense);
    font-weight: 500;
    display: inline-flex;
    gap: 0.875rem;
}

.link-with-icon:hover {
    color: var(--primary-color);
}

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

.link-btn {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
}

.link-btn:hover {
    color: var(--primary-color-dark);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: var(--primary-dark);
}

.icon-btn-dark {
    background-color: var(--primary-dark-intense);
    color: #fff;
}

.icon-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.icon-btn-flat {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1px solid #ddd
}

.icon-btn-flat:hover {
    border-color: var(--primary-color);
}

.main-btn,
.outline-btn,
.alt-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 25px;
    letter-spacing: var(--base-letter-spacing);
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    outline: none !important;
    height: 3rem;
    text-transform: uppercase;
}

.alt-btn {
    height: 2rem !important;
    font-weight: 500;
    letter-spacing: 0;
    padding: 0 1rem;
    text-transform: none;
}

.btn-inverted {
    background-color: var(--secondary-color);
}

.outline-btn {
    background-color: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    gap: 0 0.75rem;
    font-weight: 400;
    height: 46px;
}

.btn-dark {
    background-color: var(--primary-dark-intense);
}

.btn-light {
    background-color: #fff;
    color: var(--primary-dark-intense);
}

.main-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-dark:hover,
.alt-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.title-link {
    display: inline;
    color: inherit;
}

.outline-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.clean-btn {
    background-color: transparent;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.clean-btn :is(svg, i, img) {
    flex-shrink: 0;
}

.icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: var(--size, 50px);
    background-color: var(--bg-color, var(--secondary-color));
    color: var(--color, #fff);
    border-radius: var(--radius, 0);
}

.counter-btn {
    font-size: 26px;
}

.theme-tabs .nav-tabs .nav-link {
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    color: var(--text-color-light);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.theme-tabs .nav-tabs {
    margin: 0 -1rem;
}

.theme-tabs .nav-tabs .nav-link.active {
    border-color: transparent;
    color: var(--primary-dark);
    font-weight: 500;
    position: relative;
}

.theme-tabs .nav-tabs .nav-link.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -1px;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    box-shadow: none;
}

@media screen and (min-width: 768px) {
    .theme-tabs .nav-tabs .nav-link {
        font-size: 1.125rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .theme-tabs .nav-tabs .nav-link.active::after {
        height: 3px;
    }
}

@keyframes animate-btn {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(12px);
        transform: translateY(0);
    }
}

.floating-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 24px;
    left: calc(50% - 25px);
    z-index: 9;
    background-color: #fff;
    color: var(--primary-color);
    animation: animate-btn;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.floating-btn:hover {
    animation-play-state: paused;
}

.shadow-float {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

/* header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.global-header {
    background-color: #F0F0F0
}

.nav-logo-wrapper {
    max-width: 170px;
}

/* new nav */
.menu-click {
    color: var(--primary-dark-intense);
}

.menu-click:hover {
    color: var(--secondary-color);
}

.menu-close {
    display: none;
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--primary-color) !important;
}

.menu-opener {
    color: #fff !important;
    margin-left: 16px;
    display: none;
}

.index-nav-wrap {
    position: fixed;
    z-index: 9;
    width: max-content;
    text-align: right;
    right: calc((100vw - var(--container-width))/2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: right ease-in-out 0.2s;
}

.index-nav {
    align-items: flex-end;
    min-width: 40px;
}

.index-nav li {
    display: inline-flex;
    justify-content: flex-end;
    width: max-content;
}

.anchor-link {
    height: 40px;
    padding: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    word-break: keep-all;
}

.index-nav a:hover,
.index-nav a.active {
    color: var(--primary-color);
}

.anchor-holder {
    position: absolute;
    right: 3px;
    top: 11px;
    width: 8px;
    height: 16px;
    border-radius: 4px;
    background-color: #fff;
    transition: background-color linear 0.3s;
}

.index-nav a.active .anchor-holder {
    background-color: var(--primary-color);
}

@keyframes animate-line {
    50% {
        width: calc(100% + 25px);
    }

    100% {
        width: 8px;
    }
}

@keyframes animate-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anchor-title {
    padding-right: 25px;
    width: max-content;
    transition: all linear 0.2s;
    visibility: hidden;
    pointer-events: none;
}

.off-canvas-menu {
    width: 300px;
}

.accordion-nav-item {
    border: none;
    border-top: 1px solid #ddd;
    padding: 12px 0
}

.accordion-nav-item .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-nav-item .accordion-header a {
    text-transform: uppercase;
    color: var(--primary-dark);
    letter-spacing: var(--base-letter-spacing);
    font-size: 1rem;
    font-weight: 500;
}

.accordion-btn {
    -webkit-transition: transform linear 0.2s;
    transition: transform linear 0.2s;
}

.accordion-btn[aria-expanded="true"] {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.full-search {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
}

/* banners */
.section-content-offset {
    max-width: calc(100% - var(--nav-width));
}

.search-bar-section {
    max-width: 800px;
}

.section-content-md {
    max-width: 768px;
}

.theme-backdrop-dark {
    background-color: rgba(8, 39, 64, 0.8);
}

.theme-backdrop {
    background-color: rgba(8, 39, 64, 0.5);
}

.theme-backdrop-light {
    background-color: rgba(8, 39, 64, 0.2);
    transition: all linear 0.2s;
}

.overlay-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-backdrop {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.gradient-backdrop-dark {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.content-to-end {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.fullpage-banner,
.fullpage-section {
    height: 100vh;
    height: 100dvh;
    position: relative;
    min-height: 600px;
}

.screen-fit-section {
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: 580px;
}

.screen-80-section {
    height: calc(80vh - var(--header-height));
    height: calc(80dvh - var(--header-height));
    min-height: 450px;
}

.section-bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-bg-fixed {
    background-attachment: fixed;
}

.content-banner>* {
    min-height: 100dvh;
}

/* carousel and banners */
.slick-text .slick-slide {
    padding-right: 150px;
}

.banner-carousel .img-container {
    height: calc(100vh - var(--header-height));
    min-height: 450px;
}

.banner-captions {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.caption-contents {
    max-width: 450px;
}

.banner-image {
    height: calc(100vh - var(--header-height));
    max-height: 500px;
}

.carousel-left-align .slick-track {
    margin-left: 0 !important;
}

.products-carousel .carousel-btn-next {
    margin-top: 20px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
}

.products-carousel .carousel-btn-prev {
    position: absolute;
    top: auto;
    bottom: 0;
    left: calc(50% - 50px);
}

.carousel-btn {
    color: var(--primary-dark);
}

.carousel-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* intro */
.intro-cover-image {
    aspect-ratio: 4/3;
}

@media screen and (min-width: 992px) {
    .intro-cover-image {
        aspect-ratio: auto;
        height: 100%;
    }

    .intro-about-cover {
        height: 100%;
    }
}

.intro-actions {
    margin-top: -25px
}

/* show case */
.hero-showcase-row {
    gap: 28px 0;
}

.showcase-card {
    height: 220px
}

.showcase-card-img img {
    object-position: bottom center;
}

@media screen and (min-width: 576px) {
    .inline-card-sm-img {
        width: 250px
    }
}

/* cards */
.abs-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(233, 132, 4, 0.6);
    color: #fff;
    z-index: 1;
}

.abs-title:hover {
    background-color: rgba(233, 132, 4, 1);
    color: #fff;
}

.base-card-title {
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (min-width: 1200px) {
    .base-card-title {
        font-size: 1.125rem;
    }
}

.galaxy-hero-universe {
    gap: 30px;
}

.large-galaxy-card {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.large-galaxy-card .wrap-head {
    height: 200px;
    width: 200px;
    border-radius: 50%;
}

.large-galaxy-card .wrap-head:hover {
    background-color: rgba(233, 132, 4, 1);
}

.planet-card {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background-color: #fff;
    border: 8px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color linear 0.3s;
    -webkit-transition: background-color linear 0.3s;
    flex-shrink: 0;
}

.row .planet-card {
    margin: 0 auto;
}

/* updates */
.planet-card:hover {
    background-color: var(--primary-color);
}

.planet-card:hover>* {
    color: #fff !important;
}

.offset-planet {
    position: relative;
}

.mobile-planets {
    overflow-x: scroll;
}

@media screen and (min-width: 1200px) {
    .offset-planet {
        position: absolute;

    }

    .planet-top-right,
    .planet-bottom-right {
        right: -85px
    }

    .planet-top-right {
        top: -30px;
    }

    .planet-bottom-right {
        bottom: -30px;
    }
}

.heading-holder {
    font-size: 18px;
    line-height: 1.2;
}

.heading-teller {
    font-size: 20px;
}

@media screen and (min-width: 1200px) {
    .joined-card-row>div:not(:last-child) {
        padding-right: 0;
    }
}

.overlay-titles {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.absolute-overview {
    left: 1rem;
    bottom: 1rem;
}

.overview-content>* {
    line-height: 1.25;
}

.avatar-img {
    width: 120px
}

.testimonial-card {
    max-width: 620px;
}

.abs-label {
    position: absolute;
    left: 1rem;
    top: -1rem;
}

.delight-card {
    background-color: var(--secondary-color);
}

@media screen and (min-width:992px) {
    .clipped-card-img {
        -webkit-clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
    }

    .long-cards-list>div.long-card:nth-child(even) .long-card-row {
        flex-direction: row-reverse;
    }

    .long-cards-list>div.long-card:nth-child(even) .clipped-card-img {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%);
    }
}

.gallery-grid-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 3px;
    background-color: var(--primary-color);
}

.doc-card {
    background-color: #eee;
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    height: 100%;
}

.doc-card-title {
    background-color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    color: #fff;
}

.team-titles-wrapper {
    --avatar-size: 320px;
    padding-top: calc(var(--avatar-size)/2);
}

.main-avatar {
    width: var(--avatar-size);
    border-radius: 50%;
    position: absolute;
    top: calc(var(--avatar-size)/2 * -1);
    left: calc(50% - var(--avatar-size)/2);
    z-index: 99;
    border: 5px solid #fff;
    background-color: #fff;
}

.image-overlay-card {
    height: 140px;
}

.overlay-link:hover {
    background-color: rgba(233, 132, 4, 0.4);
}

/* collaspe */
.custom-collapse {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.custom-collapse-title {
    color: var(--primary-dark-intense);
    font-size: 20px;
    font-weight: 600;
}

.collapse-link {
    color: inherit !important;
    position: relative;
    padding-left: 22px;
}

.collapse-link::before {
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    position: absolute;
    top: 3px;
    left: 0;
}

.collapse-link[aria-expanded="true"]::before {
    content: "\f068";
}

.custom-collapse-card {
    padding-left: 40px;
}

.custom-collapse-card p {
    position: relative;
    line-height: 1.4;
    padding-left: 20px;
}

.custom-collapse-card p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
}

/* old */
.product-card-img {
    position: relative;
}

.product-card-badge {
    background-color: var(--primary-color);
    font-size: 0.875rem;
    padding: 4px 12px;
    color: #fff;
    font-weight: 500;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1;
}

.product-card-img .img-container {
    background-color: #F8F8F8;
}

.product-card-img img {
    mix-blend-mode: darken;
}

.product-card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.product-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-color);
}

.card-action-btn {
    background-color: var(--primary-bg-light);
    color: var(--primary-dark);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    z-index: 2;
}

.card-alt-img {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity linear 0.2s;
    z-index: 1;
}

.card-action-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.product-card:hover .card-action-btn,
.product-card:hover .card-alt-img {
    opacity: 1;
}

.product-card-text {
    font-size: 1rem;
    font-weight: 500;
}

.badge-title {
    background-color: var(--primary-color);
    display: inline-block;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    padding: 1rem 2rem;
}

.clean-col-card .titles-wrapper {
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
}

.info-card {
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.info-overview {
    max-width: 265px;
    background-color: var(--primary-dark);
    padding: 1rem;
}

a.info-overview:hover {
    background-color: var(--primary-color);
}

.info-icon {
    font-size: 18px;
}

.lite-icon {
    color: var(--primary-dark);
}

.clip-hex {
    -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 76%, 50% 100%, 5% 76%, 5% 24%);
    clip-path: polygon(50% 0%, 95% 25%, 95% 76%, 50% 100%, 5% 76%, 5% 24%);
}

.rainbow-showcase>div:nth-of-type(3n + 1) .showcase-card {
    background-color: var(--color-alt-1);
}

.rainbow-showcase>*:nth-of-type(3n - 1) .showcase-card {
    background-color: var(--color-alt-2);
}

.rainbow-showcase>*:nth-of-type(3n - 3) .showcase-card {
    background-color: var(--color-alt-3);
}

.inline-card {
    --image-width: 110px
}

.inline-card-md {
    --image-width: 95px
}

.inline-card .img-container {
    width: var(--image-width);
}

.inline-card-contents {
    width: calc(100% - var(--image-width));
}

.inline-card-contents .title-lite {
    width: calc(100% - 22px);
}

.inline-card-action {
    max-width: 300px;
}

.inline-card-close {
    line-height: 28px;
    font-size: 38px;
    color: var(--text-color-light);
}

.small-counter {
    border: 1px solid var(--text-color-light);
    color: var(--text-color);
    width: 90px;
    height: 30px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.small-counter .clean-btn {
    height: 28px;
    width: 28px;
    display: inline-flex;
    font-size: 22px;
    justify-content: center;
    align-items: center;
}

/* carousel */
.slide-gap .slick-slide {
    margin: 0 0.60rem
}

.banner-carousel-img {
    aspect-ratio: 16/7;
}

.abs-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.heading-abs-content {
    background-color: rgba(236, 236, 236, 0.80);
    color: var(--primary-dark-intense);
    font-size: 30px;
    padding: 0.75rem 1rem;
}

.product-carousel-thumbs {
    width: 90px;
    position: relative;
    margin: 0;
    gap: 1rem;
}

.product-carousel-thumbs [data-bs-target] {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 0;
    background-clip: border-box;
    border: none;
    opacity: 1;
    text-indent: 0;
    border: 1px solid transparent
}

.product-carousel-thumbs [data-bs-target].active {
    border-color: var(--primary-color);
}

.theme-slick-carousel button.carousel-btn {
    height: 40px;
    width: 40px;
    border: 1px solid var(--secondary-color);
    background-color: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    bottom: -70px;
    z-index: 1;
}

/* .product-carousel :is(.carousel-control-next-icon, .carousel-control-prev-icon) {
    background-size: 75% 75%;
    filter: invert(100%);
} */
.base-carousel .carousel-btn-prev,
.package-carousel .carousel-btn-prev {
    left: 12px;
}

.base-carousel .carousel-btn-next,
.package-carousel .carousel-btn-next {
    right: 12px;
}

.gallery-carousel button.carousel-btn {
    background-color: var(--secondary-color) !important;
    top: calc(50% - 20px);
    color: #fff !important;
}

.gallery-carousel button.carousel-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.gallery-carousel .carousel-btn-prev {
    left: 20px;
}

.gallery-carousel .carousel-btn-next {
    right: 20px;
}

/* updated */
.alternating-row .slick-track>div:nth-child(even) {
    transform: none;
}

@media screen and (min-width: 575px) {
    .alternating-row .slick-track {
        padding-bottom: 40px;
    }

    .alternating-row .slick-track>div:nth-child(even) {
        transform: translateY(40px);
    }
}

/* end updated */
.slick-disabled {
    opacity: 0;
}

.gallery-carousel-img {
    aspect-ratio: 4/3;
}

@media screen and (min-width: 768px) {
    .gallery-carousel-img {
        aspect-ratio: 16/9;
    }
}

/* new */
.custom-indicators .slick-dots {
    bottom: -2rem;
}

.custom-indicators .slick-dots li {
    width: 20px;
    height: 8px;
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    margin: 0 4px;
}

.custom-indicators .slick-dots li button::before {
    content: unset;
}

.custom-indicators .slick-dots li.slick-active {
    background-color: var(--secondary-color);
}

/* form and inputs */
.letter-form {
    max-width: 650px;
}

.common-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.fixed-form {
    max-width: 530px;
}

.fixed-form-lg {
    max-width: 650px;
}

.form-control:not(input[type=radio], input[type=checkbox], input[type=file], textarea),
.form-select {
    height: 3rem;
}

.form-control-lg:not(input[type=radio], input[type=checkbox], textarea),
.form-select-lg {
    height: 3.375rem
}

.form-control,
.form-select {
    border-radius: 0;
    font-size: 0.938rem;
}

.block-input {
    border-color: #979797;
    height: 2.875rem !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 5px rgba(58, 58, 58, 0.4);
}

.input-mid {
    height: 2.5rem;
    font-size: 0.875rem;
}

.inline-form-btn {
    padding: 0;
    width: 3.375rem;
    height: 3.375rem;
}

.counter {
    max-width: 120px;
}

.pw-toggle {
    position: absolute;
    right: 0.75rem;
    top: calc(50% - 10px);
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.pw-toggle svg {
    vertical-align: unset;
}

/* alert and badges */
.dot-badge {
    font-size: 14px;
    position: relative;
    padding-left: 16px;
}

.dot-badge::before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #979797;
    position: absolute;
    left: 0;
    top: calc(50% - 4px)
}

.dot-badge[data-status=dispatched]::before {
    background-color: #0d6efd;
}

/* inner footer */
.footer-row {
    gap: 30px 0;
}

.foot-contact-icon {
    width: 20px;
}

.secondary-nav li {
    margin-bottom: 0.4rem;
}

.secondary-nav li a {
    color: var(--primary-dark);
    letter-spacing: var(--base-letter-spacing);
}

.secondary-nav li a:hover {
    color: var(--primary-color);
}

.pat-logos {
    gap: 0.825rem;
}

.pat-logo {
    width: 70px;
    background-color: #fff;
    padding: 4px;
}

.info-bordered {
    position: relative;
}

.info-bordered::before {
    --icon-size: var(--size, 50px);
    content: "";
    position: absolute;
    height: calc(100% - var(--icon-size));
    width: 1px;
    left: calc(var(--icon-size)/2);
    top: var(--icon-size);
    border-left: 2px dashed var(--secondary-color);
}

/* packages */
.day-info {
    width: 98px;
    background-color: var(--primary-color);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-transform: uppercase;
}

.border-liner {
    position: relative;
}

.border-liner::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    width: 1px;
    height: calc(100% - 40px);
    border-left: 2px dashed var(--primary-color);
}

.bordered-lister>div.info-long-card:last-child .border-liner::before {
    content: unset;
}

/* brands */
.brands-row {
    max-width: 1024px;
    flex-wrap: wrap;
}

.brand-image {
    width: 33%;
    padding: 0.25rem 0.5rem;
}

@media screen and (min-width: 576px) {
    .brand-image {
        width: 20%;
        padding: 0.25rem 0.75rem;
    }
}

.brand-image img {
    width: 100%;
}

@media screen and (hover:hover) {
    .clean-carousel-img .abs-content {
        opacity: 0;
    }

    .clean-carousel-img:hover .abs-content {
        opacity: 1;
    }
}

.abs-titles {
    position: absolute;
    top: -90px;
    left: 0;
    z-index: 9;
    width: 100%;
    background-color: var(--primary-bg-light);
}

@media screen and (min-width: 992px) {
    .contact-info-col {
        order: 1;
    }

    .contact-form-col {
        order: 2;
    }
}

/* package details */
.package-menu {
    background-color: var(--secondary-color);
}

.package-menu-wrapper {
    overflow-x: auto;
}

.fixed-package-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.package-nav a {
    color: #fff;
    font-weight: 600;
    padding: 10px 0;
    width: max-content;
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .package-nav a {
        font-size: 1rem;
    }
}

.package-nav a:hover,
.package-nav a.active {
    color: var(--primary-color);
}

.sticky-actions {
    top: 30px;
}

.side-contact-icon {
    background-color: var(--bg-color, var(--secondary-color));
    height: 45px;
    width: 45px;
    border-radius: 50%;
}

@media screen and (min-width: 1200px) {
    .package-details-banner {
        height: calc(100dvh - (var(--header-height) + 45px));
    }

    .sticky-actions {
        top: 70px;
    }

    .package-details-banner {
        margin-top: calc(var(--header-height) - 45px)
    }
}

.inc-exc-col ul,
.inc-exc-col ol {
    list-style: none;
    padding: 0;
    font-weight: 500;
}

.inc-exc-col li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 8px;
}

.inc-exc-col svg {
    position: absolute;
    left: 0;
    top: 2px;
}

.depart-card {
    display: flex;
    gap: 1rem;
    background-color: var(--primary-bg-light);
    padding: 1rem 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.inner-nav {
    background-color: rgba(8, 39, 64, 1);
    right: 0;
    padding: 20px;
    right: -310px;
    z-index: 9999;
    width: 300px;
    top: 0;
    justify-content: flex-end;
    flex-direction: row;
    overflow-y: auto;
    padding-top: 70px !important;
}

.inner-nav .anchor-title {
    visibility: visible !important;
    opacity: 1 !important;
}

.inner-menu-close {
    display: inline-block !important;
}

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

    .menu-close,
    .menu-opener {
        display: inline-block;
    }

    .section-content-offset {
        max-width: 100%;
    }

    .index-nav-wrap {
        background-color: rgba(8, 39, 64, 1);
        right: 0;
        padding: 28px;
        right: -300px;
        z-index: 9999;
    }

    .anchor-title {
        opacity: 1 !important;
        visibility: visible !important;
    }
}


@media screen and (min-width: 768px) {
    .large-galaxy-card {
        height: 380px;
        width: 380px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    .large-galaxy-card {
        height: 280px;
        width: 280px;
        margin: 0 auto;
    }

    .heading-teller {
        font-size: 18px;
    }

    .planet-card {
        height: 130px;
        width: 130px;
    }
}

@media screen and (min-width: 992px) {
    .large-galaxy-card {
        height: 420px;
        width: 420px;
        margin: 0 auto;
    }

    .planet-card {
        height: 160px;
        width: 160px;
    }

    .heading-holder {
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {
    .large-galaxy-card {
        height: 440px;
        width: 440px;
        margin: 0 !important
    }

    .planet-card {
        height: 170px;
        width: 170px;
    }

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

    .heading-holder {
        font-size: 20px;
    }
}

@media screen and (min-width: 1400px) {
    .large-galaxy-card {
        height: 480px;
        width: 480px;
        margin: 0 !important
    }

    .planet-card {
        height: 180px;
        width: 180px;
    }

    .heading-teller {
        font-size: 24px;
    }

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

@media screen and (max-width: 575px) {
    .title-common {
        font-size: 1.25rem;
    }

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

    .package-menu .container {
        padding: 0
    }

    .package-nav {
        padding: 0 20px
    }

    .package-nav>li:last-child {
        padding-right: 20px;
    }

    .slide-gap .slick-slide {
        margin: 0 0.5rem;
    }

    .planet-card {
        height: 140px;
        width: 140px;
    }

    .lined-heading {
        border-bottom: 1px solid #ddd;
        margin-bottom: 15px;
        padding-top: 10px;
        position: relative;
    }

    .title-card-content {
        font-size: 1.125rem
    }
}

@media screen and (max-width:480px) {
    .depart-card {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 0.875rem;
    }

    .nav-logo-wrapper {
        max-width: 130px;
    }

    .header-nav .main-btn {
        padding-left: 12px;
        padding-right: 12px;
    }

    .menu-opener {
        margin-left: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .header-nav .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-nav .main-btn {
        font-size: 0.875rem;
        height: 2.5rem;
    }
}

/* width */
body::-webkit-scrollbar,
.hor-scrollbar::-webkit-scrollbar {
    width: 10px;
}

.hor-scrollbar::-webkit-scrollbar {
    height: 8px;
}

/* Track */
body::-webkit-scrollbar-track,
.hor-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
body::-webkit-scrollbar-thumb,
.hor-scrollbar::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover,
.hor-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-intense);
}

.animated-banner {
    transform-origin: center;
    transition: all linear 0.1s;
    -webkit-transition: all linear 0.1s;
}

.animated-banner-wrapper {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: -1;
}

.global-header {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 999;
    top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.interactive-animated-banner {
    position: fixed;
    left: calc((100% - var(--container-width))/2);
    transform-origin: top;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .package-card-actions a {
        font-size: 15px;
    }

    .package-card-actions .alt-btn {
        padding: 0 12px
    }
}

.joined-card {
    position: relative;
}

.joined-card::before,
.joined-card::after {
    border-color: var(--primary-color);
    border-width: 3px;
    content: '';
    display: block;
    height: 25px;
    pointer-events: none;
    position: absolute;
    width: 25px;
    z-index: 9;
    margin: 15px;
    opacity: 0;
    transition: all .2s linear;
}

.joined-card::before {
    border-left-style: solid;
    border-top-style: solid;
    top: 30px;
    left: 30px;
}

.joined-card::after {
    border-right-style: solid;
    border-bottom-style: solid;
    bottom: 30px;
    right: 30px
}

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

.joined-card:hover::before,
.joined-card:hover::after {
    opacity: 1;
}

.joined-card:hover::before {
    top: 0;
    left: 0;
}

.joined-card:hover::after {
    bottom: 0;
    right: 0;
}

.joined-card:hover .theme-backdrop-light {
    background-color: rgba(255, 255, 255, 0.6);
}

.joined-card:hover .heading-mid,
.joined-card:hover p {
    color: var(--primary-dark) !important;
    text-shadow: none;
}

@media screen and (hover: none) {

    .joined-card::before,
    .joined-card::after {
        opacity: 1 !important;
    }

    .joined-card::before {
        top: 0 !important;
        left: 0 !important;
    }

    .joined-card::after {
        bottom: 0 !important;
        right: 0 !important;
    }

    .joined-card .theme-backdrop-light {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .joined-card .heading-mid,
    .joined-card p {
        color: #ffffff !important;
        text-shadow: none;
    }
}

.expandable {
    max-height: var(--initial-height, 75px);
    position: relative;
    overflow: hidden;
    -webkit-transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.expandable-expanded {
    --initial-height: 500px !important;
}

.search-link:hover svg {
    transform: scale(1.2);
}

.inner-banner-top {
    margin-top: var(--header-height)
}

.infos-tabs-wrapper {
    overflow-y: auto;
}

.infos-tabs-wrapper .theme-pills {
    flex-wrap: nowrap;
}

.theme-pills .nav-link {
    border-radius: 0;
    background-color: var(--primary-bg-light);
    color: var(--primary-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
    width: max-content;
}

.pill-icon {
    height: 24px;
    width: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.theme-pills .nav-link.active {
    background-color: var(--secondary-color) !important;
}

.theme-pills .nav-link.active .pill-icon {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.theme-pills .nav-link:hover {
    background-color: var(--primary-light);
}

/* articles */
.expander-article {
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    scroll-margin-top: 60px;
}

.article-expanded {
    max-height: 9999999px !important;
}

.article-expanded {
    padding-bottom: 10px;
}

.expander-div::before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
}

.expander-div-clear::before {
    content: unset;
}

.main-btn.disabled {
    pointer-events: none;
    background-color: #999999;
}

.partner-icon {
    width: 188px !important;
    background-color: #f6f6f6;
    padding: 1.1rem;
    height: 120px !important;
}

.partner-icon:not(:last-child) {
    margin-right: 1.5rem;
}