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

:root {
    --primary-color: #FF7901;
    --alternate-color: #201882;
    --secondary-color: #EB692D;
    --primary-color-dark: #a85207;
    --primary-dark: #484848;
    --primary-dark-intense: #212121;
    --primary-light: #F4EBD8;
    --title-color: #0D2181;
    --text-color: #616161;
    --dark-text: #0C0C0C;
    --text-color-light: #979797;
    --primary-bg-light: #FFFAFA;
    --text-soft: #D6D6D6;
    --light-bg: #F2F2F2;
    --light-primary: #EEEEFF;
    --base-letter-spacing: 0.015em;
    --card-radius: 0.75rem;
    --header-height: 80px;
    --header-nav-offset: 80px;
    --section-gap: 4.575rem;
    --top-header-height: 35px;
    --container-width: 100%;
    --theme-roundeness: 0.5rem;
    --primary-font: "Jost", sans-serif;
    --secondary-font: "Jost", serif
}

@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
    }
}

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

@media screen and (min-width: 1400px) {
    :root {
        --container-width: 1320px
    }

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

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

body {
    font-family: var(--primary-font);
    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;
}

p {
    color: var(--primary-dark)
}

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

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

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

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

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

.bg-primary-dark {
    background-color: var(--alternate-color)
}

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

.bg-black {
    background-color: #000 !important;
}

.text-dark {
    color: #0C0C0C !important;
}

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

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

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

.theme-corners {
    border-radius: var(--theme-roundeness);
}

.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;
    }
}

.section-shadow {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

.wrapper-shadow {
    box-shadow: 3px 4px 6px -2px rgba(0, 0, 0, 0.1)
}

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

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

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

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

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

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

.text-primary-dark {
    color: var(--primary-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;
}

.ps-container-offset {
    padding-left: 1rem;
}

/*padding for container with contents to edge in one side */
@media screen and (min-width: 1200px) {
    .offset-pe {
        padding-right: calc((100% - var(--container-width))/2);
    }

    .offset-ps {
        padding-left: calc((100% - var(--container-width))/2);
    }
}

.list-style-none {
    padding: 0;
    list-style: none;
}

.no-resize {
    resize: none;
}

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

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

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

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

/* aspect ratios */
.ratio-1 {
    aspect-ratio: 1;
}

.ratio-4_2_7 {
    aspect-ratio: 4/2.7;
}

.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-5_3 {
    aspect-ratio: 5/4;
}


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

.ratio-16_9 {
    aspect-ratio: 16/9;
}

/* custom layout appearence  */
.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;
}

.mb-0_5 {
    margin-bottom: 2px;
}



@media screen and (min-width: 992px) {
    .ratio-tall {
        aspect-ratio: 2/3;
    }
}

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

    .ratio-tall {
        aspect-ratio: 1/2;
    }
}

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

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

.compact-row {
    margin-left: -8px;
    margin-right: -8px;
}

.compact-row>* {
    padding-left: 8px;
    padding-right: 8px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.clamp-1 {
    -webkit-line-clamp: 1
}

.clamp-2 {
    -webkit-line-clamp: 2
}

.clamp-3 {
    -webkit-line-clamp: 3
}

/* custom typographies */
*[class*="heading-"] {
    color: var(--dark-text);
    font-weight: 600;
    font-family: var(--secondary-font);
    letter-spacing: var(--base-letter-spacing);
}

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

.cap-first::first-letter {
    text-transform: capitalize;
}

.border-header {
    border-left: 4px solid var(--secondary-color);
    padding-left: 10px;
}

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

.heading-large {
    font-size: clamp(2rem, 4vw, 3.75rem);
}

.heading-main {
    font-size: clamp(1.875rem, 1.6667rem + 0.9259vw, 2.5rem);
}

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

.heading-banner {
    font-size: clamp(28px, 5vw, 48px);
}

.heading-info-adaptive {
    font-size: clamp(1.125rem, 1rem + 0.5556vw, 1.5rem);
}

.heading-section-adaptive {
    font-size: clamp(24px, 5vw, 40px);
}

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

.heading-lite {
    font-size: 1.25rem;
}

.sub-heading {
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.section-sub-heading {
    font-size: clamp(14px, 4vw, 20px);
    font-weight: 400;
    color: #FFFAFA;
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: calc(100% - 20px);
}

.section-sub-heading::before,
.section-sub-heading::after {
    align-items: center;
    content: "";
    flex-shrink: 0;
    white-space: nowrap;
    width: 16px;
    height: 2px;
    margin: auto 10px;
    background-color: var(--primary-color);
}

@media screen and (min-width: 1200px) {
    .sub-heading {
        font-weight: 700;
        font-size: 1.125rem;
    }
}

/* heading decoration */

.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);
}

.lined-heading {
    border-bottom: 1px solid #eee;
}

.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-base {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.125rem;
}

.text-lg-adaptive {
    font-size: clamp(16px, 4vw, 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: 700;
    color: var(--primary-dark-intense);
}

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

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

.card-infos {
    background-color: #faf4f4;
}

.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
}

.leftline-heading {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.25rem;
}

.leftline-heading::before {
    content: "";
    width: 6px;
    height: calc(100% - 4px);
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0
}

