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

:root {
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #1C1B1F;
    --theme-blue-color: #4053F5;
    --theme-blue-dark-color: #081E2A;
    --theme-yellow-color: #FBA045;
    --theme-grey-color: #4F545A;
    --theme-grey-light-color: #83827F;
    --theme-light-color: #E0E4E8;
    --theme-background-color: #F1F1F1;
    --theme-font-poppins: "Poppins", sans-serif;
    --theme-font-roboto: "Roboto", sans-serif;
    --transition: all ease-in-out 0.3s;
}

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


/* ================================================== 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: inherit;
    font-family: var(--theme-font-roboto);
}

a {
    display: inline-block;
    text-decoration: none;
    line-height: inherit;
}

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

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


/* ================================================== Go To Top Section */
#back-top {
    display: block;
    position: fixed;
    bottom: 10px;
    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-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
}

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

/* ================================================== Notification Section */
.notification {
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    padding: 10px 0;
    overflow: hidden;
}

.scroll-text {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    font-size: 16px;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

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

/* ================================================== Header Section */
.site-header-top {
    padding: 15px 0;
    background: var(--theme-blue-color);
}

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

.site-header-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    list-style: none;
    color: var(--theme-primary-color);
}

.site-header-top-contact .fa-solid {
    font-size: 12px;
    color: var(--theme-primary-color);
}

.site-header-top-contact a {
    font-size: 14px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

.site-header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-menu-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.header-top-menu-list .header-top-menu-list-item a {
    position: relative;
    padding: 0 10px;
    font-size: 14px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.header-top-menu-list .header-top-menu-list-item a:hover {
    color: var(--theme-yellow-color);
}


.header-top-menu-list .header-top-menu-list-item a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 10px;
    width: 1px;
    transform: translateY(-50%);
    background: var(--theme-primary-color);
}

.site-header-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.site-header-top-social li a .fa-brands {
    font-size: 14px;
    color: var(--theme-primary-color);
}


/* Header Bottom */
.site-header-bottom {
    padding: 0;
    background: var(--theme-primary-color);
}

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

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

.site-header-navigation {
    display: flex;
    width: 100%;
    gap: 15px;
}

.header-main-menu-list {
    display: flex;
    width: 100%;
}

.header-main-menu-list-item {
    position: relative;
    list-style: none;
}

.header-main-menu-list-item>a {
    position: relative;
    padding: 35px 20px;
    font-size: 16px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.header-main-menu-list-item.has-children>a::before {
    content: '\f0d7';
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 15px;
    font-size: 12px;
    transform: translateY(-50%);
    color: var(--theme-secondary-color);
    font-family: 'fontawesome';
}

.header-main-menu-list-item.has-children>.header-main-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: auto;
    background: var(--theme-blue-color);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    display: block;
}

.header-main-menu-list-item.has-children:hover>.header-main-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-main-menu-list-item.has-children>.header-main-menu-list>.header-main-menu-list-item {
    position: relative;
    list-style: none;
}

.header-main-menu-list-item.has-children>.header-main-menu-list>.header-main-menu-list-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-primary-color);
    border-top: rgba(255, 255, 255, 0.1) solid 1px;
    background: var(--theme-blue-color);
    transition: var(--transition);
    font-family: var(--theme-font-poppins);
}

.header-main-menu-list-item.has-children>.header-main-menu-list>.header-main-menu-list-item>a:hover {
    color: var(--theme-yellow-color);
}

/* ========== Header Auth ==========*/
.site-header-auth {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.site-header-auth::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}

.site-header-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: none;
}

.site-header-login-register {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    background: var(--theme-blue-color);
}

.site-header-login-register span {
    color: var(--theme-primary-color);
}

.site-header-login-register a {
    font-size: 14px;
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.site-header-login-register a:hover {
    color: var(--theme-yellow-color);
}

.site-header-buttons {
    display: flex;
    align-items: center;
}

.menu-toggle-btn {
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    z-index: 9999;
    background: var(--theme-primary-color);
    transform: translateX(-100%);
    transition: var(--transition);
    padding: 30px;
    overflow-y: scroll;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

/* Aside Menu scrollbar */
.aside::-webkit-scrollbar {
    width: 15px;
}

.aside::-webkit-scrollbar-track {
    background: var(--theme-primary-color);
}

.aside::-webkit-scrollbar-thumb {
    background-color: var(--theme-blue-color);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.aside::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-blue-color);
}

.aside.active {
    transform: translateX(0);
}

.aside-blur-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
}

.aside-blur-bg.active {
    transform: translateX(0);
}

.aside-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

.header-aside-menu-list {
    margin-top: 100px;
}

.header-aside-menu-list .header-aside-menu-list-item {
    list-style: none;
}

.header-aside-menu-list .header-aside-menu-list-item a {
    color: var(--theme-blue-color);
}

.aside-logo {
    display: block;
    margin: 0;
    width: 100%;
    text-align: center;
}

.aside-logo a img {
    width: 100px;
    height: 100px;
}

/* ================================================== Banner Section */
.banner {
    position: relative;
    background: url('../images//page-banner-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    height: calc(100vh - 125px);
}

.banner-wrapper {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    z-index: 9;
}

.banner-form-nav nav {
    display: inline-block;
}

.banner-form-nav nav>.nav-tabs>.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 0;
    font-weight: 600;
    color: var(--theme-grey-color);
    background: var(--theme-primary-color);
    transition: var(--transition);
    border: none;
    border-right: var(--theme-light-color) solid 1px;
}

.banner-form-nav nav>.nav-tabs>.nav-link.active {
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
}

.banner-form-nav nav>.nav-tabs>.nav-link:first-child {
    border-top-left-radius: 10px;
}

.banner-form-nav nav>.nav-tabs>.nav-link:last-child {
    border-top-right-radius: 10px;
    border-right: none;
}

.banner-form-nav nav>.nav-tabs>.nav-link .fa-solid {
    font-size: 12px;
}

.banner-form-nav nav>.nav-tabs>.nav-link span {
    font-family: var(--theme-font-poppins);
    font-size: 16px;
}

.banner-form-flight-nav .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.banner-form-flight-nav .nav-tabs .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    font-family: var(--theme-font-poppins);
    color: var(--theme-grey-light-color);
    border: var(--theme-grey-light-color) solid 1px;
    background: transparent;
    text-transform: uppercase;
}

.banner-form-flight-nav>.nav-tabs>.nav-link.active {
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    border-color: var(--theme-yellow-color);
}

