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

:root {
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #110F0F;
    --theme-blue-color: #33276c;
    --theme-yellow-color: #fb8028;
    --theme-yellow-color: #f5991e;
    --theme-grey-color: #666666;
    --theme-grey-light-color: #83827F;
    --theme-light-color: #E0E4E8;
    --theme-background-color: #F1F1F1;
    --theme-font-poppins: "Inter", sans-serif;
    --theme-font-roboto: "Inter", 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;
    left: 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: 10px 0;
    border-bottom: var(--theme-background-color) solid 1px;
    background: var(--theme-primary-color);
}

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

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

.site-header-top-contact span {
    font-size: 14px;
    color: var(--theme-grey-light-color);
}

.site-header-top-contact .fa-brands,
.site-header-top-contact .fa-solid {
    font-size: 14px;
    margin-right: 5px;
}

.site-header-top-contact a {
    color: var(--theme-grey-light-color);
    font-family: var(--theme-font-roboto);
}

.site-header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

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

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

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

.header-top-menu-list-item:first-child a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 15px;
    transform: translateY(-50%);
    background: var(--theme-light-color);
}

.header-top-menu-list-item a:hover {
    color: var(--theme-yellow-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-grey-light-color);
}

/* Header Middle */
.site-header-middle {
    padding: 15px 0;
    background: url('../images/globe.png') no-repeat center center;
    background-size: cover;
}

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

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

/* Search Form */
.site-header-search {
    margin-left: auto;
}

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

.site-header-search-form .form-group {
    position: relative;
}

.site-header-search-form .form-group .fa-solid {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 100%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-grey-light-color);
}

.site-header-search-form .form-group .form-control {
    width: 400px;
    height: 50px;
    padding-left: 45px;
    border-radius: 0;
    font-size: 14px;
    color: var(--theme-grey-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-light-color) solid 1px;
}

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

.site-header-search-form .form-group .btn-primary {
    height: 50px;
    width: 50px;
    border-radius: 0;
    font-size: 14px;
    background: var(--theme-blue-color);
    border: none;
}

.site-header-search-form .form-group .btn-primary .fa-solid {
    color: var(--theme-primary-color);
}

/* Support Linke */
.site-header-supports {
    margin-left: auto;
}

.site-header-help-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header-help-line-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-primary-color);
    color: var(--theme-secondary-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.site-header-help-line-number {
    display: flex;
    flex-direction: column;
}

.site-header-help-line-number span {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}

.site-header-help-line-number a {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-poppins);
}


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

/* ========== Header Navigation ==========*/
.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: 30px;
    font-size: 16px;
    color: var(--theme-primary-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-primary-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 Auth Menu */
.header-auth-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-auth-menu-list {
    padding: 15px 20px;
    border-radius: 30px;
    background: var(--theme-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.header-auth-menu-list .fa-regular {
    color: var(--theme-blue-color);
    font-size: 18px;
}

.header-auth-menu-list a {
    display: inline-block;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-blue-color);
}

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

.menu-toggle-btn {
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 5px;
    color: var(--theme-blue-color);
    background: var(--theme-primary-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);
    box-sizing: border-box;
    padding: 30px;
    padding-right: 15px;
    padding-top: 60px;
    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: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

.aside-logo a {
    display: block;
    margin-bottom: 30px;
    width: 100%;
}

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

.header-aside-menu-list {
    width: 100%;
}

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

.header-aside-menu-list .header-aside-menu-list-item a {
    position: relative;
    padding-left: 15px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-poppins);
    transition: var(--transition);
}

.has-children>.header-aside-menu-list {
    padding-left: 30px;
    margin-bottom: 5px;
}

.has-children>.header-aside-menu-list .header-aside-menu-list-item a::before {
    content: '\f0da';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    font-size: 18px;
    font-family: 'fontawesome';
    transform: translateY(-50%);
    color: var(--theme-blue-color);
}

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

.aside-social {
    margin: 15px 0;
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.aside-social li a .fa-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--theme-secondary-color);
    background: var(--theme-light-color);
}

.aside-copyright {
    width: 100%;
}

/* ================================================== Banner Section */
.banner {
    position: relative;
    background: url('../images/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 65vh;
    padding: 100px 0 50px;
    display: flex;
    align-items: flex-end;
}

.banner-wrapper {
    width: 100%;
}

.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;
    border-radius: 0;
    font-weight: 600;
    border: none;
    color: var(--theme-grey-color);
    background: var(--theme-primary-color);
    transition: var(--transition);
    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-primary-color);
    border: rgba(255, 255, 225, 0.1) 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);
}