@media(max-width: 600px) {
    .leftline-heading::before {
        width: 4px;
    }
}

.leftline-4::before {
    width: 4px !important;
}

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

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

.text-wrap-balance {
    text-wrap: balance;
}

.text-wrap-anywhere {
    overflow-wrap: anywhere;
}

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

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

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

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

.lg-descriptions p {
    font-size: 1.125rem;
}

.descriptions p {
    margin-bottom: 10px;
}

.descriptions-sm *:is(p, li, span, b, strong, i),
.descriptions-sm {
    font-size: 0.875rem;
}

.descriptions-sm p {
    margin-bottom: 0.75rem
}

.gear-details img {
    width: 100 !important;
    height: auto !important
}

.tabular-contents table {
    border: none;
}

.tabular-contents td strong {
    font-weight: 600;
    color: var(--primary-color);
}

.tabular-contents table tr {
    border-bottom: 1px solid #dddddd;
}

.tabular-contents table td {
    color: var(--text-color)
}

.tabular-contents td,
.tabular-contents th {
    padding: 8px
}

.tabular-contents .descriptions {
    overflow-y: auto;
}

.highlight-text {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 8px;
    line-height: 1.3;
    display: inline-block;
}

.carousel-caption .highlight-text {
    background-color: rgba(125, 197, 196, 0.8);
    line-height: 1.2;
}

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

.descriptions img {
    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: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.link-text {
    color: inherit;
}

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

.link-with-icon .link-with-icon-text {
    margin-top: -3px
}


.link-icon-pull .icon {
    transition: all 100ms ease-in-out;
}

.link-icon-pull:hover .icon {
    margin-left: 0.35rem;
}

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

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

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

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

.plain-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem
}

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

.icon-btn-wrapper,
.icon-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.icon-btn-wrapper {
    border: 1px solid var(--secondary-color);
    height: 68px;
    width: 68px;
}

.icon-btn-shrinked {
    animation: none;
    height: 54px;
    width: 54px;
}

.icon-btn {
    width: 55px;
    height: 55px;
    border: 1px solid var(--primary-color);
}

.icon-btn-shrinked .icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

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

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

.icon-btn:hover .icon {
    fill: currentColor !important;
}

.icon-image {
    width: 45px;
    height: 45px;
}

.icon-image-52 {
    width: 52px;
    height: 52px;
}


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

.icon-image-lg {
    width: 60px;
    height: 60px;
}

.icon-image-step {
    width: 32px;
    height: 32px;
    position: relative;
}

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

.main-btn i[class*="fa-"] {
    margin-top: -1px
}

.alt-btn {
    height: 2rem !important;
    font-weight: 400;
    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-color);
    color: var(--dark-text);
    gap: 0 0.75rem;
    font-weight: 500;
    height: 2.75rem;
}

.outline-btn-light {
    border-color: #ffffff;
    color: #ffffff;
}

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

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

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

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

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

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

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

.outline-btn-light:hover {
    border-color: var(--secondary-color);
    color: #ffffff;
    background-color: var(--secondary-color);
}

.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);
}

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

.clean-nav-btn svg {
    -webkit-transition: transform ease-in-out 0.3s;
    transition: transform ease-in-out 0.3s;
}

.clean-nav-btn:hover svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* nav tabs */
.theme-nav-pills {
    gap: 12px 0;
}

.theme-nav-pills .nav-link {
    background-color: #F2F2F2;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 12px;
    color: var(--primary-dark);
}

.theme-nav-pills .nav-item .active {
    background-color: var(--primary-color);
}

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

.scroll-tabs {
    overflow-y: auto;
}

.scroll-tabs .nav {
    flex-wrap: nowrap;
}

.scroll-tabs .nav-link {
    width: max-content;
}

.theme-tab-link {
    height: 2.5rem;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.theme-tab-link.active {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* header component */
.header-top {
    padding: 5px 0
}

.global-header {
    background: transparent;
}

.header-navs-wrapper {
    background: transparent;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all linear 0.2s;
}

.logo-image {
    width: 140px;
    transition: all linear 0.2s;
}

.menu-toggler {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #FFFAFA;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;

}

.menu-toggler-mobile {
    width: 40px;
    height: 40px;
}

@media screen and (min-width: 998px) {
    .logo-image {
        width: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .logo-image {
        width: 110px;
    }

    .header-nav .primary-nav li.mega-nav:first-child {
        padding-left: 30px;
    }
}

.fixed-height-links {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.scrollbar-custom::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 1);
    border-radius: 0;
    background-color: #F5F5F5;
}

.scrollbar-custom::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 1);
    background-color: #555;
}

@media screen and (min-width: 1400px) {
    .logo-image {
        width: 180px;
    }

    .header-nav .primary-nav li.mega-nav:first-child {
        padding-left: 60px;
    }

}

.logo-image-link {
    color: #fff
}

.header-nav {
    transition: all linear 0.2s;
    padding: 12px 0;
    --nav-height: 60px
}

.base-nav-link {
    font-size: 1rem;
    color: var(--primary-color);
}

.primary-nav-link {
    font-weight: 400;
    font-size: 18px;
    text-transform:
        capitalize;
    color: #fff;
    padding-bottom: 0.5rem;
}

