@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1F3A56;
    --primary-color-dark: #204264;
    --primary-dark: #484848;
    --primary-dark-intense: #212121;
    --primary-50: rgba(241, 243, 245, 1);
    --primary-light: #dee9f5;

    --alternate-color: #E97B23;
    --secondary-color: #E97B23;
    --secondary-light: #f8ddc6;
    --section-header-color: var(--primary-color);

    --link-color: #1386c9;
    --title-color: #0D2181;
    --text-color: #77808B;

    --h1-color: #214763;
    --h2-color: #152426;
    --h3-color: #D97706;
    --h4-color: #314B57;
    --h5-color: #314B57;
    --text-color-light: #979797;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Lato", sans-serif;
    --primary-bg-light: #fff6f6;
    --light-bg: #F1F4FF;
    --light-primary: #EEEEFF;
    --base-letter-spacing: 0;
    --header-height: 98px;
    --header-nav-offset: 76px;
    --section-gap: 3.375rem;
    --top-header-height: 35px;
    --container-width: 100%;
    --form-placeholder-color: #b7b7b7;
    --theme-roundeness: 8px;
}

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

html {
    /* scroll-padding-top: calc(var(--header-height) + 20px); */
    scroll-behavior: smooth;
}


body:not(.descriptions) {
    font-family: var(--font-body);
    font-weight: 400;
    min-width: 360px;
    overflow-x: hidden !important;
}

