
:root {
    --primary-font:"Fira Sans", sans-serif;
    --primary-color: #8845b4;
    --secondary-color: #40338a;
    --primary-color-dark: #120653;
    --primary-dark-intense: #26204b;
    --primary-light: #e0aed0;
    --title-color: #3b2c8d;
    --text-color: #77808b;
    --text-color-light: #979797;
    --primary-bg-light: rgba(224, 174, 208, 0.548);
    --light-bg: #f1f4ff;
    --light-primary: #eeeeff;
    --base-letter-spacing: 0;
    --header-height: 0;
    --header-nav-offset: var(--header-height);
    --section-gap: 4.375rem;
    --top-header-height: 35px;
    --container-width: 100%;
    --theme-roundeness: 0.5rem;
}

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

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

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

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

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

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

body {
    font-family: var(--primary-font);
    font-weight: 400;
    min-width: 360px;
}

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

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

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

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

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

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

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

.banner-inner {
    background-color: rgba(0, 0, 0, 0.55);
}
.cta-bg {
    background: #ede3e1
}

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

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

.img-container img {
    width: 100%;
}
.rounded-8{
    border-radius: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.no-resize {
    resize: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-inner-banner-ultra {
    font-size: clamp(1.5rem, 2rem + 2.2222vw, 2rem);
}

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

.heading-main {
    font-size: clamp(1.375rem, 1.1667rem + 0.9259vw, 2rem);
}

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

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

}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-text {
    background-color: #756ab660;
    color: #fff;
    padding: 0 8px;
    line-height: 1.3;
    display: inline-block;
}

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

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

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

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

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

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

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

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

.link-text {
    color: inherit;
}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

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

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

.plain-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

.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: 500;
    font-size: 0.875rem;
    padding: 12px 20px;
    border: none;
    border-radius: var(--theme-roundeness);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    outline: none !important;
    text-transform: uppercase;
    padding-top: 12px;
}

.outlined {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 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);
}

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

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

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

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

.header-nav {
    transition: all linear 0.2s;
    padding: 12px 0;
    background-color: rgba(32, 24, 130, 0.1);
    --nav-height: 60px;
}

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

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

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

.drop-nav {
    position: absolute;
    left: 0;
    width: max-content;
    max-width: 200px;
    background-color: #fff;
    list-style: none;
    padding: 0;
    border-bottom-left-radius: var(--theme-roundeness);
    border-bottom-right-radius: var(--theme-roundeness);
    border-top-right-radius: var(--theme-roundeness);
    padding: 0 6px;
    display: none;
    top: 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    animation-duration: 0.2s;
}

.drop-nav li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.drop-nav li a {
    color: var(--primary-dark);
    font-weight: 500;
}

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

.primary-nav > li:hover .drop-nav {
    display: block;
}

li.mega-nav {
    position: static;
}

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

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

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

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

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

/* banner services */
.banner-services .card {
    border-bottom: 5px solid var(--primary-color);
}

.banner-services .card:hover {
    background-color: var(--primary-color);
    transition: all 600ms ease;
}

.banner-services .icon-container {
    width: 70px;
    height: 70px;
}

.banner-services .card:hover * {
    color: #fff !important;
}

.ultra-banner-bottom .sCardCol:hover .sCard {
    margin-top: -1rem;
}

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

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

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

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

    .mega-dropdown {
        min-height: 460px;
    }
}

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