.primary-nav-link.active {
    color: var(--primary-color);
}

.sub-nav-link {
    font-family: var(--primary-font);
    text-transform: none;
    font-weight: 400;
    font-size: 0.875rem;
}


.dropdown-nav {
    row-gap: 0.75rem;
}

.dropdown-nav-link {
    font-weight: 500;
}

.pro-nav {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1rem;
    margin: 15px 0
}

li.mega-nav {
    position: static;
}

.mega-dropdown {
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: #fff;
    left: 0;
    top: var(--nav-height);
    display: none;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    border-bottom: 4px solid var(--secondary-color);
    top: 90px
}

@media screen and (min-width: 1400px) {
    .mega-dropdown {
        top: 95px
    }
}

.mega-dropdown-adaptive {
    min-height: auto !important;
    height: auto !important;
}

.mega-nav:hover .mega-dropdown {
    display: block;
}

.drop-nav-tabs {
    gap: 16px 0
}

.drop-nav-tabs .nav-item .nav-link {
    width: 100%;
    text-align: left;
    background-color: #EEEEFF;
    border-radius: 0;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* cards in header dropdowns */
.dest-card {
    border-top-right-radius: var(--card-radius);
    border-bottom-left-radius: var(--card-radius);
}

.dest-card-title {
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0
}

.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;
    transition: all .2s linear;
}

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

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

.target-card-cover {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all linear 0.3s;
}

.target-card-cover:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.target-card-cover:hover *[class*="heading-"] {
    color: var(--secondary-color) !important;
}

.joined-card:hover::before,
.joined-card:hover::after {
    border-color: var(--secondary-color) !important;
}

.drop-nav-tabs .nav-item .active {
    background-color: var(--primary-color);
    color: #fff;
}

.owl-drop-slide .owl-nav button,
.carousel-nav {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 1px solid var(--primary-color) !important;
    position: absolute;
    top: calc(50% - 40px);
    z-index: 9;
    background-color: #fff !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color) !important;
}

.owl-drop-slide .owl-nav button.owl-prev {
    left: -20px;
}

.owl-drop-slide .owl-nav button.owl-next {
    right: -18px;
}

.owl-drop-slide .owl-nav button i {
    font-size: 20px;
}

.owl-drop-slide .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.owl-nav {
    margin-top: 0 !important;
}

.carousel-actions :is(.owl-prev, .owl-next) {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    display: inline-flex;
    justify-content: center !important;
    align-items: center !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background-color: #DBDBDB;
    border-radius: 2px !important;
    transition: all 100ms ease-in !important;
}

.owl-dot.active span {
    width: 28px !important;
    background-color: var(--primary-color) !important;
}

.carousel-actions .owl-prev {
    left: 30px;
}

.carousel-actions .owl-next {
    right: 30px;
}

.carousel-actions :is(.owl-prev.disabled, .owl-next.disabled) {
    opacity: 0.35;
}

@media(max-width: 576px) {
    .carousel-actions .owl-prev {
        left: -4px;
    }

    .carousel-actions .owl-next {
        right: -4px;
    }
}

.carousel-actions :is(.owl-prev:hover, .owl-next:hover) {
    background-color: var(--primary-color-dark) !important;
}

.mobile-nav li {
    padding: 8px 12px;
}

.search-trigger-btn {
    color: #fff;
}

.menu-btn {
    background-color: var(--secondary-color);
    color: #fff;
    height: 40px;
    width: 44px;
    border-radius: 0;
    outline: none !important;
    box-shadow: none !important;
}

.header-contact .contact-link {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.header-contact .contact-link:hover {
    color: var(--secondary-color);
}

.basic-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding: 0 0.875rem;
}

.basic-links li:not(:first-child) .basic-nav-link::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 0;
    left: 0;
    border-left: 1px solid var(--primary-color);
}

.basic-nav-link:hover {
    color: var(--secondary-color);
}

/* mobile links */
.mobile-nav :is(a, button) {
    color: #fff !important;
}

/* 
.mobile-nav :is(a, button):hover {
    color: var(--secondary-color) !important;
} */

.light-close {
    filter: invert(1);
    -webkit-filter: invert(1);
}

/* new nav */
.primary-nav-link:hover {
    color: var(--secondary-color);
}

.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;
}

.search-results-form {
    gap: 16px 0
}

@media screen and (min-width: 575px) {
    .search-results-form {
        gap: 28px 0
    }
}

/* banners */
.home-carousel .carousel-item {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    min-height: 480px;
}

.home-carousel .carousel-caption {
    left: 0;
    top: 0;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

/* backdrop for banner overylays */
.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.3);
}

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

.overlay-backdrop-pseudo::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
}

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

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

.fade-backdrop {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.1));

}

.theme-backdrop-card {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(25, 53, 85, 0.7));
}

.dark-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

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

.light-gradient {
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(225, 225, 225, 1));
}

.light-overlay {
    background-color: rgba(255, 255, 255, 0.7);
}

.dark-gradient-overlay {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.4) 50%, rgba(12, 12, 12, 0.8) 75%, #0C0C0C 100%);
}

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

