@charset "utf-8";
/* CSS Document */
/* Author : Binod Raj Dhami */

:root{
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #000000;
    --theme-black-color: #111111;
    --theme-grey-color: #a3a3a3;
    --theme-light-color: #eeeeee;
    --theme-font-WhyteInktrap: "WhyteInktrap", sans-serif;
    --theme-font-Poppins: "Poppins", sans-serif;
    --transition: all ease-in-out 0.3s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Light - 300 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

/* Regular - 400 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Medium - 500 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

/* Bold - 700 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* Black - 900 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* Heavy - 950 */
@font-face {
    font-family: "WhyteInktrap";
    src: url("../fonts/WhyteInktrap-Heavy.ttf") format("truetype");
    font-weight: 950;
    font-style: normal;
}


/* ================================================== Reset specific tags further */
html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, li,
figure, blockquote,
span, a {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

a{
    text-decoration: none;
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--theme-font-WhyteInktrap);
}

/* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-WhyteInktrap);
    background: var(--theme-primary-color);
	line-height: 1.2;
}


/* ================================================== Go To Top Section */
#back-top { 
    display: block; 
    position: fixed; 
    bottom: 100px; 
    right: 15px; 
    text-align: center; 
    z-index: 9; 
}

#back-top a { 
    display: block; 
    text-decoration: none;  
}

#back-top a .fa{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    opacity: 1;
    color: var(--theme-secondary-color);
    background: var(--theme-grey-color);
    transition: var(--transition);
}

#back-top a .fa:hover {
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

/* ================================================== Header Section */
.site-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    padding: 20px 0;
}


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

.site-header-logo img{
    width: 100px;
    height: auto;
}

#mega-menu-wrap-header-menu{
    background: transparent;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
    padding: 10px 15px;
    height: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    background: transparent;
    transition: var(--transition);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item a.mega-menu-link:before{
    font-family: "fontawesome";
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
    color: var(--theme-grey-color);
    background: transparent;
    font-weight: 400;
}

.site-header-booking a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-dark-color);
    padding: 10px 15px;
    border-radius: 50px;
}

.site-header-booking a .fa-solid{
    font-size: 14px;
}

.site-header-booking a span{
    font-size: 16px;
}

/* =============================== Side Menu */
.show-side-nav{
    display: inline-block;
    color: var(--theme-primary-color);
    background: transparent;
    border: none;
    font-size: 24px;
}

.hide-side-nav{
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-block;
    color: var(--theme-primary-color);
    background: transparent;
    border: none;
    font-size: 24px;
}

.show-side-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 900px;
    height: 100%;
    z-index: 1099;
    background: var(--theme-secondary-color);
}

.show-side-menu {
    transform: translateX(100%);
    transition: all ease-in-out 0.1s;
}

.show-side-menu.active {
    transform: translateX(0);
}

.side-social-link{
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: calc(100% - 100px);
}

.side-menu-wrapper{
    display: flex;
    position: absolute;
    top: 70px;
    left: 70px;
    width: calc(100% - 70px);
    height: calc(100% - 70px);
}

.side-menu-block{
    position: relative;
    width: 50%;
    padding-left: 25px;
    border-left: var(--theme-primary-color) solid 1px;
}

#menu-large-side-menu .menu-item{
    list-style: none;
}

#menu-large-side-menu .menu-item a{
    position: relative;
    display: block;
    padding: 5px 0;
    font-size: 56px;
    font-weight: 400;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

#menu-large-side-menu .menu-item a:hover,
#menu-large-side-menu .menu-item.current-menu-item a{
    transform: translateX(5px);
    color: var(--theme-primary-color);
}


#menu-small-side-menu .menu-item{
    list-style: none;
}

#menu-small-side-menu .menu-item a{
    position: relative;
    display: inline-block;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 300;
    border-bottom: var(--theme-secondary-color) solid 1px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