.banner-form-content>.tab-content {
    padding: 30px;
    padding-bottom: 25px;
    border-radius: 10px;
    border-top-left-radius: 0;
    background: var(--theme-primary-color);
    border-top: var(--theme-light-color) solid 1px;
    box-shadow: 0 8px 30px rgb(0, 0, 0, 0.5);
}

.banner-form-content>.tab-content .tab-pane .form {
    position: relative;
}

.banner-form-content>.tab-content .form-group-checkbox {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 270px;
    display: flex;
    gap: 5px;
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item {
    width: 50%;
    height: 45px;
    padding: 5px;
    font-size: 14px;
    border-radius: 50px;
    color: var(--theme-primary-color);
    border: var(--theme-blue-color) solid 1px;
    font-family: var(--theme-font-poppins);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item input[type="checkbox"] {
    accent-color: var(--theme-primary-color);
}

.banner-form-content>.tab-content .form-group-checkbox .fare-item:has(input[type="checkbox"]:checked) {
    background: var(--theme-primary-color);
    color: var(--theme-secondary-color);
}

.banner-form .row {
    padding-left: 10px;
    padding-right: 10px;
}

.banner-form .multicity-row {
    margin-top: 8px;
}

.banner-form .row>div {
    padding-left: 4px;
    padding-right: 4px;
}

.banner-form .form-group {
    margin-bottom: 0;
    position: relative;
}

.banner-form .form-group label {
    font-size: 16px;
    line-height: 36px;
    color: var(--theme-secondary-color);
}

.banner-form .form-group .fa-solid {
    position: absolute;
    top: 23px;
    left: 20px;
    font-size: 14px;
    color: var(--theme-grey-light-color);
}

.banner-form .form-group .form-control {
    margin-bottom: 0;
    height: 60px;
    padding-left: 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 15px;
    font-family: var(--theme-primary-color);
    color: var(--theme-grey-light-color);
    border: var(--theme-grey-light-color) solid 1px;
    text-align: left;
}

.banner-form .form-group .form-control::placeholder {
    color: var(--theme-grey-light-color);
}

.banner-form .search-form-group {
    display: flex;
    justify-content: flex-end;
}

.banner-form .form-group .btn-form-search {
    position: relative;
    margin-top: 10px;
    padding: 15px 25px 15px 30px;
    border-radius: 50px;
    border: none;
    background: var(--theme-yellow-color);
}

.banner-form .form-group .btn-form-search span {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-poppins);
}

.banner-form .form-group .btn-form-search .fa-solid {
    top: 22px;
    left: 30px;
    display: inline-block;
    font-size: 16px;
    color: var(--theme-primary-color);
}

.banner-form .form-group-add-trip {
    margin-bottom: 15px;
}

.banner-form .form-group .btn-add-trip {
    position: relative;
    padding: 20px 30px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    background: #0d6efd;
}

.banner-form .form-group .btn-add-trip span {
    margin-left: 5px;
    color: var(--theme-primary-color);
    font-size: 14px;
    font-weight: 500;
}

.banner-form .form-group .btn-add-trip .fa-solid {
    top: 23px;
    display: inline-block;
    font-size: 12px;
    color: var(--theme-primary-color);
}

.banner-form .form-group .btn-remove-trip {
    position: relative;
    padding: 20px 30px;
    border-radius: 0;
    border: none;
    background: var(--theme-yellow-color);
}

.banner-form .form-group .btn-remove-trip span {
    margin-left: 5px;
    color: var(--theme-primary-color);
    font-size: 14px;
    font-weight: 500;
}

.banner-form .form-group .btn-remove-trip .fa-solid {
    top: 23px;
    display: inline-block;
    font-size: 12px;
    color: var(--theme-primary-color);
}

/* ================================================== User Contact Information Modal */
#showContactModal .modal-dialog .modal-content {
    background: var(--theme-primary-color);
    border-radius: 0;
    border: none;
}

#showContactModal .modal-dialog .modal-content .modal-header {
    background: var(--theme-blue-color);
    border-radius: 0;
    border: none;
}

#showContactModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

#showContactModal .modal-dialog .modal-content .modal-body {
    padding: 25px;
    padding-bottom: 10px;
}

#showContactModal .modal-dialog .modal-content .modal-body .form-group {
    position: relative;
}

#showContactModal .modal-dialog .modal-content .modal-body .form-group .fa-solid {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

#showContactModal .modal-dialog .modal-content .modal-body .form-group .form-control {
    height: 50px;
    padding-left: 65px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    border-radius: 0;
}

#showContactModal .modal-dialog .modal-content .modal-body p {
    margin-bottom: 15px;
}

#showContactModal .modal-dialog .modal-content .modal-footer .btn-primary {
    padding: 15px 30px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    width: 100%;
    border: none;
}

/* ================================================== Travellers Modal */
#TravellersModal .modal-dialog .modal-content {
    background: var(--theme-primary-color);
    border-radius: 0;
    border: none;
    width: 400px;
    margin: auto;
}

#TravellersModal .modal-dialog .modal-content .modal-header {
    background: var(--theme-yellow-color);
    border-radius: 0;
    border: none;
}

#TravellersModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

#TravellersModal .modal-dialog .modal-content .modal-body {
    padding: 25px;
    ;
}

#TravellersModal .select2-container .select2-selection--single {
    height: 50px;
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__rendeyellow {
    line-height: 48px;
}

#TravellersModal .select2-container .select2-selection--single .select2-selection__rendeyellow {
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-grey-color);
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 10px;
}

#TravellersModal .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 24px;
    margin-right: 0;
    z-index: 9;
}

#TravellersModal .select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 0;
    height: 40px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 0;
    color: var(--theme-grey-light-color);
    text-align: left;
    outline: none;
    box-shadow: none;
}

#TravellersModal .select2-container--open .select2-dropdown--below {
    font-family: var(--theme-font-roboto);
    font-size: 16px;
}

#travellerBox .counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #eee;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

#travellerBox .counter-row .counter-btn {
    height: 40px;
    width: 40px;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: none;
    font-weight: 700;
}

#TravellersModal .traveller-notes {
    margin: 10px 0;
    padding: 10px;
    background-color: #d9edf7;
    border: #bce8f1 1px solid;
    color: #31708f;
    font-size: 14px;
}

#TravellersModal .cabin-class-type {
    margin-top: 10px;
}

#TravellersModal .cabin-class-type label {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