.screen-fit-section {
    height: calc(100vh);
    height: calc(100dvh);
}

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


@media screen and (min-width: 768px) {
    .screen-70-section {
        min-height: 500px;
    }
}

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

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

.light-overlay-bg-img {
    background-image: linear-gradient(rgba(242, 242, 242, 0.8), rgba(242, 242, 242, 0.8)), var(--bg-img-path);
    background-position: bottom center;
}

.light-section-bg-img {
    background-image: linear-gradient(rgba(225, 225, 225, 1), rgba(225, 225, 225, 0.6)), var(--bg-img-path);
    background-position: bottom center;
}

.dark-section-bg-img {
    background-image: linear-gradient(rgba(58, 67, 100, 0.5), rgba(58, 67, 100, 0.5)), var(--bg-img-path);
}

.light-section-bg-img-2 {
    background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(225, 225, 225, 0.6)), var(--bg-img-path);
    background-position: bottom center;
}

.light-section-bg-img-3 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2)), var(--bg-img-path);
    background-position: bottom center;
}

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

.featured-section {
    background-image: linear-gradient(rgba(225, 225, 225, 0), rgba(225, 225, 225, 0.0)), var(--bg-img-path);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

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

.map-bg {
    background-image: url('../images/map-bg.jpg');
    background-size: cover;
}

/* 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;
}

.custom-caption {
    max-width: 400px;
    width: calc(100% - 50px);
}

.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);
}

/* carousel navs */
.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-prev {
    width: 40px;
}

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

    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-prev {
        width: 60px;
    }
}

.slide-origin-left .slick-track {
    margin-left: 0;
}

.slide-actions {
    height: 400px;
}

/* 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: 1198px) {
    .inline-card-sm-img {
        width: 190px
    }
}

/* home page */
.peak-holder-image svg {
    width: auto !important;
    height: 100% !important;
}

.overflow-slide {
    overflow-y: auto;
}

.overflow-slide-track {
    padding-left: 10%;
    padding-right: calc((100% - var(--container-width))/2);
}

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

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

/* cards */
.overlay-titles,
.overlay-titles-top {
    position: absolute;
    width: 100%;
    bottom: 0;
    min-height: 75px;
    z-index: 1;
    left: 0
}

.por-card .overlay-titles {
    min-height: 75px;
}

.date-text {
    width: 60px;
    border-radius: var(--theme-roundeness);
    background-color: var(--primary-color);
    display: inline-block;
    padding: 8px 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.abs-date-text {
    position: absolute;
    top: 16px;
    right: 16px
}

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

/* cards */
.package-card,
.shadow-card {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.overlay-titles-top {
    bottom: auto;
    height: 85px;
    top: 0;
}

.hero-card-sm {
    height: 240px;
}

.hero-card-large {
    height: 280px;
}

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

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

.sticker {
    position: absolute;
    width: 280px;
    text-align: center;
    padding: 8px 12px;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    top: 25px;
    right: -80px;
    z-index: 2;
    background-color: var(--secondary-color);
    font-size: 0.875rem;
    z-index: 3;
}

.sticker-wrapper::before,
.sticker-wrapper::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #A86706;
    z-index: 1;
}

.sticker-wrapper::before {
    top: 0;
    right: 143px;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}

.sticker-wrapper::after {
    top: 100px;
    right: 0;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
}

.trail-info-text {
    min-width: 0;
    width: calc(100% - 20px);
    font-weight: 500;
    color: #484848;
    font-size: 0.875rem;
}

@media screen and (min-width: 575px) {
    .trail-info-text {
        font-size: 1rem;
    }
}

.abs-img-container {
    position: absolute;
    top: 0;
    z-index: 2;
}

.stylish-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
}

.stylish-card-content {
    display: flex;
    flex-direction: column;
    transition: all linear 0.2s;
    background-color: rgba(8, 39, 64, 0.1);
    --pad-value: 45px;
    --hover-pad-value: 30px;
    padding-top: calc(100% + var(--pad-value))
}

.stylish-card-content.content-sm {
    --pad-value: 15px;
    --hover-pad-value: 15px;
}

.stylish-card-content:hover {
    background-color: rgba(8, 39, 64, 0.4);
    padding-top: calc(50% + var(--hover-pad-value))
}

.pkg-counter {
    font-family: var(--secondary-font);
    background-color: var(--primary-color);
    padding: 0.25rem 1rem;
    position: absolute;
    z-index: 9;
    right: 1rem;
    top: 1rem
}

.basic-card {
    background-color: #fff;
}

.basic-card-icon {
    background-color: var(--alternate-color);
    height: 75px;
    width: 75px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-top: -35px;
}

.basic-card-icon>* {
    width: 40px;
}

.exp-circle-wrapper {
    max-width: 250px;
    background-color: var(--primary-color);
    width: 100%;
}

.exp-circle {
    max-width: 240px;
}

.exp-circle-wrapper:hover {
    background-color: var(--secondary-color);
}

.exp-circle:hover .overlay-backdrop {
    background-color: rgba(8, 39, 64, 0.8);
}

.exp-circle:hover *[class*=heading-] {
    color: var(--secondary-color) !important;
}

.exp-circle:hover .heading-exp-circle {
    color: var(--primary-color) !important;
}