.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: 0;
    outline: none !important;
    box-shadow: 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(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.offset-nav-top {
    padding-top: var(--header-height);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1200px) {
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-prev {
        width: 60px;
    }
}

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

.slide-actions {
    height: 400px;
}

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

.showcase-card {
    height: 220px;
}

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

@media screen and (min-width: 1198px) {
    .inline-card-sm-img {
        width: 190px;
    }
}

.invalid-feedback strong {
    font-weight: 500;
}

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

@media (orientation: landscape) {
    .intro-cover-image {
        aspect-ratio: 16/8;
    }
}

.home-intro-section {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.line-bg,
.peak-bg {
    background-repeat: no-repeat;
}

.line-bg {
    background-size: contain;
    background-position-y: 70px;
    /* background-position-x: calc((100vw - var(--container-width))/2);  */
}

.peak-bg {
    background-position: bottom left;
    background-size: contain;
}

.bg-8000ers {
    background-image: url("../images/peak-bg/8000ers.svg");
}

.bg-7000ers {
    background-image: url("../images/peak-bg/700ers.svg");
}

.reverse-peak {
    background-position: bottom right;
}

/* .offset-carousel .slick-track {
    padding:0 120px
} */
.overflow-slide {
    overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

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

.package-card {
    padding-bottom: 85px;
}

.package-card-contents,
.stacked-card-contents {
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    left: 20px;
    bottom: 0;
    z-index: 9;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 2px 30px rgba(124, 124, 124, 0.2);
}

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

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

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

.sticker-wrapper::before,
.sticker-wrapper::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    position: absolute;

    background-color: #a86706;
    z-index: 1;
}

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

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

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

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

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

.stylish-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all linear 0.2s;
}

.stylish-card-content:hover {
    background-color: rgba(8, 39, 64, 0.4);
}

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

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

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

.heading-exp-circle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 42px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.holder-logo {
    color: var(--alternate-color);
    right: 10px;
    top: 15px;
    z-index: 3;
    width: 45px;
    z-index: 2;
}

.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 cards */
.stat-icon {
    height: 120px;
    width: 120px;
    border: 1px solid var(--primary-color);
    background-color: #e9fffb;
    border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.doc-card {
    background-color: #eee;
    border: 1px solid var(--alternate-color);
    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);
}

.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: "\2b";
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    position: absolute;
    top: 3px;
}

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

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

.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: "\f067";
    left: auto;
    right: 0;
    transition: transform linear 0.2s;
    font-size: 1.125rem;
}

.it-title[aria-expanded="true"]::after {
    content: "\f068";
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-disabled {
    opacity: 0;
}

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

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

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

.custom-indicators .slick-dots li {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    margin: 0 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

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

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

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

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

.common-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    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"], input[type="checkbox"], textarea),
.form-select {
    height: 2.625rem;
}

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

.form-control,
.form-select {
    border-radius: 16px;
    border: none;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease-in-out;
}

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

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

/* footer */
.footer-stuffs {
    background-color: #1c184c;
    margin-top: -2px;
}

.bordered-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.secondary-nav li a {
    color: #fff !important;
    opacity: 0.8;
}

.secondary-nav li a:hover {
    color: #fff !important;
    opacity: 1;
}

.pat-logos {
    gap: 0.825rem;
}

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

.info-bordered {
    position: relative;
}

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

.copy-texts {
    background-color: #201882;
}

/* about us */

/* packages */
.day-info {
    width: 52px;
    background-color: #fcfdc0;
    color: var(--secondary-color);
    border-top: 4px solid var(--secondary-color);
    padding: 5px 10px;
}

.border-liner {
    position: relative;
}

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

.day-count {
    font-size: 16px;
    font-weight: 700;
    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);
}

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


.package-actions {
    display: flex;
}

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

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

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

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

.overview-icon {
    height: 44px;
    width: 44px;
    background-color: #fff3e5;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-star {
    color: #e9b705;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slide-list {
    display: none;
}

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

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

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

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

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

.banner-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 991px) {
    .ultra-banner-bottom.hide-desktop {
        display: none;
    }

    .ultra-banner-bottom.show-mob {
        display: none;
    }

    .ultra-banner-bottom.hide-mob {
        display: block !important;
    }

    .banner-service-marquee {
        position: relative;
        width: 100%;
        animation: banner-service-marquee 30s linear;
        display: flex;
        animation-play-state: running;
        justify-content: flex-start;
    }

    .banner-service-marquee:hover {
        animation-play-state: paused;
    }

    @keyframes banner-service-marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }
}

@media (max-width: 992px) {
    .home-banner {
        height: 100dvh !important;
    }

    .ultra-banner-bottom.hide-mob {
        display: none;
    }

    .ultra-banner-bottom.handle-col-style .row {
        display: block;
    }

    .ultra-banner-bottom.handle-col-style .sCardCol:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .primary-nav li:not(:last-child)::after {
        display: none;
    }
}