a,
button {
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

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

.smooth-6 {
    -webkit-transition: all linear 0.6s;
    -moz-transition: all linear 0.6s;
    -ms-transition: all linear 0.6s;
    transition: all linear 0.6s;
}

.smooth-5 {
    -webkit-transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    -ms-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

.smooth-4 {
    -webkit-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    transition: all linear 0.4s;
}

[noscrollbar]::-webkit-scrollbar {
    display: none;
}

[noscrollbar] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

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

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

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

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

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

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

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

.bg-section-header {
    background-color: var(--section-header-color);
}

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


.abs-bg-image-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* z-index: -1; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.15;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}


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

/* .img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 70%);
    animation: shimmer-animation 2s infinite linear;
}

@keyframes shimmer-animation {
    0% {
        left: -100%;
        transform: skewX(-25deg);
    }

    100% {
        left: 100%;
        transform: skewX(-25deg);
    }
} */


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

.no-shimmer .img-container img {
    width: 100%;
    mask: linear-gradient(-90deg, #000 30%, #0005, #000 70%) right/350% 100%;
    -webkit-mask: linear-gradient(-90deg, #000 30%, #0005, #000 70%) right/350% 100%;
    animation: shimmer 2.5s infinite;
}


@keyframes shimmer {
    100% {
        mask-position: left;
        -webkit-mask-position: left;
    }
}

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

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

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

.video-ads-container {
    height: 601px;
}

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

.rounded-16 {
    border-radius: 14px;
}

.rounded-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.tooltip-inner {
    max-width: 280px;
    padding: 0.45rem 0.6rem;
    font-size: 0.825rem;
    line-height: 1.25;
    background-color: var(--primary-color);
    color: #fff;
    text-align: left !important;
}

.nav-link {
    cursor: pointer;
}

.pointers-none {
    pointer-events: none !important;
}

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

.grad-shadow-masked {
    background: linear-gradient(270deg, rgba(232, 235, 240, 0) 0%, #FFFFFF 100%) !important;

}

.poly-image {
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

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

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

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

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

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

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

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

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

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

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

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

.section-py {
    padding: var(--section-gap) 0;
}

@media(max-width:992px) {

    .section-py,
    .section-pt.section-pb {
        padding: calc(var(--section-gap)/2) 0;
    }
}


@media(max-width:992px) {

    .section-pt {
        padding-top: calc(var(--section-gap)/2);
    }
}

.section-heading-gap {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.detail-overview .overview-text {
    word-break: break-all;
}

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

.no-resize {
    resize: none;
}

.fit-content {
    width: fit-content !important;
}

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

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

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

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

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

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

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

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

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

.ratio-53 {
    aspect-ratio: 5/3;
}

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

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

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

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

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

.sticky-default {
    position: sticky;
    top: calc(var(--header-height) + 15px);
}

.sticky-strict {
    position: sticky;
    top: var(--header-height);
}

.sticky-0 {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999;
}

.sticky-100 {
    position: sticky;
    top: 100px;
    z-index: 99999;

}

/* custom typography */
*[class*="heading-"] {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

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

.descriptions table td {
    border: 1px solid #e1e1e1;
}

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

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

.descriptions h4,
.descriptions h5 {
    color: var(--h4-color) !important
}

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

.heading-super {
    font-size: clamp(2rem, 4vw, 100px) !important;
}

.heading-base {
    font-size: 16px;
}

.heading-sm {
    font-size: clamp(16px, 4vw, 18px)
}

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

.heading-semi-ultra {
    font-size: 56px;
}

.heading-semi-large {
    font-size: clamp(1.5rem, 1.5rem + 1.6667vw, 2.5rem);
}

.heading-large {
    font-size: clamp(2rem, 2rem + 1.6667vw, 3.5rem);
}

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

.heading-24 {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
}

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

.heading-section {
    font-size: clamp(1.5rem, 4vw, 3rem) !important;
    margin-bottom: 40px;
    font-weight: 700;

}

.heading-banner {
    font-size: clamp(1.75rem, 1.5417rem + 0.9259vw, 2.375rem);
}

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

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

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

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

.subtitle {
    display: inline-block;
    background-color: #FDF2E9;
    color: #4C6178;
    padding: 8px 12px 8px 32px;
    border-radius: 24px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0.75rem;

    &::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--secondary-color);
        border-radius: 24px;
        bottom: -10px;
        top: 50%;
        transform: translateY(-50%);
        left: 12px;
    }
}

@media(max-width:992px) {
    .subtitle-md-sm {
        padding: 6px 8px 6px 28px;
        border-radius: 24px;
        text-transform: uppercase;
        position: relative;
        margin-bottom: 0.75rem;
        font-size: 18px;

        &::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border-radius: 24px;
            bottom: -10px;
            top: 50%;
            transform: translateY(-50%);
            left: 12px;
        }
    }
}


.overflow-x-auto {
    overflow-x: auto !important;
}


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

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

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

.text-base,
.heading-base {
    font-size: 1rem !important;
}

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

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

.text-justified {
    text-align: justify !important;
}

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

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

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

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

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

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

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

.underline-heading::after {
    content: "";
    width: 64px;
    height: 3px;
    border-radius: 8px;
    background-color: var(--alternate-color);
    position: absolute;
    bottom: 0;
    left: 0
}

.isMasked {
    webkit-mask-image: linear-gradient(to bottom, red 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, white 90%, transparent 100%);
}

.isMasked-2 {
    background: linear-gradient(180deg, #F9F9F9 0%, rgba(249, 249, 249, 0.6) 25%, rgba(46, 88, 129, 0.4) 50%, rgba(255, 255, 255, 0.6) 75%, #FFFFFF 100%);

}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.vr-seperator {
    width: 1px;
    height: 18px;
}

.global-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

.global-header.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.global-header .nav-link {
    color: #444 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.global-header.scrolled .nav-link,
.global-header.scrolled .logo-image-link {
    color: #212529 !important;
}

.main-btn:hover {
    background: #333;
}

/* === Hero Banner === */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)); */
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(28, 53, 78, 0.3) 40%, rgba(28, 53, 78, 0.4) 50%, rgba(242, 242, 242, 0.6) 75%, #F2F2F2 100%);
    z-index: 1;
}


.vh-100-nav-substracted {
    height: calc(100dvh - var(--header-height));
}

.banner-video,
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.abs-homeage-search-form {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -2.5rem;
    z-index: 11;
}

.search-input-wrapper {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    /* gap: 10px; */
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.search-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 10px;
    background-color: var(--primary-color);
    color: #fff;
    flex-shrink: 0;
}

.search-input-wrapper input {
    padding: 12px 16px !important;
    height: 100% !important;
    border: 0;
    background: transparent;
    flex: 1;
    outline: none;
    font-size: 1.1rem;
}


@media(max-width: 992px) {
    .search-input-wrapper .search-icon {
        width: 40px;
        height: 40px;
    }

    .search-input-wrapper input {
        padding-left: 0 !important;
    }
}

.offcanvas {
    z-index: 1055;
}


.pagination {
    gap: 4px;
}

.pagination .page-item .page-link {
    background-color: #f0f0f0;
    color: #000;
    border: none;
    transition: background 0.3s ease;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.pagination .page-item:not(.disabled) .page-link {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center
}

.pagination .page-item.disabled .page-link {
    background-color: #ddd;
    color: #666;
    cursor: not-allowed;
}

.pagination .page-item.disabled {
    cursor: not-allowed;
}

.cat-nav .nav-item a {
    color: var(--primary-color) !important;
}

.cat-nav .nav-item:hover a {
    color: var(--secondary-color) !important;
}

.cat-nav .nav-item.active {
    background-color: var(--primary-color) !important;
}

.cat-nav .nav-item.active a {
    color: #fff !important
}

/* 
.offcanvas-header .btn-close {
    filter: invert(1);
} */


.search-spinner {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
    border: 1px solid #b1b1b1;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: search-spinner 0.75s linear infinite;
    animation: search-spinner 0.75s linear infinite;
}

@-webkit-keyframes search-spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes search-spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

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

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


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

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

.descriptions table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.descriptions table td,
.descriptions table th {
    padding: 0.5rem;
    text-align: left;
    min-width: 100px;
}

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

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

.descriptions h2 {
    font-size: 24px;
}

.descriptions h3 {
    font-size: 20px;
}

.descriptions h4 {
    font-size: 18px;
}

.descriptions :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 600;
}

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

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

.hover-primary-50:hover {
    background-color: var(--primary-50);
}

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

.hover-img-outline-primary:hover img {
    transition: all 300ms ease;
    outline: 1px solid var(--primary-color);
}

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

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

@keyframes border-pulsate {
    0% {
        border-color: rgba(7, 117, 183, 1);
    }

    50% {
        border-color: rgba(125, 197, 196, 0);
    }

    100% {
        border-color: rgba(7, 117, 183, 1);
    }
}

.form-ui :is(input, select, textarea) {
    border-color: #c7c7c7;
}

.form-ui ::placeholder {
    color: var(--form-placeholder-color);
}

.form-ui label {
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.form-ui .form-check-input {
    box-shadow: none;
}

.form-ui .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-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: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
}

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

.icon-64 {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.icon-40 {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.icon-32 {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-24 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

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

.icon-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-dark-intense);
    padding: 6px;
}

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

.main-btn,
.outline-btn,
.alt-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--theme-roundeness);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    outline: none !important;
    white-space: nowrap;
    /* height: 2.75rem; */
    text-transform: capitalize;
}


.main-btn[disabled] {
    opacity: 0.3 !important;
}

.outline-btn:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-color: transparent !important;
}

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

.main-btn-sm {
    padding: 6px 12px !important;
}

.main-btn-lg {
    height: 3rem;
}

.z-max {
    z-index: 999999 !important;
}

.swal2-popup {
    z-index: 9999999 !important;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: #c7c7c7 #e7e7e7;
    -webkit-overflow-scrolling: touch;
}

.scrollbar-custom::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background-color: #e7e7e7;
    border-radius: 4px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background-color: #c7c7c7;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

.scrollbar-custom:hover::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
}