.exp-circle:hover .mount-image {
    filter: invert(0.5);
}

/* basic row card */
.row-card-img {
    width: 34px;
}

/* testimonails */
.avatar-img {
    width: 200px;
}

.small-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.string-avatar {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    overflow: hidden;
}

.string-avatar::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    outline: 4px solid #f0f0f0;
}

.custom-close {
    position: absolute;
    right: 8px;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    z-index: 111;
    font-size: 18px;
    flex-shrink: 0;
}

.custom-close:hover {
    background-color: #000;
    color: #fff;
}

.testimonial-card .arrow-top {
    width: 200px;
    color: var(--primary-color);
}

.testimonial-card .avatar-img {
    margin-top: -65px;
}

.theme-badge {
    font-size: 0.75rem;
    display: inline-block;
    padding: 2px 10px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    border-radius: var(--theme-roundeness);
}

.title-base-card {
    font-size: 1.125rem;
    color: var(--primary-dark-intense);
}

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

.hero-card .card-title-wt-icon {
    width: calc(100% - 50px);
}

.less-contents {
    padding-bottom: 30px;
}

.grid-card {
    height: 400px
}

.grid-card-contents .icon-img {
    width: auto;
    height: 54px;
}

.content-arrow {
    color: var(--secondary-color);
    width: 110px
}

.activity-card .content-arrow {
    width: 85px
}

.after-text {
    position: relative;
    padding-bottom: 0.5rem;
}

.after-text::after {
    content: "";
    height: 1px;
    width: 45px;
    background-color: #BBBBBB;
    position: absolute;
    left: 0;
    bottom: 0
}

/* articles card */
.article-card-tall .img-container,
.article-card-large .img-container {
    height: 424px;
}

.article-card-sm .img-container {
    height: 200px;
}

.article-cards-sm>*:first-child {
    margin-bottom: 24px;
}

/* stat cards */
.stat-icon {
    height: 120px;
    width: 120px;
    border: 1px solid var(--primary-color);
    background-color: #E9FFFB;
    border-radius: 50%;
}

.stat-icon img {
    max-height: 60px;
    max-width: 60px;
}

.sponsor-icon {
    width: 200px;
    height: 100px;
}


img.filtered {
    filter: grayscale(1) invert(1);
}

img.filtered-half {
    filter: grayscale(1) invert(0.5);
}

.clean-card .card-icon-image {
    max-height: 100px;
    max-width: 100px;
}

.insights-wrap {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--theme-roundeness);
    margin-top: -80px;
    padding: 30px 15px;
}

.insight-icon {
    border: 2px dashed var(--secondary-color);
    background-color: #fff;
}

@media screen and (min-width: 1200px) {
    .insights-wrap {
        background-repeat: no-repeat;
        background-position-y: 90px;
        background-position-x: center;
        padding-top: 90px;
    }

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

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

    .insights-row>.insights-col:nth-child(1),
    .insights-row>.insights-col:nth-child(2) {
        margin-top: -35px;
    }

    .insights-row>.insights-col:nth-child(4) {
        margin-top: 20px;
    }

    .insights-row>.insights-col:nth-child(5) {
        margin-top: -10px;
    }

    .insights-row>.insights-col:nth-child(6) {
        margin-top: -35px;
    }
}

@media screen and (min-width: 1400px) {
    .insights-row>.insights-col:nth-child(1) {
        margin-top: -10px;
    }

    .insights-row>.insights-col:nth-child(2) {
        margin-top: -55px;
    }

    .insights-row>.insights-col:nth-child(3) {
        margin-top: -10px;
    }

    .insights-row>.insights-col:nth-child(4) {
        margin-top: 20px;
    }

    .insights-row>.insights-col:nth-child(5) {
        margin-top: -20px;
    }

    .insights-row>.insights-col:nth-child(6) {
        margin-top: -25px;
    }
}

/* gallery cards */
@media screen and (min-width: 992px) {
    .gallery-grid-row .gallery-card-col:nth-child(even) {
        transform: translateY(45px);
    }
}

.overlay-title-placeholder {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay-title-placeholder::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    transition: height cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}

.overlay-titles-top:hover .overlay-title-placeholder::after {
    height: 100px;
}

.doc-card {
    background-color: #eee;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.doc-card-title {
    text-align: center;
    background-color: var(--primary-color);
    max-width: calc(100% - 50px);
    margin: -38px 30px 0;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    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;
}

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

.collapse-link {
    color: inherit !important;
    position: relative;
}

.it-title {
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
}


@media(min-width: 992px) {
    .hover-lg-primary:hover {
        color: var(--primary-color) !important;
    }
}

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

.it-title[aria-expanded="true"] {
    color: var(--primary-color) !important;
}

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

/* .it-title::after  */
.collapse-link::after {
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    position: absolute;
    top: 3px;
}

.collapse-link[aria-expanded="true"] {
    color: var(--primary-color) !important;
}

.collapse-link::after {
    font-size: 1.25rem !important;
    left: auto;
    top: 0;
    right: 0
}

.collapse-link[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--primary-color);
    right: 0;
    /* z-index: 999; */
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem !important;
}

.custom-collapse-card p {
    position: relative;
    line-height: 1.3;
}

