:root {
    --color-green: #A7D6E0;
    --color-dark-green: #ff6767;
    --color-yellow: #fcbf4c;
    --color-sandstone: #dae7e2;
    --theme-color: #1a87a8;
    --theme-color2: #444d5e;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff'),
        url('../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff'),
        url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff'),
        url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('../fonts/Poppins-MediumItalic.woff') format('woff'),
        url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBoldItalic.woff') format('woff'),
        url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}


body {
    color: #2f2f2f;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;

}
html, body {width: 100%;height: 100%;}
h1, h2, h3, .h3, h4 {
    color: #000000;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 18px;
}
img {
    max-width: 100%;
    height: auto;
}
.theme-color {
    color: var(--theme-color);
}
a {
	color: var(--theme-color);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	transition: all 0.35s;
	text-decoration: none;
}
a:hover, a:focus, button:focus, .btn:focus, input:focus {
    outline: none;
    text-decoration: none;
    box-shadow: none;
}

.list-unstyled {
    margin: 0;
    list-style: none;
}
.list-unstyled.inline>li {
    display: inline-block;
}
.btn.theme-btn, .btn-primary {
    position: relative;
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 5px;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    z-index: 1;
}
.btn.theme-btn:hover, .btn-primary:hover {
    background: none;
    color: var(--theme-color);
}
.btn.theme-btn i {
    font-weight: normal;
}
.btn.theme-btn.btn2 {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: #000;
    font-weight: 600;
}
.btn.theme-btn.btn2:hover {
    background: var(--color-dark-green);
    border-color: var(--color-dark-green);
    color: #ffffff;
}

.btn.readMore, .datepicker_area .daterangepicker .drp-buttons .applyBtn {
    background: none;
    border: none;
    border-radius: 0;
    padding: 1px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
}
.btn.readMore:hover, .datepicker_area .daterangepicker .drp-buttons .applyBtn:hover {
    color: var(--theme-color);
}
.btn.readMore .fa.fa-angle-right {
    font-size: 1.2em;
}
.btn.clearBtn, .datepicker_area .daterangepicker .drp-buttons .cancelBtn {
    color: #666666;
    background: none;
    border: none;
    border-radius: 0;
    padding: 1px 0;
    font-size: 15px;
    font-weight: 500;
}
.section-padding {
    padding: 65px 0;
}
.heading {
    margin-bottom: 30px;
}
.heading .logo_icon {
    max-width: 180px;
    margin-bottom: 15px;
}
span.subTitle {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 10px;
    display: block;
}