.banner-form-content>.tab-content {
    padding: 30px;
    padding-bottom: 25px;
    border-radius: 10px;
    border-top-left-radius: 0;
    background: var(--theme-blue-color);
}

.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-blue-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: 20px 30px 20px 40px;
    border-radius: 50px;
    border: none;
    background: var(--theme-yellow-color);
}

.banner-form .form-group .btn-form-search span {
    margin-left: 7px;
    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: 0;
    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-blue-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);
}

/* ================================================== Offers Section */
.offers {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--theme-primary-color);
}

.offers-card a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.offers-card a img {
    width: 100%;
}

#offersSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#offersSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#offersSlider .owl-nav button.owl-prev:hover,
#offersSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}

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

.section-title h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-poppins);
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-blue-color);
    font-family: var(--theme-font-poppins);
}

.section-view-all-btn {
    display: flex;
    justify-content: center;
}

.section-view-all-btn 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-yellow-color);
    transition: var(--transition);
}

.section-view-all-btn 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-view-all-btn a span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font-roboto);
}

.section-view-all-btn a:hover {
    background: var(--theme-blue-color);
}

/* ================================================== Destinaions Section */
.destinations {
    padding: 70px 0;
    background: #f6f6f6
}

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

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

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

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

.destinations-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    flex-direction: column;
    z-index: 9;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.destinations-card-content h4 a {
    font-style: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-poppins);
}

.destinations-card-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.destinations-card-country .fa-solid {
    color: var(--theme-yellow-color);
    font-size: 16px;
}

.destinations-card-country span {
    color: var(--theme-yellow-color);
    font-size: 16px;
}

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

.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: 0 0 10px 10px;
    border: 1px solid 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: 600;
    font-family: var(--theme-font-poppins);
    color: var(--theme-secondary-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: space-between;
    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: 70px 0;
    background: #f6f6f6
}

.whychooseus-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 50px 30px;
    background: var(--theme-primary-color);
    border-radius: 10px;
    box-shadow: 0 0 15px -10px rgba(0, 0, 0, 0.5);
}

.whychooseus-list-icon .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    font-size: 30px;
    border: 1px dashed rgba(0, 0, 0, 0.5);
    background: var(--theme-primary-color);
    color: var(--theme-yellow-color);
}

.whychooseus-list-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-yellow-color);
    margin-bottom: 10px;
}

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

/* ================================================== Testimonials Section */
.testimonials {
    padding: 70px 0;
    position: relative;
    background-size: cover;
    z-index: 1;
    background: #191919;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-secondary-color);
    z-index: 1;
    opacity: 0.7;
}

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

.testimonials .section-title {
    text-align: left;
    padding-right: 50px;
}

.testimonials .section-title h4 {
    color: var(--theme-yellow-color);
}

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

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

.testimonials .section-view-all-btn {
    justify-content: flex-start;
}

#testimonialsSlider .slide-item {
    padding-top: 30px;
}

.testimonial-card {
    position: relative;
    border-radius: 15px;
    background: var(--theme-primary-color);
    text-align: center;
    padding: 50px 30px 30px;
}

.testimonial-card-photo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: var(--theme-primary-color) solid 1px;
    background: var(--theme-primary-color);
}

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

.testimonial-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.testimonial-card-content p {
    margin: 10px 0 15px;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-grey-color);
}

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

#testimonialsSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

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

#testimonialsSlider .owl-nav button.owl-prev:hover,
#testimonialsSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}

/* ================================================== Team Member Section */
.teammembers {
    padding: 70px 0;
    background: var(--theme-primary-color)
}

.teammembers-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border-width: 1px;
    padding: 50px 15px 30px;
    background: var(--theme-primary-color);
    border: var(--theme-light-color) solid 1px;
}

.team-member-card-thumbnail {
    position: relative;
    margin: auto;
    height: 150px;
    width: 150px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member-card-thumbnail img,
#teammembersSlider .team-member-card-thumbnail img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    padding: 5px;
}

.teammembers-card-content {
    position: relative;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
}

.teammembers-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--theme-grey-color);
    opacity: 0.1;
}

.teammembers-card-content h4 a {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-blue-color);
    margin-bottom: 5px;
}

.teammembers-card-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-yellow-color);
}

#teammembersSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#teammembersSlider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    transition: var(--transition);
    opacity: 0.5;
}

#teammembersSlider .owl-nav button.owl-prev:hover,
#teammembersSlider .owl-nav button.owl-next:hover {
    opacity: 1;
}

/* ================================================== News & Blogs Section */
.news-blog {
    padding: 70px 0;
    background: #f6f6f6
}

.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-yellow-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;
    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: 10px;
    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: 10px;
    font-size: 18px;
    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 */
.airline-partners {
    padding: 50px 0;
    background: var(--theme-background-color);
}

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

.site-footer hr {
    margin: 30px 0;
}

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

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

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

.footer-content-block h4 {
    position: relative;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-poppins);
}

.footer-content-block h4::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 15px;
    height: 1px;
    background: var(--theme-yellow-color);
}

.footer-content-block h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 18px;
    width: calc(100% - 20px);
    height: 1px;
    background: var(--theme-primary-color);
}

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

.footer-content-block-links ul li a {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-family: var(--theme-font-roboto);
}

.footer-content-block-links ul li a::before {
    display: none;
    content: '\f0da';
    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-yellow-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: 50%;
    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: rgba(255, 255, 255, 0.7);
}

.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: rgba(255, 255, 255, 0.7);
    font-family: var(--theme-font-roboto);
}

.site-footer-logo h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    font-family: var(--theme-font-poppins);
    color: var(--theme-primary-color);
}

.associated-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.associated-images a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.associated-images img {
    width: 100%;
    height: auto;
}

/* ============================================================ */
.shared-social-links {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 9;
    width: 155px;
    height: 155px;
}

.shared-social-links .shares-icons {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.shared-social-links ul {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: rotate(10deg);
}

.shared-social-links ul li {
    position: absolute;
    top: 80px;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.shared-social-links:hover ul li:first-child {
    top: 15px;
    right: 10px;
}

.shared-social-links:hover ul li:nth-child(2) {
    top: 10px;
    right: 61px;
}

.shared-social-links:hover ul li:nth-child(3) {
    top: 52px;
    right: 90px;
}

.shared-social-links:hover ul li:nth-child(4) {
    top: 100px;
    right: 70px;
}

.shared-social-links ul li a .fa-solid,
.shared-social-links ul li a .fa-brands {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================ */

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

.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-roboto);
    color: var(--theme-secondary-color);
}

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

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

.contact-form .form-control {
    height: 45px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 30px;
    font-family: var(--theme-font-roboto);
    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 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--theme-font-roboto);
    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;
}

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

#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-roboto);
}

#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-roboto);
}

#Trips .trips-card-item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#Trips .trips-card-item-price span {
    color: var(--theme-primary-color);
    font-size: 16px;
}

#Trips .trips-card-item-price strong {
    color: var(--theme-primary-color);
    margin-bottom: -20px;
    font-size: 24px;
}

#Trips .trips-card-item-button .btn-primary {
    display: block;
    padding: 10px;
    border-color: var(--theme-yellow-color);
    background: var(--theme-yellow-color);
    font-weight: 700;
    font-size: 16px;
}