#menu-small-side-menu .menu-item a:hover,
#menu-small-side-menu .menu-item.current-menu-item a{
    color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.side-social-link ul{
    display: flex;
    align-items: center;
    gap: 5px;
}

.side-social-link ul li a .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--theme-primary-color);
    border: var(--theme-primary-color) solid 1px;
    opacity: 0.5;
    transition: var(--transition);
}

.side-social-link ul li a .fa-brands:hover{
    opacity: 1;
}

/* ================================================== Banner Section */
.banner{
    position: relative;    
}

.banner-video{
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

.banner-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.banner-content-subtitle{
    font-size: 24px;
    font-weight: 400;
    font-family: var(--theme-font-open-sans);
    color: var(--theme-primary-color);
}

.banner-content-title{
    font-size: 60px;
    font-weight: 700;
    font-family: var(--theme-font-open-sans);
    color: var(--theme-primary-color);
}

.banner-content-description{
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

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

.banner-content-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 5px;
    border: var(--theme-primary-color) solid 1px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.banner-content-link .fa-solid{
    font-size: 14px;
}

.banner-content-link span{
    font-size: 18px;
    font-weight: 400;
    font-family: var(--theme-font-open-sans);
}

.banner-content-link a:hover{
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}


.banner-achievement{
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 9;
}

.achievement-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    height: 150px;
    border-radius: 10px;
    color: var(--theme-primary-color);
    background: rgba(255, 255, 255, 0.1);
    border: rgba(255, 255, 255, 0.2) solid 1px;
    transition: var(--transition);
}

.achievement-card:hover{
    transform: translateY(-5px);
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

.achievement-card-value{
    font-size: 42px;
    font-weight: 700;
}

.achievement-card-title{
    font-size: 24px;
    font-weight: 300;
}

/* ================================================== Welcome Section */
.welcome{
    padding: 100px 0;
    background: var(--theme-secondary-color);
}

.welcome-thumbnail{
    position: relative;
}

.welcome-thumbnail img{
    width: 100%;
    height: auto;
}

.welcome-subtitle{
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--theme-font-WhyteInktrap);
    color: var(--theme-secondary-color);
    z-index: 1;
}

.welcome-subtitle::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-primary-color);
    z-index: -1;
    transform: skewX(-15deg);
}

.welcome-title{
    margin: 15px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    font-family: var(--theme-font-WhyteInktrap);
    color: var(--theme-primary-color);
}

.welcome-description{
    margin: 15px 0 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.welcome-list{
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.welcome-list li{
    display: flex;
    gap: 15px;
}

.welcome-list-item .fa-solid{
    width: 50px;
    height: 30px;
    background-size: content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--theme-primary-color);
}

.welcome-list-content h4{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.welcome-list-content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: var(--theme-grey-color);
}

.welcome-link{
    display: flex;
}

.welcome-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--theme-primary-color);
    border: var(--theme-black-color) solid 1px;
    padding: 20px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.welcome-link a .fa-solid{
    font-size: 14px;
}

.welcome-link a span{
    font-size: 16px;
}

.welcome-link a:hover{
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}


/* ================================================== Common Section */
.section-title{
    margin-bottom: 50px;
    text-align: center;
}

.section-title h4{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--theme-font-WhyteInktrap);
    color: var(--theme-secondary-color);
    z-index: 1;
}

.section-title h4::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-primary-color);
    z-index: -1;
    transform: skewX(-15deg);
}

.section-title h2{
    font-size: 42px;
    font-weight: 700;
    font-family: var(--theme-font-WhyteInktrap);
    color: var(--theme-primary-color);
}

