* {
    margin: 0;
    padding: 0;
}

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

:root {
    --theme-color1: #553c22;
    --theme-color2: #cc813f;
}

body {
    overflow-x: hidden;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    color: #454442 !important;
}

ul li {
    list-style-type: none;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

ul {
    margin-bottom: 0 !important;
}

ol,
ul {
    padding-left: 0 !important;
}

a {
    text-decoration: none !important;
    font-weight: 600;
}

a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    position: relative;
}

img {
    max-width: 100%;
}


button:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none;
    border-color: var(--theme-color1) !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.primary-btn {
    color: #fff;
    background-color: var(--theme-color2);
    font-weight: 700;
    padding: 17px 20px !important;
    font-size: 13px;
    transition: .4s;
    max-width: max-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--theme-color2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    line-height: 12px;
}

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

.primary-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 48px;
    color: #454442;
    position: relative;
    text-transform: capitalize;
    font-family: 'Quattrocento', sans-serif !important;
}

.secondary-title {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--theme-color1);
    position: relative;
    max-width: max-content;
    padding: 8px 15px 3px 35px;
}

.secondary-title::before {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='' height='' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='m216.056 509.316 197.488-340.044c4.471-7.699-1.87-17.173-10.692-15.973l-131.364 17.855L302.875 6.372c1.058-5.555-6.104-8.738-9.518-4.231L99.183 258.451c-5.656 7.465.333 18.08 9.647 17.1l144.828-15.245-47.479 245.308c-1.145 5.917 6.85 8.914 9.877 3.702z' fill='%231476bc'/%3E%3Cpath d='M159.905 240.287c-3.627.29-6.036-3.675-4.108-6.76L300.976 1.241c-2.16-1.709-5.56-1.819-7.619.899L99.183 258.45c-5.656 7.466.333 18.08 9.647 17.1l144.828-15.245-47.479 245.308c-.64 3.309 1.592 5.637 4.201 6.194l81.359-257.447c3.814-12.067-5.808-24.156-18.423-23.146l-113.411 9.073z' fill='%23003860'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-box li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}

.list-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 15px;
    width: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='' height='' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M433.139 67.108 201.294 298.953c-6.249 6.249-16.381 6.249-22.63 0L78.861 199.15 0 278.011 150.547 428.56a55.766 55.766 0 0 0 78.861 0L512 145.968l-78.861-78.86z' fill='%23303030'/%3E%3Cpath d='M485.921 119.888 187.59 418.22a61.044 61.044 0 0 1-29.847 16.391 55.755 55.755 0 0 0 32.235 10.28 55.766 55.766 0 0 0 39.43-16.333L512 145.966l-26.079-26.078z' fill='%23000000' opacity='0.1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent !important;
}

/*=================Header Start=============*/
header {
    background-color: var(--theme-color1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 99;
}

/* Fixed header with slide-in effect */
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateY(-100%);
}

header.fixed.scrolled {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slide into view */
header.scrolled {
    top: 0;
    background: linear-gradient(to bottom, #37a1de 50%, #1b8ed0 50%)
}

header.scrolled .navigation.navigation-desktop {
    top: 0;
}

header.scrolled .header-logo-bar {
    display: none;
}

/* <!-- ------------ Mobile Menu Start ---------- --> */

.navbar-toggler-icon {
    background-image: url(../images/navigation.png) !important;
    width: 35px !important;
    height: 35px !important;
}

.header-logo a {
    max-width: max-content;
    display: block;
    margin: auto;
}

.website-logo {
    max-width: 120px;
    margin: 5px auto;
    display: block;
}

.header-logo-bar .row {
    align-items: center;
}

.header-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: end;
}

.header-btn svg {
    width: 20px;
    height: 20px;
}

.header-btn-item {
    position: relative;
    background: transparent;
    border: none;
}

.header-contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-contact a {
    color: #fff;
    transition: .4s;
    font-weight: 500;
    font-size: 20px;
    display: block;
}

.header-contact a:hover {
    color: var(--theme-color2);
}

.header-contact img {
    width: 70px;
}

.header-contact span {
    color: #fff;
}

/* <!-- ------------ Mobile Menu End ---------- --> */
/*=================Header End =============*/
/*================= Body Section Start=============*/
.home-banner {
    position: relative;
    height: 650px;
}

.home-banner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 12px;
    width: 100%;
    background: url('../images/design-border.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.home-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.home-banner .row {
    align-items: center;
}

.home-banner:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #0000005c;
    z-index: 1;
}

.banner-content {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 1;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Quattrocento', sans-serif !important;
    letter-spacing: 8px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.banner-content h5 {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Manrope', sans-serif !important;
}

.banner-content .primary-btn {
    margin-top: 40px;
}

/* --- Banner End --- */

.home-about-features-box-img {
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--theme-color1);
    border-radius: 100%;
    margin: auto;
    position: relative;
}