#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;
    padding-bottom: 15px;
    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: yellow;
}

#aside .package-enquiry-form .form-group {
    margin-bottom: 15px;
}

#aside .package-enquiry-form .form-control {
    height: 40px;
    font-size: 12px;
    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-grey-color);
}

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

#aside .select2-container .select2-selection--single {
    height: 45px;
}

#aside .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding-left: 15px;
}

#aside .select2-container--default .select2-selection--single {
    border: #dee2e6 solid 1px;
    border-radius: 0;
}

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

#aside .select2-container--default .select2-selection--single .select2-selection__rendered,
#aside .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 12px;
    font-weight: 400;
}

/* ================================================== 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-roboto);
    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 h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-roboto);
}

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

.trip-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-grey-color);
}

.trip-form .form-group label span.required-field {
    color: red;
}

.trip-form .form-group .fa-solid {
    position: absolute;
    top: 27px;
    left: 0;
    font-size: 12px;
    z-index: 9;
    width: 40px;
    height: calc(100% - 27px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-primary-color);
    background: var(--theme-grey-light-color);
}

.trip-form .form-group .form-control {
    padding-left: 50px;
    height: 45px;
    font-size: 14px;
    color: var(--theme-grey-color);
    background: #eee;
    border-radius: 0;
}

.trip-form .form-group textarea.form-control {
    padding-top: 10px;
    height: 150px;
}

.trip-form .select2-container .select2-selection--single {
    height: 45px;
}

.trip-form .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-left: 50px;
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-grey-color);
}

.trip-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-grey-color);
}

.trip-form .select2-container--default .select2-selection--single {
    border: #dee2e6 solid 1px;
    border-radius: 0;
}

.trip-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.trip-form .text-danger {
    position: absolute;
    top: 100%;
}

.aside-trip-summary {
    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);
}

.aside-trip-summary h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-roboto);
}

.aside-trip-summary ul li {
    list-style: none;
    line-height: 30px;
}

.aside-trip-summary ul li strong {
    color: var(--theme-secondary-color);
}

.aside-trip-summary .submit-btn {
    padding: 10px 15px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    border-color: var(--theme-blue-color);
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.aside-trip-summary .total-amount-display {
    color: var(--theme-blue-color);
    font-weight: 700;
    font-size: 30px;
}

.aside-trip-package-thumbnail {
    position: relative;
    margin-bottom: 20px;
}

.aside-trip-package-thumbnail img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* ================================================== Trip Payment Page */
.trip-payment-summary h3,
.trip-payment-form h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: #eee dashed 1px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-roboto);
}

.trip-payment-summary ul.trip-group {
    border: #eee solid 1px;
    border-radius: 10px;
}

.trip-payment-summary ul.trip-group li.trip-group-item {
    padding: 15px 20px;
    border-bottom: #eee solid 1px;
}

.trip-payment-summary ul.trip-group li.trip-group-item:last-child {
    border-bottom: none;
}

.trip-payment-summary ul.trip-group li.trip-group-item strong {
    color: var(--theme-secondary-color);
}

.trip-payment-form form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trip-payment-form .alert-warning {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 12px;
}

.trip-payment-form form .form-group {
    position: relative;
    height: 60px;
    width: 100%;
    border: #eee solid 1px;
}

.trip-payment-form form .form-check-input {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 0;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.trip-payment-form form .form-check-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 30px;
    font-weight: 700;
}

.trip-payment-form form .btn-primary {
    margin-top: 5px;
    padding: 10px;
    border-color: var(--theme-blue-color);
    background: var(--theme-blue-color);
}

/* ================================================== Page */
.page-content .main-content .page-body h3 {
    color: var(--theme-secondary-color);
    font-size: 24px;
    line-height: 30px;
}

.page-content .main-content .page-body h4 {
    color: var(--theme-secondary-color);
    font-size: 22px;
    line-height: 30px;
}