.custom-collapse .collapse-link,
.custom-collapse-card {
    padding-right: 34px;
}

/* itinerary collaspe */
/* .it-title {
    display: block;
    position: relative;
}

.it-title::after {
    content: "\f107";
    left: auto;
    right: 0;
    transition: transform linear 0.2s;
    font-size: 1.125rem;
}

.it-title[aria-expanded="true"]::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
} */

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

.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;
    background-color: var(--alternate-color);
    border: 1px solid var(--alternate-color);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: -70px;
    z-index: 1;
}

.theme-slick-carousel button.carousel-btn:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.base-carousel .carousel-btn-prev {
    left: 12px;
}

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

.gallery-carousel .carousel-btn-prev {
    left: calc(50% - 50px);
}

.gallery-carousel .carousel-btn-next {
    right: calc(50% - 50px);
}

.alternating-row .slick-track {
    padding-bottom: 40px;
}

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

.slick-disabled {
    opacity: 0;
}

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

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

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

.custom-indicators .slick-dots li {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    margin: 0 4px;
    border-radius: 50%;
}

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

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

.overlapped-title {
    margin-top: -70px
}

/* form and inputs */
.clean-input {
    height: 2.75rem;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--text-color);
    background-color: transparent;
}

.common-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 18px;
    color: var(--dark-text)
}

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

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

::placeholder {
    color: #BBBBBB !important;
}

.loader {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #de3500 #0000 #fff #0000;
    border-radius: 50%;
    box-sizing: border-box;
    animation: 1s rotate linear infinite;
}

.loader:before,
.loader:after {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    border: 0;
    border-bottom-color: #fff;
    transform: translate(-10px, 19px) rotate(-35deg);
}

.loader:after {
    border-color: #de3500 #0000 #0000 #0000;
    transform: translate(32px, 3px) rotate(-35deg);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

.form-control:not(input[type=radio], input[type=checkbox], textarea),
.form-select {
    height: 2.625rem;
    font-size: 0.875rem;
}

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

textarea.form-control {
    font-size: 0.875rem;
}

.form-control,
.form-select {
    border-radius: 0;
    border: 1px solid #E6E6E6;
}

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

.clean-control {
    border: 1px solid #ddd
}

.clean-control:focus {
    box-shadow: none;
    border-color: var(--primary-dark-intense);
}

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

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

.file-control-wrapper {
    border: 1px solid #E6E6E6;
    padding: 0.25rem;
    display: block;
}

input.file-control {
    height: auto !important;
    border: none;
}

.counter-btn {
    height: 100%;
    aspect-ratio: 1;
    background-color: var(--alternate-color);
    font-size: 1rem;
    color: #fff;
}

.counter-btn:active {
    background-color: var(--primary-color);
}

/* date icon */
.date-input-icon {
    position: absolute;
    right: 10px;
    top: var(--top, 10px)
}

.flatpickr-input {
    background-color: #ffffff !important;
}

/* large checkbox */
.lg-checkbox {
    -ms-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    padding: 10px;
    accent-color: var(--primary-dark-intense);
}

.checkbox-holder {
    height: 18px;
    width: 18px;
    border: 1px solid #ddd;
    background-color: #fff;
    position: relative;
}

.checkbox-holder:hover {
    border-color: var(--primary-color);
}

.checkbox-holder::after {
    content: "✔";
    font-size: 0.875rem;
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    height: 100%;
    line-height: 18px;
    text-align: center;
    opacity: 0;
    transition: opacity linear 0.2s;
    -webkit-transition: opacity linear 0.2s
}

.custom-checkbox:checked+.checkbox-holder {
    border-color: var(--primary-color);
}

.custom-checkbox:checked+.checkbox-holder::after {
    opacity: 1;
}

.custom-input-check {
    outline: 0;
    box-shadow: none !important;
}

.custom-input-check:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-input-check:not(:checked) {
    background-color: transparent;
    border-color: #E6E6E6;
}

.custom-radio-label {
    position: relative;
    padding-left: 24px;
}

.custom-radio-label::after,
.custom-radio-label::before {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.custom-radio-label::before {
    height: 16px;
    width: 16px;
    left: 0;
    top: 2px;
    border: 1px solid var(--text-color);
}

.custom-radio-label::after {
    height: 10px;
    width: 10px;
    left: 3px;
    top: 5px;
    background-color: var(--secondary-color);
    opacity: 0;
}

.custom-radio:checked+.custom-radio-label::before {
    border-color: var(--secondary-color);
}

.custom-radio:checked+.custom-radio-label::after {
    opacity: 1;
}

.box-radio-label,
.pkg-radio-label {
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 1.125rem;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.box-radio:checked+.box-radio-label {
    background-color: var(--secondary-color);
}

.card-checkbox-label {
    padding: 5px;
    background-color: #eee;
}

.card-checkbox:checked+.card-checkbox-label {
    padding: 5px;
    background-color: var(--secondary-color);
}

.pkg-radio-label {
    border: 1px solid #dddddd;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.875rem;
}

.pkg-radio-label:hover,
.pkg-radio:checked+.pkg-radio-label {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* stacked grid */
.stack-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 28px;
    column-gap: 28px;
    justify-content: center;
}

.stack-col {
    transition: all linear 0.2s;
}

.stack-card {
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
}

.stack-card img {
    -webkit-transition: transform linear 0.3s;
    transition: transform linear 0.3s;
}

.stack-card:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media screen and (min-width: 575px) {
    .stack-col {
        width: 47%;
    }
}

@media screen and (min-width: 998px) {
    .stack-col {
        width: 30%;
    }
}

@media screen and (min-width: 1200px) {
    .stack-row {
        row-gap: 0;
        column-gap: 0;
    }

    .stack-col {
        width: 20%;
        --offset: 60px;
    }

    .stack-row .stack-col:is(:nth-child(2), :nth-child(4)) {
        z-index: 2;
        margin-top: var(--offset);
    }

    .stack-row .stack-col:not(:first-child, :last-child) {
        margin-left: -15px;
    }

    .stack-row .stack-col:nth-child(3) {
        z-index: 3;
        margin-top: calc(var(--offset) * 2);
    }

    .stack-row .stack-col:nth-child(5) {
        margin-left: calc((var(--offset)/2 - 15px) * -1);
    }

    .stack-card {
        width: calc(100% + var(--offset));
    }
}

/* footer */
.footer-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--bg-image);
    background-position: center;
    height: 35vh;
}

.footer-wrapper {
    background: #0C0C0C;
}

.abs-border-img {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    z-index: 2;
}

.border-img-top {
    bottom: auto;
    top: -2px
}

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

.nav-socials i {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

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

.secondary-nav li a {
    color: #fff;
}

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

.pat-logos {
    gap: 0.825rem;
}

.pat-logo {
    height: 110px;
    background-color: #fff;
    padding: 8px;
}

.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);
}