#TravellersModal .cabin-class-type input[type="radio"] {
    position: relative;
    top: 3px;
    transform: scale(1.2);
    margin-right: 4px;
    cursor: pointer;
    accent-color: var(--theme-yellow-color);
}

#TravellersModal .modal-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: none;
}

#TravellersModal .modal-footer .btn-primary {
    padding: 10px 20px;
    font-weight: 500;
    font-family: var(--theme-font-roboto);
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: none;
    border-radius: 0;
}

#TravellersModal .modal-footer .btn-primary span {
    font-size: 16px;
}

#TravellersModal .modal-footer .btn-primary .fa-solid {
    font-size: 14px;
}

#showThankModal .modal-dialog .modal-content .modal-header {
    justify-content: center;
    text-align: center;
    background: #27ae60;
    padding: 15px;
}

#showThankModal .modal-dialog .modal-content .modal-header .modal-title {
    text-transform: uppercase;
    color: var(--theme-primary-color);
    font-weight: 700;
}

#showThankModal .modal-dialog .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    gap: 15px;
    padding: 30px;
}

#showThankModal .modal-dialog .modal-content .modal-body .fa-solid {
    font-size: 150px;
    color: #27ae60;
}

#showThankModal .modal-dialog .modal-content .modal-body p {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-roboto);
}

#showThankModal .modal-dialog .modal-content .modal-footer {
    justify-content: center;
}

#showThankModal .modal-dialog .modal-content .modal-footer .btn-primary {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    background: #27ae60;
    border-color: #27ae60;
    border-radius: 0;
}

#SearchingModal .modal-dialog .modal-content {
    border: var(--theme-primary-color) solid 10px;
    background: #3199da;
    border-radius: 0;
}

#SearchingModal .modal-dialog .modal-content .modal-body {
    padding: 0;
    border-radius: 0;
}

#SearchingModal .modal-dialog .modal-content .modal-body img {
    width: 250px;
    height: auto;
}

#SearchingModal .modal-dialog .modal-content .modal-body h2 {
    padding: 15px 0;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

/* ========================================================== Select2 */
.select2-container--default .select2-selection--single {
    border: var(--theme-grey-light-color) solid 1px;
    border-radius: 15px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: var(--theme-primary-color);
}

.select2-container .select2-selection--single {
    height: 60px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 57px;
    padding-left: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--theme-font-poppins);
    color: var(--theme-grey-light-color);
}

.select2-container .select2-selection--single .select2-selection__rendeyellow {
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendeyellow {
    line-height: 47px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 0;
    height: 35px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 0;
    color: var(--theme-grey-light-color);
    font-weight: 600;
    font-family: var(--theme-font-poppins);
    text-align: left;
    outline: none;
    box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 15px;
    right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--theme-grey-light-color) transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    margin-right: 0;
    z-index: 9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    box-shadow: none;
}

.select2-results__option {
    color: #666;
}

/* Customize Calendar */
.flatpickr-months .flatpickr-month {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    height: 60px;
    padding: 12px 0;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    height: 60px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flatpickr-months .flatpickr-prev-month .fa-solid,
.flatpickr-months .flatpickr-next-month .fa-solid {
    color: var(--theme-primary-color);
}

.flatpickr-weekdays {
    background: var(--theme-light-color);
    height: 50px;
}

.flatpickr-weekdays .flatpickr-weekday {
    color: var(--theme-secondary-color);
}

.flatpickr-day.today {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
}

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

.welcome-thumbnail {
    position: relative;
}

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

.welcome-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-yellow-color);
}

.welcome-title {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.welcome-title span {
    color: var(--theme-blue-color);
    font-family: var(--theme-font-poppins);
}

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

.welcome-description span {
    color: var(--theme-yellow-color);
    font-family: var(--theme-font-roboto);
}

.welcome-list li {
    list-style: none;
    margin-bottom: 30px;
}

.welcome-list-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.welcome-list-content h4 .fa-solid {
    color: var(--theme-blue-color);
    font-size: 16px;
}

.welcome-list-content h4 span {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.welcome-list-content p {
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-roboto);
}

.welcome-link {
    display: flex;
}

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

.welcome-link a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 2px;
    font-size: 9px;
}

.welcome-link a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-roboto);
}

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

/* ================================================== Title Section */
.section-title {
    margin-bottom: 50px;
}

.section-title h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--theme-yellow-color);
    font-family: var(--theme-font-roboto);
}

.section-title h2 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.section-title a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

.section-title a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 2px;
    font-size: 9px;
    transition: var(--transition);
}

.section-title a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-roboto);
}

.section-title a:hover {
    background: var(--theme-yellow-color);
}

/* ================================================== Destinaions Section */
.destinations {
    padding-bottom: 30px;
    background: var(--theme-primary-color);
}

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

.destinations-card {
    transition: var(--transition);
}

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

.destinations-card-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.destinations-card-country {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
}

.destinations-card-country .fa-solid {
    font-size: 10px;
}

.destinations-card-country span {
    font-size: 14px;
}

.destinations-card-content {
    position: relative;
    margin: 0 auto;
    transform: translateY(-50px);
    width: calc(100% - 50px);
    z-index: 9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.11);
    background: var(--theme-primary-color);
    transition: var(--transition);
    overflow: hidden;
}

.destinations-card:hover .destinations-card-content {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.destinations-card-content h4 a {
    position: relative;
    display: block;
    padding: 10px 30px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--theme-font-poppins);
    color: var(--theme-primary-color);
    z-index: 1;
}

.destinations-card-content h4 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 80%;
    height: 100%;
    background: var(--theme-blue-color);
    transition: var(--transition);
    transform: skew(-30deg);
    z-index: -1;
}

.destinations-card:hover .destinations-card-content h4 a::before {
    background: var(--theme-yellow-color);
}

.destinations-card-link a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-yellow-color);
    font-family: var(--theme-font-roboto);
    transition: var(--transition);
}

.destinations-card:hover .destinations-card-link a {
    color: var(--theme-blue-color);
}

.destinations-card:hover .destinations-card-link a:hover {
    color: var(--theme-yellow-color);
}

.destinations-card-link-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.destinations-card-link-icon a .fa-solid {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    border: var(--theme-light-color) solid 5px;
    transition: var(--transition);
}

.destinations-card:hover .destinations-card-link-icon a .fa-solid {
    background: var(--theme-yellow-color);
}

/* ================================================== Activities Section */
.activities {
    padding: 80px 0;
    background: var(--theme-blue-color);
}