.page-content .main-content .page-body h5 {
    color: var(--theme-secondary-color);
    font-size: 20px;
    line-height: 30px;
}

.page-content .main-content .page-body h6 {
    color: var(--theme-secondary-color);
    font-size: 18px;
    line-height: 30px;
}

.page-content .main-content .page-body p {
    color: var(--theme-secondary-color);
    font-size: 16px;
    line-height: 30px;
}

.page-content .main-content .page-body ol,
.page-content .main-content .page-body ul {
    padding-left: 18px;
}

.page-content .main-content .page-body li {
    color: var(--theme-secondary-color);
    font-size: 16px;
    line-height: 30px;
}

/* ================================================== Hotel Page */
#asideFilter.sticky-top {
    padding-top: 15px;
}

.aside-filter {
    padding: 30px;
    border-radius: 10px;
    background: var(--theme-blue-color);
}

.hotel-filter-form .form-group {
    margin-bottom: 20px;
}

.hotel-filter-form .form-group label {
    display: block;
    color: var(--theme-primary-color);
}

.hotel-filter-form .form-control {
    color: var(--theme-grey-light-color);
    border-radius: 5px;
    font-size: 14px;
    height: 50px;
}

.hotel-filter-form .btn-filter {
    background: var(--theme-primary-color);
    color: var(--theme-blue-color);
    transition: var(--transition);
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
}

.hotel-filter-form .btn-filter:hover {
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

.hotel-filter-form .link-filter {
    border: var(--theme-primary-color) solid 1px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
}

.hotel-filter-form .link-filter:hover {
    color: var(--theme-blue-color);
    background: var(--theme-primary-color);
}

/* Filter Search Hotels */
#hotelSearchResult.sticky-top {
    padding-top: 30px;
}

.hotel-search-result {
    padding: 30px;
    border-radius: 10px;
    border: #ccc solid 1px;
}