.home-about-features-box-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.home-about-features-box h2 {
    font-size: 16px;
    line-height: 1.5rem;
    text-align: center;
    font-weight: 700;
    width: 70%;
    margin: auto;
    padding-top: 20px;
}

.home-about .section-title p:last-child {
    margin-top: -20px;
    margin-bottom: 40px;
}

.home-destination-box {
    width: 100%;
    border-radius: 30px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0px 4px 24px 0px rgba(78, 32.99999999999995, 7.999999999999998, 0.2);
    padding: 10px;
    text-align: center;
}

.home-destination-img {
    height: 280px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.home-destination-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: .4s;
}

.home-destination-box:hover .home-destination-img img {
    transform: scale(1.05);
}

.home-destination-box:hover .home-destination-box-title {
    color: var(--theme-color2);
}

.home-destination-box-title {
    text-align: center;
    color: var(--theme-color1);
    text-transform: capitalize;
    font-family: 'Quattrocento', sans-serif !important;
    font-weight: 600;
    font-size: 25px;
}

.home-destination-box-text {
    padding-top: 20px;
    padding-bottom: 10px;
}

.home-destination-box-tours {
    color: #000;
}

.home-cta {
    background-color: #c88c3d1a;
    margin-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.home-cta .row {
    align-items: center;
}

.home-cta-logo h2 span {
    font-size: 25px;
    display: block;
    line-height: 30px;
}

.home-cta-logo h2 small {
    font-size: 15px;
    display: block;
    line-height: 20px;
}

.footer-cta {
    background-image: url('../images/home-cta-bg-4.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
}

.footer-cta-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.footer-cta .section-title {
    margin-bottom: 0;
}
/* ------- Form Section Start --------- */
.home-form-section {
    background-color: #ededed;
    position: relative;
    margin-top: 100px;
    padding-bottom: 100px;
}

.home-form-section-box {
    padding: 60px;
    background-color: #fff;
}

.enquiry-form {
    overflow: hidden;
    width: 90%;
    margin-left: auto;
}

/* .enquiry-form .row {
    row-gap: 15px;
} */

.enquiry-form .primary-btn {
    padding: 20px 100px !important;
    border: none;
    margin: 35px auto auto auto !important;
}

.enquiry-form input.form-control {
    height: 55px;
}

.enquiry-form .form-control {
    font-size: 16px;
    font-weight: 500;
    padding-left: 15px;
}

.enquiry-form .form-control::placeholder,
.enquiry-form .form-control:focus,
.enquiry-form .form-control[type="text"],
.enquiry-form .form-control[type="email"],
.enquiry-form select,
.enquiry-form select:focus,
.enquiry-form .form-control {
    color: #000;
}

.enquiry-form-col {
    position: relative;
}

.enquiry-form-col i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--theme-main);
}

.enquiry-form-col-textarea i {
    top: 15%;
}

.enquiry-form-col-textarea textarea {
    height: 110px;
    border-radius: 24px;
}

.ui-datepicker-trigger {
    display: none;
}

.enquiry-form input,
.enquiry-form textarea {
    border-radius: 4px !important;
    border: 1px solid #A5A5A5 !important;
}

.home-form-section-box .row {
    align-items: center;
}

.home-form-section-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.home-form-section-btns a {
    position: relative;
    color: var(--theme-color2);
    font-size: 22px;
    font-family: 'Quattrocento', sans-serif !important;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-form-section-btns a:hover {
    color: var(--theme-color1);
}

.home-form-section-box .primary-title {
    font-size: 62px;
    line-height: 65px;
    font-weight: 500;
    text-transform: unset;
}

.home-form-section-box .section-title p a {
    color: var(--theme-color2);
}

/* ------- Form Section End --------- */
.home-package-card {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 5px;
    width: 92%;
    margin: 12px auto 20px auto;
    position: relative;
    min-height: 485px;
}

.home-package-badge {
    border-radius: 0px 13px 13px 4px;
    background-color: var(--theme-color2);
    padding: 5px 14px;
    font-weight: 600;
    line-height: 1.5;
    position: absolute;
    left: -5px;
    top: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-package-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 4px;
    width: 5px;
    border-bottom-left-radius: 100%;
    border-top-left-radius: 100%;
    background-color: var(--theme-color2);
    filter: brightness(0.7);
}

.home-package-img {
    height: 270px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    display: block;
    box-shadow: 0px 40px 32px -24px rgba(78, 32.99999999999995, 7.999999999999998, 0.3215686274509804);
    margin-bottom: 20px;
}

.home-package-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .4s;
}

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

.home-package-card:hover .home-package-title {
    color: var(--theme-color2);
}