.activities .section-title {
    text-align: center;
}

.activities .section-title h4,
.activities .section-title h2 {
    color: var(--theme-primary-color);
}

.activities-card {
    padding: 30px;
    border-radius: 10px;
    background: var(--theme-primary-color);
    text-align: center;
}

#activitiesSlider .activities-card-thumbnail{
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.page-activity-packages .activities-card{
    padding: 15px;
    border-radius: 15px;
    background: var(--theme-primary-color);
    text-align: center;
}

.page-activity-packages .activities-card-thumbnail{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.page-activity-packages .activities-card-thumbnail img{
    width: 100%;
    height: auto;
}

.activities-card-content h4 a {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-poppins);
    transition: var(--transition);
}

.activities-card-content h4 a:hover {
    color: var(--theme-blue-color);
}

#activitiesSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#activitiesSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

/* ================================================== Packages Section */
.packages {
    padding: 100px 0 70px;
    background: var(--theme-primary-color);
}

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

.packages-card {
    margin-bottom: 30px;
    transition: var(--transition);
}

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

.packages-card-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.packages-card-content {
    position: relative;
    padding: 20px;
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--theme-primary-color);
    transition: var(--transition);
}

.packages-card:hover .packages-card-content {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.packages-card-destination {
    font-size: 14px;
    font-weight: 300;
    color: var(--theme-grey-light-color);
}

.packages-card-title {
    margin: 5px 0 10px;
}

.packages-card-title a {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--theme-font-poppins);
    color: var(--theme-blue-dark-color);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 30px;
}

.packages-card-title a:hover {
    color: var(--theme-yellow-color);
}

.packages-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.packages-card-rating .rating {
    font-size: 12px;
    color: var(--theme-yellow-color);
}

.packages-card-rating .text {
    font-size: 12px;
    color: var(--theme-grey-light-color);
}

.packages-card-duration {
    margin: 15px 0;
}

.packages-card-duration ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.packages-card-duration ul li .fa-regular {
    font-size: 14px;
    color: var(--theme-yellow-color);
    margin-right: 5px;
}

.packages-card-duration ul li span {
    font-size: 14px;
    color: var(--theme-grey-light-color);
}

.packages-card-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    border-top: var(--theme-light-color) solid 1px;
    padding-top: 15px;
    margin-top: 15px;
}

.packages-card-price strong {
    display: block;
    color: var(--theme-grey-color);
}

.packages-card-price span {
    font-size: 16px;
    color: var(--theme-grey-light-color);
}

.packages-card-price span:last-child {
    color: var(--theme-yellow-color);
}

.packages-card-view-details {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

.packages-card-view-details:hover {
    background: var(--theme-yellow-color);
}

/* ================================================== Why Chooose Us Section */
.whychooseus {
    padding-bottom: 130px;
}

.whychooseus-thunbnail {
    position: relative;
    padding-right: 30px;
}

.whychooseus-thunbnail .main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.whychooseus-thunbnail .secondary-img {
    position: absolute;
    bottom: -50px;
    left: 30px;
    width: calc(100% - 260px);
    height: auto;
    border-radius: 30px;
    border: var(--theme-primary-color) solid 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.whychooseus-experience {
    position: absolute;
    bottom: 30px;
    right: 60px;
    width: 140px;
    height: 170px;
    border-radius: 15px;
    background: var(--theme-primary-color);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 9;
}

.whychooseus-experience::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: var(--theme-yellow-color) solid 1px;
    border-radius: 10px;
}

.whychooseus-experience h4 {
    font-weight: 700;
    font-family: var(--theme-font-poppins);
    color: var(--theme-blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.whychooseus-experience h4 .text-1 {
    font-size: 60px;
    line-height: 60px;
}

.whychooseus-experience h4 .text-2 {
    font-size: 18px;
}

.whychooseus-experience .text-3 {
    font-size: 14px;
    color: var(--theme-grey-color);
}

.whychooseus-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin-bottom: 30px;
}

.whychooseus-list-icon .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    font-size: 24px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    background: var(--theme-primary-color);
    color: var(--theme-yellow-color);

}

.whychooseus-list-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whychooseus-list-content h4 .fa-regular {
    font-size: 18px;
    color: var(--theme-yellow-color);
}

.whychooseus-list-content h4 span {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-secondary-color);
}

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

/* ================================================== Achievement Section */
.achievements {
    position: relative;
    padding: 100px 0;
    background: var(--theme-background-color);
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--theme-blue-color);
}

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

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

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

.achievements .section-title p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 36px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

.achievements .section-title a {
    color: var(--theme-grey-color);
    background: var(--theme-primary-color);
}

.achievements .section-title a .fa-solid {
    border-color: var(--theme-grey-color);
}

.achievements .section-title a:hover {
    background: var(--theme-yellow-color);
}

.achievements .section-title a:hover {
    color: var(--theme-primary-color);
}

.achievements .section-title a:hover .fa-solid {
    border-color: var(--theme-primary-color);
}

.achievements-card {
    padding: 15px;
    border-radius: 20px;
    background: var(--theme-primary-color);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.achievements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    background: var(--theme-yellow-color);
}

.achievements-card-content {
    padding: 30px 15px;
    border: 2px dashed #D9D9D9;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    min-height: 250px;
    transition: var(--transition);
}

.achievements-card:hover .achievements-card-content {
    border-color: var(--theme-primary-color);
}

.achievements-card-content .fa-solid,
.achievements-card-content .fa-regular {
    font-size: 30px;
    color: var(--theme-yellow-color);
    transition: var(--transition);
}

.achievements-card-content h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-blue-color);
    transition: var(--transition);
}

.achievements-card-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-grey-color);
    transition: var(--transition);
}

.achievements-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 42px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-blue-color);
    transition: var(--transition);
}

.achievements-card:hover .achievements-card-content .fa-solid,
.achievements-card:hover .achievements-card-content .fa-regular,
.achievements-card:hover .achievements-card-content h3,
.achievements-card:hover .achievements-card-content p,
.achievements-card:hover .achievements-card-content h4 {
    color: var(--theme-primary-color);
}

#achievementsSlider .slide-item {
    padding: 15px 0;
}

#achievementsSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#achievementsSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#achievementsSlider .owl-nav button.owl-prev:hover,
#achievementsSlider .owl-nav button.owl-next:hover {
    background: var(--theme-blue-color);
}

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

.testimonials .section-title h2 {
    max-width: 70%;
}