.search-hotel-card {
    border: #ccc solid 1px;
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

.search-hotel-card-thumbnail {
    width: 300px;
    padding: 15px;
}

.search-hotel-card-thumbnail img {
    border-radius: 7px;
    width: 100%;
    height: auto;
}

.search-hotel-card-description {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-hotel-card-content h4 {
    font-size: 24px;
    color: var(--theme-secondary-color);
}

.search-hotel-card-content-star {
    margin: 5px 0;
}

.search-hotel-card-content-star .fa-solid {
    color: var(--theme-yellow-color);
}

.search-hotel-card-content-city {
    color: var(--theme-grey-light-color);
    font-size: 12px;
}

.search-hotel-card-content-city span {
    color: var(--theme-grey-color);
    font-size: 16px;
}

.search-hotel-card-link {
    display: flex;
    justify-content: flex-end;
}

.search-hotel-card-link a {
    display: inline-block;
    padding: 15px 20px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    border-radius: 5px;
    transition: var(--transition);
}

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

/* ================================================== Hotel Details Page */
.hotel-room-card {
    border: #ccc solid 1px;
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

.hotel-room-card-thumbnail {
    width: 300px;
    padding: 15px;
}

.hotel-room-card-thumbnail img {
    border-radius: 7px;
    width: 100%;
    height: auto;
}

.hotel-room-card-description {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.hotel-room-card-content h4 {
    font-size: 24px;
    color: var(--theme-secondary-color);
}

.hotel-room-card-content-type {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
}

.hotel-room-card-content-type .fa-solid {
    color: var(--theme-yellow-color);
    font-size: 12px;
}

.hotel-room-card-content-type span {
    color: var(--theme-grey-color);
    font-size: 16px;
}

.hotel-room-card-content-amenities span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--theme-primary-color);
    background: var(--theme-blue-color);
}

.hotel-room-card-content-btns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
}

.hotel-room-card-content-price {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    border-radius: 5px;
    border: var(--theme-light-color) solid 1px;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
}

.hotel-room-card-content-price span:first-child {
    font-size: 24px;
    font-weight: 700;
}

.hotel-room-card-content-price span:last-child {
    font-size: 18px;
    font-weight: 700;
}

.hotel-room-card-link {
    display: flex;
    justify-content: flex-end;
}

.hotel-room-card-link a {
    display: inline-block;
    padding: 15px 20px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    border-radius: 5px;
    transition: var(--transition);
}

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

.hotel-room-card-link a .fa-solid {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
}

/* ================================================== Room Booking */
.room-booking-form-group {
    margin-bottom: 30px;
}

.room-booking-form-group h5 {
    color: var(--theme-secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 24px;
}

.room-booking-form-group label {
    display: block;
    font-size: 16px;
    color: var(--theme-secondary-color);
    margin-bottom: 5px;
}

.room-booking-form-group .required-field {
    color: red;
}

.room-booking-form-group .form-control {
    height: 60px;
    color: var(--theme-grey-light-color);
    background: var(--theme-primary-color);
    border: var(--theme-blue-color) solid 1px;
    border-radius: 15px;
}

#roomBookingSummary.sticky-top {
    padding-top: 15px;
}

.room-booking-summary {
    padding: 30px;
    border-radius: 15px;
    background: var(--theme-blue-color);
}

.room-booking-summary h5 {
    color: var(--theme-primary-color);
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.room-booking-summary ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.room-booking-summary ul li {
    list-style: none;
}

.room-booking-summary ul li hr {
    border-color: #fff;
}

.room-booking-summary ul li span,
.room-booking-summary ul li strong {
    color: var(--theme-primary-color);
}

/* ================================================== Testimonial Page */
.testimonial-page {
    padding-top: 30px;
}

.testimonial-page .testimonial-card {
    margin-bottom: 50px;
    border: var(--theme-blue-color) solid 1px;
}

.testimonial-page .testimonial-card-photo {
    border-color: var(--theme-blue-color);
}

/* ================================================== Testimonial Page */
/* Archive */
.team-members-page .teammembers-card {
    margin-bottom: 30px;
}

/* Single */
.team-member-page-profile {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
    border: var(--theme-primary-color) solid 5px;
}

.team-member-page-profile img {
    width: 100%;
    height: auto;
}

.page-content .main-content .team-member-page-profile .page-heading {
    padding: 30px 0;
    text-align: center;
}

.page-content .main-content .team-member-page-profile .page-heading .page-title {
    padding-bottom: 0;
    margin-bottom: 5px;
    font-size: 20px;
}

.page-content .main-content .team-member-page-profile .page-heading .page-title::before {
    display: none;
}

.page-content .main-content .team-member-page-profile .page-heading span {
    color: var(--theme-yellow-color);
    font-weight: 400;
    font-size: 14px;
}

.team-member-page-content {
    padding-left: 15px;
}

.team-member-page-content .page-subtitle {
    margin-bottom: 15px;
    color: var(--theme-secondary-color);
    font-weight: 700;
    font-size: 22px;
}

.team-member-page-content h3 {
    margin-bottom: 10px;
    color: var(--theme-secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.team-member-page-content .bio-block ul {
    margin-bottom: 30px;
}

.team-member-page-content .bio-block ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.team-member-page-content .bio-block ul li .fa-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: var(--theme-blue-color);
    color: var(--theme-primary-color);
    font-size: 12px;
}

.team-member-page-content .bio-block ul li a,
.team-member-page-content .bio-block ul li span {
    color: var(--theme-grey-color);
    font-size: 16px;
}

.team-member-page-content .bio-block ul li a:hover,
.team-member-page-content .bio-block ul li span:hover {
    color: var(--theme-blue-color);
}

.team-member-page-content .description-block p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-poppins);
}

.team-member-page-content .description-block ol,
.team-member-page-content .description-block ul {
    padding-left: 18px;
    margin-bottom: 30px;
}

.team-member-page-content .description-block li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-poppins);
}