@media(max-width: 992px) {
    .inner-banner .img-container {
        height: 60dvh !important;
        height: 60vh !important;
    }

    .copyright-col {
        border-top: 1px solid #DBDBDB4D;
    }

    .footer-border-md {
        border-top: 1px solid #DBDBDB4D;
    }
}

/* about us */
.u-shaped-row>div {
    margin-top: 45px;
}

@media screen and (min-width: 992px) {
    .u-shaped-row>div:is(:nth-child(2), :nth-child(3)) {
        margin-top: 165px
    }

    .footer-border {
        border-top: 1px solid #DBDBDB4D;
    }
}

.other-logo {
    height: 80px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: var(--card-radius);
    padding: 1rem;
}

.other-logo-lg {
    height: 100px;
}

@media screen and (min-width: 1200px) {
    .other-logo-lg {
        height: 120px;
    }
}

/* packages */
.it-info-wrapper {
    background-color: #faf4f4;
}

.day-info {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5px 10px;
    position: relative;
    margin-top: -4px;
}

.day-info::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: -4px;
    bottom: -3px;
    transform: rotate(315deg);
    border-left: 3px solid var(--primary-color);
}

.quote-text {
    color: #363636;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 600;
}

.quote-author {
    font-size: clamp(20px, 5vw, 28px);
    color: var(--primary-color);
}

.border-liner {
    position: relative;
}

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

.day-count {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

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

@media screen and (min-width: 768px) {
    .day-count {
        font-size: 18px;
    }
}

@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);
}

.abs-card-title {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding: 1rem;
}

/* package details */
.pricing-texts * {
    font-family: var(--secondary-font);
    font-weight: 600;
}

.pricing-texts span {
    font-size: 1rem;
}

.pricing-texts strong {
    font-size: 1.5rem;
    line-height: 1.2;
}

.sticky-actions {
    top: 30px;
    position: sticky;
}

.package-actions {
    display: flex;
}

.activities-overview {
    background-color: #EEEEFF;
}

.price-info .currency-text {
    font-weight: 600;
    color: var(--secondary-color);
    padding-top: 5px;
}

.price-info .cost-text {
    font-size: 1.75rem;
    color: var(--alternate-color);
}

.price-info .extra-text {
    font-weight: 500;
    color: var(--text-color);
    padding-top: 10px;
}

.overview-icon {
    height: 44px;
    width: 44px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

@media(max-width: 768px) {
    .overview-icon {
        width: 25px;
        height: 25px;
    }

    .overview-icon svg {
        max-width: 14px;
        max-height: 14px;
    }

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

    .overview-text {
        font-size: 14px;
        text-wrap: balance;
    }
}

@media screen and (min-width: 1200px) {
    .sticky-actions {
        top: 50px;
    }
}

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

.inc-exc-col li,
.guiding-advantages li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
}

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

.pkg-tab-pills .nav-link {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    background-color: var(--primary-bg-light);
    display: inline-flex;
    justify-content: center;
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 6px;
    color: var(--primary-dark);
}

.pkg-tab-pills .nav-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pkg-tab-pills .active {
    background-color: #F0E6FF !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.activity-overview {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: var(--primary-dark) !important;
}

.activity-overview:hover {
    background-color: #FFF3E5;
}

.activity-overview-icon {
    height: 34px;
    width: 34px;
    padding: 2px
}

.activity-overview-icon img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.activity-overview-content {
    width: calc(100% - 34px);
}


/* multi step form */