.home-package-title {
    font-size: 20px;
    line-height: 25px;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-package-price-days {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.home-package-price-days p {
    margin-bottom: 0;
}

.home-package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.home-package-price-days p strong {
    color: #000;
}

.home-package-btn {
    color: var(--theme-color2);
    font-size: 16px;
    font-family: 'Quattrocento', sans-serif !important;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    max-width: max-content;
}

.home-package-btn img {
    height: 25px;
    width: 25px !important;
}

.home-package .primary-btn {
    margin: 60px auto 0 auto;
}

/* ======= */
.best-hotels {
    position: relative;
    padding: 100px 0;
    /* background-image: url('../images/best-hotels-for-stay-1.jpg'); */
    background-image: url('../images/best-hotels-for-stay-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 100px;
}

.best-hotels::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00000077;
}

.best-hotels .row {
    justify-content: space-between;
}

.best-hotels-box {
    background-color: #FFFFFF1A;
    backdrop-filter: blur(8px);
    border: 1px solid #FFFFFF7A;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-height: 500px;
    margin-top: 30px;
    width: 95%;
}

/* ======= */
.testimonial-card {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-name {
    font-weight: 900;
    font-size: 18px;
    color: #000000;
    text-transform: capitalize;
    margin: 0;
    font-family: 'Quattrocento', sans-serif !important;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-stars i {
    font-size: 15px;
    color: rgb(246, 187, 6);
}

.review-stars svg {
    width: 16px;
    margin-left: 10px;
}

.testimonial-card p {
    color: #000;
    margin: 0;
    width: 95%;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    font-weight: 400;
    color: #000000;
    opacity: 0.5;
}

.owl-testimonial button.owl-prev {
    position: absolute;
    top: 45%;
    left: -2%;
    color: #000 !important;
}

.owl-testimonial button.owl-next {
    position: absolute;
    top: 45%;
    right: -2%;
    color: #000 !important;
}

.owl-testimonial button.owl-prev:hover,
.owl-testimonial button.owl-next:hover {
    background-color: transparent !important;
}

.owl-testimonial button.owl-prev i,
.owl-testimonial button.owl-next i {
    width: 35px;
    height: 35px;
    line-height: 34px;
    display: block;
    opacity: 1;
    background-color: #ffffff;
    border-radius: 100%;
    transition: .6s;
    font-size: 16px;
    color: #575757;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
}

.owl-testimonial button.owl-prev i:hover,
.owl-testimonial button.owl-next i:hover {
    background-color: var(--theme-color1);
    color: #fff;
}

/* ===== Search Filter */
.accordion {
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    height: 100%;
}

.accordion-item {
    background: #fff !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    height: 100%;
}

.accordion-header {
    box-shadow: none !important;
    color: #383838;
    padding: 6px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    width: 100%;
    background: #fff !important;
    border: none !important;
    position: relative;
    height: 100%;
}

.accordion-header::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    max-width: max-content;
    max-height: max-content;
}

.accordion-content {
    background: #fff;
    border-bottom: 1px solid #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 100% !important;
    position: absolute;
    width: 100%;
}

.range-box {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.04);
    padding: 0 10px;
}

.range-label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}

/* Custom range sliders */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: relative;
    height: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: goldenrod;
    cursor: pointer;
    margin-top: -5px;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: relative;
}

.filter-form-sec {
    box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.04);
    padding: 25px 5px;
    width: 100%;
    margin-top: -55px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.filter-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab-list {
    width: 23%;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #d9d9d9;
    position: relative;
}

.filter-tab-list .accordion-content,
.filter-tab-list .form-select,
.filter-tab-list .form-control {
    border: none !important;
    height: 100%;
}

.filter-btn {
    margin-left: -10px;
}

.filter-btn .primary-btn {
    border-radius: 0;
    height: 100%;
    font-size: 20px;
}

































































/*================= Body Section End=============*/