.heading h1, .heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-color);
    background: linear-gradient(55deg, var(--theme-color), var(--theme-color2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.heading h2 span, .heading h1 span {
    color: var(--theme-color);
}
.heading h1.h1 {
    font-size: 38px;
    font-weight: 700;
}
.heading h2.h3 {
    font-size: 26px;
}
.heading p {
    font-size: 16px;
    font-weight: 500;
    color: #675c5c;
    max-width: 680px;
    width: 100%;
    margin-top: 10px;
}
.heading.text-center p {
    margin-left: auto;
    margin-right: auto;
}
.light_bg {
    background: var(--color-sandstone);
}
.dark_bg {
    background: #1E1E1E;
}

.swiperArrow {
    cursor: pointer;
}
.swiperArrow.swiper-button-disabled {
    opacity: 0.6;
}
.swiperArrow.swiper-button-lock {
    display: none !important;
}
.swiper .arrowBtn {
    position: absolute;
    width: 86px;
    bottom: 0;
    right: 0;
    z-index: 4;
}
.swiper .arrowBtn.static {
    position: static;
    margin-top: 14px;
}
.swiper .swiperArrow {
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    font-size: 18px;
    color: var(--theme-color);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination.outside {
    position: static;
    margin-top: 20px;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
}




.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 12px 0;
    z-index: 999;
    transition: all 0.35s;
}
.header.fixed {
    background: #fffbf8;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.05),0 4px 4px 0 rgba(0,0,0,.05);
}
.navbar-brand img {
    max-width: 200px;
    max-height: 50px;
}

ul.main_menu {
    list-style: none;
    display: block;
    width: 100%;
}

.navbarMenu ul.main_menu>li>a {
    color: #000000;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.navbarMenu ul.main_menu>li>a:hover {
    color: var(--theme-color);
}

.header .closeNav {
    position: absolute;
    background: none;
    border: none;
    right: 15px;
    top: 8px;
    font-size: 34px;
    font-weight: 200;
    padding: 0 8px;
    cursor: pointer;
}
.header .overlay_close.closeNav {
    background: rgba(79, 80, 60, 0.2);
    backdrop-filter: blur(6px);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.nav_open .overlay_close.closeNav {
    opacity: 1;
    visibility: visible;
}
body.nav_open {
    overflow: hidden;
}

.header .btnBox {
    column-gap: 20px;
}
.navbar_toggle {
    background: #ffffff;
    position: relative;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    width: 40px;
    height: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-left: auto;
    cursor: pointer;
}
.navbar_toggle .bar_icon {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 16px;
}
.navbar_toggle .bar_icon .bar {
    position: absolute;
    height: 2px;
    background-color: #666666;
    overflow: hidden;
}
.navbar_toggle .bar_icon .bar:first-child {
    top: 0;
    width: 50%;
}
.navbar_toggle .bar_icon .bar:nth-child(2) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.navbar_toggle .bar_icon .bar:nth-child(3) {
    bottom: 0;
    width: 65%;
}
.navbar_toggle .bar_icon .bar:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: .3s;
    transition: .3s;
}
.navbar_toggle .bar_icon .bar:first-child::after {
    transition-delay: .1s;
}
.navbar_toggle .bar_icon .bar:nth-child(2):after {
    transition-delay: .1s;
}
.navbar_toggle:hover .bar_icon .bar:after {
    left: 0;
}
.inner_header .navbar_toggle, .header.fixed .navbar_toggle {
    color: #000000;
}
.inner_header .navbar_toggle .bar_icon .bar, .header.fixed .navbar_toggle .bar_icon .bar {
    background-color: #000000;
}




/*
===========================  Home page css
*/

.mainHero {
    background-color: var(--color-sandstone);
    position: relative;
    padding: 120px 0 20px;
}
.mainHero::after {
    background: #fff;
    content: "";
    display: block;
    height: 20px;
    margin-bottom: -20px;
}
.hero_content h1 {
    color: var(--theme-color);
    background: linear-gradient(55deg, var(--theme-color), var(--theme-color2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: 700;
}
.hero_content p {
	font-size: 18px;
	width: 100%;
	max-width: 450px;
}
ul.searchTab {
    margin-bottom: 18px;
}
ul.searchTab li .nav-link {
    position: relative;
    color: var(--color-dark-green);
    font-weight: 15px;
    font-weight: 500;
    padding: 4px 12px;
    text-align: center;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
}
ul.searchTab li .nav-link.active {
    background: var(--color-dark-green);
    color: #ffffff;
    opacity: 1;
}
ul.searchTab li .nav-link.active::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -8px;
    border-top: 8px solid var(--color-dark-green);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hero_form {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
}
.hero_form .row {
    margin: -3px;
}
.hero_form .row>div {
    padding: 3px;
}
.select_group {
  position: relative;
}
.hero_form .select_input {
    background: #ffffff !important;
    border: 2px solid #eddecf !important;
    border-radius: 8px;
    height: 48px;
    padding: 5px 16px;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
}
.hero_form .select_input:focus {
    border-color: var(--theme-color) !important;
    outline: none !important;
    box-shadow: none !important;
}
.hero_form .btn {
    border-radius: 8px;
    height: 46px;
}
.select_dropList {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #eddecf;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 2px;
    list-style-type: none;
    padding: 0;
}
.select_group.open .select_dropList {
  display: block;
}
.select_dropList li {
    font-size: 15px;
    padding: 6px 16px;
    cursor: pointer;
    font-weight: 500;
}
.select_dropList li:hover {
    background-color: #c5d5cf;
    color: var(--color-dark-green);
}




.hero_imgGrid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: self-start;
    margin-left: -20px;
    margin-bottom: -140px;
}

.hero_imgGrid .imgBox, .hero_imgGrid .controler {
    width: calc(33.33% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
}
.hero_imgGrid .imgBox img, .hero_imgGrid .imgBox video {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1 / 1.53;
    object-fit: cover;
}
.hero_imgGrid .imgBox:nth-child(2) {
    margin-top: 16%;
}
.hero_imgGrid .imgBox:nth-child(3) {
    margin-top: 32%;
}
.hero_imgGrid .imgBox:nth-child(4) {
    margin-top: -32%;
}
.hero_imgGrid .imgBox:nth-child(5) {
    margin-top: -16%;
}
.hero_imgGrid .imgBox:nth-child(5) img {
    aspect-ratio: 1 / 1;
}
.hero_imgGrid .controler {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero_imgGrid .controler .arrowBtn {
    background: none;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
        display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero_imgGrid .controler .locationName {
    background: #ffffff;
    font-size: 14px;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 5px;
}
.hero_imgGrid .controler .locationName:hover {
    background: var(--theme-color);
    color: #ffffff;
}


.topCities .swiper-slide,
.tourSlider .swiper-slide,
.reviewSlider .swiper-slide {
    height: auto;
}
.cityBox, .tourBox {
    background: var(--color-sandstone);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cityBox .imgBox, .tourBox .imgBox {
    position: relative;
}
.cityBox .imgBox img, .tourBox .imgBox img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
}
.cityBox .content_area {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cityBox .content, .tourBox .content {
    padding: 18px;
}

.cityBox .content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}
.cityBox .content h3, .tourBox .content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}
.tourBox .content .duration, .tourBox .content .price {
    font-size: 14px;
}
.tourBox .content .price {
    font-weight: 600;
}
.star_rating {
    font-size: 14px;
    color: #000;
}
.star_rating .rating {
    color: var(--theme-color2);
    font-weight: 500;
}
.star_rating .stars {
    color: var(--theme-color2);
    letter-spacing: 1px;
}
.star_rating .rating_count {
    display: block;
    line-height: 1;
}
.cityBox .content p {
    font-size: 14px;
    margin: 0;
}
.cityBox .btnBox, .tourBox .btnBox {
    margin-top: auto;
    padding: 5px 18px 20px;
    margin-top: auto;
}
.cityBox .btn, .tourBox .btn {
    font-size: 14px;
    padding: 6px 15px;
}
.locals_info {
    display: inline-flex;
    margin-left: 18px;
}
.locals_info img, .locals_info .locals_count {
    border: 2px solid #fff;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.locals_info .locals_count {
    background: var(--color-dark-green);
    color: #fff;
    font-size: 12px;
}


.topCities .arrowBtn,
.tourSlider .arrowBtn,
.reviewSlider .arrowBtn,
.bestCities .arrowBtn {
    margin-left: auto;
}
.charmingCities .swiper-wrapper,
.ourTours .swiper-wrapper,
.testimonials .swiper-wrapper,
.bestDestinations .swiper-wrapper,
.localRegions .swiper-wrapper {
    padding-bottom: 50px;
}
.charmingCities .bottom_btnBox,
.ourTours .bottom_btnBox,
.bestDestinations .bottom_btnBox {
    position: relative;
    margin-top: -34px;
}


.why_us {
    background: var(--color-dark-green);
}
.why_us .heading h2 {
    color: #ffffff;
    background: linear-gradient(35deg, #bcfdb7, #ffffff 65%);
        background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
}
.why_us .box {
    background: rgba(255, 255, 255, 0.065);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 16px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    transition: all 0.4s;
}

.why_us .box:hover {
    border-color: var(--color-green);
    box-shadow: 0 0 28px -9px var(--color-green);
}
.why_us .box .icon {
    background: #feebdc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
}
.why_us .box .icon img {
    width: 32px;
    height: 32px;
}
.why_us .box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 26px 0 12px;
}
.why_us .box p {
    margin: 0;
}




.our_impact {
    background: var(--theme-color);
    padding: 50px 0;
    margin: 40px 0;
}
.our_impact .heading h2, .about_us .heading h2 {
    color: #ffffff;
    background: linear-gradient(35deg, #fdb7b7, #ffffff 65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.our_impact p, .about_us p {
    color: #fff;
}
.our_impact .imgBox {
    background: var(--color-dark-green);
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    margin: -88px 0;
}

.our_impact .imgBox img {
    width: 95%;
}



.topDestinations .row {
    margin: 0 -10px;
}
.topDestinations .row>div {
    padding: 10px;
}
.topDestinations .cityBox .imgBox img {
    aspect-ratio: 1 / 0.6;
}


.find_cta .heading p {
    max-width: 480px;
}
.find_cta .hero_form {
    margin: 0 auto;
}
.find_cta .hero_form .nav {
    justify-content: center;
}



.about_us {
    background: var(--theme-color);
}
.about_us .videoBox {
    position: relative;
    padding-bottom: 62%;
}
.about_us .videoBox video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}



.perfectTours .row {
    margin: 0 -8px;
}

.perfectTours .row>div {
    padding: 8px;
}
.perfectTours .box {
    position: relative;
    background: #fff6fb;
    border: 2px solid #eddee6;
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    transition: all 0.4s;
}
.perfectTours .box:hover {
    border-color: var(--theme-color2);
    box-shadow: 0 0 20px -10px var(--theme-color2);
}
.perfectTours .box .title {
    display: block;
    color: var(--theme-color2);
    font-size: 14px;
    font-weight: 600;
}
.perfectTours .box .tour_type {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color);
    display: block;
    line-height: 1.2;
}
.perfectTours .box .arrowBtn {
    margin-left: auto;
    color: var(--theme-color2);
    padding: 8px;
    display: inline-flex;
    font-size: 26px;
}
.perfectTours .box .arrowBtn::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}




.reviewBox {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    font-size: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reviewBox h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}
.user_wrapper .locals_info {
    margin-right: 20px;
}
.user_wrapper .locals_info img {
    width: 58px;
    min-width: 58px;
    height: 58px;
    outline: 2px solid var(--color-green);
}
.user_wrapper .locals_info img:nth-child(2) {
    outline: 2px solid var(--color-dark-green);
}
.user_wrapper .info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0;
}

.user_wrapper .info p {
    margin: 0;
    line-height: 1.3;
}
.user_wrapper .info p a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
}



.best_cityBox {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.best_cityBox .imgBox::before {
    position: absolute;
    background: linear-gradient(0deg, #1a1013, rgba(0, 0, 0, 0));
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
}
.best_cityBox .imgBox img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s;
    min-height:450px;
}
.best_cityBox:hover .imgBox img {
    transform: scale(1.1);
}
.best_cityBox .host_badge {
    position: absolute;
    background: var(--color-green);
    left: 0;
    top: 25px;
    color: #ffffff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 3px 12px;
    border-radius: 0 4px 4px 0;
    z-index: 3;
}
.best_cityBox .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px;
    z-index: 3;
    column-gap: 25px;
}
.best_cityBox .content h3 {
    color: #fff;
    font-size: 22px;
}
.best_cityBox .content .btn {
    font-size: 14px;
    padding: 8px 18px;
    white-space: nowrap;
}



.local_eyes {
    background: var(--color-dark-green);
}
.local_eyes .heading h2 {
    color: #ffffff;
    background: linear-gradient(35deg, #bcfdb7, #ffffff 65%);
        background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.local_eyes .heading p {
    color: #ffffff;
}
.local_eyeBox, .local_chioceBox {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.local_eyeBox .imgBox, .local_chioceBox .imgBox {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}
.local_eyeBox .imgBox::after, .local_chioceBox .imgBox::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.local_eyeBox::before, .local_chioceBox::before {
    position: absolute;
    background: linear-gradient(0deg, #183229, rgba(0, 0, 0, 0));
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.92;
}
.local_eyeBox .imgBox img, .local_chioceBox .imgBox img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    transition: all 0.4s;
}

.local_eyeBox:hover .imgBox img, .local_chioceBox:hover .imgBox img {
    transform: scale(1.1);
}

.local_eyeBox .city_badge {
    position: absolute;
    left: 12px;
    top: 15px;
    background: var(--color-yellow);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}
.local_eyeBox h3, .local_chioceBox .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    padding: 12px;
    margin: 0;
}
.local_eyeBox h3 span {
    color: var(--color-sandstone);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.localRegions .swiperArrow {
    border: 1px solid var(--color-sandstone);
    color: var(--color-sandstone);
}










.footer {
    background-color: var(--color-sandstone);
    background-size: cover;
    background-position: center bottom;
    color: #c1c1c1;
    padding: 60px 0 0;
}

.footer_logo {
    display: inline-flex;
    margin-bottom: 20px;
}
.footer_logo img {
    max-width: 180px;
    max-height: 45px;
}

.footerBox h3 {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footerBox .footerMenu+h3 {
    margin-top: 40px;
}
.footerBox p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
.footerMenu li {
    margin-bottom: 8px
}
.footerMenu li a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.footerMenu li a:hover {
    color: var(--theme-color);
}
.social_links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}
.social_links a {
    border: 1px solid #666;
    border-radius: 50%;
    font-size: 18px;
    width: 40px;
    height: 40px;
    color: #000;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}
.social_links a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}
.copyright {
    font-size: 15px;
    color: #9d9d9d;
    padding: 20px 0;
    margin-top: 40px;
}
.copyright {
    padding: 20px 0;
    margin-top: 40px;
}
.copyright p, .copyright a {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0;
    text-decoration: none;
}
.copyright a {
    color: var(--theme-color2);
}




/*============================= Listing Page
*/

.header_spacer {
    background: #fffbf8;
    position: sticky;
    top: 0;
    height: 74px;
    z-index: 98;
}
.listing_head {
    padding: 110px 0 50px;
}
.listing_head .best_cityBox .imgBox img {
    aspect-ratio: 1 / 0.65;
}


.filter_area {
    position: fixed;
    background: #fffbf8;
    top: 74px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: inset 0 .8px 3px -3px rgba(0,0,0,.07),inset 0 2.7px 10.1px -3px rgba(0,0,0,.042),inset 0 12px 45px -3px rgba(0,0,0,.028),0 1px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.05),0 4px 4px 0 rgba(0,0,0,.05);
    z-index: 97;
}
.filter_item {
    position: relative;
}
.filter_item.all_filters {
    position: static;
}

.filter_item input[name="daterange"] {
    position: absolute;
    z-index: -9999;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.filter_list {
    position: relative;
    column-gap: 12px;
}
.filter_label {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    display: inline-flex;
    cursor: pointer;
}
.filter_label.active {
    background: var(--theme-color2);
    color: #ffffff;
}
.filter_values {
    column-gap: 12px;
}
.filter_value {
    background: var(--color-sandstone);
    border: none;
    color: var(--theme-color2);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 4px 4px 10px;
    border-radius: 45px;
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    white-space: nowrap;
}
.filter_value .deleteValue {
    background: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown_wraper {
    position: absolute;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 10px 24px 0 rgba(0, 0, 0, .1);
    min-height: 100px;
    min-width: 250px;
    width: 100%;
    overflow-y: auto;
    padding: 25px;
    left: 0;
    margin-top: 10px;
    transform: translateY(-8px);
    z-index: 1200;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.dropdown_wraper.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.filter_boxTitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.filter_overlay {
    /* position: fixed; */
    background: rgba(79, 80, 60, 0.1);
    backdrop-filter: blur(6px);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 96;
}


.adult_selectArea {
    min-width: 300px;
}

.adult_selectArea .label {
    font-size: 16px;
    font-weight: 500;
}
.filter_item .number {
    display: flex;
    overflow: hidden;
}
.filter_item .number input {
    background: none;
    border: none;
    width: 35px;
    text-align: center;
}
.filter_item .number span {
    background: none;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #6f6f6f;
    cursor: pointer;
}

.filter_labels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
label.filterCheck {
    font-size: 16px;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    line-height: 1.3;
}

label.filterCheck input[type="radio"], label.filterCheck input[type="checkbox"] {
    position: relative;
    margin: 0;
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
label.filterCheck input::before {
    background: #ffffff;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 1px #ccc;
}
label.filterCheck input[type="radio"]::before {
    border-radius: 50%;
}
label.filterCheck input:checked::before {
    box-shadow: 0 0 0 1px var(--theme-color);
}
label.filterCheck input[type="radio"]:checked::before {
    background: var(--theme-color);
}
label.filterCheck input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
    transform: rotate(45deg);
}

.keywords_area {
    width: 100%;
    max-width: 500px;
    margin-bottom: 12px;
}

.keywords_area .fieldGroup {
    position: relative;
}
.keywords_area .fieldGroup .form-control {
    min-height: 48px;
    background: #ffffff !important;
    border: 2px solid #eddecf !important;
    border-radius: 8px;
    height: 48px;
    padding: 5px 16px;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
}
.keywords_area .fieldGroup .form-control:focus {
    border-color: var(--theme-color) !important;
}
.keywords_area .fieldGroup .submitBtn {
    border: 1px solid #333;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    right: 12px;
    padding: 2px;
    width: 27px;
    height: 27px;
    font-size: 13px;
}
.keywords_area .fieldGroup .submitBtn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}

.filter_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}
.filter_labels+.filter_title {
    margin-top: 22px;
}

.dropdown_wraper.datepicker_area {
    min-width: 648px;
}
.datepicker_area .daterangepicker {
    position: static;
    padding: 0 !important;
    border: none;
    margin: 0;
    display: block !important;
}
.datepicker_area .daterangepicker .drp-calendar {
    max-width: 300px;
    padding: 0;
}
.datepicker_area .daterangepicker td.active, .datepicker_area .daterangepicker td.active:hover {
    background: var(--theme-color2) !important;
}
.datepicker_area .daterangepicker th.month {
    font-size: 14px;
    color: var(--theme-color2);
}
.datepicker_area .daterangepicker .calendar-table th, .datepicker_area .daterangepicker .calendar-table td {
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 14px;
    border-radius: 50% !important;
}
.datepicker_area .daterangepicker span.drp-selected {
    display: none;
}
.datepicker_area .daterangepicker .drp-buttons {
    display: flex !important;
    padding: 0;
    border: none;
    justify-content: space-between;
}


.listing_head .swiper-wrapper, .ourTours_list .reviewSlider .swiper-wrapper {
    padding-bottom: 0;
}
.listing_head.bestDestinations .swiperArrow {
    background: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.listing_head.bestDestinations .swiper-prev {
    left: 0;
}
.listing_head.bestDestinations .swiper-next {
    right: 0;
}
.listing_head .swiper-pagination-bullet {
    background: #fff !important;
    width: 6px;
    height: 6px;
}
.listing_head .best_cityBox .content h3 {
    font-weight: 600;
}


.ourTours_list .tourColumn {
    padding: 15px;
}

.listing_head .user_wrapper .locals_info img {
    width: 50px;
    min-width: 50px;
    height: 50px;
}
.best_cityBox .info {
    color: #ffffff;
    font-size: 13px;
    padding: 0 15px;
    line-height: 1.2;
}
.best_cityBox .info .bullet {
    margin: 0 4px;
}



.experiences {
    background: var(--color-dark-green);
    color: #ffffff;
    padding: 45px 0;
}

.experiences h2 {
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(35deg, #bcfdb7, #ffffff 65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.experiences .box {
    display: flex;
    font-size: 14px;
}
.experiences .box h3 {
    color: #ffffff;
    font-size: 16px;
}
.experiences .box .fa {
    margin-right: 15px;
    color: var(--color-yellow);
    font-size: 22px;
}
#comfortablyModal .box {
    font-size: 15px;
    color: #000000;
    margin-bottom: 20px;
}
#comfortablyModal .box .fa {
    color: var(--theme-color2);
    font-size: 20px;
    margin-right: 15px;
}
#comfortablyModal .box h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color);
}


.sortBy_filter .filter_label {
    min-width: 200px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 8px 14px;
    font-size: 15px;
}

.sortBy_filter .filter_label i {
    color: #666;
}

.ourTours_list .reviewBox {
    padding: 2px;
}
.ourTours_list .reviewSlider .arrowBtn {
    bottom: 18px;
}



.local_chioceBox::before {
    background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
    opacity: 0.68;
}
.local_chioceBox .imgBox img {
    aspect-ratio: 1 / 1.55;
}
.local_chioceBox .content {
    padding: 20px;
}
.local_chioceBox .greet {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.local_chioceBox h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.local_chioceBox .info {
    font-size: 16px;
    font-weight: 500;
}
.local_chioceBox .content .btn {
    font-size: 14px;
    padding: 3px 10px;
}



/*=================================== Detail page
*/

.tourSingle_wrapper {
    padding-bottom: 50px;
}
ul.breadcrumb {
    background: none;
    padding: 15px 0;
    margin: 0;
}
ul.breadcrumb li:not(:last-child) {
    margin-right: 10px;
}
ul.breadcrumb li a, ul.breadcrumb li span {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #666666;
}
.tour_banner {
    position: relative;
}
.tour_banner .actionBtn {
    position: absolute;
    background: #ffffff;
    border-radius: 5px;
    top: 15px;
    right: 30px;
    padding: 5px;
    z-index: 5;
}
.tour_banner .actionBtn .action_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666666;
    width: 40px;
    height: 32px;
    text-decoration: none;
}
.tour_banner .actionBtn a:not(:last-child) {
    border-right: 1px solid #e1e1e1;
}
.tour_banner .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    border-radius: 12px;
    object-fit: cover;
}

.tour_banner .swiperArrow, .expectBanner .swiperArrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    border: none;
    font-size: 26px;
    color: #ffffff;
}
.tour_banner .swiper-prev, .expectBanner .swiper-prev {
    left: 6px;
}
.tour_banner .swiper-next, .expectBanner .swiper-next {
    right: 6px;
}

.tourSingle_wrapper .locals_availablity, .tourSingle_wrapper .short_content, .tourSingle_wrapper .list_wrapper, .tourSingle_wrapper .reasons, .tourSingle_wrapper .expect_wrapper, .tourSingle_wrapper .local_choice, .tourSingle_wrapper .meet_location, .tourSingle_wrapper .detail_reviews {
    border-top: 1px solid #e9e9e9;
    margin-top: 40px;
    padding-top: 40px;
}
.tourSingle_wrapper .short_content {
    font-size: 15px;
}
.tourSingle_wrapper ul.detail_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    row-gap: 18px;
}
.tourSingle_wrapper ul.detail_list li {
    display: flex;
    font-size: 15px;
    line-height: 1.3;
    column-gap: 8px;
}
.tourSingle_wrapper ul.detail_list li.include_item {
    grid-column: 1 / 4;
}
.tourSingle_wrapper ul.detail_list .icon img {
    width: 16px;
    height: 16px;
}
.tourSingle_wrapper ul.check_list, .tourSingle_wrapper ul.uncheck_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
}
.tourSingle_wrapper .reasons ul.check_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 14px;
}
.tourSingle_wrapper ul.check_list li::before, .tourSingle_wrapper ul.uncheck_list li::before {
    position: relative;
    content: "\f00c";
    font-size: 13px;
    color: var(--color-green);
    font-family: 'FontAwesome';
    margin-right: 8px;
    top: -2px;
}
.tourSingle_wrapper ul.uncheck_list li::before {
    content: "\f00d";
    color: var(--theme-color);
}