.section-title p{
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

/* ================================================== Trip Section */
.trips{
    padding: 100px 0;
    background: var(--theme-black-color);
}

.trips .section-title h2{
    color: var(--theme-primary-color);
}

.trips .section-title p{
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
}

.trips-card{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.trips-card:hover{
    transform: translateY(-5px);
}

.trips-card-thumbnail{
    position: relative;
    overflow: hidden;
}

.trips-card-thumbnail img{
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.trips-card:hover .trips-card-thumbnail img{
    transform: scale(1.05);
}

.trips-card-rating{
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

.trips-card-content{
    padding: 30px;
    background: var(--theme-primary-color);
}

.trips-card-content h4 a{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-WhyteInktrap);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 25px;
}

.trips-card-destination{
    display: flex;
    align-items: center;
    gap: 10px;
}

.trips-card-destination .fa-solid{
    font-size: 14px;
    color: var(--theme-grey-color);
}

.trips-card-destination span{
    font-size: 16px;
    color: var(--theme-grey-color);
}

.trips-card-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-top: 15px;
}

.trips-card-price span{
    display: block;
}

.trips-card-price span:first-child{
    font-size: 24px;
    font-weight: 900;
    color: var(--theme-secondary-color);
}

.trips-card-price span:last-child{
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

.trips-card-book{
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-black-color);
    transition: var(--transition);
}

.trips-card-book:hover{
    color: var(--theme-primary-color);
    background: var(--theme-grey-color);
}

/* ================================================== Destinations Section */
.destinations{
    padding: 100px 0 70px;
    background: var(--theme-secondary-color);
}

.destinations .section-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.destinations .section-title a{
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    color: var(--theme-primary-color);
    border: var(--theme-black-color) solid 1px;
    transition: var(--transition);
}

.destinations .section-title a:hover{
    border-color: var(--theme-primary-color);
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

.destinations-card{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
    transition: var(--transition);
}

.destinations-card img{
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.destinations-card:hover img{
    transform: scale(1.05);
}

.destinations-card span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-size: 24px;
    font-size: 700;
    color: var(--theme-primary-color);
    transition: var(--transition);
    font-family: var(--theme-font-WhyteInktrap);
    z-index: 1;
}

.destinations-card span::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
    z-index: -1;
}

/* ================================================== Why Choose Us Section */
.whychooseus{
    padding: 100px 0;
    background: var(--theme-secondary-color);
}

.whychooseus-card{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    list-style: none;
    border-radius: 10px;
    border: var(--theme-black-color) solid 1px;
    background: var(--theme-black-color);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.whychooseus-card:hover{
    transform: translateY(-5px);
    background: var(--theme-primary-color);
}

.whychooseus-counter span{
    position: relative;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    color: var(--theme-secondary-color);
    background: var(--theme-grey-color);
    transition: var(--transition);
}

.whychooseus-card:hover .whychooseus-counter span{
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

.whychooseus-content h4{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.whychooseus-content p{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--theme-grey-color);
    transition: var(--transition);
}

.whychooseus-card:hover .whychooseus-content h4{
    color: var(--theme-secondary-color);
}
.whychooseus-card:hover .whychooseus-content p{
    color: var(--theme-grey-color);
}


.whychooseus-thumbnail{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.whychooseus-thumbnail img{
    width: 80%;
    height: auto;
}

/* ================================================== Testimonials Section */
.testimonials{
    padding: 100px 0 50px;
    background: var(--theme-black-color);
}

.testimonial-card{
    padding: 50px 0;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.testimonial-card-quote{
    font-size: 60px;
    color: var(--theme-primary-color);
}

.testimonial-card-content{
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.testimonial-card-title{
    margin: 30px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.testimonial-card-rating{
    font-size: 24px;
    color: var(--theme-grey-color);
}

#testimonialsSlider .slide-item{
    padding-bottom: 50px;
}

#testimonialsSlider .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    color: var(--theme-grey-color);
    background: var(--theme-black-color);
    border: var(--theme-grey-color) solid 1px;
    transition: var(--transition);
}

#testimonialsSlider .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    color: var(--theme-grey-color);
    background: var(--theme-black-color);
    border: var(--theme-grey-color) solid 1px;
    transition: var(--transition);
}

#testimonialsSlider .owl-nav button.owl-prev:hover,
#testimonialsSlider .owl-nav button.owl-next:hover{
    color: var(--theme-grey-color);
}

/* ================================================== Blogs Section */
.news-blog{
    padding: 100px 0;
    background: var(--theme-secondary-color);
}

.news-blog .section-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.news-blog .section-title a{
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    color: var(--theme-primary-color);
    border: var(--theme-black-color) solid 1px;
    transition: var(--transition);
}

.news-blog .section-title a:hover{
    border-color: var(--theme-primary-color);
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

.news-blog-card{
    transition: var(--transition);
}

.news-blog-card:hover{
    transform: translateY(-5px);
}

.news-blog-card-thumbnail{
    position: relative;
    overflow: hidden;
}

.news-blog-card-thumbnail img{
    width: 100%;
    height: auto;
}

.news-blog-card-content{
    padding: 30px;
    background: var(--theme-black-color);
}

.news-blog-card-content h4 a{
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    transition: var(--transition);
}

.news-blog-card-content h4 a:hover{
    color: var(--theme-grey-color);
}

.news-blog-card-posted-date{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.news-blog-card-posted-date{
    font-size: 14px;
    color: var(--theme-grey-color);
}

.news-blog-card-posted-date span{
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

.news-blog-card-link{
    display: flex;
}

.news-blog-card-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    color: var(--theme-secondary-color);
    background: var(--theme-grey-color);
    transition: var(--transition);
}

.news-blog-card-link a .fa-solid{
    font-size: 14px;
}

.news-blog-card-link a span{
    font-size: 16px;
}

.news-blog-card-link a:hover{
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

/* ================================================== Footer Section */
.site-footer{
    background: var(--theme-secondary-color);
}

.footer-content{
    padding: 50px 0;
    border-top: rgba(255, 255, 255, 0.15) solid 1px;
    border-bottom: rgba(255, 255, 255, 0.15) solid 1px;
}

.footer-social-link ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.footer-social-link ul li a{
    padding-left: 0;
}

.footer-social-link ul li a::before{
    display: none;
}

.footer-social-link ul li .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 0;
    background: var(--theme-grey-color);
    color: var(--theme-secondary-color);
    transition: var(--transition);
    border: rgba(255, 255, 255, 0.3) solid 1px;
}

.footer-social-link ul li .fa-brands:hover{
    background: var(--theme-primary-color);
}

#menu-footer-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin-top: 30px;
}

#menu-footer-menu .menu-item a{
    font-size: 16px;
    color: var(--theme-primary-color);
}

#menu-footer-menu .menu-item a:hover{
    border-bottom: var(--theme-primary-color) solid 1px;
}

/* Copyright */
.copyright{
    padding: 20px 0;
}

.copyright p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #d9d9d9;
    font-family: var(--theme-font-WhyteInktrap);
}

.copyright p a{
    color: var(--theme-grey-color);
    transition: var(--transition);
}

.copyright p a:hover{
    color: var(--theme-grey-color);
}

/* ======================================================================================== */
/* ======================================================================================== */
/* ================================================== Breadcrumb Section */
.page-banner{
    padding: 200px 0 100px;
    background: var(--theme-secondary-color);
}

.page-breadcrumb{
    text-align: left;
}

.page-breadcrumb h1{
    display: block;
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb a{
    font-size: 16px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb span{
    font-size: 16px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-breadcrumb span .fa-solid{
    font-size: 12px;
}

/* ================================================== Page Content Section */
.page-content{
    padding-bottom: 80px;
    background: var(--theme-secondary-color);
}

.page-content .main-content .page-heading .page-subtitle{
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    color: var(--theme-primary-color);
}

.page-content .main-content .page-heading .page-title{
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-primary-color);
}


.page-content .main-content .page-header .page-title{
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-primary-color);
}


.page-content .main-content .page-description h2{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.page-content .main-content .page-description h3{
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-primary-color);
}

.page-content .main-content .page-description h4{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-primary-color);
}

.page-content .main-content .page-description h5{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-primary-color);
}

.page-content .main-content .page-description h6{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-primary-color);
}