/*================= Footer Start =============*/
.footer-social {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.footer-social .footer-title {
    width: 100%;
}

.footer-social li {
    max-width: max-content;
}

.footer-social a {
    color: #fff;
    font-size: 14px;
    border: 1px solid;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center;
    transition: .4s;
}

.footer-social a:hover {
    background-color: #F0E2B6;
}

.footer-social a:hover i {
    color: var(--theme-color1);
}

.footer-contents {
    background-color: #36454f;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
}

.footer-link-row {
    padding-bottom: 10px;
    padding-top: 60px;
    background-image: url('../images/website_log.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

.footer-link-row::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #36454fe8;
}

.footer-link-row .row {
    position: relative;
}

.business-links {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    flex-wrap: wrap;
}

.business-links img {
    max-width: 200px;
    object-fit: cover;
    display: block;
}

footer ul {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links a {
    text-transform: capitalize;
    color: #fff;
    transition: .4s;
    display: flex;
    max-width: max-content;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.quick-links p {
    color: #fff;
    width: 95%;
}

.quick-links ul a:hover {
    color: #F0E2B6;
}

.quick-links ul li {
    border-bottom: 1px dashed #ffff;
    padding-bottom: 10px;
}

.footer-contact-box a {
    color: #fff;
    transition: .4s;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    /* IMPORTANT */
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    max-width: 100%;
    /* remove max-content */
}

.footer-contact-box a:hover {
    color: #F0E2B6;
}

.footer-contact-box a:hover i {
    background-color: #F0E2B6;
    color: var(--theme-color1);
}

.footer-contact-box a i {
    border: 1px solid;
    width: 30px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 30px;
    /* FORCE SAME WIDTH */
}


.footer-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    position: relative;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-payment {
    justify-content: end;
}

.footer-payment img {
    height: 80px;
}

.footer-copyright p {
    padding: 10px 0;
    color: #fff !important;
    font-size: 16px;
    margin: 0;
    text-align: center;
    line-height: 22px;
}

.footer-copyright p span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copyright p a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    font-size: 15px;
}

.footer-copyright p a:hover {
    color: #F0E2B6;
}

.footer-copyright {
    background-color: var(--theme-color1);
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 30px;
}

.footer-bottom-right p {
    text-align: right;
}

/*================= Footer End =============*/
/*<!-- ----------------- Bottom to Top Scroll Button Start ------------------>*/
#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    border: none !important;
    background: var(--theme-color1);
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 4px;
    font-size: 20px;
    z-index: 9;
    box-shadow: 0px 8px 24px 0px rgba(212, 160, 1, 0.35);
}

#scrollTopBtn.show {
    display: block;
}

#scrollTopBtn:hover {
    background: #F0E2B6;
    color: var(--theme-color1);
}

/*<!-- ----------------- Bottom to Top Scroll Button End ------------------>*/
/*<!-- ----------------- Whatsapp Chat Start ------------------>*/
.play-button-wrapper {
    position: fixed;
    bottom: 25px;
    right: 20px;
    color: #fff;
    width: 45px;
    z-index: 9;
    filter: drop-shadow(2px 4px 6px black);
}

.play-button {
    width: 100%;
    height: 100%;
    background-color: #369806;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 rgba(54, 152, 6, 0.7);
    animation: pulse 1.5s infinite ease-in-out;
    cursor: pointer;
}