.scrollbar-custom::-webkit-scrollbar-thumb:active {
    background-color: #8d8d8d;
}

.scrollbar-custom::-webkit-scrollbar-corner {
    background-color: #e7e7e7;
}

.min-vh-35 {
    min-height: 35vh;
    height: 35vh;
    overflow-y: scroll;
}

.fixed-scrollable-40 {
    max-height: 50vh;
    overflow: hidden;
}

.fixed-scrollable-50:hover {
    overflow-y: auto;
}

.scrollable-after-40 {
    max-height: 40vh;
    overflow-y: auto;
}

.scrollbar-custom::-webkit-scrollbar {
    width: 6px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background-color: #e7e7e7;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #c7c7c7;
}

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


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

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

.btn-glow {
    padding: 0.45rem 1rem;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.btn-glow:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.btn-glow:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.btn-glow:active {
    color: #000;
}

.btn-glow:hover {
    color: #fff;
}

.btn-glow:active:after {
    background: transparent;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}


.opacity-5 {
    opacity: 0.5;
}

.opacity-25 {
    opacity: 0.25;
}

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

.swal2-container {
    z-index: 999999 !important;
}


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


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

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

.main-btn:not([disabled]):hover,
.alt-btn:not([disabled]):hover {
    background-color: var(--alternate-color);
    color: #fff;
}

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

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


.title-link-700 {
    font-weight: 700 !important;
}

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

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

/* tabs & navs */
.theme-navs {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /* background-color: #f8f8f8; */
    border-radius: 8px;
    position: relative;
    max-width: 100%;
}

.theme-navs a {
    padding: 14px 24px;
    /* background-color: #f8f8f8; */
}

.theme-navs li:not(.active) {
    background-color: #f8f8f8;

}

.theme-navs li {
    transition: all 0.4s ease-in-out;
    border-radius: 8px;
}

.theme-navs .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}


.theme-navs li.active {
    background: var(--secondary-light);
    color: #444;
}


.theme-navs li:not(.active):hover .nav-link {
    color: var(--secondary-color) !important;
}


@media(min-width:992px) {
    .theme-navs.vertical {
        flex-direction: column;
    }
}