.page-description p{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-description ul,
.page-description ol{
    margin-bottom: 30px;
}

.page-description li{
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.page-description p a{
    color: var(--theme-primary-color);
}

.single-post-thumbnail{
    position: relative;
    margin-bottom: 30px;
}

.single-post-thumbnail img{
    width: 100%;
    height: auto;
}

/* ================================================== About Us Page */
.about-page-hero-image img{
    display: block;
    width: 100%;
    height: auto;
}

.about-page-quotation{
    margin: 0 auto;
    max-width: 70%;
    padding: 200px 0;
    text-align: center;
}

.about-page-quotation p{
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    font-style: italic;
    color: var(--theme-primary-color);
    margin-bottom: 30px;
}

.about-page-quotation h4{
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-primary-color);
}


.about-page-description{
    padding: 50px 0;
}

.about-page-description h2{
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.about-page-description p{
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 15px;
    color: var(--theme-primary-color);
}

.about-page-teams{
    padding: 100px 0;
}

.about-page-teams h3{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.about-page-teams-card{
    position: relative;
    overflow: hidden;
}

.about-page-teams-card img{
    width: 100%;
    height: auto;
}

.about-page-teams-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;

    /* bottom to top black gradient */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0) 100%
    );

    color: #fff;
}
    

.about-page-teams-content h4{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.about-page-teams-content p{
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

/* ================================================== Contact Us Page */
.contact-page-template .page-content h1{
    color: var(--theme-primary-color);
}

.contact-page-template .contact-form label{
    display: block;
    font-size: 14px;
    color: var(--theme-primary-color);
}

.contact-page-template .contact-form .form-control{
    height: 40px;
    border: none;
    border-radius: 0;
    margin-bottom: 30px;
    font-family: var(--theme-font-Poppins);
    background: var(--theme-secondary-color);
    border-bottom: rgba(255, 255, 255, 0.3) solid 1px;
}

.contact-page-template .contact-form textarea.form-control{
    height: 150px;
}

.contact-page-template .contact-form .btn{
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    border-radius: 5px;
    background: var(--theme-primary-color);
}

.contact-page-template ul{
    margin-top: 30px;
}

.contact-page-template ul li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-page-template ul li span a{
    color: var(--theme-grey-color);
}

.contact-page-template ul li span .fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--theme-grey-color);
    color: var(--theme-secondary-color);
}

