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

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

    --tertiary-color: #d68f09;

    --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-body: "Figtree", sans-serif;
    --primary-bg-light: #fff6f6;
    --light-bg: #F1F4FF;
    --light-primary: #EEEEFF;
    --base-letter-spacing: 0;
    --header-height: 78px;
    --header-nav-offset: 76px;
    --section-gap: 4.375rem;
    --top-header-height: 35px;
    --container-width: 100%;
    --form-placeholder-color: #b7b7b7;
    --theme-roundeness: 20px;
}

* {
    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: 300;
    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-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;
}

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

.gradient-banner {
    background:
        linear-gradient(45deg,
            rgb(20, 36, 51),
            #0d2881,
            #5a5a51,
            #186497);

    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;

    padding: 100px 20px;
}

.move-text-anim .word {
    display: inline-block;
    color: #fff;
    animation: wordColor 0.6s ease-in-out;
}

.move-text-anim .word-focus {
    color: #f97316;
    animation: focusPulse 2.5s ease-in-out;
}

@keyframes wordColor {
    0% {
        color: #fff;
    }

    50% {
        color: #f97316;
    }

    100% {
        color: #fff;
    }
}

@keyframes focusPulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 0 transparent;
    }

    50% {
        opacity: .85;
        text-shadow: 0 0 14px rgba(249, 115, 22, .35);
    }
}


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

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

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

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

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

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

.rotate-45 {
    transform: rotate(-45deg);
}

.hover-rotate-unset .hover-rotate-icon {
    transition: transform 0.3s;
}


.hover-rotate-unset:hover .hover-rotate-icon {
    transform: unset;
}

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

.no-resize {
    resize: none;
}

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

.flex-center-inline {
    display: inline-flex;
}

.fit-content,
.w-fit {
    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-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;
}

.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,
.sticky-handled-with-navbar {
    position: sticky;
    top: calc(var(--header-height) + 15px);
}

.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-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-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: transparent;
    /* border: 1px solid #fff; */
    color: #4C6178;
    padding: 8px 12px 8px 32px;
    border-radius: 24px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 14px;

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

.subtitle[data-varient="light"] {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.subtitle[data-varient="white"] {
    border-color: #fff;
    color: #fff;
}

@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-none {
    letter-spacing: 0 !important;
}

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

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

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

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

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

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

.global-header {
    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;
}

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

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

@media(max-width:768px) {
    .hero {
        height: 80dvh;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.654), rgba(0, 0, 0, 0.6));
    z-index: 1;
    left: 0;
}

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

.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;
    transition: all 0.3s ease;

    &:hover {
        outline: 2px solid var(--alternate-color);
        outline-offset: 1px;
    }
}

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

.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 rgb(153, 145, 145);
}

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

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

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

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

.hover-bg-secondary:hover {
    background-color: var(--alternate-color) !important;
    color: #fff !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);
}

.hover-underline:hover {
    text-decoration: underline !important;
}

@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 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
}

.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:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

.main-btn,
.outline-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;
}

.traverse-animation {
    position: relative;
    overflow: hidden;
}