.testimonials .section-title p {
    margin: 30px 0;
    font-size: 18px;
    line-height: 36px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-roboto);
}

.testimonials .testimonial-link {
    display: flex;
}

.testimonial-card-body {
    position: relative;
    padding: 50px;
    border-radius: 15px;
    background: var(--theme-primary-color);
    border-bottom: var(--theme-blue-color) solid 3px;
}

.testimonial-card-quote {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--theme-blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-right: 20px;
}

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

.testimonial-card-stars .fa-solid {
    color: var(--theme-yellow-color);
}

.testimonial-card-triangle {
    position: absolute;
    bottom: -70px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: var(--theme-blue-color);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.testimonial-card-content {
    margin-top: 15px;
}

.testimonial-card-content p {
    font-size: 16px;
    line-height: 30px;
    font-family: var(--theme-font-roboto);
    color: var(--theme-grey-color);
}

.testimonial-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-left: 90px;
}

.testimonial-card-photo {
    position: relative;
    overflow: hidden;
    padding: 5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    border: var(--theme-yellow-color) solid 1px;
}

#testimonialsSlider .testimonial-card-photo img {
    width: 100%;
    height: auto;
}

.testimonial-card-title h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--theme-font-poppins);
    color: var(--theme-secondary-color);
}

.testimonial-card-title p {
    font-size: 16px;
    font-weight: 400px;
    font-family: var(--theme-font-poppins);
    color: var(--theme-grey-color);
}

#testimonialsSlider .owl-nav button.owl-prev {
    position: absolute;
    top: calc(100% - 45px);
    transform: translateY(-50%);
    right: 55px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

#testimonialsSlider .owl-nav button.owl-next {
    position: absolute;
    top: calc(100% - 45px);
    transform: translateY(-50%);
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

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

/* ================================================== Explore Section */
.explore {
    padding: 70px 0;
    background: url("../images/explore-bg.jpg") no-repeat fixed center center;
    background-size: cover;
}

.explore-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.explore .section-title h2 {
    font-size: 48px;
    line-height: 60px;
    color: var(--theme-primary-color);
}

.explore-content-contact {
    display: flex;
    margin-top: 30px;
}

.explore-content-contact a {
    border-radius: 50px;
    padding: 15px 40px;
    color: var(--theme-primary-color);
    border: var(--theme-primary-color) solid 1px;
    background: transparent;
}

.explore-thumbnails {
    position: relative;
    width: 400px;
    height: 400px;
    transform: rotate(45deg);
    transition: var(--transition);
}

.explore-thumbnails-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.explore-thumbnails-item:first-child {
    top: 0;
    left: 0;
    background: red;
    border-bottom-right-radius: 0;
}

.explore-thumbnails-item:nth-child(2) {
    top: 0;
    right: 0;
    background: orange;
    border-bottom-left-radius: 0;
}

.explore-thumbnails-item:nth-child(3) {
    bottom: 0;
    left: 0;
    background: blue;
    border-top-right-radius: 0;
}

.explore-thumbnails-item:last-child {
    bottom: 0;
    right: 0;
    background: green;
    border-top-left-radius: 0;
}

.explore-thumbnails-item img {
    position: relative;
    transform: rotate(-45deg);
    transition: var(--transition);
}


.explore-thumbnails-item:hover {
    transform: scale(1.2);
    z-index: 1;
}

.explore-thumbnails-item:hover img {
    transform: rotate(-45deg) scale(1.5);
}

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

.news-blog .section-title {
    text-align: center;
}

.news-blog-card {
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
}

.news-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.3);
}

.news-blog-card-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-blog-card-thumbnail a {
    display: block;
    width: 100%;
}

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

.news-blog-card-category {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 10px 15px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-blog-card-category .fa-solid {
    font-size: 12px;
}

.news-blog-card-category a {
    font-size: 14px;
    color: var(--theme-primary-color);
}

.news-blog-card-content {
    padding: 30px 40px;
    border-radius: 0 0 10px 10px;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
}

.news-blog-card-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    list-style: none;
}

.news-blog-card-date li .fa-regular {
    font-size: 12px;
    color: var(--theme-yellow-color);
}

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

.news-blog-card-title a {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
    transition: var(--transition);
}

.news-blog-card-title a:hover {
    color: var(--theme-yellow-color);
}

.news-blog-card-excerpt p {
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-grey-color);
}

.news-blog-card-link {
    display: flex;
    margin-top: 15px;
}

.news-blog-card-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--theme-yellow-color);
}

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

.news-blog-card-link a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 50%;
    border: var(--theme-yellow-color) solid 2px;
}

/* ================================================== Get Started Section */
.get-started {
    padding-bottom: 50px;
}

.get-started-wrapper {
    padding: 50px;
    border-radius: 15px;
    background: var(--theme-blue-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.get-started-icon {
    width: 100px;
    height: 100px;
}

.get-started-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-poppins);
}

.get-started-content p {
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

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

.get-started-btn-link a .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: var(--theme-secondary-color) solid 2px;
    font-size: 9px;
    transition: var(--transition);
}

.get-started-btn-link a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-roboto);
}

.get-started-btn-link a:hover {
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

.get-started-btn-link a:hover span {
    border-color: var(--theme-primary-color);
}

.get-started-btn-link a:hover .fa-solid {
    border-color: var(--theme-primary-color);
}

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

.footer-content {
    padding: 50px 0;
}

.footer-content-block {
    margin-top: 30px;
}

.footer-content-block p {
    margin: 20px 0 30px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

.footer-content-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
}

.footer-content-block-links ul li {
    list-style: none;
    line-height: 36px;
}

.footer-content-block-links ul li a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-primary-color);
    transition: var(--transition);
    font-family: var(--theme-font-roboto);
}

.footer-content-block-links ul li a::before {
    content: '\f105';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    font-size: 12px;
    font-family: 'fontawesome';
}

.footer-content-block-links ul li a:hover {
    color: var(--theme-primary-color);
}

.footer-social-link h4 {
    margin-bottom: 15px;
}

.footer-social-link ul {
    display: flex;
    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: 5px;
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
    transition: var(--transition);
}

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

.footer-contact-block ul {
    margin-top: 30px;
}

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

.footer-contact-block ul li span a {
    color: var(--theme-primary-color);
}

.footer-contact-block ul li span .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
}

.footer-contact-block ul li span {
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-roboto);
}

.site-footer-logo img {
    width: 100%;
    height: auto;
}