.theme-navs.vertical {
    align-items: start;
    background-color: transparent;
    box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.08);

}

.theme-navs.vertical li {
    width: 100%;
}

.achv-cards {
    border-radius: var(--theme-roundeness);
    position: relative;

    .achv-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 2px;
        height: 60%;
        z-index: 1;
        background-color: var(--secondary-color);
    }

}

/* header */
.fixed-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: transform linear 0.2s;
}

.active-header {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
}

.active-header .header-nav {
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}

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

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

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

.img-inverted {
    filter: invert(1);
}

.active-header .logo-image-link {
    color: var(--alternate-color)
}

.active-header .logo-image {
    width: 100px;
}

.header-nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 4px 0;
    background-color: transparent;
    --nav-height: 60px;
}

.top-nav.hide {
    transform: translateY(-50px);
}

.bottom-nav.fixed-bottom-nav {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.3s ease-in;
    box-shadow: 0 2px 15px rgba(121, 117, 117, 0.253), 0 4px 15px rgba(136, 134, 134, 0.24);

}

@media(max-width: 992px) {
    .bottom-mobile-nav {
        width: 100%;
    }
}

.bottom-mobile-nav .active-header .header-nav {
    padding: 8px 0;
    --nav-height: 52px
}


.primary-nav .dropdown :is(.dropdown-submenu, .dropdown-item) {
    background-color: transparent !important;

    &:focus {
        background-color: transparent !important
    }
}


.primary-nav .dropdown-item {
    transition: all 0.4s ease;

    &:hover {
        color: var(--link-color) !important;

    }
}

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

@media(min-width: 768px) {
    .primary-nav .dropdown-submenu .dropdown-item {
        display: flex;
        gap: 4px;
        white-space: nowrap !important
    }

    .primary-nav .dropdown-item .drop-toggler-manual {
        margin-left: auto
    }
}

.dropdown.root .drop-toggler-manual.root svg {
    transition: all 0.3s ease;
}

.dropdown.child .drop-toggler-manual svg {
    transform: rotate(270deg) !important
}

.dropdown.root:hover .drop-toggler-manual.root svg {
    transform: rotate(-180deg) !important
}

.dropdown.root:hover .dropdown-menu.root {
    display: block
}

.primary-nav .dropdown-menu {
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.dropdown-menu .dropdown-submenu {
    position: relative;
}

.dropdown.root .dropdown-toggle::after {
    display: none !important
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

@media (min-width: 1200px) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

.dropdown.hover-default:hover .dropdown-menu {
    display: block !important;
}

.dropdown.dropdown.hover-default:not(:hover) .dropdown-menu {
    display: none !important;
}

.dropdown.hover-default .dropdown-menu {
    max-height: 400px;
    overflow-y: auto !important;
}

.dropdown:hover .dropdown-toggler-btn {
    color: var(--secondary-color);
}

.dropdown:hover .toggler-icon {
    transform: rotate(180deg);
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--secondary-light) !important;
    color: #444 !important;
}

@media(max-width:992px) {
    .accordion-button::after {
        filter: contrast(0) !important
    }
}

.accordion-button[aria-expanded="true"] {
    color: var(--secondary-color) !important;
}

.accordion-button.no-arrow::after {
    background: none;
}

/* navigation css  */
.logo-text {
    font-weight: 700;
    line-height: 1.3;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    text-align: justify !important;
}


.logo-breaked {
    font-size: 17px;
    display: block;
    font-weight: 400
}

.search-container {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999;
    border-radius: 6px;
}

.top-treks-btn {
    border: 2px solid #fff;
    padding: 0.5rem 0.75rem;
    color: #fff;
    font-weight: 600;
    transition: all 300ms ease;
    border-radius: 6px;
    background-color: transparent;
    white-space: nowrap;
}


.top-treks-btn:hover {
    background-color: var(--alternate-color) !important;
    color: #fff !important;
    border-color: #f1bf1a;
}

.top-treks-btn:hover svg path {
    fill: #fff;
}


.drop-treks-ul {
    min-width: 300px !important;
}

.drop-treks-ul li a:hover {
    color: var(--alternate-color) !important;
}

.primary-nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    letter-spacing: var(--base-letter-spacing);
    text-transform: capitalize;
}

.map-link:hover>g>rect {
    fill: var(--secondary-color);
}

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


/* //teams  */


.abs-ceo-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: fit-content;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px
}

.abs-team-socials {
    position: absolute;
    bottom: 25px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center
}

.abs-team-socials a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color) !important;
    color: #fff;
    border-radius: 50%;
}

.team-card:hover .abs-team-socials {
    opacity: 1;
}

