@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Open+Sans&display=swap');

:root {
    --primary-color: #3FA9F5;
    --primary-color-dark: #003463;
    --heading-color: #042D52;
    --secondary-color: #D44100;
    --primary-dark: #3A3A3A;
    --primary-dark-intense: #1f1f1f;
    --primary-light: #F4EBD8;
    --text-color: #525E68;
    --text-color-light: #979797;
    --primary-bg-light: #F0F0F0;
    --light-bg: #F4F4F4;
    --base-letter-spacing: 0.02rem;
    --header-height: 0;
    --header-nav-offset: 80px;
    --section-gap: 3.125rem;
    --nav-width: 250px;
    --container-width: 100%
}

@font-face {
    font-family: 'rage-cursive';
    src: url('../fonts/rage-cursive.TTF') format('truetype');
}

.font-opensans,
input[type="number"],
input[type="date"] {
    font-family: "Open Sans", sans-serif;
}

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

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

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

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


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

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

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

.font-sans {
    font-family: sans-serif !important;
}

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

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

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

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

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

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

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

.bg-input-white {
    background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rager-style {
    font-family: 'rage-cursive';
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 64px;
    text-align: center;
}

/* custom typography */
.sub-title {
    font-size: 26px;
    color: var(--primary-color);
    letter-spacing: var(--base-letter-spacing);
    text-transform: capitalize;
    font-weight: 400;
    font-family: 'rage-cursive';
    display: block;
}

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

/* font sizes */
.fs-18 {
    font-size: 18px;
}

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

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

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

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


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

.heading-info {
    font-size: clamp(1.15rem, 1.1333rem + 0.7407vw, 1.5rem);
}

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

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

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

.u-lined {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pseudo-underline {
    position: relative;
}

.pseudo-underline::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -8px;
    left: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.abs-price {
    position: absolute;
    top: 18px;
    right: 0;
    padding: 10px 6px;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    text-transform: uppercase;
    border-radius: 100px 0px 0px 100px;
}

.small-icon-container {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.main-btn-light,
.main-btn-light:hover {
    background-color: var(--primary-color);
}

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

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

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

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

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


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

.clamp-4 {
    -webkit-line-clamp: 4;
}

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

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

.primary-nav-link {
    color: var(--primary-color-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    margin-right: 16px;
}

@media screen and (min-width:1400px) {
    .primary-nav-link {
        margin-right: 30px;
    } 
}

.primary-nav-link:is(:hover, :focus, .active) {
    color: var(--primary-color);
}

.primary-nav .dropdown-menu {
    background-color: #fff;
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    border-bottom: 4px solid rgba(212, 65, 0, 1);
}

.primary-nav .dropdown-menu li:not(:last-child) {
    margin-bottom: 0.65rem
}

.dropdown:not(.sub-dropdown) .dropdown-menu,
.dropdown:not(.sub-dropdown):focus .dropdown-menu {
    display: block !important;
}

.dropdown .dropdown-menu {
    display: none;
    margin-top: 0;
    padding: 1rem 0.75rem;
    z-index: 9999999;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
}

@media screen and (min-width: 769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
}

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


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

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

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

.owl-prev,
.owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-35%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-size: 22px;
}



.owl-prev i,
.owl-next i {
    font-size: 22px;
}


.owl-prev {
    left: -55px;
}

.owl-next {
    right: -55px;
}


.owl-nav .disabled {
    display: none;
}

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

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

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

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

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

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

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

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

.style-intro .about-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}


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

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


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

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

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

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

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

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

.light-backdrop {
    background: rgba(255, 255, 255, 0.8);
}

.dark-backdrop {
    background: rgba(4, 45, 82, 0.6);
}

.overlay-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(36, 36, 36, 0.3)
}

.opacity-2 {
    opacity: 0.2
}

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

.gradient-backdrop-primary {
    background: rgba(0, 52, 99, 0.6);
}

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

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

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

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


.home-banner .img-container {
    height: 89vh;
    min-height: 450px;
}

.screen-80-section {
    height: 80vh;
    min-height: 450px;
}

.screen-70-section {
    height: 70vh;
    min-height: 350px;
}

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

.section-bg-contain {
    background-size: contain !important;
}

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

.abs-bg-image-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

    .showcase-card {
        height: 220px
    }

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

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

    /* cards */
    .abs-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        color: #fff;
        /* background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.86) 100%); */
    }

    .hoverable-card-secondary:hover img {
        opacity: 0.8;
    }

    .hoverable-card-secondary:hover .gradient-backdrop-primary {
        background: #d44000a2;
    }

    @media(max-width: 768px) {

        .owl-nav {
            display: none;
            margin-top: 1rem;
            text-align: center;
        }

        .owl-prev {
            margin-right: 1rem !important;
        }

        .owl-next,
        .owl-prev {
            position: relative;
            left: unset;
            right: unset;
            margin: auto;
        }
    }

    .base-card-title {
        font-size: 24px;
        font-weight: 600;
    }

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

        .w-lg-100 {
            width: 100%;
        }
    }
}

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

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

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

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

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

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

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

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