/* ================================================== Contact Page */
.contact-us-form {
    padding: 30px;
    background: var(--theme-background-color);
}

.contact-us-form .form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--theme-grey-color);
}

.contact-us-form .form-label .required-field {
    color: red;
}

.contact-us-form .form-group {
    margin-bottom: 20px;
}

.contact-us-form .form-control {
    height: 45px;
    border-radius: 0;
    font-size: 14px;
}

.contact-us-form textarea.form-control {
    min-height: 200px;
}

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

.contact-us-form .btn-primary {
    border-radius: 5px;
    height: 45px;
    font-size: 14px;
    text-transform: uppercase;
    border-color: var(--theme-blue-color);
    background: var(--theme-blue-color);
}

/* ================================================== Visa Page */
.visa-inquiry-form {
    padding: 30px;
    background: var(--theme-background-color);
}

.visa-inquiry-form .form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--theme-grey-color);
}

.visa-inquiry-form .form-label .required-field {
    color: red;
}

.visa-inquiry-form .form-group {
    margin-bottom: 20px;
}

.visa-inquiry-form .form-control {
    height: 45px;
    border-radius: 0;
    font-size: 14px;
}

.visa-inquiry-form textarea.form-control {
    min-height: 200px;
}

.visa-inquiry-form .form-control::placeholder {
    color: var(--theme-grey-color);
}

.visa-inquiry-form .btn-primary {
    border-radius: 5px;
    height: 45px;
    font-size: 14px;
    text-transform: uppercase;
    border-color: var(--theme-blue-color);
    background: var(--theme-blue-color);
}

.visa-inquiry-form .select2-container .select2-selection--single {
    height: 45px;
}

.visa-inquiry-form .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
}

.visa-inquiry-form .select2-container--default .select2-selection--single {
    border: #dee2e6 solid 1px;
    border-radius: 0;
}

.visa-inquiry-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

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


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

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

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

/* 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;
        gap: 10px;
    }

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

    /* Header Bottom Section */
    .site-header-logo img {
        width: 300px;
    }

    .site-header-navigation {
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .header-auth-menu {
        margin-left: 0;
    }

    .header-main-menu {
        display: none;
    }

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


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

    /* 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: 50%;
        left: 0;
        width: 40px;
        height: 40px;
        right: 43px;
        font-size: 14px;
    }

    #testimonialsSlider .owl-nav button.owl-next {
        top: 50%;
        right: 0;
        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;
    }

    /* ============================================================================== */
    .header-top-menu-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-header-supports {
        margin-left: 0;
    }

    .site-header-middle .container {
        flex-direction: column;
    }

    .site-header-search {
        margin-left: 0;
    }

    .site-header-search-form .form-group .form-control {
        width: 100%;
    }

    .header-menu-list {
        overflow: hidden;
    }

    /* Banner */
    .banner-form-nav nav>.nav-tabs>.nav-link {
        padding: 15px;
    }

    .banner-form-nav nav>.nav-tabs>.nav-link span {
        font-size: 14px;
    }

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

    .banner-form-content>.tab-content .form-group-checkbox {
        position: inherit;
        width: 100%;
    }

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

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

    .banner-form .form-group .btn-form-search {
        padding: 15px 25px;
    }

    .banner-form .form-group .btn-form-search .fa-solid {
        top: 18px;
    }

    .banner-form .form-group .btn-form-search span {
        font-size: 16px;
    }

    .select2-container .select2-selection--single {
        height: 50px;
        margin-bottom: 10px;
    }

    .select2-container--default .select2-selection--single {
        border-radius: 10px;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 50px;
    }

    .banner-form .form-group .form-control {
        border-radius: 10px;
        margin-bottom: 10px;
        height: 50px;
    }

    /* Packages */
    #navtabPackages {
        overflow-x: scroll;
    }

    #navtabPackages .nabtab-package-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    #navtabPackages .nabtab-package-item span {
        font-size: 14px;
    }
}

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