@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=== reset browser's defualt behaviour ===*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none !important;
}

/*=== initialize common util css ===*/
:root {
    /* --primary-color: #6585F0; */
    /* --primary-color: #09085c; */
    --primary-color: rgb(40,33,74);
    --secondary-color: #F97316;
    --white-color: #F8FAFC;
    /* --gray-color: #64748B; */
    --gray-color: #1E293B;

    --green-color: #076327;
    --black-color: #020617;
    --section-bg: #0b0e16;
    --section-bg-2: #151618;
    --gray-light: #C7D7FA;
    --blue-color: #0A2377;
    --footer-bg: #303030;
    --red-color: red;
}

/* reset defaul behavior of element */
html,
body {
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
    scroll-behavior: smooth;
}

ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    /* color: inherit; */
}

figure {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}
.hide-scroll{
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    }

.hide-scroll::-webkit-scrollbar {
     display: none;
}

.row {
    --bs-gutter-x: 0;
}

.modal {
    padding: 0;
}

/*=== utility classes ===  */
.fz-14 {
    font-size: 14px;
    font-weight: 400;
}

.fz-16 {
    font-size: 16px;
    font-weight: 400;
}

.fz-12 {
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width:425px) {
    .fz-12 {
        font-size: 16px;
    }

    .fz-14 {
        font-size: 18px !important;
    }
}

.title {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    font-weight: bold;
}

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

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

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

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

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

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

.title-line-bottom-left {
    position: relative;
}

.title-line-bottom-left::after {
    content: " ";
    height: 3px;
    width: 4rem;
    border-radius: 1rem;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -8px;
    left: 2px;
}

.title-line-bottom-center {
    position: relative;
    width: fit-content;
}

.title-line-bottom-center::after {
    content: " ";
    height: 3px;
    width: 4rem;
    border-radius: 1rem;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.capitalize {
    text-transform: capitalize;
}

.primary-button {
    width: fit-content;
    height: fit-content;
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    border: none;
    text-wrap: nowrap;
}

.primary-button :hover {
    /* background-color: var(--secondary-color); */
    color: var(--white-color) !important;
}

.secondary-button {
    height: fit-content;
    width: fit-content;
    padding: 0.6rem 1.5rem;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    border: none;
    text-wrap: nowrap;
}
.primary-bg{
    background-color: var(--primary-color);
}
.secondary-bg{
    background: var(--secondary-color);
}
.primary-border{
    border-left: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.inquiry-btn {
    background-color: #f0f0f0;
}

.close-btn {
    width: 30px;
    height: 30px;
    background-color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 3px;
    color: var(--white-color) !important;
    outline: none;
    border: none;
}

.st-img-icon {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .st-img-icon {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-img-icon {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width:900px) {
    .container {
        max-width: 900px;
    }
}

.st-img-icon img {
    aspect-ratio: square;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* === Aspect ratio utility classes === */
.as-16x9 {
    aspect-ratio: 16 / 9;
}

.as-4x3 {
    aspect-ratio: 4 / 3;
}

.as-1x1 {
    aspect-ratio: 1 / 1;
}

.as-21x9 {
    aspect-ratio: 21 / 9;
}

/* === background images utility classes === */
.package-details-background {
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.2) 90%),
        url("../images/banner/bg1.jpg");
    background-color: rgba(255, 255, 255, 0.848);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    /* padding-block: 70px; */
    background-blend-mode: screen;

}

.activity-section-background {
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.2) 90%),
        url("../images/banner/bg1.jpg");
    background-color: rgba(255, 255, 255, 0.848);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block: 70px;
    background-blend-mode: screen;

}

.news-section-background {
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.2) 90%),
        url("../images/banner/bg1.jpg");
    background-color: rgba(255, 255, 255, 0.348);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* padding-block: 70px; */
    background-blend-mode: screen;

}


.other-activity-section-background {
    /* background-image:
        linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.4) 80%,
        rgba(255, 255, 255, 1) 100%
    ),
    url("../images/banner/bg1.jpg"); */
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.2) 90%),
        url("../images/banner/bg1.jpg");
    background-color: rgba(255, 255, 255, 0.848);
    background-blend-mode: screen;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    background-position: top;
    padding-block: 70px;
    position: relative;
    top: -60px;

}

@media screen and (max-width:425px) {
    .news-section-background {
        padding-block: 0px;
    }

    .other-activity-section-background {
        padding-block: 0px;
    }

    .package-details-background {
        padding-block: 0px;
    }

    .activity-section-background {
        padding-block: 0px;
    }

}