.multipstep-nav {
    position: relative;
}

.multistep-list {
    position: relative;
}


.multistep-list:not(:last-child) {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.multistep-list:not(:last-child):after {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.multistep-list:after {
    border: 1px dashed #DBDBDB
}

.multistep-indicator .icon-image-lg {
    background-color: #D5D5D5;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.multistep-indicator .step-title {
    font-size: 20px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-color-light);
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

@media(max-width: 992px) {
    .multistep-list.completed .icon-image-step::before {
        position: absolute;
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        background-size: contain;
        background-position: center;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
        content: "";
        display: flex;
        justify-content: center;
        /* top: 50%; */
        /* width: 100%; */
        /* height: 100%; */
        /* transform: translateY(-50%); */
        align-items: center;
        z-index: 1;
        color: #fff;
    }

    .multistep-list.active .icon-image-step::before {
        position: absolute;
        content: "...";
        top: 0;
        animation: fade 2s linear infinite;
        color: #fff;

    }

    @keyframes fade {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

.multistep-indicator .step-text {
    color: var(--text-color-light);
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.active .multistep-indicator .icon-image-lg {
    background-color: var(--secondary-color);
}

.active .multistep-indicator .step-title {
    color: var(--primary-color);
}


.multistep-list.completed .step-title {
    color: var(--primary-color);
}


.active .multistep-indicator .step-text {
    color: var(--text-light);
}

.completed .multistep-indicator .icon-image-lg {
    background-color: var(--primary-color);
}

.multistep-indicator {
    position: relative;
}

.multistep-indicator .icon-image-step::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    left: -4px;
    bottom: -3px;
    transform: rotate(315deg);
    border-left: 3px solid var(--primary-color);
}

:not(.active) .multistep-indicator .icon-image-step {
    background-color: #DBDBDB
}

:not(.active) .multistep-indicator .icon-image-step::after {
    border-color: #DBDBDB
}

.active .multistep-indicator .icon-image-step,
.completed .multistep-indicator .icon-image-step {
    background-color: var(--primary-color);
}

.active .multistep-indicator .icon-image-step::after,
.completed .multistep-indicator .icon-image-step::after {
    border-color: var(--primary-color);
}

.completed .multistep-indicator::after {
    border-color: var(--primary-color);
}

.multistep-list.completed:not(:last-child):after {
    border-color: var(--primary-color);
}

.step-form-heading {
    font-weight: 600;
    font-size: clamp(1.5rem, 1rem + 0.5556vw, 3.25rem);
    display: block;
    margin-bottom: 1.5rem;
}

/* inner pages */
.theme-quote .quote-text {
    text-wrap: balance;
}

.basic-banner .banner-image {
    height: 380px;
}

.half-banner {
    height: 620px;
}

/* expeditions */
.overlap-to-banner {
    margin-top: -70px
}

.overlap-content {
    position: absolute;
    width: 100%;
}

/* contact */
.lite-icon {
    background-color: var(--primary-color);
}

/* search */
.form-abs-icon {
    position: absolute;
    top: 12px;
    left: 16px;
    color: var(--text-color);
    z-index: 2;
}

.search-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-input:focus+.form-abs-icon {
    color: var(--primary-dark-intense);
}

.search-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.range-group-wrap {
    border-top: 2px dashed var(--primary-dark-intense);
    border-bottom: 2px dashed var(--primary-dark-intense);
}

.active-star {
    color: #E9B705;
}

/* training page */
.training-benefits-section .large-offset-img {
    border-right: 15px solid var(--secondary-color);
}

/* others */
.modal-message {
    max-width: 580px;
}

/* team details */
.abs-social {
    --height: 130px;
    position: absolute;
    left: 0;
    background-color: var(--alternate-color);
    width: 36px;
    height: var(--height);
    top: calc(50% - (var(--height)/2))
}

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

@media (orientation: landscape) {
    .large-offset-img {
        aspect-ratio: 16/9;
    }
}

.about-intro-img,
.why-intro-img {
    aspect-ratio: 4/3;
}

.why-img img {
    max-width: 60px
}

@media screen and (min-width: 1200px) {
    .large-offset-img {
        aspect-ratio: auto;
    }

    .bottom-offset-image {
        margin-bottom: -75px
    }

    .about-intro-img,
    .why-intro-img {
        aspect-ratio: 16/10;
    }
}

/* resposive queries */
@media screen and (max-width: 575px) {
    .title-common {
        font-size: 1.5rem;
    }

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

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

    .half-banner-responsive {
        height: var(--responsive-height);
    }

    .sponsor-icon-responsive {
        flex: 0 0 calc(50% - 1rem)
    }

    .custom-caption {
        position: relative !important;
        max-width: unset !important;
        width: 100% !important;
        left: unset !important;
        right: unset !important;
        background: #ffffff;
    }

    .responsive-speaking-image {
        height: unset !important;
    }

}

@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: 160px;
    }

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

.slide-list {
    display: none;
}

.slide-list-wrapper {
    opacity: 0.5;
}

.slide-list-wrapper:hover {
    opacity: 1;
}

.owl-slide-rtl .slide-item {
    direction: ltr;
}

.pro-card img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
}

.pro-card:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}