.expectBanner {
    padding-bottom: 40px;
    margin-bottom: 20px;
}
.expectBanner .swiperArrow {
    background: #ffffff;
    color: var(--theme-color2);
}
.tourSingle_wrapper .must_know ul+h3 {
    margin-top: 30px;
}

.mapbox_gl iframe {
    width: 100%;
}

.detail_reviews .reviewBox {
    padding: 0;
}
.detail_reviews .reviewBox:not(:last-child) {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0;
}
.detail_reviews .reviewBox .info p, .detail_reviews .reviewBox .info .star_rating {
    font-size: 13px;
}

.detail_reviews .reviewBox .info .star_rating a {
    text-decoration: none;
    font-weight: 600;
}
.detail_reviews .reviewBox .content h3 {
    font-size: 13px;
    color: #666;
}


.tourSingle_wrapper ul.plan_list li {
    position: relative;
    padding-left: 40px;
}
.tourSingle_wrapper ul.plan_list li:not(:last-child) {
    padding-bottom: 25px;
}
.tourSingle_wrapper ul.plan_list li::before {
    position: absolute;
    content: "";
    background: var(--theme-color2);
    width: 2px;
    height: 100%;
    top: 6px;
    left: 6px;
}
.tourSingle_wrapper ul.plan_list li:last-child::before {
    opacity: 0;
}
.tourSingle_wrapper ul.plan_list li::after {
    background: #ffffff;
    position: absolute;
    content: "\f111";
    font-family: 'FontAwesome';
    color: var(--theme-color);
    left: 3px;
    top: 0;
    font-size: 10px;
}
.tourSingle_wrapper ul.plan_list li:first-child::after {
    content: "\f041";
    font-size: 26px;
    line-height: 1.3;
    top: -3px;
    left: 0;
}
.tourSingle_wrapper ul.plan_list li h3 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.tourSingle_wrapper ul.plan_list li p {
    font-size: 15px;
    margin: 0;
}