/* === header section ===  */
.header {
    position: fixed;
    top: -10px;
    /* top: 0; */
    z-index: 100;
    background-color: transparent;
    height: 60px;
    width: 100%;

}

.scroll-header{
    background-color: var(--white-color);
    height: 110px;
    width: 100%;
    transition: all 0.3s ease-in;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


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

/* .sticky-hover {
    position: absolute;
    top: -10px;
    z-index: 100;
    width: 100%;
    left: 0;
    right: 0;
    background-color: transparent;
    height: 60px;
} */

/* .header {
    position: relative;
    top: 0;
    z-index: 100;
    background-color: transparent;
    height: 60px;
    margin-top: -15px;
}

.header:hover {
    position: sticky !important;
    top: 0;
    z-index: 100;
    background-color: transparent;
    height: 60px;
    margin-top: -15px;
} */

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

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

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

.nav-container {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 2rem);

}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 0px;
}

.link-item {
    color: var(--white-color);
    /* font-size: clamp(1rem, 0.5vw, 1.2rem); */
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    text-wrap: nowrap;
    padding-top: 40px;
}


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

.search-btn {
    color: var(--white-color);
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transition: all 0.3s ease-in;
}

.nav-item {
    /* position: relative; */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.drop-down-nav {
    position: absolute;
    top: 10px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    display: none;
    transition: all 0.3s ease-in-out;
    background-color: var(--white-color);
    background-image: url(../images/banner/dropdown-banner.png);
    /* background-blend-mode: screen; */
    background-repeat: no-repeat;
    background-position: bottom;
    /* background-size: 100% auto; */
}


.nav-item:hover .drop-down-nav {
    display: block;
}

.drop-content-wrapper {
    margin-top: 120px !important;
    width: 100%;
    height: fit-content;
    padding: 20px 10px 0px 10px !important;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.hover {
    color: var(--black-color);
}

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

.tab-btn-container {
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    border-right: 1px solid var(--gray-light);
    padding: 0;
    margin: 0;
}

.tab-header {
    text-transform: uppercase;
}

.tab-btn {
    width: 100%;
    padding: 10px 5px;
    outline: none;
    border: none;
    color: var(--gray-color);
    background-color: transparent;
    display: inline;
    text-align: left;
}

.tab-active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tour-container {
    width: 80%;
}

.tour-card {
    width: 33%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.drop-destination-card {
    height: 350px;
}

.drop-destination-card-bt {
    background: linear-gradient(to top, var(--primary-color), transparent) !important;
    padding: 10px;
}

.ds-tour-icon {
    width: 60px;
    height: 60px;
    overflow: hidden;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ds-tour-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tour-card figure {
    width: 100%;
    height: 100%;
}
.tour-card img {
    width: 100%;
    height: 100%;
}

.tour-description {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(to top, var(--black-color) 25%, transparent);
}

.tour-details {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
}

.tour-duration {
    display: flex;
    gap: 2px;
    align-items: center;
}

.popular-search {
    font-size: 12px;
    font-weight: medium;
    flex-wrap: wrap;
}

.popular-search>p {
    padding: 0px 10px;
    text-wrap: nowrap;
}

#menu-btn {
    outline: none;
    border: none;
    display: none;
}

/* === mobile menu === */
.mobile-nav-conatiner {
    display: none;
}

@media screen and (max-width:1180px) {
    .logo {
        width: 50px;
        height: 50px;
    }

    .nav-links {
        display: none !important;
    }

    #menu-btn {
        display: block;
        background-color: transparent;
    }

    .mobile-nav-conatiner {
        display: block;
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        transition: left 0.3s ease-in;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .mobile-nav-wrapper {
        width: 70%;
        height: 100%;
        background-color: var(--white-color);
        padding: 10px;
    }

    .mobile-menu {
        left: 0;
    }

    #close-btn {
        float: right;
        outline: none;
        border: none;
        background-color: transparent;
    }
}

@media screen and (max-width:768px) {
    .header {
        padding: 4px;
        top: -30px;
    }
}




/* === mobile menu === */
.mobile-nav-conatiner {
    display: none;
}

@media screen and (max-width:1180px) {
    .logo {
        width: 50px;
        height: 50px;
    }

    .nav-links {
        display: none !important;
    }

    #menu-btn {
        display: block;
        background-color: transparent;
    }

    .mobile-nav-conatiner {
        display: block;
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        transition: left 0.3s ease-in;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .mobile-nav-wrapper {
        width: 70%;
        height: 100%;
        background-color: var(--white-color);
        padding: 10px;
    }

    .mobile-menu {
        left: 0;
    }

    #close-btn {
        float: right;
        outline: none;
        border: none;
        background-color: transparent;
    }
}

/* @media screen and (max-width:768px) {
    .header {
        padding: 4px;
        top: 0px;
    }
} */

/* === hero section ===  */
.hero-section {
    width: 100%;
    height: 110vh;
    position: relative;
    top: -60px;
    left: 0;
    background: linear-gradient(#07264900, #0B0E16F7);
    overflow: hidden;
}

/* @media screen and (max-width:1024px) {
    .hero-section{
        height: 50vh;
    }
} */

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

.banner-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white-color);
    height: 100%;
}