.team-card figure:hover img {
    opacity: 0.5;
}

.team-meta-infos {
    box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
    margin-top: -2rem;
    padding: 16px 12px;
    border-radius: 8px
}

.team-card:hover .team-meta-infos {
    background: rgba(253, 242, 233, 1);
}


.carousel-actions button.custom-carousel-btn {
    background-color: transparent !important;
    border-color: var(--alternate-color) !important;
    color: var(--alternate-color) !important;
    position: relative;
}

.carousel-actions button.custom-carousel-btn:hover {
    background-color: var(--alternate-color) !important;
    color: #fff !important;
}

.custom-bs-indicators {
    max-width: 100%;
    overflow-x: scroll;
}

.custom-bs-indicators button {
    width: 12px !important;
    height: 12px !important;
    background-color: #fff !important;
    border-radius: 50%;
    transition: all 0.4s ease !important;
    flex-shrink: 0 !important;

    &:hover,
    &.active {
        background-color: var(--primary-color) !important
    }
}

.custom-radio {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.custom-radio:not(:checked)+img {
    opacity: 0.45;
}

.custom-radio:checked+img {
    margin-top: -4px;
    opacity: 1;
}

@media screen and (min-width: 1200px) {
    .primary-nav-link {
        padding: 18px 10px;
        position: relative;
    }

    .primary-nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 10px);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
        opacity: 0;
    }
}


.custom-bs-indicators button {
    width: 15px !important;
    height: 15px !important;
    background-color: red;
    border-radius: 50%;
    transition: all 0.4s ease !important;

    &:hover {
        background-color: green
    }
}

@media screen and (min-width: 1400px) {
    .primary-nav-link {
        padding: 18px 15px;
    }

    .primary-nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 10px);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
        opacity: 0;
    }

    .mega-nav:hover .primary-nav-link::after {
        opacity: 1;
    }

    /* .mega-dropdown {
        min-height:300px;
    } */
}

.active-header .primary-nav-link,
.dark-nav .primary-nav-link {
    color: var(--primary-dark-intense);
}

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

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

.active-header .search-trigger-btn {
    color: var(--primary-dark-intense);
}

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

.header-contact .contact-link {
    color: #fff;
    font-size: 0.875rem;
}

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

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

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

/* new nav */
.primary-nav-link:hover {
    color: var(--alternate-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: 100%;
    /* height: 80vh;
    height: 80dvh;
    min-height: 250px; */
}

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


.custom-numeric-indicators {
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    position: absolute;
}

.custom-numeric-indicators [data-bs-target] {
    text-indent: 0;
    height: 30px;
    width: 30px;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    color: #fff;
    position: relative;
    margin-left: 1.35rem;
    border: none;
    padding-bottom: 70px;
}


@media(max-width: 768px) {
    .custom-numeric-indicators [data-bs-target] {
        padding-bottom: 20px;
    }
}


.custom-numeric-indicators [data-bs-target]:not(:last-child)::before {
    position: absolute;
    content: '';
    width: 24px;
    height: 2px;
    top: 45px;
    left: 15px;
    transform: translateY(-30px);
    left: 30px;
    background-color: #fff;
}

.custom-numeric-indicators [data-bs-target].active {
    font-size: 1.125rem !important;
}

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

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

.cta-overlay {
    background: rgba(28, 53, 78, 0.2);

}

.overlay-light {
    background-color: rgba(8, 39, 64, 0.3);
}

.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(0deg, #0b2c3fad 0%, #0B2C3F 1%, #0b2c3f62 46%);
}

.hov-abs-gradient-dark:hover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0b2c3fa2 0%);
    z-index: 1;
    transition: all 600ms ease !important;
}

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

.screen-fit-section {
    /* height: calc(100vh - var(--top-header-height));
    height: calc(100dvh - var(--top-header-height));
     */
    height: calc(100vh);
    height: calc(100dvh);
}

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

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

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

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

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


.breadcrumb {
    display: flex;
    justify-content: center;
}

.breadcrumb li a {
    color: #969696 !important;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.breadcrumb li+li:before {
    padding: 8px;
    font-size: 0.95rem;
    color: #969696;
    content: "/";
}

/* region line map */

.region-line {
    /* width: 100px;
    height: 60px; */
    position: relative;
}

.region-line::after {
    position: absolute;
    content: "";
}


.region-line:first-child {
    display: none;
}


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

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

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

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

/* 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;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

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

/* package card */
.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 12px 0px #0000001F;
}

.card-infos .info-label-wrapper {
    line-height: 1.3;
}

.card-infos .info-label-text {
    color: #999;
    font-weight: 400;
}