.tour_sidebar {
    position: sticky;
    top: 100px;
}
.tour_sidebar .enqueryForm {
    background: #ffffff;
    border: none;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 7px 33px 0 hsla(0,0%,78%,.5);
}
.tour_sidebar .enqueryForm .form-group {
    position: relative;
    margin-bottom: 16px;
}
.tour_sidebar .enqueryForm .form-control {
    min-height: 50px;
    padding-left: 48px;
    display: flex;
    align-items: center;
}
.tour_sidebar .enqueryForm .form-control:focus {
    border-color: var(--theme-color) !important;
    outline: none !important;
    box-shadow: none !important;
}
.tour_sidebar .enqueryForm .form-group .fa {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color2);
}
.tour_sidebar .actionBtn .btn {
    background: none;
    border: none;
    font-size: 15px;
    color: #6c6c6c;
}

.detail_price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}
.detail_price strong {
    font-size: 1.2em;
    color: var(--theme-color2);
    font-weight: 600;
}


.timepicker_box .drp-calendar .calendar-table {
    display: none !important;
}
.datepicker_box, .timepicker_box {
    position: relative;
}
.datepicker_box .daterangepicker, .timepicker_box .daterangepicker {
    border: none;
    top: 0 !important;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.1);
}
.datepicker_box .daterangepicker::before, .timepicker_box .daterangepicker::before, .datepicker_box .daterangepicker::after, .timepicker_box .daterangepicker::after {
    display: none;
}
.datepicker_box .daterangepicker .drp-calendar {
    width: 100%;
    padding: 0 !important;
}