.contact-page-template ul li span{
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

/* ================================================== Archive Destination Page */
.destination-card{
    position: relative;
    padding: 50px;
    z-index: 1;
}

.destination-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.destination-card .container{
    position: relative;
    z-index: 9;
}

.destination-card-heading {
     min-height: 300px;
}

.destination-card-heading h4{
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.destination-card-heading p{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.destination-card-body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}



.destination-card-body p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
}

.destination-card-btn-link{
    display: flex;
}

.destination-card-btn-link a{
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}

/* ================================================== Single Destination Page */
.single-destination-template .page-banner{
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.destination-description{
    padding: 150px 0;
}

.destination-description p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
}

.destination-trips-section-title h2{
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.destination-trips-list{
    position: relative;
    list-style: none;
}

.destination-trips-list::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--theme-primary-color);
}

.destination-trips-list .trip-item{
    position: relative;
    margin-bottom: 100px;
}

.destination-trips-list .trip-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--theme-primary-color);
}

.destination-trips-thumbnail img{
    display: inline-block;
    width: 300px;
    height: auto;
}

.destination-trips-list .trip-item:nth-child(even) .destination-trips-thumbnail{
    padding-left: 50px;
}

.destination-trips-list .trip-item:nth-child(odd) .destination-trips-thumbnail{
    padding-right: 50px;
    text-align: right;
}