.associated-images img {
    width: auto;
    height: 40px;
    border-radius: 5px;
}

/* Copyright */
.copyright {
    padding: 20px 0;
    border-top: rgba(255, 255, 255, 0.15) solid 1px;
}

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

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

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

/* ================================================== Breadcrumb Section */
.page-banner {
    position: relative;
    padding: 50px 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-banner .container {
    position: relative;
    z-index: 9;
}

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

.page-breadcrumb h1 {
    display: block;
    margin-bottom: 0;
    font-size: 36px;
    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: 80px 0;
    background: var(--theme-primary-color);
}

.page-content .main-content .page-heading .page-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.page-content .main-content .page-heading .page-title::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--theme-grey-color);
}

.page-content .main-content .page-description {
    margin-bottom: 30px;
}

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

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

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

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

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

.page-description p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-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-grey-color);
    font-family: var(--theme-font-WhyteInktrap);
}

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

/* ================================================== Testimonial Page */
.archive-testimonial-card {
    margin-bottom: 30px;
}

.testimonial-card-body {
    padding: 30px;
    border: var(--theme-light-color) solid 1px;
}

/* ================================================== Contact Us Page */
.contact-form {
    padding: 50px;
    margin: -150px auto 100px;
    max-width: 800px;
    border-radius: 15px;
    background: var(--theme-primary-color);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 1);
}

.contact-form br {
    display: none;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-secondary-color);
}

.contact-form label p {
    display: inline-block;
}

.contact-form label span {
    display: inline-block;
    color: red;
}

.contact-form .form-control {
    height: 45px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 30px;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-secondary-color);
    background: var(--theme-light-color);
}

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

.contact-form .form-control::placeholder {
    color: var(--theme-secondary-color);
}

.contact-form .btn {
    display: inline-block;
    border-radius: 3px;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 16px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.contact-address-card {
    padding: 30px;
    min-height: 385px;
    border-radius: 5px;
    margin-bottom: 50px;
    background: var(--theme-background-color);
    border: var(--theme-light-color) solid 1px;
}

.contact-address-card h4 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.contact-address-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-address-card ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.contact-address-card ul li .fa-solid,
.contact-address-card ul li .fa-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 2px;
    color: var(--theme-primary-color);
    background: var(--theme-grey-color);
}

.contact-address-card ul li strong {
    display: block;
}

.contact-address-card ul li span {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-grey-color);
}

.google-map {
    position: relative;
    height: 600px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
}

/* ================================================== Single Post Page */
.single-post-thumbnail img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

.relate-posts .sub-title {
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    border-bottom: var(--theme-grey-color) solid 1px;
}

.relate-posts-news-blog-card {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.relate-posts-news-blog-card-thumbnail img {
    width: 150px;
    height: auto;
}

.relate-posts-news-blog-card-content h4 a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--theme-secondary-color);
}

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

.relate-posts-posted-date-category span {
    font-size: 12px;
}

.relate-posts-news-blog-card-content-btn {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 0;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

/* ================================================== Single Destination Page */
.single-destination-template .page-subtitle {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
    border-bottom: var(--theme-light-color) solid 1px;
}

.single-destination-template-thumbnail {
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

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

.single-destination-template-description {
    margin-bottom: 50px;
}

.single-destination-template-description p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-grey-color);
}

/* ===== Package ===== */
#packagesSlider .packages-card-thumbnail img {
    width: 100%;
    height: auto;
}

#packagesSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#packagesSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    transition: var(--transition);
}

#packagesSlider .owl-nav button.owl-prev:hover,
#packagesSlider .owl-nav button.owl-next:hover {
    background: var(--theme-blue-color);
}

/* ===== Overview ===== */
.single-destination-template-overview {
    margin-bottom: 50px;
}

.single-destination-template-overview table {
    border: var(--theme-light-color) solid 1px;
}

.single-destination-template-overview table tbody tr th {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-grey-color);
}

.single-destination-template-overview table tbody tr td {
    padding: 15px;
    font-size: 16px;
    color: var(--theme-grey-color);
}

/* ===== Google Map ===== */
.single-destination-template-map {
    position: relative;
    height: 450px;
    margin-bottom: 50px;
}

.single-destination-template-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== Photo Gallery ===== */
.single-destination-template-gallery {
    margin-bottom: 50px;
}

.single-destination-template-gallery-card a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.single-destination-template-gallery-card a img {
    width: 100%;
    height: auto;
}

/* ================================================== Archive Package Page */
.archive-package-template .page-content {
    background: var(--theme-grey-color);
}

/* ================================================== Single Package Page */
.single-package-template {
    padding-bottom: 100px;
}

/* ============================== Tabs Item */
#navtabPackages {
    background: var(--theme-blue-color);
    z-index: 1021 !important;
}

#navtabPackages .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
}

#navtabPackages .nabtab-package-item {
    display: inline-block;
    padding: 20px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
    transition: var(--transition);
}

#navtabPackages .nabtab-package-item span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--theme-font-WhyteInktrap);
}

#navtabPackages .nabtab-package-item.active,
#navtabPackages .nabtab-package-item:hover {
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

/* ============================== Tabs Content */
.single-package-template .page-subtitle {
    margin: 30px 0 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.scroll-package-content {
    padding: 30px 0;
}

.scroll-package-content .content-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.scroll-package-content .content-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

#Overview .overview-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Overview .overview-content {
    padding: 30px;
    padding-bottom: 1px;
    border-radius: 10px;
    border: var(--theme-light-color) 1px solid;
    background: var(--theme-background-color);
    margin-bottom: 30px;
}

#Overview .overview-content ul li {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 30px;
}

#Overview .overview-content ul li .package-overview-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#Overview .package-overview-content .package-overview-value {
    font-weight: 700;
}

#Overview .overview-content ul li .fa-solid,
#Overview .overview-content ul li .fa-regular {
    display: inline-block;
    margin-top: 5px;
    font-size: 24px;
    color: var(--theme-blue-color);
}

#Itinerary .accordion-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 5px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#Itinerary .accordion-item .accordion-header .accordion-button {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    padding: 20px;
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    gap: 15px;
}

#Itinerary .accordion-item .accordion-header .accordion-button.collapsed {
    background: var(--theme-primary-color);
    color: var(--theme-seondary-color);
}

#Itinerary .accordion-item .accordion-header .accordion-button::after {
    content: '\f068';
    font-family: 'fontawesome';
    background: transparent;
}