.play-button::before {
    content: '';
    position: absolute;
    left: 33px;
    top: 26px;
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(54, 152, 6, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(54, 152, 6, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(54, 152, 6, 0);
    }
}

/*<!-- ----------------- Whatsapp Chat End ------------------>*/
.footer-btn {
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    gap: 1px;
    z-index: 9;
}
.footer-btn .primary-btn {
	width: 100%;
	max-width: 100%;
	text-align: center;
	border-radius: 0;
}
/*===================================Responsive Start==========================*/
@media only screen and (max-width: 1199.5px) {}

@media only screen and (max-width: 991.5px) {
    .pt-100 {
        padding-top: 40px !important;
    }
    .primary-title {
		font-size: 34px;
		line-height: 40px;
	}

    .footer-copyright p {
        text-align: center;
        margin: 0;
    }

    .footer-copyright-right p {
        justify-content: center;
    }

    .primary-btn {
        padding: 15px !important;
    }
	.filter-tab {
		gap: 8px;
	}
	.filter-search-form .container {
		max-width: 100% !important;
	}
	.filter-tab-list {
		width: 48%;
		border-width: 1px;
		height: 50px;
	}
	.filter-btn {
		margin-left: 0;
	}
	.range-box {
		z-index: 2;
		position: relative;
		background-color: #fff;
	}
	.filter-tab-list .accordion-content {
		background-color: #fff;
		z-index: 2;
	}
	.filter-tab-list .accordion-item.active .accordion-content {
		overflow: visible;
	}
	.home-form-section-box .primary-title {
		font-size: 50px;
		line-height: 50px;
	}
	.enquiry-form {
		width: 100%;
	}
	.home-destination-sec .row {
		row-gap: 30px;
	}
	.home-cta {
		padding-bottom: 60px;
	}
	.footer-cta {
    	background-position: 50% 75%;
	}
	.footer-link-row .row {
		row-gap: 30px;
	}
	footer ul {
		margin-top: 22px;
	}
	.footer-link-row {
		padding-bottom: 40px;
		padding-top: 40px;
	}
	.footer-copyright {
		padding-bottom: 60px;
		padding-top: 10px;
	}
}

@media only screen and (max-width: 480.5px) {
    .section-title {
        margin-bottom: 15px;
    }

    .primary-title {
		font-size: 30px;
		line-height: 40px;
	}

    .secondary-title {
        font-size: 14px;
        font-weight: 600;
    }
	.plr-100 {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.banner-content h1 {
		font-size: 30px;
		letter-spacing: 1px;
	}
	.banner-content h5 {
		font-size: 24px;
	}
	.home-banner {
		height: 350px;
	}
	.filter-tab-list {
		width: 100%;
	}
	.home-about-features .row {
		row-gap: 20px;
	}
	.home-about .section-title p:last-child {
		margin-bottom: 0;
	}
	.home-form-section {
		margin-top: 30px;
		padding-bottom: 30px;
	}
	.home-form-section-box {
		padding: 40px 0;
	}
	.home-form-section-box .primary-title {
		font-size: 40px;
		line-height: 40px;
	}
	.home-form-section-btns {
		gap: 15px;
	}
	.enquiry-form-col {
		padding: 0 !important;
	}
	.enquiry-form .primary-btn {
		padding: 20px 70px !important;
		margin: 15px auto auto auto !important;
	}
	.home-destination-sec .col-lg-3.col-md-6 {
		padding: 0 !important;
	}
	.home-destination-img img {
		object-position: center;
	}
	.home-cta {
		margin-top: 50px;
		padding-bottom: 35px;
	}
	.home-package .primary-btn {
		margin: 30px auto 0 auto;
	}
	.best-hotels {
		margin-top: 50px;
		padding: 30px 0;
	}
	.best-hotels .row .col-lg-6 {
		padding: 0;
	}
	.best-hotels-box {
		padding: 20px 10px;
		gap: 0;
		min-height: unset;
		margin-top: 0;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.best-hotels .row {
		row-gap: 20px;
	}
	.home-package-img {
		height: 210px;
		margin-bottom: 0;
	}
	.home-package-card {
		min-height: unset;
	}
	.footer-cta {
		background-position: left;
	}
	.home-cta.footer-cta .col-lg-5 {
		padding: 0;
	}
	.home-package-badge {
		top: 15px;
	}
	.testimonial-card {
		padding: 20px 50px;
	}
	.enquiry-form-col {
		padding: 0 !important;
	}
}

/*===================================Responsive End==========================*/

/*=================================== Mega Menu Start ==========================*/
.navigation.navigation-mobile {
    display: none !important;
}

.navigation.navigation-desktop {
    display: table !important;
}

.navigation {
    width: 100%;
    display: table;
    position: relative;
    background-color: #fff;
}

.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.navigation-portrait {
    height: 48px;
}

.navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
}

.navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navigation-portrait .nav-brand {
    font-size: 18px;
    line-height: 48px;
}

.nav-logo>img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
}

.nav-logo:focus>img {
    outline: initial;
}

.navigation-portrait .nav-logo>img {
    height: 36px;
    margin: 6px auto 6px 15px;
    padding: 0;
}

.nav-toggle {
    background-color: #fff;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    cursor: pointer;
}

.nav-toggle:before {
    content: "";
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color1);
    mask-image: url("data:image/svg+xml,%3Csvg%20aria-hidden%3D'true'%20focusable%3D'false'%20role%3D'presentation'%20viewBox%3D'0%200%2064%2064'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M7%2015h51M7%2032h43M7%2049h51'%20stroke%3D'black'%20stroke-width%3D'5'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20aria-hidden%3D'true'%20focusable%3D'false'%20role%3D'presentation'%20viewBox%3D'0%200%2064%2064'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M7%2015h51M7%2032h43M7%2049h51'%20stroke%3D'black'%20stroke-width%3D'5'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 70%;
    height: 100%;
    top: 0;
    left: -72%;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    left: auto;
    right: 0;
}

.nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #343a40;
    font-size: 26px;
    cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    font-size: 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.navigation-portrait .nav-menu {
    width: 100%;
}

.navigation-landscape .nav-menu.nav-menu-centered {
    float: none;
    text-align: center;
}

.navigation-landscape .nav-menu.nav-menu-centered>li {
    float: none;
}

.nav-menu>li {
    display: inline-block;
    float: left;
    text-align: left;
}

.navigation-portrait .nav-menu>li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu>li:last-child {
    border-bottom: solid 1px #f0f0f0;
}

.nav-menu+.nav-menu>li:first-child {
    border-top: none;
}

.navigation-portrait .nav-menu>li>a {
    width: 100%;
    height: auto;
    padding: 12px 15px 12px 26px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: var(--theme-color1);
}

.nav-menu>li>a>i,
.nav-menu>li>a>[class*="ion-"] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    transform: scale(1.4);
}

.nav-menu>li>a>[class*="ion-"] {
    width: 16px;
    display: inline-block;
    transform: scale(1.8);
}

.navigation-portrait .nav-menu.nav-menu-social {
    width: 100%;
    text-align: center;
}

.nav-menu.nav-menu-social>li {
    text-align: center;
    float: none;
    border: none !important;
}

.navigation-portrait .nav-menu.nav-menu-social>li {
    width: auto;
}

.nav-menu.nav-menu-social>li>a>[class*="ion-"] {
    font-size: 12px;
}

.nav-menu.nav-menu-social>li>a>.fa {
    font-size: 14px;
}

.navigation-portrait .nav-menu.nav-menu-social>li>a {
    padding: 15px;
}

.submenu-indicator {
    margin-left: 6px;
    margin-top: 4px;
    float: right;
    transition: all 0.2s;
}

.navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 20000;
}