.abs-package-label-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 11;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 400;
    background-color: var(--secondary-color);
    color: #fff;
}


@media(min-width: 968px) {
    .blog-card.list-view {
        display: flex;
        gap: 12px;
    }

    .blog-card.list-view .img-container {
        aspect-ratio: unset !important;
        width: 200px;
        height: 200px;
    }
}


.abs-blog-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 16px;

}

.package-card-actions {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.trip-month-section:hover .package-card-actions {
    opacity: 1;
}

.trip-month-section .abs-package-pricing {
    opacity: 0;
    transition: all 400ms ease;
}

.trip-month-section:hover .abs-package-pricing {
    opacity: 1;
}

.package-card-contents {
    background-color: #fff;
    /* margin-bottom: 30px;
    padding-bottom: unset !important; */
}

.package-card-contents,
.stacked-card-contents {
    z-index: 9;
    padding: 16px;
}

.package-nav-wrapper {
    box-shadow: 0px 1px 8px 0px #00000014;
    background-color: #fff;
    z-index: 99;
}

.package-nav-fixed {
    position: sticky;
    width: 100%;
    top: 113px;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    /* animation: fadeTop 0.5s ease; */
}

.sticky-pacakge-sidebar {
    position: sticky;
    position: -webkit-sticky;
    top: var(--header-height);
}

.package-nav-wrapper ul li {
    margin-right: 1.5rem
}

.package-nav-wrapper ul li a {
    color: #555;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 1rem 0 1.15rem;
    position: relative;
    transition: all 0.1s ease !important;
}

.package-nav-wrapper ul li a.active {
    color: var(--secondary-color);
}

.package-nav-wrapper ul li a::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--alternate-color);
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.15s ease;
}

.package-nav-wrapper ul li a.active::after {
    transform: scaleX(0.86);
}

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

.pkg-count {
    font-size: 24px;
    line-height: 28px;
    font-weight: 800
}

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

.grow-exp-circle::after {
    content: ;
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1;
    border: 1px solid #fff;
}


.grow-exp-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 2px solid #fff;
    width: 10%;
    height: 10%;
    z-index: 11;
    opacity: 0;
    transition: outline-width 0.6s, width 0.6s, height 0.6s, opacity 0.6s;
    border-radius: 50%;
    pointer-events: none;
}

.grow-exp-circle:hover::before {
    outline-width: 3px;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    opacity: 1;
}


.heading-exp-circle {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 42px;
}

.heading-exp-circle small {
    vertical-align: 2px;
    font-size: 22px;
}

.exp-circle:hover .overlay-backdrop {
    background-color: #2156de;
}

.exp-circle:hover .heading-exp-circle {
    color: #fff !important;
}

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

/* testimonails */
.avatar-img {
    width: 200px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.small-avatar {
    width: 70px;
    height: 70px;
}

.small-blog-thumb {
    width: 70px;
    height: 70px;
}

.owl-stage {
    display: flex;
}

.owl-stage .item {
    height: 100%;
}

.custom-close {
    position: absolute;
    right: 6px;
    top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-weight: 600;
    z-index: 111;
    font-size: 18px;
}

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

/* .slick-slide {
    transform: scale(0.6);
    transition: all linear 0.2s;
}card
.slick-center {
    transform: scale(1);
} */
.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);
}

.theme-badge-secondary {
    background-color: var(--secondary-color);
}

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

.person-card {
    padding-bottom: 70px;
}

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

.person-img {
    --circle-size: 150px;
}

.person-img::after {
    content: "";
    position: absolute;
    width: var(--circle-size);
    height: var(--circle-size);
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 9;
    right: calc((var(--circle-size)/2) * -1);
    top: calc((var(--circle-size)/2) * -1);
    z-index: 1;
}

.rec-logo {
    max-width: 80px;
    max-height: 60px;
}

.grid-card {
    height: 340px
}

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

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

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

/* 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-icon {
    height: 16px;
    width: 16px;
    background-color: var(--secondary-color) !important;
    border-radius: 50%;
}

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

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

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

    .modal-custom-lg {
        max-width: 650px !important;

    }
}

.doc-card {
    background-color: #eee;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doc-card-title {
    background-color: var(--alternate-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);
}

.abs-team-meta__container {
    background-color: var(--primary-color);
    width: calc(100% - 40px);
    position: absolute;
    bottom: -40px;
    border-radius: 0px 16px 16px 16px;
}

.abs-team-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 0;
    bottom: -50px;
}

.team-backdrop:hover::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(18, 33, 57, 0) 0%, rgba(10, 33, 67, 0.908) 80%);
    transition: all 600ms ease;
}

.team-item:hover .abs-team-desc {
    opacity: 1;
    bottom: 0;
}

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

.collapse-link::after,
.it-title::after {
    content: "-";
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    position: absolute;
    top: 3px;
    right: 0;
}

.collapse-link::after {
    color: var(--secondary-color);
    /* font-size: 1.25rem; */
    /* left: 0; */
    right: 0;
    top: 0;
}