#Itinerary .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'fontawesome';
    background: transparent;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td {
    padding: 15px;
    background: var(--theme-light-color);
    border: var(--theme-light-color) solid 1px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item {
    display: flex;
    gap: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .fa-regular,
#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .fa-solid {
    color: var(--theme-grey-color);
    font-size: 24px;
    position: relative;
    top: 5px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .table-item-content span {
    display: block;
    font-style: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .table thead tr td .table-item .table-item-content span:last-child {
    font-size: 16px;
    font-weight: 400;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body .itinerary-description {
    padding: 0 20px;
    padding-bottom: 5px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body ol {
    padding-left: 30px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body ul {
    padding-left: 15px;
}

#Itinerary .accordion-item .accordion-collapse .accordion-body li {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Inclusions .inclusions-include-description {
    padding: 30px;
    border-radius: 10px;
    background: var(--theme-background-color);
    margin-bottom: 30px;
}

#Inclusions .inclusions-exclude-description {
    padding: 30px;
    border-radius: 10px;
    background: #fae2e2;
}

#Inclusions .inclusions-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
}

#Inclusions .inclusions-description ul,
#Inclusions .inclusions-description ol {
    margin-bottom: 30px;
}

#Inclusions .inclusions-description li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
    list-style: none;
    padding-left: 30px;
}

#Inclusions .inclusions-description li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-family: 'fontawesome';
    color: var(--theme-secondary-color);
}

#Inclusions .inclusions-include-description li::before {
    content: '\f058';
}

#Inclusions .inclusions-exclude-description li::before {
    content: '\f057';
}

#Equipment.equipment-content {
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#Equipment.equipment-content .page-subtitle {
    margin-top: 0;
}

#Equipment .equipment-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Equipment .equipment-description ul,
#Equipment .equipment-description ol {
    margin-bottom: 30px;
}

#Equipment .equipment-description li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-grey-color);
    list-style: none;
    padding-left: 30px;
}

#Equipment .equipment-description li::before {
    content: '\f061';
    position: absolute;
    top: 3px;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-family: 'fontawesome';
    color: var(--theme-secondary-color);
}

#FAQs .accordion-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 5px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
}

#FAQs .accordion-item .accordion-header .accordion-button {
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-WhyteInktrap);
    padding: 15px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    gap: 15px;
}

#FAQs .accordion-item .accordion-header .accordion-button.collapsed {
    background: var(--theme-primary-color);
    color: var(--theme-secondary-color);
}

#FAQs .accordion-item .accordion-header .accordion-button::after {
    content: '\f068';
    font-family: 'fontawesome';
    background: transparent;
}

#FAQs .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'fontawesome';
    background: transparent;
}

#FAQs .accordion-item .accordion-collapse .accordion-body {
    padding: 30px;
    padding-bottom: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body ol {
    padding-left: 30px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body ul {
    padding-left: 15px;
}

#FAQs .accordion-item .accordion-collapse .accordion-body li {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#Gallery .package-gallery-photos a {
    display: block;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#Gallery .package-gallery-photos a img {
    width: 100%;
    height: auto;
}

#Map .map-description {
    position: relative;
    border: var(--theme-grey-color) solid 5px;
    border-radius: 10px;
    overflow: hidden;
}

#Map .map-description a {
    display: block;
}

#Map .map-description a img {
    width: 100%;
    height: auto;
}

#Trips .trips-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--theme-blue-color);
    border-radius: 15px;
    margin-bottom: 30px;
}

#Trips .trips-card-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#Trips .trips-card-item:first-child {
    width: 50px;
}

#Trips .trips-card-item:nth-child(2) {
    position: relative;
    width: 100%;
}

#Trips .trips-card-item:last-child {
    width: 150px;
}

#Trips .trips-card-item-counter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 5px;
}

#Trips .trips-card-item-counter span {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#Trips .trips-card-item-divider {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#Trips .trips-card-item-divider:first-child::before {
    content: '';
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

#Trips .trips-card-item-divider-column {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    width: 50%;
}

#Trips .trips-card-item-divider-column-calender {
    width: 40px;
    height: 40px;
    border: rgba(255, 255, 255, 0.2) solid 1px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Trips .trips-card-item-divider-column-calender .fa-solid {
    color: var(--theme-yellow-color);
    font-size: 18px;
}

#Trips .trips-card-item-divider-column-content strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#Trips .trips-card-item-divider-column-content span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-Poppins);
}

#aside.sticky-top {
    padding-top: 100px;
}

#aside .package-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    margin-bottom: 30px;
}

#aside .package-thumbnail::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

#aside .package-thumbnail img {
    width: 100%;
    height: auto;
}

#aside .package-header-title {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 9;
}

#aside .package-header-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

#aside .package-price-show {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 9;
    display: flex;
    flex-direction: column;
}

#aside .package-price-show span:first-child {
    font-size: 42px;
    line-height: 42px;
    font-weight: 900;
    color: var(--theme-primary-color);
}

#aside .package-price-show span:last-child {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-light-color);
}

#aside .package-overview {
    margin: 30px 0;
    padding: 30px;
    border-radius: 10px;
    border: var(--theme-grey-color) solid 1px;
    background: var(--theme-light-color);
}

#aside .package-overview ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#aside .package-overview ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    list-style: none;
}

#aside .package-overview-icon .fa-solid,
#aside .package-overview-icon .fa-regular {
    font-size: 24px;
}

#aside .package-overview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#aside .package-overview-key {
    font-size: 14px;
    font-weight: 400;
}

#aside .package-overview-value {
    font-size: 16px;
    font-weight: 600;
}

#aside .package-enquiry-form {
    padding: 30px;
    border-radius: 10px;
    border: var(--theme-light-color) solid 1px;
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.3)
}

#aside .package-enquiry-form h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

#aside .package-enquiry-form label {
    display: block;
    font-size: 14px;
    color: var(--theme-grey-color);
}

#aside .package-enquiry-form label span {
    color: red;
}

#aside .package-enquiry-form .form-control {
    height: 40px;
    font-size: 14px;
    border-radius: 3px;
    color: var(--theme-secondary-color);
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
    margin-bottom: 5px;
}

#aside .package-enquiry-form textarea.form-control {
    height: 150px;
}

#aside .package-enquiry-form .form-control::placeholder {
    color: var(--theme-light-color);
}

#aside .package-enquiry-form .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
}

/* ================================================== Activity Archive Page */
.activity-archive-template .activities-card {
    border: var(--theme-grey-light-color) solid 1px;
    margin-top: 30px;
}