.banner-container h2 {
    color: var(--gray-light)
}

.banner-container h1,
h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    text-align: center;
}

.banner-container>p {
    width: clamp(200px, 50%, 800px);
    text-align: center;
}

/* === discover section === */
.common-container {
    top: -60px;
    position: relative;
    background: var(--section-bg);
    /* background: linear-gradient(to bottom, var(--section-bg), transparent); */
    padding: 20px 2px;
}

.other-activity-section {
    background-color: var(--section-bg-2);
    padding: 3rem 0;
    position: relative;
    top: -60px;
}

.discover-img-1 {
    width: 35%;
    height: 423px;
}

.discover-img-2 {
    width: 63%;
    height: 423px;
}

.discover-img-1 figure,
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-img-2 figure,
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .discover-img-1 {
        width: 100%;
    }

    .discover-img-2 {
        width: 200%;
    }
}

/* === banner === */
.banner {
    position: relative;
    top: -60px;
    width: 100%;
    height: 300px;
    background-color: var(--section-bg);
    background-image:
        linear-gradient(to top, var(--section-bg) 60%, transparent 100%),
        linear-gradient(to bottom, var(--section-bg) 60%, transparent 80%);
    background-repeat: no-repeat;
    background-size: 100% 80px, 100% 80px;
    background-position: top, bottom;
    /* background-image: url(../images/banner/Group.png); */
    background-image: url(../images/banner/hk.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* === activity section === */
.acivity-section {
    /* background-color: var(--section-bg); */
    background-color: var(--section-bg) !important;
}

.activity-wrapper {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.activity-wrapper::-webkit-scrollbar {
    display: none;
}

.activity-card {
    min-width: 250px;
    max-width: 250px;
    overflow: hidden;
    position: relative;
}

.activity-card:nth-child(odd) {
    height: 350px;
}

.activity-card:nth-child(even) {
    height: 400px;
}

.activity-card figure,
.activity-img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.activity-card:hover .activity-img {
    transform: scale(1.5);
    opacity: 0.8;
}

.activity-details {
    display: none;
    padding: 0 10px;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    height: 50%;
}

.activity-details p {
    text-align: right;
}

.activity-details>div>figure {
    width: 50px;
    height: 50px;
    background-color: var(--gray-color);
    opacity: 0.8;
    padding: 8px;
}

.activity-details>div>figure>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.activity-card:hover .activity-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px;
    background: linear-gradient(to top, var(--primary-color), transparent);
}

@media screen and (max-width:768px) {
    .activity-details {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 10px;
        background: linear-gradient(to top, var(--primary-color), transparent);
    }

}

/* === tour slider === */
.slider-section {
    background-color: var(--section-bg);
    position: relative;
    margin-top: -62px;
    /* padding-top: 3rem; */
}

/* @media screen and (max-width:992px) {
    .slider-section{
        height: 50vh;
    }
} */
.slider-wrapper {
    display: flex;
    overflow: hidden;
    height: 100vh;
}

.tour-slider {
    height: 100%;
    transition: transform 0.5s ease;
    width: 100vw;
    flex-shrink: 0;
    position: relative;
}

.tour-slider>figure {
    height: 100%;
    width: 100%;
}

.tour-slider>figure>img {
    width: 100%;
    height: 100%;
}

.slider-btn-container {
    position: absolute;
    top: 50%;
    /* left: 4%;
    right: 4%; */
    padding: 0 2rem;
    transform: translate(0, -50%);
    height: 50px;
}

.slider-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 35px;
    height: 35px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #next {
    float: right;
    top: 50%;
    transform: translateY(-50%);
} */

.slider-tour-description {
    position: relative;
    bottom: 90%;
    left: 0;
    right: 0;
}

.tour-slider-bottom {
    width: 100%;
    background: linear-gradient(to top, var(--black-color) 80%, transparent 100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
    flex-wrap: wrap;
    padding: 2rem 0 !important;
}

.tour-slider-bottom-active {
    bottom: 15px;
    padding: 1.5rem 0 !important;
}

.slider-bottom-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .slider-bottom-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.line-center {
    gap: clamp(0.5rem, 2vw, 1.5rem);
    border-left: 1px solid var(--gray-light);
    padding: 0 20px;
}

.line-center:nth-child(1) {
    border-left: none;
}

@media screen and (max-width:768px) {
    .tour-slider-bottom {
        padding: 10px 0;
    }

    .slider-tour-description {
        left: 2px;
        right: 2px;
    }

    .slider-bottom-icon {
        padding: 2px;
    }

    .slider-bottom-icon {
        border: none;
    }

    .tour-slider-bottom {
        font-size: 18 !important;
    }
}

@media screen and (max-width:425px) {
    .tour-slider-bottom {
        padding: 5px 0;
    }

    .tour-slider-bottom:where(p, h3) {
        font-size: 18px !important;
    }

    .line-center {
        border: none;
    }
}

/* === expdiction section === */
.section-white {
    position: relative;
    top: -60px;
    background-color: var(--white-color);
    overflow: hidden;
}

.expediton-section {
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.2) 90%),
        url("../images/banner/bg1.jpg");
    background-color: rgba(255, 255, 255, 0.848);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    background-blend-mode: screen;
}