.submenu-indicator-chevron {
    height: 8px;
    width: 8px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--theme-color2) var(--theme-color2) transparent;
    transform: rotate(45deg);
    transition: border 0.2s;
}

.navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
}

.nav-menu>li:hover>a .submenu-indicator-chevron,
.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron {
    border-color: transparent var(--theme-color2) var(--theme-color2) transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 19999;
}

.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nav-button {
    margin: 18px 15px 0;
    padding: 8px 14px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.nav-button:hover,
.nav-button:focus {
    color: #fff;
    text-decoration: none;
}

.navigation-portrait .nav-button {
    width: calc(100% - 52px);
    margin: 17px 26px;
}

.nav-text {
    margin: 25px 15px;
    display: inline-block;
    color: #343a40;
    font-size: 14px;
}

.navigation-portrait .nav-text {
    width: calc(100% - 52px);
    margin: 12px 26px 0;
}

.navigation-portrait .nav-text+ul {
    margin-top: 15px;
}

.nav-dropdown {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
}

.nav-menu>li>.nav-dropdown {
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown>li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}

.nav-dropdown>li>a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 13px;
    color: #343a40;
    background-color: #fdfdfd;
    text-transform: uppercase;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #fff;
    background-color: var(--theme-color1);
}

.nav-dropdown.nav-dropdown-left {
    right: 0;
}