.datepicker_box .daterangepicker .calendar-table, .timepicker_box .daterangepicker .drp-calendar {
    padding: 0 !important;
    width: 100%;
    max-width: none;
}
.datepicker_box .daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
}
.datepicker_box .daterangepicker td.active, .datepicker_box .daterangepicker td.active:hover {
    background-color: var(--theme-color2);
}

.timepicker_box .daterangepicker .calendar-time {
    display: flex;
    align-items: center;
    line-height: 1.2;
    width: 100%;
    font-size: 20px;
}
.timepicker_box .daterangepicker .calendar-time select {
    background: #ffffff;
    border: 1px solid var(--theme-color2);
    border-radius: 5px;
    font-size: 15px;
    height: 45px;
    width: 100%;
}
.timepicker_box .daterangepicker .calendar-time select.hourselect {
    max-width: 30%;
    margin-right: 2%;
}
.timepicker_box .daterangepicker .calendar-time select.minuteselect {
    max-width: 30%;
    margin-left: 2%;
    margin-right: 4%;
}
.datepicker_box .daterangepicker .drp-buttons, .timepicker_box .daterangepicker .drp-buttons {
    border: none;
    padding: 0;
    padding-top: 28px;
    display: flex !important;
    justify-content: space-between;
}
.datepicker_box .daterangepicker .drp-buttons button.cancelBtn, .timepicker_box .daterangepicker .drp-buttons button.cancelBtn {
    margin: 0;
    padding: 6px 0;
}

.tour_sidebar .experiences_box {
    border-radius: 10px;
    padding: 25px 25px 15px;
    margin-top: 36px;
}
.tour_sidebar .experiences_box h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 25px;
}
.experiences_box .box {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
}

.experiences_box .box .fa {
    color: var(--theme-color2);
    font-size: 16px;
    margin-right: 15px;
}
.experiences_box .box h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 0;
}
/*
==============================================================================================================
                                          Login
==============================================================================================================
*/
.loginpage {
	background-color: var(--color-sandstone);
	position: relative;
	padding: 40px 0 20px;
}
.loginBoxColumn {
	grid-template-columns: 400px 1fr;
	margin: 4rem auto;
	padding: .75rem;
	background: #fff;
	border-radius: 1rem;
	min-height: calc(100vh - 8rem);
	gap: 0;
}
.loginBoxColumn .row {
	align-items: center;
	-webkit-box-align: center;
}
.loginBox {
	padding: 25px;
}
.login_img {
	border-radius: 10px;
	height: 600px;
	object-fit: cover;
}
.loginBox .form-group {
	position: relative;
	margin-bottom: 16px;
}
.loginBox .form-control {
	min-height: 50px;
	padding-left: 48px;
	display: flex;
	align-items: center;
}
.login_Box.logo img {
	width: 160px;
	padding: 0px;
	margin-bottom: 35px;
}
.loginBox .form-group .fa {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-color2);
}
.forgetPassword {
	font-size: 12px;
	text-align: right;
}
.signup_text {
	font-size: 14px;
}
.signup_text a {
	font-weight: 700;
	text-decoration: none;
}
/*
==============================================================================================================
                                          Blog PART
==============================================================================================================
*/
.blogBanner .inner_column {
	position: relative;
	background-position: center;
	background-size: cover;
	min-height: 320px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 0 0 25px 25px;
}
.blogBanner .inner_column::before {
	position: absolute;
	content: "";
	background: linear-gradient(45deg, #002e3c, transparent);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.68;
	border-radius: 0 0 25px 25px;
}
.blogBanner .contentArea {
	position: relative;
	width: 100%;
}
.blogBanner .contentArea {
	position: relative;
	width: 100%;
}
.blogBanner .contentArea h1 {
	font-size: 52px;
	font-weight: 400;
}
.blogBanner .contentArea p, .tourSingle_wrapper .rating_star .icon-asset, h3 {
	font-size: 20px;
}
.blogBanner .filter_areas {
	position: relative;
	margin: 20px 0 0;
	width: 100%;
	max-width: 750px;
	display: flex;
	flex-wrap: wrap;
	background: transparent;
	top: 10px;
	box-shadow: none;
}
.blogBanner .filter_areas .searchArea {
	position: relative;
	width: 65%;
}
.blogBanner .filter_areas .dropdown-toggle, .blogBanner .filter_areas .searchArea .form-control {
	background: #fff;
	border: 1px solid #fff;
	border-radius: 8px;
	color: #000;
	padding: 10px 18px;
	height: 50px;
	width: 100%;
}
.blogBanner .filter_areas .searchArea .searchBtn {
	background: 0 0;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	font-size: 25px;
	color: #666;
	width: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.blogBanner .filter_areas .category_drop, .blogBanner .filter_areas .select_group {
	width: calc(35% - 22px);
	margin-left: 22px;
}
.blogBanner .filter_areas .dropdown-toggle {
	cursor: pointer;
	margin: 0;
}
.myContainer {
	max-width: 1720px;
}
.blogBanner .select_input {
	background: #ffffff !important;
	border: 2px solid #eddecf !important;
	border-radius: 8px;
	height: 48px;
	padding: 5px 16px;
	outline: none !important;
	box-shadow: none !important;
	width: 100%;
}

/*
==============================================================================================================
                                          Guide Grid Container
==============================================================================================================
*/
.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;
  }
  .photos-grid-container .img-box {
	border: 2px solid #ffffff;
	position: relative;
}
  .photos-grid-container .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .photos-grid-container .img-box:hover .caption {
    transform: translateY(-5px);
  }
  .photos-grid-container img {
	width: 100%;
	display: block;
	height: 200px;
	border-radius: 10px;
	object-fit: cover;
}
  .photos-grid-container .caption {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
  }
  .photos-grid-container .transparent-box {
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}
  .photos-grid-container .main-photo {
    grid-row: 1;
    grid-column: 1;
  }
  .photos-grid-container .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 0em;
  }
  .photos-grid-container .sub:nth-child(0) {
    grid-column: 1;
    grid-row: 1;
  }
  .photos-grid-container .sub:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .photos-grid-container .sub:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .photos-grid-container .sub:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .photos-grid-container .videoBox {
	position: relative;
	padding-bottom: 66.5%;
	border: 2px solid #fff;
	border-radius: 10px;
}
.photos-grid-container .videoBox video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 12px;
	object-fit: cover;
}
.guide_info img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--theme-color);
}
.guide_info {
	padding-right: 15px;
}
.verified_tick i {
	color: #00aad1;
	font-size: 16px;
}
.stars_guide i {
	color: #ff9334;
	font-size: 16px;
}
.GuideSingle_wrapper {
	padding-bottom: 50px;
}
.overviewText {
	overflow: hidden;
	padding-bottom: 20px;
	position: relative;
}
.overviewText::before {
	background: -webkit-linear-gradient(to top, rgb(255, 255, 255), rgb(255, 255, 255,0));
	background: linear-gradient(to top, rgb(255, 255, 255), rgb(255, 255, 255,0));
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
}
.overviewBtn {
	display: inline-block;
	margin-top: 12px;
	color: var(--color-dark-green);
}