.destination-trips-card h4{
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.destination-trips-card p{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--theme-primary-color);
}

.destination-trips-card-action{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.destination-trips-card-price span{
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-primary-color);
}

.destination-trips-card-price span:last-child{
    margin-top: 5px;
    font-size: 36px;
    font-weight: 700;
}

.destination-trips-card-book .btn{
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-secondary-color);
    background: var(--theme-primary-color);
}


.destination-trips-list .trip-item:nth-child(odd) .destination-trips-card{
     padding-left: 50px;
}

.destination-trips-list .trip-item:nth-child(even) .destination-trips-card{
    padding-right: 50px;
    text-align: right;
}

/* ================================================== Book a Flight Page */
.flight-information{
    padding: 30px;
    padding-bottom: 1px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.1);
}

.person-information{
    padding: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.1);
}

.book-a-flight-form h4{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--theme-font-WhyteInktrap);
    color: var(--theme-black-color);
}

.book-a-flight-form .wpcf7-form-control-wrap{
    display: block;
    position: relative;
}

.book-a-flight-form .wpcf7-not-valid-tip{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: red;
}

.book-a-flight-form  .form-control-radio{
    display: inline-block;
    margin: 15px 0;
    padding: 15px 20px 15px 5px;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-black-color);

}

.book-a-flight-form .form-control{
    height: 55px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 30px;
    background: var(--theme-light-color);
    border: var(--theme-light-color) solid 1px;
    font-family: var(--theme-font-Poppins);
}

.book-a-flight-form textarea.form-control{
    height: 200px;
}

.book-a-flight-form .btn{
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 10px;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

.show-sm{
    display: none;
}

/* ================================================== Single Post */
.relate-posts .sub-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: rgba(255, 255, 255, 0.5) solid 1px;
}

.relate-posts-news-blog-card{
    padding: 30px;
    border: rgba(255, 255, 255, 0.3) solid 1px;
    margin-bottom: 30px;
}

.relate-posts-news-blog-card-content h4 a{
    font-size: 24px;
    color: var(--theme-primary-color);
}

.relate-posts-posted-date-category{
    margin: 10px 0;
}

.relate-posts-posted-date-category span{
    font-size: 12px;
    color: var(--theme-primary-color);
}

.relate-posts-news-blog-read-more-btn{
    font-size: 14px;
    color: var(--theme-primary-color);
}

/* ================================================== Responsive */
/* Large */
@media (max-width: 1199px){
    

}

/* Medium */
@media (max-width: 991px){


}