/* ================================================== Activity Single Page */
.single-activity-related-packages .page-subtitle {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
    border-bottom: var(--theme-light-color) solid 1px;
}

.single-activity-template-description {
    margin-bottom: 30px;
}

.single-activity-template-description p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-grey-color);
    margin-bottom: 15px;
}

/* ================================================== Trip Booking Page */
.trip-form-divider {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: rgba(0, 0, 0, 0.1) solid 1px;
    box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.3);
}

.trip-form-divider h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-Poppins);
}

.trip-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.trip-form .form-group .fa-solid {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 14px;
}

.trip-form .form-group .form-control {
    padding-left: 35px;
    height: 45px;
    font-size: 14px;
    color: var(--theme-grey-color);
}

/* ================================================== Pages */
.page-content .page-body .page-description h2{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.page-content .page-body .page-description h3{
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.page-content .page-body .page-description h4{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-secondary-color);
}

.page-content .page-body .page-description h5{
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-secondary-color);

}

.page-content .page-body .page-description h6{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-secondary-color);
}

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

.page-content .page-body .page-description ul,
.page-content .page-body .page-description ol{
    margin-left: 18px;
    margin-bottom: 15px;
}

.page-content .page-body .page-description li{
    font-size: 16px;
    line-height: 36px;
    font-weight: 400;
    font-family: var(--theme-font-Poppins);
    color: var(--theme-grey-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-yellow-color);
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right {
        background: var(--theme-yellow-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;
        background: var(--theme-blue-color);
    }

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

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open~button.mega-close {
        background: var(--theme-primary-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: rgba(0, 0, 0, 0) 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);
    }
}

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

    /* Heder Top Section */
    .site-header-top {
        padding: 15px 0;
    }

    .site-header-top .container {
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .site-header-top-contact {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .site-header-top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Header Bottom Section */
    .site-header-bottom {
        padding: 30px 0;
    }

    .site-header-navigation {
        display: none;
    }

    .site-header-auth {
        justify-content: space-between;
        padding-left: 0;
        width: 100%;
    }

    .site-header-auth div:first-child,
    .site-header-auth div:nth-child(2) {
        display: none;
    }

    .site-header-logo img {
        width: 300px;
    }

    /* Banner Section */
    .banner {
        height: auto;
        padding: 100px 0 15px;
    }

    .banner-wrapper {
        position: inherit;
        top: inherit;
    }

    .banner-form-content>.tab-content {
        padding: 15px;
    }

    .banner-form-flight-nav .nav-tabs .nav-link {
        padding: 15px;
        font-size: 14px;
        border-radius: 5px;
    }

    .banner-form .form-group {
        margin-bottom: 10px;
    }

    .banner-form .search-form-group {
        justify-content: center;
    }

    .banner-form .form-group .btn-form-search {
        width: 100%;
    }

    .banner-form .form-group .btn-form-search .fa-solid {
        position: inherit;
    }

    /* Welcome Section */
    .welcome {
        padding: 50px 0;
    }

    .welcome-thumbnail {
        margin-bottom: 30px;
    }

    .welcome-subtitle {
        font-size: 18px;
    }

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

    .welcome-description {
        margin: 15px 0;
        font-size: 16px;
        line-height: 30px;
    }

    .welcome-list-content h4 {
        margin-bottom: 0;
    }

    .welcome-list-content h4 .fa-solid {
        font-size: 14px;
    }

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

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

    /* Title Section */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h4 {
        font-size: 18px;
        font-weight: 400;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .section-title a span {
        font-size: 14px;
    }

    /* Distination Section */
    .destinations .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .destinations-card {
        margin-bottom: 0;
    }

    /* Activities Section */
    .activities {
        padding: 50px 0;
    }

    /* Packages Sction */
    .packages {
        padding: 50px 0;
    }

    .packages .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Why Choose Us */
    .whychooseus {
        padding-bottom: 50px;
    }

    .whychooseus-thunbnail {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .whychooseus-thunbnail .secondary-img {
        bottom: 20px;
        left: 20px;
        width: 150px;
        height: auto;
        border-radius: 10px;
        border: var(--theme-primary-color) solid 5px;
    }

    .whychooseus-experience {
        bottom: 15px;
        right: 15px;
    }

    .whychooseus-list li {
        gap: 20px;
    }

    .whychooseus-list-icon .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .whychooseus-list-content h4 span {
        font-size: 18px;
    }

    .whychooseus-list-content p {
        line-height: 26px;
    }

    /* Achievements Section */
    .achievements {
        padding: 50px 0;
        background: var(--theme-blue-color);
    }

    .achievements .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #achievementsSlider .owl-nav button.owl-prev {
        left: 0;
    }

    #achievementsSlider .owl-nav button.owl-next {
        right: 0;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 50px 0;
    }

    .testimonials .section-title h2 {
        max-width: 100%;
    }

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

    .testimonial-card-body {
        padding: 30px;
    }

    .testimonial-card-triangle {
        left: 30px;
    }

    .testimonial-card-heading {
        margin-top: 15px;
    }

    .testimonial-card-photo {
        width: 50px;
        height: 50px;
    }

    .testimonial-card-title h4 {
        font-size: 16px;
    }

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

    #testimonialsSlider .owl-nav button.owl-prev {
        top: calc(100% - 30px);
        width: 40px;
        height: 40px;
        right: 43px;
        font-size: 14px;
    }

    #testimonialsSlider .owl-nav button.owl-next {
        top: calc(100% - 30px);
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Explore Section */
    .explore {
        padding: 50px 0 70px;
    }

    .explore .section-title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .explore-content-contact a {
        padding: 15px 25px;
    }

    .explore-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .explore-thumbnails {
        width: 300px;
        height: 300px;
    }

    .explore-thumbnails-item {
        width: 150px;
        height: 150px;
    }

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

    .news-blog-card-content {
        padding: 25px 20px 20px;
    }

    .news-blog-card-title a {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .news-blog-card-link {
        margin-top: 10px;
    }

    /* Get Started Section */
    .get-started-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px;
        border-radius: 10px;
    }

    .get-started-content h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .get-started-content p {
        font-size: 16px;
        margin-top: 15px;
    }

    .get-started-icon {
        display: none;
    }

    /* Footer Section */
    .footer-content {
        padding: 50px 0;
    }

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

    .footer-content-block-links ul li {
        line-height: 30px;
    }
}

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