.expedition-page-section {
    height: 100vh;
}

/* @media screen and (max-width:1024px) {
    .expedition-page-section {
        height: 50vh;
    }
} */

.expediton-card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    align-items: end;
    justify-items: center;
    margin-top: 1rem;
}

/* Small screens: 2 columns */
@media (min-width: 425px) {
    .expediton-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Medium screens and above: 3 columns */
@media (min-width: 768px) {
    .expediton-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Medium screens and above: 3 columns */
@media (min-width: 1024px) {
    .expediton-card-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expedition-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: 400px;
}

.expedition-card-img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.expedition-card-bottom {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--blue-color);
    opacity: 0.9;
    padding: 10px 6px;
}

.expedition-card-icon {
    width: 147px;
    height: 72px;
}

.expedition-card-icon>figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.expedition-card-icon>figure>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* === tour package === */
.tours-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .tours-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tours-wrapper a {
    color: var(--gray-color);
}

.package-card-cantainer {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.tours-package-card {
    width: 100%;
    height: 255px;
    overflow: hidden;
    position: relative;
}

.tours-package-card figure {
    width: 100%;
    height: 100%;
}

.tours-package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.package-card-cantainer:hover img {
    transform: scale(1.5);
}

.package-card-bottom {
    width: 100%;
    position: absolute;
    bottom: -100%;
    background-color: rgba(2, 6, 23, 0.5);
    /* opacity: 0.5; */
    height: 50px;
    transition: bottom 0.3s ease-in-out;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.package-card-cantainer:hover .package-card-bottom {
    bottom: 0;
}

.badge-wrapper {
    width: 180px;
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    position: absolute;
    top: 28px;
    font-size: 14px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-green {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 10px;
    width: fit-content;
    background-color: var(--green-color);
    color: var(--white-color);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 2px solid var(--secondary-color);
}

.badge-orange {
    background-color: var(--secondary-color);
    transform: rotate(-45deg);
    left: -40px;
}

.badge-wrapper>p {
    margin: 0;
}

@media screen and (max-width:768px) {
    .package-card-bottom {
        bottom: 0;
    }

}

/* Responsive Improvements */


/* === banner white ==== */
.banner-white {
    background-image: url("../images/banner/mrvalues.png");
    height: 0vw !important;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

/* === affilated section === */
.affiliated-section {
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.affiliations-container {
    gap: 3rem;
    padding: 2rem 0;

}

.affiliations-img {
    width: 150px;
    height: 150px;
    object-fit: contain;

}

.affiliations-img>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* === destination section === */
.destination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.destination-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.destination-top-card-left {
    width: 60%;
    height: 500px;
}

.destination-top-card-left figure,
img {
    width: 100%;
    height: 100%;
}

.destination-top-card-right {
    width: 38%;
    height: 500px;
}

.destination-top-card-right figure,
img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in;
}

.destination-bottom-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.destination-bottom-card {
    width: 32.3%;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: bottom 0.3s ease-in;
}

.destination-bottom-card figure {
    height: 100%;
}

.destination-mg {
    transition: all 0.3s ease-in-out;
}

.destination-bottom-card:hover .destination-img {
    transition: all 0.3s ease-in-out;
    transform: scale(1.4);
}

.destination-bottom-card:hover .destination-bottom-desc {
    bottom: 0;
    background: linear-gradient(to top, var(--blue-color), transparent);
}

.destination-bottom-card img {
    width: 100%;
    height: 100%;
}

.destination {
    overflow: hidden;
}

.destination a {
    position: relative;
}

.destination-bottom-desc {
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: -100%;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: bottom 0.3s ease-in;
}

.destination>a:hover .destination-img {
    transform: scale(1.4);
}

.destination>a:hover .destination-bottom-desc {
    background: linear-gradient(to top, var(--blue-color), transparent);
    bottom: 0;
}

.destination-flag {
    width: 60px;
    height: 60px;
    overflow: hidden;
    padding: 4px;
    background-color: var(--white-color);
}

.destination-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:920px) {
    .destination-top-card-left {
        width: 49%;
    }

    .destination-bottom-desc {
        width: 49%;
    }
}

@media screen and (max-width:768px) {
    .destination-bottom-desc {
        bottom: 0;
    }

    .destination-top-card-left,
    .destination-top-card-right {
        width: 100%;
    }

    .destination-bottom-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* === new section === */
.news-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2%;
    width: 100%;
    align-items: start;
}

@media (min-width: 640px) {
    .news-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card-cantainer {
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    height: 380px;
    background-color: var(--white-color);
}

.news-card {
    width: 100%;
    height: 255px;
    overflow: hidden;
    position: relative;
}

.news-card figure,
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.news-card-cantainer:hover img {
    transform: scale(1.3);
}

.tag {
    padding: 4px 8px;
    border: 1px solid var(--gray-color);
    width: fit-content;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: var(--gray-color);
    border-radius: 4px;
    /* margin: 0.5rem 0 0.5rem; */
    background-color: rgba(0, 0, 0, 0.03);
}

/* === testimonial section === */
.testimonial-section {
    padding: 20px 0;
    border-top: 1px solid var(--gray-light);
}

.testimonial-card {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    height: fit-content;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.profile-img-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img-container>figure {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

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

.profile-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* padding: 2px; */
    overflow: hidden;
}

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

.review-btn {
    padding: 10px 10px;
    outline: none;
    font-size: 14px;
    display: flex;
    gap: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 3px;
}

.review-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    height: 20px;
    width: 150px;
}

.review-btn p {
    text-wrap: nowrap;
}

.google-btn {
    border: 1px solid var(--gray-light);
    width: 200px;
}

.trip-btn {
    border: 1px solid var(--green-color);
    background-color: #11E55133;
    width: 220px;
}

/* === footer section === */
.top-footer {
    height: 467px;
    width: 100%;
    /* background-color: red; */
    position: relative;
}

.footer-section {
    position: relative;
    top: -60px;
}

.top-footer>figure {
    width: 100%;
    height: 100%;
}

.top-footer figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bg-transparent {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.offer-container {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(13, 21, 48, 0.64);
}

.footer-bottom {
    height: fit-content;
    padding-top: 3rem;
    width: 100%;
    opacity: 1;
    /* background-image: url(../images/banner/footer-bg.png); */
    background-color: var(--footer-bg);
    background-blend-mode: screen;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    background-size: contain;
}

.footer-bottom a {
    width: fit-content;
}

.affiliation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* flex-wrap: wrap; */
    overflow-x: scroll;
}

.affiliation-card {
    min-width:250px;
    height: 120px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
}

.affiliation-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

@media screen and (max-width:768px) {
    .affiliation-card {
        width: 48%;
    }
}

.footer-icon {
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommended-btn {
    background-color: var(--white-color);
    /* padding: 2px 5px; */
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommended-btn img {
    width: 99.56px;
    height: 56px;
    object-fit: contain;
}

.copyright-container {
    border-top: 1px solid #444030;
    text-align: center;
    color: var(--gray-color);
    padding-top: 1rem;
}


/* ===== expedtion page ========== */
.hero-section video {
    width: 100%;
    height: 100%;
}

.expedition-btn-container {
    height: fit-content;
    width: fit-content;
    margin: auto auto;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;

}

.expedition-btn-container::-webkit-scrollbar {
    display: none;
}

.expedition-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 1rem;
    padding-right: 1.5rem;
    outline: none;
    border: none;
    background-color: var(--white-color);
    color: var(--gray-color);
    min-width: 150px;
}

/* .expedition-btn p {} */

.recommended-btn p {
    text-wrap: nowrap;
}

.expedition-btn img {
    width: 80px;
    height: 35px;
    object-fit: contain;
}

.active-btn {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

@media screen and (max-width:900px) {
    .expedition-btn-container {
        overflow-x: auto;
        width: 100%;
    }

    .expedition-btn {
        padding: 5px 0.5rem
    }

    .expedition-btn img {
        width: 60px;
        height: 20px;
    }

    .expedition-btn p {
        font-size: 14px;
        text-align: left;
    }
}

/* ==== trekking page ===== */
.treks-bannner {
    min-height: 500px;
    background-image: url(../images/banner/treks.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.masonry-gallery {
    column-count: 2;
    column-gap: 2rem;
}

.masonry-gallery a {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 2rem;
    break-inside: avoid;
}

.region-img-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

/* .region-image {} */

.region-img {
    width: 100%;
    /* height: 400px;  */
    aspect-ratio: 5/3;
    display: block;
    transition: all 0.3s ease-in;
}

.region-img-wrapper .long-img {
    aspect-ratio: 76 / 95;
}

.masonry-gallery a:hover .region-img {
    transform: scale(1.4);
}

.region-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    background: linear-gradient(to top, var(--black-color), transparent);
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.masonry-gallery a:hover .region-bottom {
    height: 100%;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.region-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--gray-color);
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

@media screen and (max-width:768px) {
    .masonry-gallery {
        column-count: 1;
        column-gap: 1rem;
    }
}

/* === other activties ==== */
.other-activities-container {
    display: grid;
    gap: 1rem;
}

.other-activity-item {
    overflow: hidden;
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;

}

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

.other-acitvity-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--blue-color), transparent)
}

.other-acitvity-bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.other-activity-icon {
    width: 80px;
    height: 80px;
    background-color: var(--blue-color);
    padding: 1rem;
}

.other-activity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 0) {
    .other-activities-container {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {

    /* md and up */
    .other-activities-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === other regions ===  */
.other-region-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.other-region-wrapper a {
    display: block;
}

@media (min-width: 768px) {
    .other-region-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .other-region-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .other-region-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.other-region-card {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.other-region-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease-in;
}

.other-region-card:hover .other-region-card-img {
    transform: scale(1.4);
}

.other-region-bottom-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, var(--black-color), transparent);
    transition: all 0.3s ease-in;
}

.other-region-card:hover .other-region-bottom-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* === package details === */
.package-details-banner {
    position: absolute;
    top: 30%;
    left: 0;
}

.banner-details-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #060B38B2;
    /* background-color: rgba(11, 43, 150, 0.8); */
    padding: 1.5rem 0;
}

@media screen and (max-width:768px) {
    .banner-details-bottom {
        padding: 10px 0;
    }
}


.banner-details-bottom .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: space-between;
}

.banner-title {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .banner-details-bottom .container {
        grid-template-columns: repeat(6, 1fr);
    }

    .banner-title {
        font-size: 3rem;
    }

    .package-details-banner {
        left: 8%;
    }
}

@media screen and (max-width:425px) {
    .banner-details-bottom {
        padding: 5px 0;
    }

    .banner-details-bottom :where(p, h5) {
        font-size: 10px !important;
    }
}

/* === package details section === */
.package-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.package-details-left,
.package-details-right {
    width: 100%;
}

@media (min-width: 768px) {
    .package-details-wrapper {
        grid-template-columns: 30% 68%;
    }
}


.package-details-links {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1rem;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.package-details-links a {
    width: 100%;
    padding: 0.5rem;
    text-transform: capitalize;
    display: flex;
    gap: 6px;
    color: var(--gray-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-details-links a:hover,
.package-details-links .active-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.call-to-action {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1rem;
    background-color: var(--white-color);
    background-image: url('../images/banner/world_map_2.png');
    object-fit: contain;
}

.call-to-action a :hover {
    background-color: none;
}

.member-card {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.call-to-input {
    width: 49%;
}

@media screen and (max-width: 768px) {
    .call-to-input {
        width: 100%;
    }

}

.package-details-right {
    padding: 1.5rem;
}

.package-details-left {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--white-color);
}

@media screen and (max-width: 425px) {
    .package-details-left {
        position: relative;
        top: 0;
    }

    .package-details-background {
        padding-block: 0px;
    }

}

/* === itenerary === */
#itinerary {
    position: relative;
    overflow: hidden;
}

.itinerary-icon {
    position: absolute;
    top: 50px;
    left: 0%;
    z-index: 10;
}

.itinerary-icon img {
    width: 30px;
    height: 30px;
}

.dotted-line {
    position: absolute;
    top: 60px;
    left: 0%;
    height: 100%;

    /* z-index: 10; */
}

.dotted-line img {
    object-fit: contain;
    height: 100%;
}

.itinerary-details {
    padding: 0;
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.itinerary-details:nth-last-child(1) {
    border-bottom: none;
}

.day-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.day {
    height: fit-content;
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1rem;
    text-wrap: nowrap;
    border-radius: 5px;
}

.day-images {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.day-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .day-images {
        grid-template-columns: 1fr;
    }
}

.rotate {
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==route map == */
.map-container {
    width: 100%;
    height: auto;
    position: relative;
}

/* == gallery container === */
.gallery-container {
    column-count: 2;
    column-gap: 1rem;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.4);
    transition: all 0.3s ease-in;
}

.gallery-text {
    display: none
}

.gallery-card:hover .gallery-text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--black-color), transparent);
    padding: 20px 10px;
}

@media (max-width: 768px) {
    .gallery-container {
        column-count: 1;
    }
}

.cost-include-details {
    background-color: rgba(17, 229, 81, 0.1);
    color: var(--black-color);
    padding: 1rem;
    border-radius: 5px;
}

.cost-include-details i {
    color: var(--green-color);
}

.cost-exclude-details {
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--black-color);
    padding: 1rem;
    border-radius: 5px;

}

.cost-exclude-details i {
    color: var(--red-color);
}

.check-now-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.check-now-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to top, var(--black-color), transparent);
}

.equipments-container {
    background-color: rgba(11, 43, 150, 0.2);
    color: var(--black-color);
    padding: 1rem;
    border-radius: 5px;
}

.equipments-container i {
    color: var(--blue-color);
}

/* ==== fixed departure === */
.fixed-departure-container {
    width: 100%;
}

.fixed-departure-details {
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fixed-departure-details::-webkit-scrollbar {
    display: none;
}


.table-header .row,
.table-body .row {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-light);
    flex-wrap: nowrap;
}

.table-header .row {
    background-color: var(--white-color);
    font-weight: 600;
}

.cell {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
}


/* === similar package === */
.similar-package-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.similar-package-wrapper a {
    color: var(--gray-color);
}

.similar-package-card {
    width: 47%;
}



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

    .package-details-left {
        width: 100%;
        padding: 2px;
    }

    .package-details-right {
        width: 100%;
        padding: 2px;
    }

    .similar-package-card {
        width: 100%;
    }
}

@media screen and (max-width: 517px) {
    .fixed-departure-container {
        width: 300px;
    }
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed):focus,
.accordion-button:not(.collapsed):active {
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
    color: inherit !important;
}

/* == about page === */

.about-video-container {
    aspect-ratio: 16/9;
    position: relative;
}

.about-video-container video,
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed):focus,
.accordion-button:not(.collapsed):active {
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
    color: inherit !important;
}