.nav-dropdown>li>.nav-dropdown-left {
    left: auto;
    right: 100%;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left>li>a {
    text-align: right;
}

.navigation-portrait .nav-dropdown>li>a {
    padding: 12px 20px 12px 30px;
}

.navigation-portrait .nav-dropdown>li>ul>li>a {
    padding-left: 50px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>a {
    padding-left: 70px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>a {
    padding-left: 90px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>ul>li>a {
    padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
    right: 15px;
    top: 10px;
    position: absolute;
}

.navigation-portrait .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(-45deg);
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(45deg);
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent var(--theme-color1) var(--theme-color1) transparent;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
    left: 10px;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(135deg);
}

.nav-dropdown-horizontal {
    width: 100%;
    left: 0;
    background-color: #fdfdfd;
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
    width: 100%;
    top: 100%;
    left: 0;
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
    border-top: none;
}

.nav-dropdown-horizontal>li {
    width: auto;
    clear: none;
    position: static;
}

.navigation-portrait .nav-dropdown-horizontal>li {
    width: 100%;
}

.nav-dropdown-horizontal>li>a {
    position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
    height: 18px;
    top: 11px;
    transform: rotate(90deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
    height: 42px;
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.megamenu-panel {
    width: 100%;
    padding: 15px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    background-color: #fdfdfd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
    height: 500px;
    overflow-y: auto;
}

.navigation-portrait .megamenu-panel {
    padding: 25px;
    position: static;
    display: block;
    transform: unset;
}

.megamenu-panel [class*="container"] {
    width: 100%;
}

.megamenu-panel [class*="container"] [class*="col-"] {
    padding: 0;
}

.megamenu-panel-half {
    width: 50%;
}

.megamenu-panel-quarter {
    width: 25%;
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
    width: 100%;
}

.megamenu-panel-row {
    width: 100%;
}

.megamenu-panel-row:before,
.megamenu-panel-row:after {
    content: "";
    display: table;
    line-height: 0;
}

.megamenu-panel-row:after {
    clear: both;
}

.megamenu-panel-row [class*="col-"] {
    display: block;
    min-height: 20px;
    float: left;
    margin-left: 3%;
}

.megamenu-panel-row [class*="col-"]:first-child {
    margin-left: 0;
}

.navigation-portrait .megamenu-panel-row [class*="col-"] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
}

.navigation-portrait .megamenu-panel-row:first-child [class*="col-"]:first-child {
    margin-top: 0;
}

.megamenu-panel-row .col-1 {
    width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
    width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
    width: 22.75%;
}

.megamenu-panel-row .col-4 {
    width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
    width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
    width: 48.5%;
}

.megamenu-panel-row .col-7 {
    width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
    width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
    width: 74.25%;
}

.megamenu-panel-row .col-10 {
    width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
    width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
    width: 100%;
}

.megamenu-tabs {
    width: 100%;
    float: left;
    display: block;
}

.megamenu-tabs-nav {
    width: 20%;
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

.navigation-portrait .megamenu-tabs-nav {
    width: 100%;
}

.megamenu-tabs-nav>li>a {
    width: 100%;
    padding: 10px 16px;
    float: left;
    font-size: 13px;
    text-decoration: none;
    color: #343a40;
    border: solid 1px #eff0f2;
    outline: 0;
    background-color: #fff;
}

.megamenu-tabs-nav>li.active a,
.megamenu-tabs-nav>li:hover a {
    background-color: #f5f5f5;
}

.megamenu-tabs-pane {
    width: 80%;
    min-height: 30px;
    padding: 20px;
    float: right;
    display: none;
    font-size: 13px;
    color: #343a40;
    border: solid 1px #eff0f2;
    background-color: #fff;
}

.megamenu-tabs-pane.active {
    display: block;
}

.navigation-portrait .megamenu-tabs-pane {
    width: 100%;
}

.megamenu-lists {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-left: solid 1px #f0f0f0;
    justify-content: center;
}

.megamenu-list {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
}

.megamenu-list:last-child {
    margin: 0;
    border: none;
}

.navigation-landscape .megamenu-list {
    margin: -15px 0;
    padding: 20px 0;
    border-right: solid 1px #f0f0f0;
    border-top: solid 1px #f0f0f0;
}

.megamenu-list>li>a {
    width: 100%;
    padding: 10px 15px;
    display: inline-block;
    color: #454442;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.megamenu-list>li>a:hover {
    background-color: var(--theme-color1);
    color: #fff;
}

.megamenu-list>li.megamenu-list-title>a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-color1);
    letter-spacing: 2px;
}

.navigation-landscape .list-col-4 {
    width: 20%;
}

.navigation-landscape .list-col-6 {
    width: 50%;
}

.nav-menu>li>a {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 15px;
    display: inline-block;
    font-size: 14px;
    color: var(--theme-color1);
    transition: color 0.3s, background 0.3s;
    line-height: 20px;
}

.nav-dropdown>li>a {
    color: #454442;
    padding: 10px 20px;
    border-bottom: 1px solid #f6f6f6;
}

.nav-dropdown>li>a:hover,
.nav-dropdown>li>a:focus {
    color: #fff;
    background-color: var(--theme-color1);
}

.main_header_area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.navigation-portrait .nav-menu>li>a {
    width: 100%;
    height: auto;
    padding: 10px 10px 10px 30px;
}

.submenu-indicator.dropdown-toggle-only.d-inline-block.d-lg-none {
    display: none;
}

@media only screen and (max-width: 991.5px) {
    .submenu-indicator.dropdown-toggle-only.d-inline-block.d-lg-none {
        display: inline-block;
    }

    .submenu-indicator.dropdown-toggle-only.d-none.d-lg-inline-block {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
    }

    .navigation.navigation-mobile {
        display: table !important;
    }

    .navigation.navigation-mobile .nav-toggle {
        right: unset;
        left: 0;
    }

    .row {
        margin: 0 !important;
        --bs-gutter: unset !important;
    }
	.header-logo-bar .row {
		justify-content: space-between;
	}
	.header-logo-bar .row .col-4 {
		width: 50% !important;
	}
	.header-logo a {
		margin-right: auto;
		margin-left: unset;
	}
	.mobile-menu-section {
		width: 55px;
		margin-left: auto;
	}
	.header-logo-bar .container {
		max-width: 98% !important;
	}
	.navigation {
		background-color: transparent !important;
	}
	.website-logo {
		max-width: 80px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

    .nav-dropdown>li>a,
    .megamenu-list>li>a {
        width: 65%;
    }
}

.megamenu-submenu {
    font-size: 16px !important;
}

.megamenu-submenu:hover {
    color: var(--theme-color1) !important;
    background-color: transparent !important;
}

.megamenu-list-title a {
    color: var(--theme-color2) !important;
}

/*=================================== Mega Menu End ==========================*/



/* ====================== Dynamic Pages =============== */
.bread-crumb {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 200px 40px;
}

.bread-crumb::before {
    position: absolute;
    content: '';
    background: #00000057;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.bread-crumb-banner {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.bread-crumb-title {
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82%;
    margin: 0;
    font-family: "Quattrocento", Sans-serif;
}

.package-details-page .bread-crumb-title {
    font-size: 32px;
    line-height: 35px;
}

.package-details-page-content .primary-title {
    font-size: 30px;
    line-height: 35px;
    color: var(--theme-color1);
    font-weight: 600;
}

.owl-package-details-featured-img {
    height: 400px;
}

.owl-package-details-featured-img .owl-stage-outer,
.owl-package-details-featured-img .owl-stage,
.owl-package-details-featured-img .owl-item,
.owl-package-details-featured-img .items,
.owl-package-details-featured-img .items img {
    height: 100%;
    object-fit: cover;
}

.itinerary-accordians .custom-accordion-item {
    border-top: 1px solid var(--theme-color2) !important;
}

.itinerary-accordians .custom-accordion-item:last-child {
    border-bottom: 1px solid var(--theme-color2) !important;
}

.itinerary-accordians .custom-accordion-header {
    color: var(--theme-color1);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 10px;
}

.itinerary-accordians .custom-accordion-header::before {
    color: var(--theme-color1);
}

.itinerary-accordians .custom-accordion-item.active .custom-accordion-content {
    border-bottom: none !important;
    max-height: max-content !important;
}

.itinerary-accordians .custom-accordion-content {
    padding: 0 8px;
    border-bottom: none !important;
}

.itinerary-accordians .custom-accordion-item.active .custom-accordion-content {
    background-color: #553c220a !important;
}

.itinerary-accordians {
    position: relative;
}

.itinerary-accordians .custom-accordion-item.active .custom-accordion-header {
    background-color: #e1cab173 !important;
}
.itinerary-accordians .custom-accordion-item.active .custom-accordion-content {
    position: unset;
}
.custom-accordion {
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    height: 100%;
}
.custom-accordion-item {
    background: #fff !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    height: 100%;
}
.custom-accordion-header {
    box-shadow: none !important;
    color: #383838;
    padding: 6px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    width: 100%;
    background: #fff !important;
    border: none !important;
    position: relative;
    height: 100%;
}
.custom-accordion-header::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    max-width: max-content;
    max-height: max-content;
}
.custom-accordion-content {
    background: #fff;
    border-bottom: 1px solid #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.custom-accordion-item.active .custom-accordion-content {
    max-height: 100% !important;
    position: absolute;
    width: 100%;
}
.owl-package-details-featured-img button.owl-prev {
    position: absolute;
    top: 50%;
    left: 0%;
    color: #000 !important;
}
.owl-package-details-featured-img button.owl-next {
    position: absolute;
    top: 50%;
    right: 0%;
    color: #000 !important;
}
.owl-package-details-featured-img button.owl-prev:hover,
.owl-package-details-featured-img button.owl-next:hover {
    background-color: transparent !important;
}
.owl-package-details-featured-img button.owl-prev i,
.owl-package-details-featured-img button.owl-next i {
    border: 1px solid var(--theme-color2);
    background-color: var(--theme-color2);
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    transition: .4s;
    font-size: 18px;
    color: #fff;
}
.owl-package-details-featured-img button.owl-prev i:hover,
.owl-package-details-featured-img button.owl-next i:hover {
    background-color: var(--theme-color1);
    border-color: var(--theme-color1);
    transition: .4s;
}
.package-cost-duration {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    border-top: 1px solid var(--theme-color1);
    border-bottom: 1px solid var(--theme-color1);
    margin: 40px 0;
    padding: 5px 0;
}
.package-cost-duration .primary-title {
    margin: 0;
}
.package-cost-duration-value {
    color: var(--theme-color2);
}
.package-details-right {
    position: relative;
    width: 95%;
    margin-left: auto;
    background: url('https://duencyitservices.in/wordpress/maonosafaris/wp-content/uploads/2026/02/maonosafaris-details-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
}
.include-exclude-sec {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.includes-excludes-lists {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.includes-excludes-lists li {
    position: relative;
    padding-left: 30px;
    font-weight: 600;
}
.includes-excludes-lists li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
}
.includes-list li::before {
    background-image: url('../images/included.svg');
}
.excludes-list li::before {
    background-image: url('../images/excluded.svg');
}
.home-package-card.single-filter-package {
    width: 100%;
}
.filter-packages {
    margin-top: 80px;
    margin-bottom: 50px;
}
/* =============== Hotel Details Page ================== */
.owl-hotel-details-img {
    height: 400px;
}
.owl-hotel-details-img .owl-stage-outer,
.owl-hotel-details-img .owl-stage,
.owl-hotel-details-img .owl-item,
.owl-hotel-details-img .items,
.owl-hotel-details-img .items img {
    height: 100%;
    object-fit: cover;
}
.owl-hotel-details-img button.owl-prev {
    position: absolute;
    top: 45%;
    left: -2%;
    color: #000 !important;
}
.owl-hotel-details-img button.owl-next {
    position: absolute;
    top: 45%;
    right: -2%;
    color: #000 !important;
}
.owl-hotel-details-img button.owl-prev:hover,
.owl-hotel-details-img button.owl-next:hover {
    background-color: transparent !important;
}
.owl-hotel-details-img button.owl-prev i,
.owl-hotel-details-img button.owl-next i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: block;
    opacity: 1;
    background-color: #ffffff;
    border-radius: 100%;
    transition: .6s;
    font-size: 16px;
    color: #575757;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
}
.owl-hotel-details-img button.owl-prev i:hover,
.owl-hotel-details-img button.owl-next i:hover {
    background-color: var(--theme-color1);
    color: #fff;
}
.hotel-details-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px !important;
}
.hotel-details-content ul li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}
.hotel-details-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 15px;
    width: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='' height='' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M433.139 67.108 201.294 298.953c-6.249 6.249-16.381 6.249-22.63 0L78.861 199.15 0 278.011 150.547 428.56a55.766 55.766 0 0 0 78.861 0L512 145.968l-78.861-78.86z' fill='%23303030'/%3E%3Cpath d='M485.921 119.888 187.59 418.22a61.044 61.044 0 0 1-29.847 16.391 55.755 55.755 0 0 0 32.235 10.28 55.766 55.766 0 0 0 39.43-16.333L512 145.966l-26.079-26.078z' fill='%23000000' opacity='0.1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}