.collapse-link[aria-expanded="true"]::after {
    content: "+";
}

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

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

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


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

.it-title[aria-expanded="true"]::after {
    content: "-";
}

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


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

.abs-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0B2C3F 80%);
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    outline: 1px solid #c7c7c7;
    outline-offset: 20px;
    border-radius: 8px;
    transition: all 0.4s linear;
}

.activity-card:hover .abs-caption {
    align-items: center;
}


.abs-caption-bg-transparent {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.bg-gradient-primary {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0B2C3F 20%);
}

.abs-contact-icon {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.caption-hidden-default {
    display: block;
    opacity: 0;
    margin-bottom: -2rem;
}

.hvr-zoom-img img {
    transition: all 0.4s ease;
}

.hvr-zoom-img:hover img {
    transform: scale(1.05);
}


.hvr-show-hidden:hover .caption-hidden-default {
    margin-bottom: unset;
    opacity: 1;
}

/* .hvr-show-hidden:hover .pull-left-style {
    margin-left: -1rem;
    padding-right: 6px;
} */

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

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

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

button[disabled] {
    pointer-events: unset !important;
    cursor: not-allowed !important;
}

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

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

.owl-carousel .owl-dot {
    width: 16px;
    height: 8px;
    border-radius: 32px;
    margin-right: 6px;
    background-color: #969696 !important;
}

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

.owl-carousel .owl-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.owl-carousel :is(.owl-prev, .owl-next) {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 6px;
    background-color: #fff !important;
    color: var(--alternate-color) !important;
    position: absolute;
    top: 50%;
}

.owl-carousel .owl-prev {
    left: 15px;
}

.owl-carousel .owl-next {
    right: 15px;
}


.review-carousel :is(.owl-prev, .owl-next) {
    top: 100% !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.review-carousel .owl-prev {
    left: 0
}


.review-carousel .owl-next {
    right: 0
}


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

.form-label {
    font-weight: 600;
    margin-bottom: 0.45rem;
    font-size: 0.938rem;
    color: var(--primary-dark)
}

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

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

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

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

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

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

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

/* large checkbox */
.lg-checkbox {
    /* Double-sized Checkboxes */
    -ms-transform: scale(1.3);
    /* IE */
    -moz-transform: scale(1.3);
    /* FF */
    -webkit-transform: scale(1.3);
    /* Safari and Chrome */
    -o-transform: scale(1.3);
    /* Opera */
    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;
}

.choices__list--multiple .choices__item {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.choices__inner {
    border-radius: 8px !important;

}

.choices[data-type*=select-one] .choices__inner {
    border-radius: 8px
}

.terms-checkbox {
    width: fit-content;
    position: relative;
    padding-left: 25px;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
}

.terms-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.terms-checkbox .checkmark {
    position: absolute;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #bcbcbc;
    transition: background-color 0.85s;
}

.terms-checkbox:hover input~.checkmark {
    background-color: #a8a7a7;
}

.terms-checkbox input:checked~.checkmark {
    background-color: #f84b15;
}

/* footer */
.footer-stuffs {
    background-color: #0B2C3F !important;
    margin-top: -2px;
    position: relative;
}

.icon-foot-fixed-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 999;
}

.icon-foot-fixed-whatsapp.blink::after {
    position: absolute;
    right: 4px;
    top: 4px;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--alternate-color);
    border: 1px solid #67C15E;
    animation: wh-ripple 2s linear infinite;
}


@keyframes wh-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media(max-width:768px) {
    .icon-foot-fixed-whatsapp {
        width: 40px;
        height: 40px;
    }
}

.bordered-top-container {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.small-contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.secondary-nav li a,
.footer-desc {
    color: #d1d2d3;
}

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

.foot-contact-nav li:hover .icon-btn {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.foot-contact-nav .icon-btn {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.affi-logo {
    height: 60px;
    background-color: transparent;
    padding: 2px;
    border-radius: 6px;
}

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

.copyright-container {
    border-top: 1px solid #697B8E;
    padding-top: 2rem;
}

.day-info {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-50);
    color: var(--primary-color);
    padding: 10px;
}

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

.day-count {
    font-size: 16px;
    font-weight: 400;
    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-centered {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* package details */
.package-gallery-carousel .carousel-item {
    height: 100vh;
    height: 100dvh;
}

.package-gallery-carousel .carousel-control-next,
.package-gallery-carousel .carousel-control-prev {
    width: 40px
}

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

    .package-gallery-carousel .carousel-control-next,
    .package-gallery-carousel .carousel-control-prev {
        width: 60px
    }
}

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

    .package-gallery-carousel .carousel-control-next,
    .package-gallery-carousel .carousel-control-prev {
        width: 90px
    }
}

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

    .package-gallery-carousel .carousel-control-next,
    .package-gallery-carousel .carousel-control-prev {
        width: 120px
    }
}

.sticky-actions {
    top: 40px;
}

.abs-package-label {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    border-radius: 20px;
    color: #fff;
}

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

.price-info .currency-text {
    font-weight: 600;
    padding-top: 4px;
}

.price-info .cost-text {
    font-size: 1.25rem;
}

.price-info .extra-text {
    font-weight: 500;
}


.overview-icon {
    width: 48px;
    height: 48px;
    padding: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c7c7c7;
    background-color: transparent;
    color: #444;
    border-radius: 8px;
}

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

    .overview-icon svg {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }
}

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

.inc-exc-col :is(ol, ul),
.trip-highlt-sec :is(ol, ul) {
    list-style: none;
    padding: 0;
    font-weight: 500;
}

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

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

.border-liner {
    position: relative;
}

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

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

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

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

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


/* contact */
.lite-icon {
    background-color: var(--secondary-color);
    border: 3px solid 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;
}

.active-star {
    color: #E9B705;
}

.custom-accordion .accordion-button {
    color: unset !important;
    background-color: unset !important;
    box-shadow: unset !important;
    outline: unset !important;
    font-weight: 600;

    &:focus {
        box-shadow: none !important
    }
}

.accordion-button:not(.collapsed)::after {
    filter: grayscale(1);
}

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

@media screen and (min-width: 1200px) {
    .about-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: 1rem;
        padding-right: 1rem;
    }

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

@media screen and (max-width:480px) {
    .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: saturate(0.45);
    -webkit-filter: saturate(0.45);
    transform: scale(1);
    -webkit-transform: scale(1);
}

.pro-card:hover img {
    filter: saturate(1.1);
    -webkit-filter: saturate(1.1);
    transform: scale(1.2);
    transform-origin: right;
    -webkit-transform: scale(1.1);
}

.news-row {
    border-bottom: 1px solid #f0f0f088;
    padding-bottom: 3rem;
}

/* testimonial */

.testimonial-item {
    height: 40vh;
}

.testi-avatar-main {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testi-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    text-indent: unset;
    /* position: absolute; */
    border-color: transparent;
}


.testi-avatar:is(.active, :hover) {
    outline: 3px solid var(--primary-color) !important;
    outline-offset: 1px;
}

.testi-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
}