/* Small */
@media (max-width: 767px){
    #mega-menu-wrap-header-menu .mega-menu-toggle{
        background: var(--theme-grey-color);
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right{
        background: var(--theme-grey-color);
        border-radius: 3px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box{
        width: 30px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after{
        width: 30px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open + #mega-menu-header-menu{
        background: var(--theme-grey-color);
        padding: 30px 15px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open ~ button.mega-close{
        background: var(--theme-grey-color);
        left: calc(min(100vw - 40px, 260px));
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
        padding: 5px 15px;
        color: var(--theme-primary-color);
        border: var(--theme-grey-color) solid 1px;
        border-radius: 5px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,{
        color: var(--theme-primary-color);
        border: var(--theme-primary-color) solid 1px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
        color: var(--theme-primary-color);
    }


    .side-menu-wrapper{
        top: 30px;
        left: 15px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        flex-wrap: wrap;
    }

    .side-menu-block{
        width: 100%;
        padding-left: 15px;
    }

    #menu-large-side-menu .menu-item a{
        font-size: 24px;
    }

    #menu-footer-menu{
        flex-wrap: wrap;
    }

}

/* Extra Small*/
@media (max-width: 574px){

    .show-side-menu{
        right: inherit;
        left: 0;
        transform: translateX(-100%);
        padding: 30px;
        height: 100vh;
        width: 300px;
    }

    .hide-side-nav{
        top: 15px;
        right: 15px;
    }

    .side-social-link{
        left: 30px;
        bottom: 30px;
    }

    .banner{
        position: relative;
        overflow: hidden;
    }

    .banner-video{
        margin: 0 auto;
        width: auto;
        height: 100vh;
        margin-bottom: -5px;
    }

    .banner-content-title{
        font-size: 42px;
    }

    .banner-content-description{
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .banner-content-link a{
        padding: 15px 20px;
    }

    .banner-achievement{
        bottom: 15px;
    }

    .achievement-card{
        height: 80px;
        margin-top: 15px;
    }

    .achievement-card-value{
        font-size: 18px;
    }

    .achievement-card-title{
        font-size: 14px;
    }


    /* Welcome Section */
    .welcome{
        padding: 70px 0;
    }
    
    .welcome-thumbnail{
        margin-bottom: 30px;
    }

    .welcome-title{
        font-size: 36px;
        line-height: 42px;
    }

    .welcome-description,
    .welcome-list-content p{
        font-size: 16px;
        line-height: 30px;
    }

    .welcome-list-content h4{
        font-size: 20px;
    }

    /* Title Section */
    .section-title h2{
        font-size: 36px;
    }

    .section-title p{
        font-size: 16px;
        line-height: 30px;
    }

    /* Trips Section */
    .trips{
        padding: 70px 0 50px;
    }

    .trips .section-title p{
        max-width: 100%;
    }

    /* Destinations Section */
    .destinations{
        padding: 70px 0 50px;
    }

    .destinations .section-title{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .destinations-card{
        margin-bottom: 30px;
    }

    /* Why Choose Us Section */
    .whychooseus{
        padding: 50px 0;
    }

    /* Testimonials Section */
    .testimonials{
        padding-top: 70px;
        padding-bottom: 1px;
    }

    /* News & Blogs */
    .news-blog{
        padding: 70px 0 50px;
    }

    .news-blog .section-title{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .news-blog-card{
        margin-bottom: 30px;
    }

    /* Make Your Trips */
    .make-your-trips-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .make-your-trips-content h2{
        font-size: 36px;
    }

    /* Footer Section */
    .footer-content-block h4{
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* ============================== Page */
    .page-banner{
        padding: 150px 0 50px;
    }

    .page-breadcrumb h1{
        font-size: 36px;
    }

    /* ============================== Single Trip Page */
    .destination-trips-list .trip-item{
        margin-bottom: 50px;
    }

    .destination-trips-list .trip-item::before{
        left: 8px;
    }

    .destination-trips-list::before{
        left: 8px;
        transform: translateX(0);
    }

    .destination-trips-card h4{
        margin-top: 30px;
        line-height: 30px;
    }

    .destination-trips-card-action{
        margin-top: 30px;
    }

    .destination-trips-list .trip-item:nth-child(odd) .destination-trips-card{
        padding-left: 30px;
    }

    .destination-trips-list .trip-item:nth-child(even) .destination-trips-card{
        padding-left: 30px;
        padding-right: 0;
        text-align: left;
        margin-bottom: 30px;
    }

    .destination-trips-list .trip-item:nth-child(odd) .destination-trips-thumbnail{
        padding-right: 0;
        padding-left: 30px;
    }

    .destination-trips-list .trip-item:nth-child(even) .destination-trips-thumbnail{
        padding-left: 30px;
    }

    .destination-trips-thumbnail img{
        width: 100%;
        height: auto;
    }

    .show-lg{
        display: none;
    }

    .show-sm{
        display: block;
    }

    /* Pages */
    .page-banner{
        padding: 200px 0 100px;
    }
    
}

/* Extra Small*/
@media (max-width: 460px){
    
}