.traverse-animation::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -120%;
    width: 240%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.08) 60%,
            rgba(255, 255, 255, 0.0) 100%);
    clip-path: polygon(0% 100%,
            0% 75%,
            8% 45%,
            16% 68%,
            26% 15%,
            34% 52%,
            44% 30%,
            54% 58%,
            64% 38%,
            74% 62%,
            84% 42%,
            92% 60%,
            100% 50%,
            100% 100%);
    will-change: transform;
    animation: traverse 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes traverse {
    0% {
        transform: translateX(0%);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    55% {
        transform: translateX(100%);
        opacity: 1;
    }

    65% {
        opacity: 0;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.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-tertiary {
    background-color: var(--tertiary-color);
    color: #fff;
}

.main-btn-tertiary-outline {
    border: 1px solid var(--tertiary-color);
    background-color: transparent;
    color: var(--tertiary-color);

    &:hover {
        background-color: var(--tertiary-color) !important;
        color: #fff;
    }
}

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

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

.fixed-scrollable-50:hover {
    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
}

.opacity-5 {
    opacity: 0.5;
}

.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: 99999999 !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 {
    background-color: var(--alternate-color);
    color: #fff;
}

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

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

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

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

@media(max-width:992px) {
    .theme-navs .nav-link {
        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;
    }

    .package-sidebar-web {
        position: sticky;
        top: 70px;
        max-height: 90vh;
        overflow-y: scroll;
    }
}

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

}

@media(min-width:992px) {
    .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;
}

.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  */

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

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

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

@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 {
    color: var(--primary-dark-intense);
}

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

/* mobile links */

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

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

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

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

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

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

.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-40-section {
    height: 40vh;
    min-height: 300px;
}

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

.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-image {
    height: calc(100vh - var(--header-height));
    max-height: 500px;
}

/* 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 {
    z-index: 9;
    padding: 16px;
}

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

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

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

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

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

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

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

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

/* .slick-slide {
    transform: scale(0.6);
    transition: all linear 0.2s;
}card
.slick-center {
    transform: scale(1);
} */

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

.web-breadcrumb {
    padding: 0.5rem;
    background-color: #fefeff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    gap: 4px
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
    color: #adb5bd;
    padding: 0 0.5rem;
}

.breadcrumb-item:not(:last-child):hover>* {
    color: var(--secondary-color) !important
}

.breadcrumb-icon-sm {
    width: 16px;
    height: 16px;
}

.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 */
.form-label {
    font-weight: 600;
    margin-bottom: 0.45rem;
    font-size: 0.938rem;
    color: var(--primary-dark)
}

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

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

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

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

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

.secondary-nav li a:hover {
    color: 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-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;
    }
}

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

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

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

.btn-close-custom {
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    top: -10px;
    right: -4px;
    z-index: 9;
    outline: 1px solid #fff;
    outline-offset: 2px;

    &:hover {
        outline-width: 2px;
    }
}

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

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

/* inner pages */

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

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

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

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

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

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

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

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

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

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

.floating-top-btn {
    background-color: transparent;
    border: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99999;
    color: var(--secondary-color);
}




@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

@media(max-width: 992px) {
    .floating-top-btn {
        bottom: 10px;
        right: 10px;
    }

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

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

.grecaptcha-badge {
    visibility: hidden !important;
}

.swal2-title {
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    color: green !important;
}

.swal2-toast.swal2-icon-error .swal2-title {
    color: #dc3545 !important;
}

.glightbox-container .gbtnPrev,
.glightbox-container .gbtnNext {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 99999 !important;
}

#CookiebotWidget:not(.CookiebotWidget-inactive),
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogHeaderLogosWrapper {
    display: none !important;
}

@media(max-width:992px) {
    #CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonSliderWrapper {
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        display: flex !important;
        flex-shrink: 0 !important;
        height: 23px !important;
        position: relative !important;
        width: 46px !important;
    }

    #CybotCookiebotDialog {
        bottom: 0 !important;
        left: 0 !important;
        top: unset !important;
        transform: unset !important;
        max-height: 55vh !important;
        width: 100% !important;
    }

    #CybotCookiebotDialog fieldset #CybotCookiebotDialogBodyFieldsetInnerContainer {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    #CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonSlider:before {
        background-color: #ffffff !important;
        border-radius: 50% !important;
        bottom: 0px !important;
        content: "" !important;
        height: 24px !important;
        left: 0px !important;
        position: absolute !important;
        transition: transform .4s !important;
        width: 24px !important;
    }

    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton,
    #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type) {
        padding: 0.35rem 0.5rem !important;
    }

    #CybotCookiebotDialogBodyContentText {
        font-size: 12px !important;
    }
}