/* == about page === */
.about-us-section {
    position: relative;
    top: -60px;
    left: 0;
    min-height: 120vh;
}

.about-us-section > img{
    min-height: 120vh;
}
.about-us-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%);
    z-index: 1;
}
.about-video-container {
    aspect-ratio: 16/9;
    position: relative;
}

.about-video-container video,
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    padding: 1px 10px;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* === why choose us ===  */
.service-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

@media (min-width: 640px) {

    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-header {
    margin-bottom: 1rem;
}

.service-icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--gray-light);
    padding: 4px;
}

.service-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* === team section */
.teams-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2px;
}

@media (min-width: 640px) {
    .teams-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .teams-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background-color: var(--white-color);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}


.team-card-image {
    height: 402px;
    overflow: hidden;
    width: 100%;
}

/* .team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
} */

/* === coutner section==== */
.counter-section{
    position: absolute;
    bottom: -100px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 50;
}

.counter-card-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    z-index: 50;
    padding: 1rem 0;
}



.counter-card {
    background-color: rgba(248, 250, 252, 1); /* var(--white-color) with 0.8 opacity */
    min-width:  300px;
    width: 300px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100 !important;
}

.counter-card h2 {
    text-align: left !important;
}

@media screen and (max-width:425px) {
    .counter-card{
        min-width: 100%;
    }
}
/* === team member details page == */
.member-details-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.member-details-container-left {
    width: 68%;
}