.availabilityCalendar .yearHead {
    padding: 3px 0 8px;
    border-bottom: 1px solid #e8e8e8;
}
.availabilityCalendar .yearHead span {
    font-size: 24px;
    display: inline-block;
    padding: 0 50px;
}
.availabilityCalendar .arrow {
    font-size: 22px;
    width: 30px;
    cursor: pointer;
    user-select: none;
}
.availabilityCalendar .monthHead {
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}
.availabilityCalendar .arrow.monthPrev {
    position: absolute;
    top: 0;
    left: 0;
}
.availabilityCalendar .arrow.monthNext {
    position: absolute;
    top: 0;
    right: 0;
}

.availabilityCalendar .columns_group,
.availabilityCalendar table {
    width: 100%;
    margin: 0;
}
.availabilityCalendar .columns_group {
    background: #f9fafa;
    display: flex;
    border-radius: 12px;
    padding: 15px 10px;
}
.availabilityCalendar .columns_group .columns {
    padding: 0 5px;
    width: 50%;
}
.availabilityCalendar table tr th, .availabilityCalendar table tr td {
    background: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    border: 6px solid #f9fafa;
    width: 45px;
    height: 46px;
    text-align: center;
    vertical-align: middle;
}
.availabilityCalendar table tr th {
    background: none;
    font-size: 13px;
    text-transform: uppercase;
    color: #5a6a6e;
}
.availabilityCalendar table tr td.date_item {
    background: #bfcdc7;
    background: repeating-linear-gradient(-45deg, #becbd3, #ffffff 3px, #96a8b3 3px, #9ec7df 4px);
    color: #12223a;
}
.availabilityCalendar table tr td.unavailable {
    background: repeating-linear-gradient(-45deg,#ecf3f7,#ecf3f7 3px,#bbbbbb 3px,#ecf3f7 4px);
}
.availabilityCalendar table tr td.available_item {
    color: #ffffff;
    background: var(--theme-color);
}


.availabilityCalendar .avlableList {
    padding: 10px 0 0;
}
.availabilityCalendar .avlableList span {
    display: inline-block;
    position: relative;
    padding-left: 32px;
    font-size: 14px;
}
.availabilityCalendar .avlableList span:not(:last-child) {
    margin-right: 12px;
}
.availabilityCalendar .avlableList span::before {
    position: absolute;
    content: "";
    background: #bfcdc7;
    background: repeating-linear-gradient(-45deg, #becbd3, #ffffff 3px, #96a8b3 3px, #9ec7df 4px);
    left: 4px;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 1px;
}
.availabilityCalendar .avlableList span.available_item::before {
    background: var(--theme-color);
}

.review_form.field_form {
    margin-top: 40px;
    width: 100% !important;
    display: none;
}
.review_form .star_rating span {
    font-size: 24px;
    margin-right: 6px;
    cursor: pointer;
    color: #999;
}
.review_form .star_rating span.selected {
    color: #f3c212;
}

.review_form .star_rating span.selected>i::before {
    content: "\f005";
}
.review_form .form-group {
    margin-bottom: 15px;
}
.review_form .form-control {
    background: #ffffff;
    border: 1px solid #a7a7a7;
    border-radius: 6px;
    font-size: 14px;
}
.review_form input.form-control {
    height: 48px;
}
.review_form .form-control:focus {
    border-color: var(--theme-color) !important;
    outline: none !important;
    box-shadow: none !important;
}
.text-justify {
    text-align: justify;
}

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.content-table thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}
.content-table th p, .content-table td p {
	margin: 0;
}
.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
	border-bottom: 2px solid var(--theme-color);
}

.content-table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}
.content-table th {
	background: var(--theme-color);
	color: var(--bs-body-bg);
}

/*---------------------- FAQs------------------------------------*/