.offset-planet {
    position: relative;
}

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

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

    }

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

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

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

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

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

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

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

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

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

.avatar-img {
    width: 100px
}

.null-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #c7c7c7;
}

.null-avatar .tes-name {
    font-size: clamp(1.2rem, 1.11rem + 2.2222vw, 1.75rem);
    font-weight: 700;
}


.quote-left-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

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

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

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

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

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

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

.abs-social-infos {
    position: absolute;
    width: 100%;
    bottom: 1.5rem;
    padding: 0 1rem;
    opacity: 0;
}

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

.teams-card:hover .abs-social-infos {
    opacity: 1;
}

.teams-card:hover .descriptions :is(.name, .post) {
    color: var(--secondary-color) !important;
}

.teams-card:hover img {
    opacity: 0.8;
}

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

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

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

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

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

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

.collapse-link::before {
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    position: absolute;
    top: -4px;
    left: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color-dark);
    color: #fff;

}

.collapse-link[aria-expanded="true"]::before {
    content: "\f068";
    background-color: var(--primary-color);

}

.custom-collapse .collapse.show p:last-child::before {
    position: absolute;
    content: '';
    width: 100%;
    left: 20px;
    height: 1px;
    background-color: #A1A1A1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.common-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color-dark);
}

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

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

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

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

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

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

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

.form-control option:selected {
    color: red !important;
}

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

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

.counter {
    max-width: 120px;
}

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

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

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

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

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

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

.foot-heading {
    font-size: clamp(1.175rem, 1rem + 0.5vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #fff;
}

.border-top-dashed {
    border-top: 1px dashed #fff;
}

.flag-icon {
    width: 25px;
}

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

.social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
}

.social-icons li a i {
    font-size: 22px;
    color: #042D52
}


.social-icons-bg-secondary li a {
    background-color: var(--secondary-color);
    color: #fff;
}

.social-icons-bg-secondary li a i {
    color: #fff;
}

.social-icons-primary-dark li a {
    background-color: var(--primary-color-dark);
    color: #fff;
}

.social-icons-primary-dark li a i {
    color: #fff;
}

.mobile-nav .primary-nav-link {
    color: #fff;
}

.mobile-nav .nav-item {
    margin-bottom: 1.5rem
}

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

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

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


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

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

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

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

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

    .stack-2 {
        margin: 8rem 0 0 -6rem !important;
    }
}

/* package details */
.package-menu {
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

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


.package-nav a:not(.main-btn) {
    color: var(--heading-color);
    font-weight: 600;
    padding: 10px 0;
    width: max-content;
    font-size: 0.875rem;
}

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

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

.sticky-actions {
    top: 80px;
}

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

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

    .sticky-actions {
        top: 110px;
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .package-menu .container {
        padding: 0
    }

    .package-nav {
        padding: 0 20px
    }

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

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

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

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

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

@media screen and (max-width:480px) {
    .nav-logo-wrapper {
        max-width: 110px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media(max-width: 992px) {
    .home-banner .poly-image {
        clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
    }

    .home-banner .rager-style {
        font-size: 22px;
    }

    .foot-heading {
        margin-bottom: 1rem;
    }

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

    .owl-prev {
        left: -10px;
    }

    .owl-next {
        right: -10px;
    }

    .quote-left-icon {
        top: -30%;
        left: 0;
        transform: unset;
    }
}