.member-profile {
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.member-profile figure {
    width: 100%;
    height: 100%;
}

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

.cerificate-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cerificate-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.member-details-container-right {
    width: 28%;
}

@media screen and (max-width: 768px) {
    .member-details-container-left {
        width: 100%;
    }

    .member-details-container-right {
        width: 100%;
    }

    .member-description {
        text-align: center;
    }
}




/* ==== blog page === */
/* === blog section ===  */
.blog-card figure {
    aspect-ratio: 16/9;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.blog-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    height: fit-content;
    padding: 5px;
    width: fit-content;
    color: var(--light-blue-color);
    background-color: rgba(14, 165, 233, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .blog-card figure {
        height: auto;
    }
}

/* ==== all blogs container=== */
.all-blogs-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.blogs-left-side {
    width: 25%;
    position: sticky;
    top: 0;
    padding-top: 10px;
    z-index: 10;
    padding-top: 10px;
    background-color: var(--white-color);
}

.search-links-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.search-link {
    display: block;
    padding: 0.5rem;
    text-transform: capitalize;
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-link:hover {
    color: var(--primary-color);
    background-color: rgba(14, 165, 233, 0.2);
}

.active-search-link {
    color: var(--primary-color);
    background-color: rgba(14, 165, 233, 0.2);
}

.blogs-1 {
    width: 68%;
}

.blogs-right-side {
    width: 100%;
}

.blogs-right-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .blogs-right-side {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blogs-left-side {
        width: 100%;
    }

    .blogs-1 {
        width: 100%;
    }

}

.blog-details-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-details-left-container {
    width: 68%;
}

.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.blog-details-right-container {
    width: 28%;
    position: sticky !important;
    top: 10px;
    z-index: 10;
}

.blogs-title-container {
    top: 0;
    right: 0;
}

/* === blog details ===  */
.author-container {
    padding: 1rem 2rem;
    background-color: rgba(14, 165, 233, 0.1);
    height: fit-content;
}

.author-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

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

@media screen and (max-width: 768px) {
    .author-img {
        width: 60px;
        height: 60px;
    }

    .author-container {
        padding: 1rem;
    }

    .blog-details-container {
        gap: 1rem;
    }

    .blog-details-left-container {
        width: 100%;
    }

    .blog-details-right-container {
        width: 100%;
    }
}

/* === related blog === */
.related-blogs-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-blogs-wrapper a {
    color: var(--black-color);
}

.blog-image-container {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.blog-card-wrapper figure {
    height: 100%;
    width: 100%;
}

.blog-card-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in;
}

.blog-card-wrapper:hover img {
    transform: scale(1.3);
}

/* md and up: 2 columns */
@media (min-width: 768px) {
    .related-blogs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* lg and up: 3 columns */
@media (min-width: 1024px) {
    .related-blogs-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === contact us page === */
.contact-img-container {
    width: 100%;
    height: 640px;
    position: relative;
    overflow: hidden;
}

.contact-us {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.contact-us-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

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





/* === gear list page === */

.gear-list-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gear-list-card {
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gear-list-img-container {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.gear-list-img-container figure {
    width: 100%;
    height: 100%;
}

.gear-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in;
}

.gear-list-card:hover .gear-list-img {
    transform: scale(1.4);
}

.gear-list-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, var(--black-color), transparent);
}

.gear-list-card:hover .gear-list-description {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .gear-list-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==== gear list details ==== */
.gear-list-section {
    background-image: url("../images/icon/mt.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: fit-content;
}

.gear-title {
    border-bottom: 1px solid var(--primary-color);
    padding: 5px;
}

.gear-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .gear-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* === terms and condition  and Blog === */
.terms-conditions-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
}

.terms-condition-left {
    width: 28%;
    position: sticky;
    top: 10px;
}

.terms-condition-right {
    width: 68%;
}

@media screen and (max-width:768px) {
    .terms-condtion-left {
        width: 100%;
    }

    .terms-condition-right {
        width: 100%;
        /* margin-top: 40px; */
    }
}



.newsletter-bg{
    background-color: var(--primary-color);
}
.custom-modal-height{
    background-color: var(--primary-color);

}

@media screen and (max-width:425) {

}
.subscription-container{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
}
.subscriptin-email{
    height: 100%;
    flex: 1;
    padding: 4px 10px;
    outline: none;
    border: none;
}
.subscriptin-email:focus{
    border: none;
    outline: none;
}
.subscribe-btn{
    height: 100%;
    width: 60px;
    cursor: pointer;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