.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color: var(--theme-color2);
	font-size: 16px;
	font-weight: 500;
	border: none;
	background: none;
	outline: none;
	padding: 10px 15px;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion-body {
	font-size: 14px;
	color: var(--bs-dark-text-emphasis);
}
.page_wrapper {
	background: var(--color-green);
}
.photos-grid-container .videoBox div.about_video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}
.locals_info span {
    font-size: 11px;
    text-transform: capitalize;
    margin-left: -18px;
    color: var(--color-dark-green);
    font-weight: 600;
}
.tourBox .content h3 {
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 6px;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
	overflow: hidden;
}
.tour-listing__card-title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}
.title-tip[title]:hover {
  position: relative;
}
.title-tip[title]:hover::before {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	content: attr(title);
	margin-top: 0.5em;
	padding: 0.5em;
	width: 300px;
	overflow: hidden;
	word-wrap: break-word;
	font-size: 16px;
	color: #FFF;
	text-align: center;
	background-color: #222;
	box-sizing: border-box;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.title-tip[title]:hover:after {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 99999;
  content: '';
  margin-left: -0.125em;
  width: 0;
  height: 0;
  border: 0.25em dashed transparent;
  border-bottom: 0.25em solid #222;
  font-size: inherit;
}

/* title-tip-up */
.title-tip-up[title]:hover:before {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.title-tip-up[title]:hover:after {
  top: auto;
  bottom: 100%;
  border: 0.25em dashed transparent;
  border-top: 0.25em solid #222;
}

/* title-tip-right */
.title-tip-right[title]:hover:before {
  top: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.5em;
}
.title-tip-right[title]:hover:after {
  top: 50%;
  left: 100%;
  margin-left: 0;
  margin-top: -0.125em;
  border: 0.25em dashed transparent;
  border-right: 0.25em solid #222;
}

/* title-tip-left */
.title-tip-left[title]:hover:before {
  top: auto;
  left: auto;
  right: 100%;
  margin-top: 0;
  margin-right: 0.5em;
}
.title-tip-left[title]:hover:after {
  top: 50%;
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-top: -0.125em;
  border: 0.25em dashed transparent;
  border-left: 0.25em solid #222;
}
.tourBox .content .duration {
	font-size: 11px;
	text-transform: capitalize;
	color: var(--theme-color);
	font-weight: 600;
}
span.note_color {
    font-size: 11px;
    text-transform: capitalize;
    color: var(--theme-color);
    font-weight: 600;
}
.reviewText {
	overflow: hidden;
	padding-bottom: 20px;
	position: relative;
}
.email_icon i, .phone_icon i, .address_icon i {
	background: var(--theme-color);
	color: #fff;
	padding: 14px 12px;
	border-radius: 50%;
	margin-bottom: 10px;
	width: 45px;
	height: 45px;
}
.phone_icon i {
	padding: 7px 10px;
}
.address_icon i {
	padding: 7px 13px;
}
.contact_menu a {
	color: #6a6060;
	font-weight: 600;
	font-size: 16px;
}
.local_eyeBox h3, .local_chioceBox .content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 3;
	color: var(--color-yellow);
	font-size: 11px;
	padding: 12px;
	margin: 0;
}
.pricing_title {
	font-size: 15px;
	color: var(--theme-color);
}
.loginBox_new {
	width: 60%;
	text-align: center;
	background: var(--color-sandstone);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 7px 33px 0 hsla(0,0%,78%,.5);
}


.heading_tags {
	background: var(--theme-color);
	border-radius: 8px;
	color: #fff;
	font-size: .6875rem;
	font-weight: 600;
	left: 1.5rem;
	line-height: 1rem;
	padding: .25rem .5rem;
	position: absolute;
	top: 1rem;
	z-index: 1;
}
.heading_tags p {
    margin:0px;
}
.tour_image {
	min-height: 3rem;
}
.tour_image_container {
	position: relative;
	width: 100%;
	padding-top: 50%;
}
.tour_image_img {
	bottom: 0;
	height: 100%;
	left: 0;
	max-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute !important;
	right: 0;
	top: 0;
	width: 100%;
	object-position: center;
}
.tour_details {
	border-radius: 8px 8px 0 0;
	margin-bottom: .5rem;
	overflow: hidden;
	position: relative;
}
.guide_image {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: -3.5rem;
	padding: 0 1.5rem;
	transform: translate(0);
}
.tour_title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
	margin: .5rem 0 1rem;
	text-align: center;
}
.guide_image_container {
	background-color: #eaeaea;
	border: 3px solid var(--theme-color);
	border-radius: 100%;
	display: inline-block;
	height: 93px;
	width: 93px;
}
.guide_image_img {
	border-radius: 100%;
	width: 88px;
	height: 88px;
	object-fit: cover;
	object-position: center;
}
.guide_name {
	color: var(--color-dark-green);
	font-family: Arsilon, Sans-Serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 2rem;
}
.booking_details {
	margin-top: 1.5rem;
	padding: 0 1rem;
}
.booking_details_container {
	display: flex;
	justify-content: center;
}
.booking_details_row {
	align-items: center;
	display: flex;
	margin-left: 1rem;
}
.booking_details_date {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.5rem;
}
.booking_details_row:first-of-type {
    margin-left: 0;
}
.booking_details_row i {
	color: #575757;
	height: 23px;
	margin-right: .5rem;
	vertical-align: middle;
	width: 17px;
}
.PricingBlock {
	padding: 1rem;
}
.checkoutPricingDetails {
	border-top: 1px solid #eaeaea;
	padding: 1rem 0 .5rem;
}
.checkoutPricingDetailsKidsFree {
	display: block;
	font-size: .6875rem;
	font-weight: 600;
	line-height: 1.5rem;
	margin-bottom: .5rem;
	width: 100%;
}
.checkoutPricingDetails ul {
	list-style: none;
	padding: 0;
}
.PriceRow {
	color: #4a4a4a;
	display: flex;
	font-weight: 500;
	justify-content: flex-end;
	width: 100%;
}
.price_label, .PriceValue {
	flex: 1 1 auto;
	font-size: 1rem;
	line-height: 1.5rem;
}
.PriceValue {
	padding-left: 1rem;
	text-align: right;
}
.QuestionMarkButton {
	border: 1px solid #bfbfbe;
	border-radius: 50%;
	color: #bfbfbe;
	font-size: .6875rem;
	margin: 0 5px;
	padding: 0 4px;
}
.ServiceFeeTrigger {
	display: inline-block;
	position: relative;
}
.checkoutPaymentDetailsList {
	border-top: 1px solid #eaeaea;
	padding: 1.5rem 0 0;
}
.price_label.Strong, .PriceValue.Strong {
	font-weight: 700;
	color: #000;
}
.cancellationPolicyLink {
	color: grey;
	font-size: .6875rem;
	font-weight: 500;
	margin: .5rem 0 1.5rem;
}
.BookingDetailsSide {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 7px 33px 0 hsla(0, 0%, 78%, .5);
	padding: 0 0 1rem;
	width: 350px;
}
.social_links svg {
	width: 18px;
}