@media(max-width: 992px) {
    .package-dep-mob-style {
        background-color: #f0f0f0;
        padding: 1rem 0.5rem !important;
        border-radius: 8px;
    }

    .testi-quote-icon {
        top: 20%;
    }

    .page-banner .screen-60-section {
        height: calc(70dvh - var(--header-height));
        min-height: 60dvh !important;
    }

    .home-banner .img-container {
        height: 100dvh;
    }

    .team-col {
        aspect-ratio: 1/1;
    }
}

@media screen and (max-width: 1400px) {
    .testi-avatar {
        position: unset !important;
    }
}

.expert-section {
    background-color: #f8f9fa;
}

.expert-card img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, outline 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.expert-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0.5rem 0;
}

.expert-card p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.expert-card .whatsapp {
    margin-top: 0.5rem;
    color: #25d366;
}

.expert-carousel .owl-item.center .expert-card img {
    transform: scale(1.35);
    outline: 4px solid var(--primary-color);
    border: 1px solid #dee2e6;
    position: relative;
    z-index: 999;
}

.expert-carousel .owl-item:not(.center) .expert-card img {
    transform: scale(1);
}

.expert-info-wrap {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.floating-package-action-btns {
    display: none !important;
}


@media(max-width: 992px) {
    .floating-package-action-btns {
        text-align: center;
        position: fixed;
        z-index: 999;
        width: 100%;
        background-color: #fff;
        display: flex !important;
        justify-content: center;
        padding: 10px;
        gap: 10px;
        bottom: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .floating-package-action-btns {
        opacity: 1;
        visibility: visible;
    }
}

/* Force GLightbox arrows visible on mobile */
.glightbox-container .gbtnPrev,
.glightbox-container .gbtnNext {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 99999 !important;
}