.SideMenu li {
	background: #eee;
	padding: 10px 15px;
	border-bottom: 1px solid #4aa0ba;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}
th, td {
	text-align: left;
	padding: 8px;
	border: 1px solid #b4b4b4;
}
tr:nth-child(even){background-color: #f2f2f2}
.User_img_box {
	text-align: center;
	margin: auto;
}
.User_img_box img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	object-position: center;
}
.must_know {
	border-top: 1px solid #e9e9e9;
	margin-top: 40px;
	padding-top: 40px;
}



/*
==============================================================================================================
                                          RESPONSIVE PART
==============================================================================================================
*/


@media (max-width: 1380px){
   
   
    
}
@media (max-width: 1299px){
   
    
}

@media (max-width: 991px){
    
    .col-auto.head_bar {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }
    .header .btn.theme-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .navbarMenu {
        position: fixed;
        background: #ffffff;
        border-radius: 10px;
        right: -100%;
        top: 15px;
        bottom: 15px;
        z-index: 9998;
        width: 100%;
        display: flex;
        flex-direction: column;
        max-width: 300px;
        padding: 45px 25px 20px;
        overflow: auto;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }
    .nav_open .navbarMenu {
        right: 15px;
    }
    .navbarMenu .actionBtn {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .navbarMenu .social_links {
        margin-top: 20px;
        padding: 20px 0;
        text-align: center;
        justify-content: center;
    }

    .navbarMenu .social_links a {
        font-size: 16px;
        color: #666666;
        padding: 4px 10px;
        margin: 0 4px;
    }
    .navbarMenu .social_links a:hover {
        color: var(--theme-color);
    }
    
    .tourSingle_wrapper ul.breadcrumb {
        display: none;
    }
    .tour_banner {
        margin: 0 -22px;
    }
    .tour_banner .detailBanner::before {
        position: absolute;
        background: linear-gradient(0deg, #1a1013, rgba(0, 0, 0, 0));
        content: "";
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        opacity: 0.8;
    }
    .tour_banner .swiper-slide img {
        aspect-ratio: 1 / 0.92;
        border-radius: 0;
    }
    .tour_banner .heading {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 22px;
        z-index: 5;
    }
    .tour_banner .heading h1 {
        font-size: 32px;
        background: none;
        color: #ffffff;
        -webkit-text-fill-color: #fff;
    }
    .tour_banner .swiperArrow {
        display: none !important;
    }
    .tourSingle_wrapper .locals_availablity {
        border-top: none;
        margin-top: 0;
        padding-top: 25px;
    }
    .locals_availablity .user_wrapper {
        font-size: 13px;
    }
    .tourSingle_wrapper .short_content {
        font-size: 15px;
    }
    .tourSingle_wrapper ul.detail_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .tourSingle_wrapper ul.detail_list li.include_item {
        grid-column: 1 / 3;
    }
    
    
    .tourSingle_wrapper .reasons {
        background: var(--color-dark-green);
        margin: 0 -22px;
        padding: 42px 22px;
        margin-top: 40px;
    }
    
    .tourSingle_wrapper .reasons h2 {
        color: #ffffff;
        font-size: 22px;
        text-align: center;
        background: linear-gradient(35deg, #bcfdb7, #ffffff 65%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .tourSingle_wrapper .reasons .h2 {
        font-size: 36px;
        color: #ffffff;
        text-align: center;
    }
    .tourSingle_wrapper .reasons .swiper-pagination {
        position: static;
        margin-top: 20px;
    }
    .tourSingle_wrapper .reasons .swiper-pagination-bullet {
        background: #ffffff;
        width: 6px;
        height: 6px;
        opacity: 0.68;
    }
    .tourSingle_wrapper .reasons .swiper-pagination-bullet-active {
        background: var(--theme-color2) !important;
        opacity: 1;
    }
    
}
@media (max-width: 767px){
    
    .heading h2 {
        font-size: 25px;
    }
    .hero_content {
        text-align: center;
    }
    .hero_content h1 {
        font-size: 30px;
    }
    .hero_content p {
        font-size: 16px;
    }
    ul.searchTab {
        justify-content: center;
    }
    .hero_form .btn {
        width: 100%;
        max-width: 250px;
        margin-top: 10px;
    }
    .why_us .row .col-md-4 {
        padding: 15px;
    }
    
    .our_impact {
        text-align: center;
        margin-top: 0;
    }
    .our_impact .imgBox {
        padding: 45px 22px;
        margin: 50px 0 -88px;
    }
    
    .about_us {
        text-align: center;
    }
    
    .listing_head {
        padding: 50px 0 0;
    }
    .listing_head .container {
        padding: 0;
    }
    .listing_head .best_cityBox {
        border-radius: 0;
    }
    .listing_head .best_cityBox .content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
        padding-bottom: 32px;
    }
    .listing_head .best_cityBox .content .meta {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 15px;
        font-weight: 700;
    }
    .listing_head .best_cityBox .imgBox img {
        aspect-ratio: 1 / 1;
    }
    .best_cityBox .imgBox::after {
        position: absolute;
        background: linear-gradient(180deg, #2c2628, rgba(0, 0, 0, 0));
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 50%;
        z-index: 2;
        opacity: 0.6;
    }
    .listing_head.bestDestinations .swiperArrow {
        display: none;
    }
    .listing_head .user_wrapper .locals_info img {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .listing_head .user_wrapper .locals_info {
        margin-right: 0;
    }
    .filter_area {
        z-index: 999;
    }
    .filter_list {
        column-gap: 8px;
    }
    .filter_area .filter_label {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .filter_item .dropdown_wraper {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        min-width: auto !important;
        margin: 0;
        display: flex;
        flex-direction: column;
        z-index: 99999;
    }
    .filter_item .dropdown_wraper .actions, .datepicker_area .daterangepicker .drp-buttons {
        background: #ffffff;
        position: sticky;
        bottom: -25px;
        left: 0;
        padding: 12px 26px;
        margin: auto -25px 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
        z-index: 9;
    }

    .filter_item .dropdown_wraper .actions .clearBtn, .datepicker_area .daterangepicker .drp-buttons .cancelBtn {
        background: #cccccc;
        color: #333333;
        border-radius: 5px;
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }
    .filter_item .dropdown_wraper .actions .readMore, .datepicker_area .daterangepicker .drp-buttons .applyBtn {
        background: var(--theme-color2);
        color: #ffffff;
        border-radius: 5px;
        padding: 12px;
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }
    .datepicker_area .daterangepicker {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        height: 100%;
    }
    .datepicker_area .daterangepicker .drp-calendar {
        max-width: 100%;
    }
    .datepicker_area .daterangepicker .calendar-table th, .datepicker_area .daterangepicker .calendar-table td {
        border-radius: 0 !important;
    }
    
    .experiences {
        padding: 15px 0;
    }
    .experiences h2 {
        font-size: 18px;
        margin: 0;
    }
    .experiences p {
        font-size: 12px;
        margin: 0;
    }
    .experiences .readMore {
        color: #ffffff;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .ourTours_list .reviewBox {
        background: var(--color-sandstone);
        padding: 20px;
    }
    .ourTours_list .reviewSlider .arrowBtn {
        display: none !important;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    .footer_top .row>div {
        padding: 20px 15px;
    }
    
    .experiences.detail_area {
        background: none;
        padding: 0 10px;
    }

    .experiences.detail_area .inner_column {
        background: var(--color-dark-green);
        padding: 25px 10px;
        border-radius: 10px;
    }
    
    .tourSingle_wrapper .reasons h2 {
        font-size: 16px;
    }
    .tourSingle_wrapper .reasons .h2 {
        font-size: 30px;
    }
    
}
@media (max-width: 640px){
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .section-padding {
        padding: 50px 0;
    }
    .navbar_toggle {
        font-size: 0;
    }
    .navbar_toggle .bar_icon {
        margin-right: 0;
    }
    .header .btnBox {
        padding-left: 0;
    }
    .navbar-brand img {
        max-width: 155px;
        max-height: 45px;
    }
    
    
    .hero_imgGrid {
        margin-left: -10px;
    }
    .hero_imgGrid .imgBox, .hero_imgGrid .controler {
        width: calc(33.33% - 10px);
        margin-left: 10px;
        margin-bottom: 10px;
    }
    
    .swiper.topCities, .swiper.tourSlider, .swiper.bestCities, .swiper.reviewSlider, .swiper.local_choiceSlider {
        width: calc(100% + 22px);
    }
    .listing_head .swiper.bestCities {
        width: 100%;
    }
    .swiper.topCities .arrowBtn, .swiper.tourSlider .arrowBtn, .swiper.bestCities .arrowBtn, .swiper.reviewSlider .arrowBtn, .swiper.local_choiceSlider .arrowBtn {
        right: 22px;
    }
    
    .tourSingle_wrapper .reasons ul.check_list, .tourSingle_wrapper ul.detail_list {
        grid-template-columns: 1fr;
    }
    .tourSingle_wrapper ul.detail_list li.include_item {
        grid-column: 1 / 1;
    }
    

}
@media (max-width: 480px){
    
    
   
}


@media (min-width: 768px){

 
    .topDestinations .cityBox.grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .topDestinations .cityBox .imgBox img {
        aspect-ratio: 1 / 0.5;
    }
    .topDestinations .cityBox.grid .imgBox img {
        min-height: 100%;
    }
    
    

}
@media (min-width: 992px){

    .listing_head .swiper-pagination {
        display: none !important;
    }
 
/*
    #header.fixed {
        -webkit-animation:drfadeDown 0.45s;
    	-moz-animation:drfadeDown 0.45s;
    	-ms-animation:drfadeDown 0.45s;
    	-o-animation:drfadeDown 0.45s;
    	animation:drfadeDown 0.45s;
    	-webkit-animation-iteration-count:1;
    	-moz-animation-iteration-count:1;
    	-ms-animation-iteration-count:1;
    	-o-animation-iteration-count:1;
    	animation-iteration-count:1;
    }
*/
    ul.main_menu {
        display: flex;
        align-items: center;
        column-gap: 36px;
    }
    

}
@media (max-width: 580px) {
    .photos-grid-container {
      grid-template-columns: 1fr;
    }
  }


@media (min-width: 1300px){
    .inner_banner .container {
        max-width: 1300px;
    }
    .container {
        max-width: 1240px;
    }
    .myContainer {
        max-width: 1720px;
    }
}

@-webkit-keyframes drfadeDown{
	0%{
		opacity:0;
		-webkit-transform:translateY(-100%);
		-moz-transform:translateY(-100%);
		-o-transform:translateY(-100%);
		transform:translateY(-100%);
	}
	100%{
		opacity:1;
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		-o-transform:translateY(0);
		transform:translateY(0);
	}
}
@keyframes drfadeDown{
	0%{
		opacity:0;
		-webkit-transform:translateY(-100%);
		-moz-transform:translateY(-100%);
		-o-transform:translateY(-100%);
		transform:translateY(-100%);
	}
	100%{
		opacity:1;
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		-o-transform:translateY(0);
		transform:translateY(0);
	}
}