﻿@font-face {
    font-family: 'Trip Sans Ultra';
    src: url('TripSans-Ultra.eot');
    src: local('Trip Sans Ultra'), local('TripSans-Ultra'), 
        url('../fonts/TripSans-Ultra.eot?#iefix') format('embedded-opentype'), 
        url('../fonts/TripSans-Ultra.woff2') format('woff2'), 
        url('../fonts/TripSans-Ultra.woff') format('woff'), 
        url('../fonts/TripSans-Ultra.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('TripSans-Bold.eot');
    src: local('Trip Sans Bold'), local('TripSans-Bold'), 
        url('../fonts/TripSans-Bold.eot?#iefix') format('embedded-opentype'), 
        url('../fonts/TripSans-Bold.woff2') format('woff2'), 
        url('../fonts/TripSans-Bold.woff') format('woff'), 
        url('../fonts/TripSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('TripSans-Medium.eot');
    src: local('Trip Sans Medium'), local('TripSans-Medium'), 
        url('../fonts/TripSans-Medium.eot?#iefix') format('embedded-opentype'), 
        url('../fonts/TripSans-Medium.woff2') format('woff2'), 
        url('../fonts/TripSans-Medium.woff') format('woff'), 
        url('../fonts/TripSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans Mono';
    src: url('TripSansMono-Regular.eot');
    src: local('Trip Sans Mono Regular'), local('TripSansMono-Regular'), 
        url('../fonts/TripSansMono-Regular.eot?#iefix') format('embedded-opentype'), 
        url('../fonts/TripSansMono-Regular.woff2') format('woff2'), 
        url('../fonts/TripSansMono-Regular.woff') format('woff'), 
        url('../fonts/TripSansMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('TripSans-Regular.eot');
    src: local('Trip Sans Regular'), local('TripSans-Regular'), 
        url('../fonts/TripSans-Regular.eot?#iefix') format('embedded-opentype'), 
        url('../fonts/TripSans-Regular.woff2') format('woff2'), 
        url('../fonts/TripSans-Regular.woff') format('woff'), 
        url('../fonts/TripSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #000000;
    --secondary-color: #8A4619;
    --secondary-hover-color: #9E5D36;
    --lighter-color: #6c6767;
    --border-color: #e5e5e5;
    --title-color: #202F59;
    --text-color: #666666;
    --bg-color: #F9F4F0;
    --divider-color: #E1E1E1;
    --default-actions-color: #000000;
}

html {
    background-color: #fff;
}

/* Main */
main {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.error-area {
    padding: 50px 0;
}

.error-wrapper .error-title {
    text-align: center;
}

.error-wrapper .error-title > span {
    font-size: 100px;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    padding-bottom: 12px;
}

.error-wrapper .error-content {
    text-align: center;
}

.error-wrapper .error-content > img {
    width: 40%;
}

.error-wrapper .error-content > span {
    position: absolute;
    top: 13px;
    left: 49.5%;
    transform: translateX(-50%);
    font-size: 24px;
    letter-spacing: 4px;
}

.error-wrapper .btn_1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    word-spacing: 4px;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Sayfanın geri kalanını karart */
    z-index: 9999; /* Diğer tüm içeriklerin üzerinde olsun */
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Çemberin arka planı */
    border-top: 5px solid #3498db; /* Çemberin üst kısmı */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.box_grid .box_grid-content {
    height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    background-color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}

a:hover, a:focus {
  color: var(--secondary-color);
  text-decoration: none;
  outline: none;
}

a.btn_1, .btn_1 {
    border: none;
    color: #fff;
    background: var(--secondary-color);
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

a.btn_1:hover,
.btn_1:hover {
  background: var(--secondary-hover-color);
  color: #fff;
}



.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.1rem var(--secondary-color);
}

.check-list ul {
    margin: 0;
}

.check-list ul li {
    position: relative;
    list-style-type: none;
    padding-left: 20px;
    display: block;
    margin-bottom: 4px;
}

.check-list ul li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: -1px;
    width: 7px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: var(--secondary-color);
    transform-origin: bottom left;
    transform: rotate(42deg);
}

.check-list ul li:last-child {
    margin-right: 0;
    float: left;
}

section.section {
    padding-top: 80px;
    padding-bottom: 55px;
    background-color: #fff;
}

    section.section.withoutBreadcrumbSection {
        padding-top: 10px;
        padding-bottom: 10px;
    }

/* historialPlaces pagination styles >>>> */
.historialPlacesList .historialPlacesPagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.historialPlacesList .pagination li {
    display: inline-block;
    padding: 0;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
}


.historialPlacesList .pagination li:not(.disabled) a {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    line-height: 32px;
    justify-content: center;
    cursor: pointer;
}

    .historialPlacesList .pagination li:not(.disabled) a:hover {
        background: #d2d8dd;
    }

.historialPlacesList .pagination li.disabled a {
    cursor: default;
}

.historialPlacesList .historialPlacesPagination [class^="btn"] {
    padding: 0;
    background: #202F59;
    color: #fff;
    margin: 0 3px;
    height: 32px;
    width: 32px;
    line-height: 32px;
    cursor: pointer;
    text-align: center;
    caret-color: transparent;
}

        .historialPlacesList .historialPlacesPagination [class^="btn"]:hover {
            background: #12192f;
        }

    .historialPlacesList .historialPlacesPagination .active {
        background: #202F59;
        color: #fff !important;
    }

    .historialPlacesList .historialPlacesPagination .active a {
        color: #fff !important;
        cursor: default;
    }
        .historialPlacesList .historialPlacesPagination .active a:hover {
            color: #fff !important;
            cursor: default;
            background: #202F59;
        }


.historialPlacesList .next, .historialPlacesList .prev, .historialPlacesList .first, .historialPlacesList .last {
    display: inline-flex;
}
/* historialPlaces pagination styles <<<< */

section.homeChoiceAction-section, section.homeChoiceYourLocation-section {
    padding-top: 40px;
    padding-bottom: 0;
}

section.chooseType-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

section.section.section-top-wrapper {
    padding-top: 109px;
    padding-bottom: 0px;
}

section.section.homeCommentSection {
    padding-top: 10px;
    padding-bottom: 10px;
}

    section.section.homeCommentSection .section-title-area {
        margin: 0 0 10px 0;
    }

        section.section.homeCommentSection .section-title-area p {
            font-size: 22px;
            margin: 0;
        }

        section.section.homeCommentSection .section-title-area h2 {
            font-size: 30px;
            margin: 0 0 10px 0;
        }

    section.section.homeCommentSection .testimonial-content {
        margin-bottom: 20px;
        font-size: 16px;
    }

section.section.home-top-rated-featured-section .home-popular-tour-options-content {
    margin: 20px 0 0 0;
    padding: 40px 0 0 0;
}


.section-top-wrapper .section-title {
    padding: 0 0 60px 0;
}

.section-top-wrapper .section-title h1 {
    color: var(--title-color);
    font-size: 30px;
    font-weight: 700;
}

section#description, section#reviews {
  border-bottom: 3px solid var(--secondary-color);
  margin-bottom: 45px;
  padding-top: 30px;
}

section#description h2, section#reviews h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

section#description h3, section#reviews h3 {
  font-size: 1.3125rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

section#description h4, section#reviews h4 {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--secondary-color);
}

:is(section#description) big strong, strong big {
    color: var(--secondary-color);
}

.section.section .section-title-area {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.section.section .section-title-area p {
    font-size: 36px;
    color: var(--secondary-color);
    font-family: 'Parisienne', cursive;
}

    .section.section .section-title-area h2 {
        color: var(--title-color);
        font-size: 50px;
        line-height: 60px;
        font-weight: 700;
        text-transform: uppercase;
    }

.section.section .section-sec-color-title-area {
    text-align: center;
    margin: 0px 0px 25px 0px;
}

.section.section .section-sec-color-title-area h2 {
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 60px;
    font-weight: 700;
}

@media screen and (min-width: 992px) {
    header .btn_mobile {
        display: block !important;
    }

    header nav#menu.main-menu {
        display: none !important;
    }

    #mm-menu.main-menu {
        display: block !important;
    }

    .main-menu ul, .main-menu ul li {
        display: block;
    }

    html.mm-blocking body {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 1400) {
    header .btn_mobile {
        display: none !important;
    }

    header nav#menu.main-menu {
        display: block !important;
    }

    #mm-menu.main-menu {
        display: none !important;
    }

    .main-menu ul, .main-menu ul li {
        display: inline-block;
    }
}

.elementor-widget-inner .booking-wrapper {
    padding: 0 40px;
    border: 1px solid transparent;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
}

.booking-wrapper .booking-title {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: left;
}

.booking-wrapper .booking-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
}

.booking-wrapper .booking-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    right: -40px;
    border-bottom: 1px solid;
    border-color: var(--border-color);
}

.booking-wrapper .booking-form-block {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.booking-wrapper .booking-input-label {
    font-weight: 500;
    color: #000;
    -webkit-box-flex: 13;
    -webkit-flex-grow: 13;
    flex-grow: 13;
}

.booking-wrapper .input-dates {
    margin-bottom: 0;
}

.booking-wrapper .booking-quest-result {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-size: 14px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.booking-wrapper .booking-quest-result .booking-input-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.booking-wrapper .booking-quest-result .booking-input-select .booking-input-select-title {
    padding: 5px;
    -webkit-flex-basis: 60%;
    flex-basis: 60%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    font-size: 10px;
}
/*
.booking-wrapper .booking-quest-result .booking-input-select .booking-input-select-title .currency_amount {
    padding-left: 8px;
}*/
.item-timex {
    font-weight: 800;
}

.item-locationx {
    font-weight: 800;
}
.currency_amount {
    font-size: 12px;
    font-weight: 700;
}

.currency_amount.discount {
    font-size: 18px;
    font-weight: 700;
}
.currency_amount.discount-total {
    font-size: 18px;
    font-weight: 700;
}

.currency_amount.total {
    font-size: 20px;
    line-height: 1em;
    color: var(--secondary-color);
    font-weight: 700;
}

.booking-wrapper .booking-quest-result .booking-input-select .booking-input-select-wrapper {
    position: relative;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 5;
    flex-shrink: 5;
    color: #999;
    max-width: 120px;
}

.booking-wrapper .booking-quest-result .booking-input-select .booking-input-select-wrapper i {
    position: absolute;
    right: 0.75rem;
    top: 52%;
    padding: 0;
    font-size: .85em;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.booking-wrapper .booking-quest-result .booking-input-select .booking-input-select-wrapper .form-select {
    padding: 0.75rem 1rem;
    background-color: #fff;
    border-width: 2px;
    border-style: solid;
    border-color: var(--border-color);
    -webkit-appearance: none;
    box-sizing: border-box;
    font-weight: normal;
    border-radius: 3px;
    outline: 0;
    font-size: 14px;
    color: #999999;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 30px;
}

.booking-wrapper .booking-form-block .booking-block {
    width: 100%;
}

.box_detail {
    padding: 25px 25px 15px 25px;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
}

.box_detail .widget-title h4 {
    color: var(--secondary-color);
}

.box_detail .price {
  line-height: 1;
  border-bottom: 1px solid #ededed;
  margin: 0 -25px 25px -25px;
  padding: 0 25px 15px 25px;
}

.box_detail .price > span {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 600;
}

.box_detail .price > span > small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.box_detail .price .score {
  float: right;
  margin-top: -5px;
}

.box_detail h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
}

.box_detail ul {
  margin-bottom: 0;
}

.box_detail ul li {
  margin-bottom: 5px;
}

.box_detail ul li i {
  margin-right: 8px;
}

.box_detail figure {
  position: relative;
  background-color: #000;
}

.box_detail figure img {
  opacity: 0.8;
}

.box_detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.box_detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.box_detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.box-detail.tours {
    padding: 0 10px;
}

.box-detail.tours .item-dayx {
    background: #006066;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    font-size: 10px;
    width: fit-content;
    margin-bottom: 1rem;
}

.box-detail.tours .box-detail-title {
    padding: 0 30px;
}

.box-detail.tours .box-detail-title h3 {
    text-align: center;
    font-weight: 700;
    padding: 14px 0;
    color: var(--title-color);
}

.box-detail.tours .box-detail-title h3::before {
    display: none;
}

.box-detail {
    margin-bottom: 20px;
    box-shadow: 0px 0px 30px 0px rgba(5.999999999999997, 30.00000000000003, 98.00000000000001, 0.08);
    background-color: #fff;
    padding: 0 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
}

.box-detail .box-detail-content {
    padding: 0 0 20px 0;
}

.box-detail .box-detail-title h3 {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: left;
    color: var(--title-color);
}

.box-detail .box-detail-title h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
}

.box-detail .box-detail-title h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    right: -40px;
    border-bottom: 1px solid;
    border-color: var(--border-color);
}

.box-detail .widget-title h4 {
    color: var(--secondary-color);
}

.box-detail .price {
  line-height: 1;
  margin: 0 -25px 25px -25px;
  padding: 0 25px 15px 25px;
}

.box-detail .price .score strong {
    background-color: var(--secondary-color);
    color: #fff;
    line-height: 1;
    -webkit-border-radius: 5px 5px 5px 0;
    -moz-border-radius: 5px 5px 5px 0;
    -ms-border-radius: 5px 5px 5px 0;
    border-radius: 5px 5px 5px 0;
    padding: 10px;
    display: inline-block;
}

.box-detail .price > span {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 600;
}

.box-detail .price > span > small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.box-detail .price .score {
  float: right;
  margin-top: -5px;
}

.box-detail ul {
  margin-bottom: 0;
}

.box-detail ul li {
  margin-bottom: 5px;
}

.box-detail ul li i {
  margin-right: 8px;
}

.box-detail figure {
  position: relative;
  background-color: #000;
}

.box-detail figure img {
  opacity: 0.8;
}

.box-detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.box-detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.box-detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.aside-text-wrapper {
    margin-bottom: 20px;
}

.aside-text-wrapper p {
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.aside-text-wrapper .content span {
    color: var(--text-color);
    font-weight: 400;

}

.menu-dropdown {
    position: relative;
}

.menu-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    background-color: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    padding: 15px 0;
    border-radius: 5px;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
}

.dropdown-content ul li {
    min-width: 260px;
    padding: 0 15px;
}

.dropdown-content ul li a {
    padding: 0.68em 20px;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5;
    font-size: 14px;
    border-radius: 5px;
    position: relative;
    width: 100%;
}

.dropdown-content ul li:hover a {
    color: var(--secondary-color);
    background-color: #f4f4f4;
}

ul.cart_details {
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ededed;
}

ul.cart_details li {
  font-weight: 500;
}

ul.cart_details li span {
  float: right;
}

.box_cart {
  margin-bottom: 25px;
}

.box_cart hr {
  margin: 30px -25px 30px -25px;
}

.box_cart label {
  font-weight: 500;
}

.box_cart a.btn_1.outline, .box_cart .btn_1.outline {
  border: 2px solid #575757;
  color: #575757;
  padding: 12px 40px;
}

.box_cart a.btn_1.outline:hover, .box_cart .btn_1.outline:hover {
  color: #fff;
  border: 2px solid #0054a6;
}

.cart-options {
  position: relative;
  padding: 25px 0px 0px 0px;
  border-top: 1px solid #ededed;
}

@media (max-width: 991px) {
  .cart-options .fix_mobile {
    float: left !important;
  }
}

.item-dayx {
    background: #006066;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    font-size: 10px;
    width: fit-content;
    margin-bottom: 1rem;
}

.item-day-info-wrap .item-dayx {
    margin-bottom: 0;
}

.item-timex strong,
.item-locationx strong,
.item-infox strong {
    font-size: 14px;
    color: var(--secondary-color);
    padding-right: 4px;
}

.item-timex span,
.item-infox span {
    font-size: 13px;
}

.item-infox span:not(:last-child):after {
    content: '';
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    margin: 0 0.5em;
    display: inline-block;
    vertical-align: middle;
}

/*.item-day-media.lightbox-gallery-card {
    max-height: 22px;
    overflow: hidden;
}*/

.item-checklistx .checklist-item {
    display: block;
}

.item-checklistx .checklist-item p {
    position: relative;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 15px;
}

.item-checklistx .checklist-item p:before {
    content: '';
    display: block;
    position: absolute;
    color: #dc834e;
    left: 0;
    top: 2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(42deg);
}

.item-checklistx .checklist-item i {
    font-size: 14px;
    color: #dc834e;
}

.item-checklistx .checklist-item span {
    font-size: 12px;
}

.item-checklistx .checklist-item:not(:first-child) {
    margin-top: 4px;
}

@media screen and (max-width: 991.98px) {
    #logo {
        z-index: -1;
    }
    
    #logo img {
        height: 40px;
    }

    html.mm-blocking body {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    section.section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    section.section.section-top-wrapper {
        padding-top: 71px;
    }

    .section-top-wrapper .section-title {
        padding: 0 0 30px 0;
    }

    .section.section .section-title-area h2 {
        font-size: 44px;
        line-height: 50px;
    }
}

/* Scroll top button */
#toTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#toTop:after {
  content: "\e899";
  font-family: "fontello";
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}

#toTop:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.primary-bg {
    background-color: var(--bg-color)!important;
}

.primary-text {
    color: var(--secondary-color);
}

.currency-amount {
    font-size: 17px;
    font-weight: 700;
}

.elementor-button-link {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.elementor-button-link:focus,
.elementor-button-link:active {
    color: #fff!important;
    background-color: #202F59!important;
    border-color: #202F59!important;
    box-shadow: none!important;
}

.elementor-button-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.elementor-button-link .elementor-button-wrap .elementor-button-icon {
    margin-left: 10px;
}

.elementor-divider {
    border-bottom: 1px solid var(--divider-color);
}

.item-starx .star.active {
    color: var(--secondary-color);
}

.location-item .thumbnail-location {
    height: 150px;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

.location-item .thumbnail-location:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: #202f59;
    background: -webkit-linear-gradient(bottom, var(--title-color) 0%, rgba(32, 47, 89, 0) 100%);
    background: linear-gradient(0deg, var(--title-color) 0%, rgba(32, 47, 89, 0) 100%);
    z-index: 2;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -ms-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}

.location-item:hover .thumbnail-location:before {
    height: 100%;
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.location-item .thumbnail-location:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #202f59;
    background: -webkit-linear-gradient(bottom, var(--title-color) 0%, rgba(32, 47, 89, 0) 100%);
    background: linear-gradient(0deg, var(--title-color) 0%, rgba(32, 47, 89, 0) 100%);
    z-index: 2;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    height: 35%;
}

.location-item .thumbnail-location img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.location-item .location-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 50px;
    z-index: 4;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden;
}

.location-item .location-content:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    right: 50px;
    background-color: var(--secondary-color);
    border-radius: 2em;
    height: 10px;
    -webkit-transition: all 0.25s ease 0.1s;
    transition: all 0.25s ease 0.1s;
}

.location-item:hover .location-content:after {
    bottom: -5px;
}

.location-item .location-content .location-name {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    word-break: break-all;
}

.main_title_3 {
  margin-bottom: 25px;
  position: relative;
}

.main_title_3 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
}

.main_title_3 span em {
  width: 60px;
  height: 2px;
  background-color: var(--secondary-color);
  display: block;
}

.main_title_3 h2, .main_title_3 h3 {
  font-size: 26px;
  font-size: 1.4375rem;
  margin: 25px 0 1rem 0;
}

.main_title_3 p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.4;
    font-size: 30px;
    color: var(--secondary-color);
    font-family: 'Parisienne', cursive;
}

@media screen and (max-width: 991.98px) {
    .location-item .location-content {
        bottom: 20px;
    }

    .location-item .location-content:after {
        display: none;
    }
}

@media screen and (max-width: 767.98px) {
    .location-item .thumbnail-location {
        margin-bottom: 20px;
    }

  .main_title_3 {
    margin-bottom: 10px;
  }

  .main_title_3 h2, .main_title_3 h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

/* ------------ HEADER ----------- */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    background: #ffffff;
}

.header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .header .company-logout-wrapper .btn {
        font-weight: 500;
        font-size: 12px;
    }
    .header .company-register-login-wrapper .btn {
        font-weight: 500;
        font-size: 12px;
    }

    .header .main-menu > ul > li span > a {
        padding: 1rem 0.7rem;
        font-size: 12px;
    }
}

.main-menu > ul > li span > a {
    color: #000;
    padding: 1rem;
    font-size: 16px;
    font-weight: 500;
}

.main-menu > ul > li span > a:hover {
    color: var(--secondary-color);
    transition: all .3s ease-in-out;
}

.main-menu > ul > li span > a:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin-left: 4px;
    vertical-align: unset;
}

.header-content .menu-account a {
    color: #000;
}

.header-content .menu-account i {
    font-size: 24px;
}

.header-content .dropdown.language-dropdown a:hover {
    cursor: pointer;
}

.header-content .dropdown.language-dropdown img {
    width: 30px;
    height: auto;
    object-fit: contain;
    margin-right: 4px;
}

.header-content .dropdown-menu {
    padding: 0.5rem;
    margin: 0.5rem 0 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
}
/* ------------ BANNER ----------- */
.hero_single {
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0;
    color: #fff;
}

.hero_single.start_bg_zoom:before {
    animation: pop-in 6s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero_single.jarallax {
    height: 720px;
    margin-top: 50px;
}

.hero_single.jarallax .wrapper h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 80px;
    letter-spacing: -1px;
    text-shadow: 0px 1px 5px rgba(0,0,0,0.3);
    max-width: 80%;
    margin: 0 auto;
}

.hero_single .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero_single.start_bg_zoom:before {
  animation: pop-in 6s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero_single .wrapper p {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0 20%;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.hero_single .wrapper p strong {
  font-weight: 600;
}

.hero_single.short {
  height: 600px;
}

#custom-search-input {
  padding: 0;
  width: 600px;
  margin: 20px auto 0;
  position: relative;
}

#custom-search-input .search-query {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}

#custom-search-input .search-query:focus {
  outline: none;
}

#custom-search-input input[type='submit'] {
  position: absolute;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: -1px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  top: 0;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  outline: none;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #fc5b62;
}

#custom-search-input input[type='submit']:hover {
  background-color: #FFC107;
  color: #222;
}

.custom-search-input-2 {
    background-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    margin-top: 15px;
    -webkit-box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
    -moz-box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
    box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
}

.custom-search-input-2 .nice-select-wrapper:first-child {
    border-radius: 20px 0 0 20px;
}

.custom-search-input-2 .card.bordered {
    border-right: 1px solid var(--border-color);
}

.custom-search-input-2 .card:not(:last-child) {
    padding: 6px 14px!important;
}

.custom-search-input-2 .card > div {
    width: 100%;
}

.custom-search-input-2 .card label {
    font-weight: 500;
    margin-bottom: 0;
}

.custom-search-input-2 .card:not(:last-child) strong {
    font-size: 28px;
    color: var(--secondary-color);
}

.custom-search-input-2 .card:last-child strong {
    font-size: 20px;
    padding-right: 4px;
}

.custom-search-input-2 .card:last-child {
    border-radius: 0 20px 20px 0
}

.custom-search-input-2 .card:last-child button {
    border-radius: 0 20px 20px 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-search-input-2 input {
    border: 0;
    height: 42px;
    padding-left: 16px;
    font-weight: 500;
}

.custom-search-input-2 input:focus {
  box-shadow: none;
  border-right: 1px solid #d2d8dd;
}

.custom-search-input-2 select {
  display: none;
}

.custom-search-input-2 .nice-select .current {
  font-weight: 500;
  color: #575757;
}

.custom-search-input-2 .form-group {
  margin: 0;
}

.custom-search-input-2 i {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  background-color: #fff;
  line-height: 50px;
  top: 0;
  right: 1px;
  padding-right: 15px;
  display: block;
  width: 20px;
  box-sizing: content-box;
  height: 50px;
  z-index: 9;
  color: #575757;
}

.custom-search-input-2 input[type='submit'] {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  outline: none;
  width: 100%;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: var(--secondary-color);
  margin-right: -1px;
}

.custom-search-input-2 input[type='submit']:hover {
  background-color: #FFC107;
  color: #222;
}

.custom-search-input-2.inner {
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.custom-search-input-2.inner-2 {
  margin: 0 0 20px 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: none;
}

.custom-search-input-2.inner-2 .form-group {
  margin-bottom: 10px;
}

.custom-search-input-2.inner-2 input {
  border: 1px solid #ededed;
}

.custom-search-input-2.inner-2 input[type='submit'] {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-top: 10px;
}

.custom-search-input-2.inner-2 i {
  padding-right: 10px;
  line-height: 48px;
  height: 48px;
  top: 1px;
}

.custom-search-input-2.inner-2 .nice-select {
  border: 1px solid #ededed;
}

.nice-select-wrapper .select2.select2-container {
    width: 100% !important;
}

.nice-select-wrapper .select2.select2-container .selection {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 3px;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 28px;
    line-height: 48px;
    outline: none;
    padding-left: 7px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    color: #555;
    display: flex;
    align-items: center;
}

.nice-select-wrapper .select2.select2-container .selection::after {
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    content: '';
    display: block;
    height: 8px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 8px;
}

.nice-select-wrapper .select2.select2-container .select2-selection {
    border: none;
    width: 100%;
}

.nice-select-wrapper .select2.select2-container .select2-selection .select2-selection__rendered {
    font-weight: 500;
    color: #575757;
}

    .nice-select-wrapper .select2.select2-container > .selection > .select2-selection > span.select2-selection__rendered {
        font-size: 82%;
        padding: 0 25px 0 0;
    }

.nice-select-wrapper .select2.select2-container .select2-selection .select2-selection__arrow {
    display: none;
}

.select2-container--open .select2-dropdown {
    min-width: 250px;
}

.select2-container--open .select2-dropdown .select2-search__field {
    border: 1px solid #dee2e6!important;
    border-radius: 4px;
}

.select2-container--default .select2-results__option--selected {
    background-color: #f6f6f6!important;
    font-weight: 500;
    color: #555!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f6f6f6 !important;
    color: #555 !important;
}

.select2-dropdown {
    margin-top: 4px;
    border: none !important;
    box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
    border-radius: 3px !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 14px;
    height: 18px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}

.select2-results__options::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    -webkit-border-radius: 7px;
    background-color: rgba(0,0,0,.15);
    -webkit-box-shadow: inset -1px -1px 0 rgb(0 0 0 / 5%), inset 1px 1px 0 rgb(0 0 0 / 5%);
}

.banner-search-area:not(.homePage-banner-search-area) {
    max-width: 915px;
}

.banner-search-area .nav-pills .nav-item .nav-link {
    padding: 10px 30px;
    background: var(--title-color);
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    border-radius: 5px 5px 0 0;
    margin-right: 2px;
    border: 0;
}

.banner-search-area .nav-pills .nav-item .nav-link.active {
    background: var(--secondary-color)!important;
}

.banner-search-area .form-control.tour-date, 
.banner-search-area input[name='returnDate'], 
.banner-search-area input[name='dates'] {
    height: 28px;
    padding: 0;
}

.banner-search-area .search-item-wrapper .panel-dropdown.Pax {
    height: 28px;
    line-height: 28px;
}

.no-search-seperator {
    width: 100%;
    height: 25px;
    max-height: 25px;
}

@media screen and (max-width: 991.98px) {
    .hero_single.jarallax {
        margin-top: 10px;
    }

    #custom-search-input {
        width: auto;
    }

    .custom-search-input-2 {
        background: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .custom-search-input-2 input {
        border: none;
    }

    .custom-search-input-2 input:focus {
        border-right: none;
    }

    .custom-search-input-2 .form-group {
        margin-bottom: 5px;
    }

    .custom-search-input-2 i {
        padding-right: 10px;
    }

    .custom-search-input-2 input[type='submit'] {
        margin: 20px 0 0 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }

    .custom-search-input-2.inner {
        margin: 0 0 20px 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
      }

    .custom-search-input-2 .card:last-child button {
        border-radius: 0 0 20px 0;
        height: 88px;
        padding: 0!important;
    }

    .custom-search-input-2 .nice-select-wrapper:first-child {
        border-radius: 20px 0 0 0;
    }

    .custom-search-input-2 .nice-select-wrapper:nth-child(2n) {
        border-radius: 0 20px 0 0;
    }

    .hero_single.jarallax .wrapper p {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767.98px) {
    .hero_single .wrapper h3 {
        font-size: 21px;
        font-size: 1.3125rem;
    }

    .hero_single .wrapper p {
        padding: 0;
        font-size: 18px;
        font-size: 1.125rem;
    }

    .custom-search-input-2 .nice-select-wrapper:first-child {
        border-radius: 20px 20px 0 0;
    }

    .custom-search-input-2 .nice-select-wrapper:nth-child(2n) {
        border-radius: 0 0 0 0;
        margin-top: 0px !important;
    }
}

@media screen and (max-width: 575px) {
    .hero_single .wrapper h3 {
        font-size: 23px;
        font-size: 1.4375rem;
    }
}

/* -------- HOME -------- */
.elementor-featured-section .featured-video-wrapper {
    height: 100%;
    padding: 175px 0;
}

.elementor-featured-section .featured-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.elementor-featured-section .featured-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

section.section .big-container {
    max-width: 1500px;
    margin: 0 auto;
}

.elementor-element-content .elementor-item {
    padding: 20px 0;
}

.elementor-element-content .elementor-item:not(:last-child) {
    border-bottom: 1px solid;
    border-color: var(--border-color);
}

.elementor-widget-title {
    margin: 0px 0px 10px 0px;
    padding: 0px 0px 13px 0px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: var(--border-color);
    text-align: center;
}

.elementor-widget-title h2 {
    color: var(--title-color);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0px;
}

.elementor-element-content .elementor-item .item-img img {
    width: 100px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.elementor-element-content .elementor-item .item-text {
    padding-left: 5px;
}

.elementor-element-content .elementor-item .item-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    margin-top:7px;
}

.elementor-element-content .elementor-item .item-info-price .new-price {
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 700;
}

.elementor-element-content .elementor-item .item-info-price .old-price {
    color: var(--lighter-color);
    text-decoration: line-through;
    font-size: 17px;
    font-weight: 700;
}

.elementor-element-content .elementor-item .item-info-price .price-text {
    font-size: 12px;
    padding-left: 4px;
}

.elementor-action-section .elementor-location-wrap .location-item .thumbnail-location:before {
    height: 100%;
    background-color: #002C4D;
    opacity: 0.5;
    top: 0;
    bottom: 100%;
    visibility: visible;
    transform: translateY(0);
}

.elementor-action-section .elementor-location-wrap .location-item.random-color .thumbnail-location:before {
    background: var(--default-actions-color);
    opacity: 1;
}

.elementor-action-section .elementor-location-wrap .location-item.random-color a:hover .thumbnail-location:before {
    opacity: 1;
}

.elementor-action-section .elementor-location-wrap .location-item .location-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    align-items: center;
    justify-content: center;
}

.elementor-action-section .elementor-location-wrap .location-item .location-content .location-name {
    text-align: center;
    word-break: break-word;
}

.elementor-action-section .elementor-location-wrap .location-item .thumbnail-location:after,
.elementor-action-section .elementor-location-wrap .location-item .location-content:after {
    display: none;
}

.elementor-action-section .elementor-location-wrap .location-item a:hover .thumbnail-location:before {
    opacity: 0.1;
}

.elementor-action-section .elementor-location-wrap .location-item a:hover .thumbnail-location {
    transform: scale(1.2);
    transition: all .3s ease-in-out;
}

.elementor-action-section .elementor-location-wrap .left-wrapper {
    flex-direction: row-reverse;
    row-gap: 24px;
}

.elementor-action-section .elementor-location-wrap .right-wrapper {
    row-gap: 24px;
}

@media screen and (max-width: 767.98px) {
    .elementor-featured-section .featured-video-wrapper {
        height: 284px;
        padding: 25px 0;
    }

    .elementor-action-section .elementor-location-wrap .location-item .location-content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        justify-content: center;
    }

    .elementor-action-section .elementor-location-wrap .right-wrapper {
        row-gap: 0px;
    }

    .elementor-action-section .elementor-location-wrap .left-wrapper {
        flex-direction: row;
        row-gap: 0;
    }
}

.elementor-info-section .elementor-info-wrap {
    padding: 50px 0;
}

.elementor-info-section .elementor-info-wrapper .info-icon {
    font-size: 26px;
    color: var(--secondary-color);
    margin-right: 20px;
}

.elementor-info-section .elementor-info-wrapper .info-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (max-width: 991.98px) {
    .elementor-info-section .elementor-info-wrap div.row {
        gap: 20px;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon {
        margin-right: 0;
        margin-bottom: 14px;
    }
}

.elementor-tours-section .wrapper-grid .elementor-tours-wrap,
.elementor-tours-section .col-lg-12 .elementor-tours-wrap {
    height: auto;
    overflow: inherit;
}

.elementor-tours-section .elementor-tours-wrap .item-checklistx {
    height: 100px;
    max-height: 100px;
    overflow-y: auto;
}

.elementor-tours-section .elementor-tours-wrap .item-checklistx::-webkit-scrollbar {
    width: 4px;
}

.elementor-tours-section .elementor-tours-wrap .item-checklistx::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #00000025   ; 
  border-radius: 10px;
}

.elementor-tours-section .elementor-tours-wrap .item-checklistx::-webkit-scrollbar-thumb {
  background: var(--secondary-color); 
  border-radius: 10px;
}

.elementor-tours-section .elementor-tours-wrap .card {
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

.elementor-tours-section .elementor-tours-wrap .card .card-img {
    position: relative;
}

.elementor-tours-section .elementor-tours-wrap .card .card-img .card-carousel img,
.elementor-tours-section .elementor-tours-wrap .card .card-img img {
    border-radius: 20px 20px 0 0;
    min-height: 220px;
    max-height: 220px;
    height: 100%;
    object-fit: cover;
}

.elementor-tours-section .elementor-tours-wrap .elementor-tours-wrap-item .included-list {
    height: 115px;
    overflow-y: auto;
}

.elementor-tours-section .elementor-tours-wrap .elementor-tours-wrap-item .included-list::-webkit-scrollbar {
  width: 4px;
}

.elementor-tours-section .elementor-tours-wrap .elementor-tours-wrap-item .included-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff; 
  border-radius: 10px;
}

.elementor-tours-section .elementor-tours-wrap .elementor-tours-wrap-item .included-list::-webkit-scrollbar-thumb {
  background: #9E5D3650; 
  border-radius: 10px;
}

.elementor-tours-section .elementor-tours-wrap .elementor-tours-wrap-item .included-list::-webkit-scrollbar-thumb:hover {
  background: #9E5D36; 
}

.elementor-tours-section .elementor-tours-wrap .card .card-img .price_discount {
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #35cadc;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 30px;
    z-index: 3;
    background-color: #A72039;
}

/* Custom OwlCarousel Styles >>>> */

/*home caropusel styles*/
.owl-carousel.home-carousel  {
    position: relative;
    margin: 80px 0 0 0;
}

        .owl-carousel.home-carousel .owl-nav button.owl-prev {
            position: absolute;
            top: 50%;
            color: #fff;
            font-size: 80px;
            left: 30px;
            margin: -64px 0 0 0;
        }

        .owl-carousel.home-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 50%;
            color: #fff;
            font-size: 80px;
            right: 30px;
            margin: -64px 0 0 0;
        }

.owl-theme.home-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.owl-carousel.home-carousel .wrapper h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 80px;
    letter-spacing: -1px;
    text-shadow: 0px 1px 5px rgba(0,0,0,0.3);
    max-width: 80%;
    margin: 0 auto;
}

.owl-carousel.home-carousel .wrapper {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

    .owl-carousel.home-carousel .wrapper p {
        font-weight: 400;
        margin: 5px 0 0 0;
        padding: 0;
        font-size: 21px;
        font-size: 1.3125rem;
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
        color: #fff;
        text-align: center;
    }

    .owl-carousel.home-carousel .wrapper p strong {
        font-weight: 600;
    }

/*end of home caropusel styles*/

.owl-carousel.card-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
}

.owl-carousel.card-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
}

.owl-theme.card-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.owl-carousel.topRatedTours-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-carousel.topRatedTours-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-theme.topRatedTours-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.owl-carousel.popularTourOptions-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -25px;
    color: #000;
    font-size: 60px;
}

.owl-carousel.popularTourOptions-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -25px;
    color: #000;
    font-size: 60px;
}

.owl-theme.popularTourOptions-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-carousel.aboutTours-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-carousel.aboutTours-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 60px;
}

.owl-theme.aboutTours-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
/* Custom OwlCarousel Styles <<<< */

.owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item {
    width: fit-content;
}

    .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner {
        width: fit-content;
    }

        .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner img {
            width: fit-content;
            max-width: 200px;
        }



@media (max-width: 767px) {

    .owl-carousel.topRatedTours-carousel .owl-nav button.owl-prev, 
    .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-prev, 
    .owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-prev {
        left: 0;
    }
    .owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-prev {
        left: -30px !important;
    }

    .owl-carousel.topRatedTours-carousel .owl-nav button.owl-next,
    .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-next,
    .owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-next {
        right: 0;
    }

    .owl-carousel.homeFeaturedTour-carousel .owl-nav button.owl-next {
        right: -30px !important;
    }

    .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav button.owl-prev {
        left: 0 !important;
    }

    .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav button.owl-next {
        right: 0 !important;
    }

    .owl-carousel.home-carousel {
        margin: 50px 0 0 0;
    }

        .owl-carousel.home-carousel .owl-stage-outer {
            height: 150px;
            max-height: 150px;
        }

            .owl-carousel.home-carousel .owl-stage-outer .item img {
                height: 150px;
                max-height: 150px;
            }

            .owl-carousel.home-carousel .owl-stage-outer .item .wrapper .container {
                padding: 40px;
            }

        .owl-carousel.home-carousel .owl-nav button.owl-prev {
            left: 5px !important;
        }
        .owl-carousel.home-carousel .owl-nav button.owl-next {
            right: 5px !important;
        }


}

.owl-theme.homeFeaturedTour-carousel .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.elementor-tours-wrap .elementor-tours-wrap-item {
    margin-bottom: 60px;
}

    .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-head,
    .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .included-list {
        margin-bottom: 0;
    }

    .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-day-info-wrap {
        margin-bottom: 10px;
    }


.elementor-tours-wrap .card .card-body {
    z-index: 1;
}

.elementor-tours-wrap .card .item-text {
    padding: 0 6px;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1 !important;
    z-index: 1
}

.elementor-tours-wrap .card ul {
    padding: 0 0 0 0 !important;
    border-top: none!important;
}

.elementor-tours-wrap .card .included-list i {
    color: #28a745;
}

.elementor-tours-wrap .card .item-text .item-head {
    font-size: 14px;
    margin-top: -47px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 0 60px 0 rgba(6, 30, 98, 0.08);
    padding: 15px 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 25px;
}

.elementor-tours-wrap .card .item-text .item-head .item-title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
    margin-top: auto;
}

.elementor-tours-wrap .card .item-text .item-head .item-title a {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-align: start;
    overflow: hidden;
}

.elementor-tours-wrap .card .item-text .item-day-info-wrap {
    font-size: 14px;
    margin-top: 0;
    border-radius: 5px;
    background-color: #ffffff00;
    box-shadow:none;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: start;
    margin-bottom: 25px;
}

.elementor-tours-wrap .card .item-text .item-day-info-wrap .item-info-left {
    margin-bottom: 5px;
}

.elementor-tours-wrap .card .item-text .item-description {
    height: 150px;
    max-height: 150px;
    overflow-y: auto;
}

.elementor-tours-wrap .card .item-text .item-description::-webkit-scrollbar {
  width: 4px;
}

.elementor-tours-wrap .card .item-text .item-description::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff; 
  border-radius: 10px;
}

.elementor-tours-wrap .card .item-text .item-description::-webkit-scrollbar-thumb {
  background: var(--secondary-color); 
  border-radius: 10px;
}

 .elementor-tours-wrap .card .item-text .item-description::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color); 
}


.elementor-tours-wrap .card .item-text .item-description p {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: start;
    overflow: hidden;
    margin-bottom: 6px;
}

.elementor-tours-wrap .card .item-text .item-description p:first-child,
.elementor-tours-wrap .card .item-text .item-description p:last-child {
    display: none!important;
}

.elementor-tours-wrap .item-text .item-day-info-wrap .item-info-right {
    text-align: right;
    height: 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 6px;
}

.elementor-tours-wrap .item-text .item-day-info-wrap .item-info-right .item-day-media.lightbox-gallery-card {
    display: flex;
    gap: 6px;
    max-width: 34px;
    overflow: hidden;
}

.elementor-tours-wrap .item-text .item-day-info-wrap .item-info-right .item-gallery-value {
    color: var(--lighter-color);
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none; 
    background: transparent;
}

.elementor-tours-wrap .item-text .item-day-info-wrap .item-info-right .video-link {
    margin-top: -5px;
    color: var(--lighter-color);
}

.tour-gallery-modal .gallery-img-wrapper {
    row-gap: 10px;
}

.tour-gallery-modal .gallery-img-wrapper img {
    height: 275px;
    object-fit: cover;
}

.elementor-tours-wrap .item-text .item-day-info-wrap .item-info-right .item-gallery-value i {
    vertical-align: text-bottom;
    margin-right: 5px;
}

.elementor-tours-wrap .item-text .item-bottom {
    border-top: 1px solid;
    border-top-color: var(--border-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 15px;
    margin-top: auto;
}

.elementor-tours-wrap .item-text .item-bottom-wrapper {
    margin-top: auto;
}

.elementor-tours-wrap .item-text .item-bottom .item-info-price {
    padding: 0;
    margin: 0;
    -webkit-align-self: center;
    align-self: center;
    border: none;
    font-weight: 500;
}

.elementor-tours-wrap .item-text .item-bottom .item-info-price label {
    margin: 0;
    font-size: 12px;
    display: block;
    color: var(--lighter-color);
    line-height: 1;
    font-weight: 500;
}

.elementor-tours-wrap .item-text .item-bottom .item-info-price .item-info-price-new .currency-amount {
    font-size: 16px;
    margin-right: 5px;
    color: var(--secondary-color);
}

.elementor-tours-wrap .item-text .item-bottom .item-info-price .item-info-price-old {
    text-decoration: line-through;
    font-size: 17px;
    color: var(--lighter-color);
}

.elementor-tours-wrap .item-text .item-bottom button.read-more-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
    transition: color .3s ease-in-out;
    border: none;
    background: transparent;
}

.elementor-tours-wrap .item-text .item-bottom .read-more-item {
    font-size: 12px;
    font-weight: 700;
    color: var(--title-color);
    transition: color .3s ease-in-out;
    white-space: nowrap;
}

.elementor-tours-wrap .item-text .item-bottom .read-more-item:hover {
    color: var(--secondary-color);
}

.elementor-tours-wrap .item-text .item-bottom .read-more-item i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.elementor-tours-section .elementor-tours-show-wrap {
    display: flex;
    justify-content: center;
}

.elementor-tours-section .elementor-tours-show-wrap a {
    margin: 0 auto;
}

.section-left-wrapper .title-wrap p {
    font-size: 36px;
    color: var(--secondary-color);
    font-family: 'Parisienne', cursive;
}

.section-left-wrapper .title-wrap h2 {
    color: var(--title-color);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-left-wrapper .text-wrap p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-left-wrapper .text-regions .region-list {
    margin-bottom: 5px;
}

.section-left-wrapper .text-regions .region-list .title-region {
    font-size: 16px;
    color: #020101;
    font-weight: 500;
    transition: color .3s ease-in-out;
}

.section-left-wrapper .text-regions .region-list a:hover .title-region {
    color: var(--secondary-color);
}

.elementor-region-section .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.section-right-wrapper .location-item .thumbnail-location {
    height: 100%;
}

.section-right-wrapper .location-item .location-content {
    padding: 30px 35px;
}

.section-right-wrapper .location-item .location-content:after {
    left: 35px;
    right: 35px;
}

.owl-carousel.region-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    background: #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.region-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    background: #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.region-carousel .owl-nav button span {
    margin-top: -6px;
    color: var(--secondary-color);
}

.owl-theme.region-carousel .owl-nav [class*=owl-]:hover {
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.owl-theme.region-carousel .owl-nav [class*=owl-]:hover span {
    color: #fff;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 991.98px) {
    .elementor-region-section div.row {
        gap: 20px;
    }

    .elementor-tours-wrap .elementor-button-link {
        width: 100%;
    }
}

.elementor-discover-section .section-left-wrapper h2 {
    color: var(--title-color);
    font-size: 62px;
    line-height: 80px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
}

.elementor-discover-section .section-left-wrapper .title-wrap {
    padding-top: 110px;
}

.elementor-discover-section > div.primary-bg {
    padding: 20px 0 100px 0;
}

.elementor-discover-section .title-wrap * {
    position: relative;
    z-index: 2;
}

.elementor-discover-section .section-img-wrapper {
    position: absolute;
    left: 255px;
    width: 100%;
    top: 10%;
    box-shadow: 0px 0px 13px 0px rgba(1.432372400756148, 0.6195652173913032, 15.00000000000002, 0.47);
}

.elementor-discover-section .section-img-wrapper img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    vertical-align: middle;
    display: inline-block;
}

@media screen and (max-width: 767.98px) {
    .elementor-discover-section > div.primary-bg {
        padding: 40px 0 100px 0;
    }

    .elementor-discover-section .section-left-wrapper {
        text-align: center;
    }

    .elementor-discover-section .section-left-wrapper .title-wrap {
        margin-bottom: 50px;
        padding-top: 50px;
    }

    .elementor-discover-section .section-left-wrapper .title-wrap * {
        text-align: center;
    }

    .elementor-discover-section .section-left-wrapper h2 {
        font-size: 56px;
    }

    .elementor-discover-section .section-img-wrapper {
        left: 50%;
        top: 0%;
        transform: translateX(-50%);
    }
}

.elementor-elements-section .elementor-elements-wrapper .elements-icon {
    margin-bottom: 45px;
    transition: transform .3s ease-in-out;
}

.elementor-elements-section .elementor-elements-wrapper .elements-icon:hover {
    transform: translateY(-8px);
}

.elementor-elements-section .elementor-elements-wrapper .elements-icon strong {
    font-size: 48px;
    color: var(--secondary-color);
}

.elementor-elements-section .elementor-elements-wrapper .elements-title {
    font-size: 19px;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

.elementor-elements-section .elementor-elements-wrapper .elements-text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    text-align: center;
}

.elementor-not-member-section .member-title {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.elementor-not-member-section .member-text {
    max-width: 320px;
}

.elementor-not-member-section .elementor-button-link {
    width: max-content;
}

@media screen and (max-width: 767.98px) {
    .elementor-not-member-section div.row {
        flex-direction: 
    }
}

.elementor-testimonial-section .testimonial-comma.left{
    width: 20%;
}

.elementor-testimonial-section .testimonial-comma.right {
    width: 20%;
    text-align: end;
}

.testimonial-carousel-wrapper {
    width: 100%;
}

    .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav {
        margin: 0;
    }

        .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav button.owl-prev {
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            font-size: 60px;
            margin: -25px 0 0 0;
        }

        .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav button.owl-next {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            font-size: 60px;
            margin: -25px 0 0 0;
        }

    .testimonial-carousel-wrapper .owl-carousel.testimonial-carousel .owl-nav button:hover {
        opacity: 0.7 !important;
        background: none;
    }

.testimonial-carousel-wrapper .testimonial-content {
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}

.testimonial-carousel-wrapper .testimonial-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.testimonial-carousel-wrapper .testimonial-details .image-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.testimonial-carousel-wrapper .testimonial-details .image-wrapper .icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: -20px;
    z-index: 3;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.testimonial-carousel-wrapper .testimonial-details .image-wrapper .icon strong {
    font-size: 35px;
    color: #fff;
}

.testimonial-carousel-wrapper .testimonial-details .image-wrapper .img {
    margin-right: 20px;
}

.testimonial-carousel-wrapper .testimonial-details .image-wrapper .img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-carousel-wrapper .testimonial-details .name-wrapper .elementor-testimonial-rating {
    line-height: 1;
    font-size: 12px;
    margin-bottom: 10px;
}

.testimonial-carousel-wrapper .testimonial-details .name-wrapper .elementor-testimonial-rating strong.active {
     color: #2dd75d;
}

.testimonial-carousel-wrapper .testimonial-details .name-wrapper .name {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-carousel-wrapper .testimonial-details .name-wrapper .job {
    font-size: 14px;
    color: var(--text-color);
}

.daily-tour-carousel .daily-tour-item-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-img {
    width: 50%;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-details {
    width: 50%;
    padding: 15px 0 15px 30px;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-img img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-radius: 20px;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-details .detail-header .categories-link {
    margin-bottom: 10px;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-details .detail-header .categories-link a {
    font-size: 11px;
    text-transform: uppercase;
    line-height: 20px;
    padding: 0 10px;
    font-weight: 500;
    color: #fff;
    background-color: var(--secondary-color);
    margin-right: 3px;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 3px;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-details .detail-header .categories-title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
}

.daily-tour-carousel .daily-tour-item-wrap .daily-tour-details .detail-header .categories-title a {
    color: var(--primary-color)
}

.isotope-wrapper .tour-row .box_grid img {
    height: 260px;
    object-fit: cover;
}

.isotope-wrapper .tour-row .box_grid .box_grid-content {
    min-height: 375px;
}

.isotope-wrapper .tour-row .box_grid .box_grid-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.isotope-wrapper .tour-row .box_grid .box_grid-content .wrapper h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    .elementor-testimonial-section .testimonial-comma.left {
        display: none;
    }

    .elementor-testimonial-section .testimonial-comma.right {
        display: none;
    }

    .testimonial-carousel-wrapper {
        width: 100%;
    }

    .testimonial-carousel-wrapper .testimonial-carousel .owl-dots {
        padding-top: 10px;
    }

    .testimonial-carousel-wrapper .testimonial-carousel .owl-dots button {
        padding: 6px!important;
    }

    .testimonial-carousel-wrapper .testimonial-carousel .owl-dots button span {
        width: 20px!important;
        height: 20px!important;
    }
}

/* QUOTE PAGE */
    .quote-section .quote-left-wrapper {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    box-shadow: 0px 0px 60px 0px rgba(5.999999999999999, 30.00000000000004, 98.00000000000004, 0.08);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 40px 40px 40px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px
}

.quote-section .quote-right-wrapper h4 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    padding: 0px 0px 30px 0px;
}

.quote-section .elementor-button-link {
    padding: 16px 30px;
}

@media screen and (max-width: 1399.98px) {
    .quote-section .check-list ul li {
        white-space: normal;
    }
}

/* CONTACT PAGE */
.map_contact {
  width: 100%;
  height: 600px;
}

.map_contact > div {
    height: 100%;
}

.contact_info {
    background: #fff;
    color: #fff;
    margin-top: 150px;
    margin-bottom: 60px;
    text-align: center;
}

.contact_info .contact_info-content{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    box-shadow: 0px 0px 60px 0px rgba(5.999999999999999, 30.00000000000004, 98.00000000000004, 0.08);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.contact_info ul {
  margin: 0;
  padding: 0;
}

.contact_info ul li {
  float: left;
  width: 33.33%;
  position: relative;
  padding: 0 20px;
}

.contact_info ul li span {
  opacity: 0.7;
}

.contact_info ul li h4 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--primary-color);
}

.contact_info ul li i {
  color: var(--secondary-color);
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 10px;
}

.contactInfo {
    color: var(--primary-color);
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.contactInfo:hover, .contactInfo:focus {
    color: var(--secondary-color);
    text-decoration: none;
    outline: none;
}

.contact_info .elementor-button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: transparent;
    border-color: transparent;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.contact_info .elementor-button-link:focus {
    background-color: transparent!important;
    border-color: transparent!important;
    color: var(--primary-color)!important;
}

.contact_info .elementor-button-link i {
    font-size: 20px;
    margin-bottom: 0;
}

.contact-section .contact-wrapper {
    padding-top: 30px;
    padding-bottom: 55px;
}

.contact-section .contact-wrapper .contact-right-wrapper h4 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    padding: 0px 0px 20px 0px;
}

.contact-section .contact-wrapper .elementor-button-link {
    padding: 16px 30px;
}

@media screen and (max-width: 991.98px) {
    .map_contact {
        height: 350px;
        margin-bottom: 45px;
    }

    .contact_info {
        margin-top: 110px;
    }
}

@media screen and (max-width: 767.98px) {
  .contact_info ul li {
    width: 100%;
    float: none;
    margin-bottom: 35px;
    padding: 0;
  }
  .contact_info ul li:last-child {
    margin-bottom: 5px;
  }
}

/* OUR SERVICES */
.section-top-wrapper .card {
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

.section-top-wrapper .card .price {
  display: inline-block;
  font-weight: 500;
  color: #575757;
}

.section-top-wrapper .card .price strong {
    color: #22633E;
}

.section-top-wrapper .card a.wish_bt {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 9px 10px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.section-top-wrapper .card a.wish_bt:after {
    font-family: 'ElegantIcons';
    content: "\e030";
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.section-top-wrapper .card a.wish_bt.liked:after {
    content: "\e089";
    color: #fc5b62;
}

.section-top-wrapper .card a.wish_bt:hover.liked:after {
    color: #fc5b62;
}

.section-top-wrapper .card a.wish_bt:hover:after {
    content: "\e089";
    color: #fff;
}

.section-top-wrapper .card figure {
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    height: 210px;
}

.section-top-wrapper .card figure small {
  position: absolute;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  left: 20px;
  top: 22px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px 4px 10px;
  line-height: 1;
}

.section-top-wrapper .card figure .read_more {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}

.section-top-wrapper .card figure .read_more span {
  background-color: var(--secondary-color);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 10px;
}

.section-top-wrapper .card figure:hover .read_more {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.section-top-wrapper .card figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 20px 20px 0 0;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section-top-wrapper .card figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.section-top-wrapper .card .wrapper {
  padding: 25px;
}

.section-top-wrapper .card .wrapper h2, 
.section-top-wrapper .card .wrapper h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}

.section-top-wrapper .card ul {
  padding: 20px 15px;
  border-top: 1px solid #ededed;
}

.section-top-wrapper .card ul li {
  display: block;
  /*margin-right: 15px;*/
}

.section-top-wrapper .card ul li .score {
  margin-top: -10px;
}

.section-top-wrapper .card ul li:last-child {
  margin-right: 0;
  /*float: right;*/
}

/* TRANSFER SEARCH PAGE */
.search-top-wrapper {
    padding-top: 175px;
    padding-bottom: 45px;
}

    .search-top-wrapper.locaitonToursPage {
        padding-top: 50px !important;
    }

.elementor-read-explore-section .elementor-read-explore-wrap .owl-carousel .owl-item img {
    height: 200px;
    object-fit: cover;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item .read-full-click {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.elementor-read-explore-section .elementor-read-explore-wrap .card-body {
    padding: 1.25rem 0;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-head .item-title a {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-head .item-title .elementor-post-data {
    margin-bottom: 13px;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-head .item-title .elementor-post-data span {
    line-height: 1.3em;
    font-size: 12px;
    color: #adadad;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-head .item-title .elementor-post-data span.elementor-post-date:before {
    content: "///";
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-text .item-info-text {
    margin-bottom: 10px;
}

.elementor-read-explore-section .elementor-read-explore-wrap .item-text .item-info-text p {
    margin: 0;
    line-height: 1.5em;
    font-size: 14px;
    color: #777;
}

section.elementor-read-explore-section .elementor-read-explore-wrap .read-explore-carousel .fit-content-text-wrapper {
    min-height: 340px;
    height: fit-content;
    overflow-y: auto;
    max-height: 340px;
    position: relative;
    z-index: 999;
}

/* CREATE RESERVATION PAGE */
#ReservationForm .form_title h3 strong {
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    border-radius: .25rem;
    background-color: var(--secondary-color);
}

.create-resservation-section .box-detail {
    padding: 25px 25px 15px 25px;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
}

.create-resservation-section .box-detail > div.main-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
}

.create-resservation-section .box-detail .widget-title h4 {
    color: var(--secondary-color);
}

.create-resservation-section .box-detail .price {
  line-height: 1;
  border-bottom: 1px solid #ededed;
  margin: 0 -25px 25px -25px;
  padding: 0 25px 15px 25px;
}

.create-resservation-section .box-detail .price > span {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 600;
}

.create-resservation-section .box-detail .price > span > small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.create-resservation-section .box-detail .price .score {
  float: right;
  margin-top: -5px;
}

.create-resservation-section .box-detail h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
}

.create-resservation-section .box-detail ul {
  margin-bottom: 15px;
}

.create-resservation-section .box-detail ul.cart_details:last-child {
  border-bottom: none;
}

.create-resservation-section .box-detail ul li {
  margin-bottom: 5px;
}

.create-resservation-section .box-detail ul li .detail-title {
    font-size: 16px;
    font-weight: 500;
}

.create-resservation-section .box-detail ul li a {
    font-size: 18px;
    line-height: 1.5rem;
    font-weight: 700;
    color: var(--title-color);
    transition: color .3s ease-in-out;
}

.create-resservation-section .box-detail ul li a:hover {
    color: var(--secondary-color);
}

.create-resservation-section .box-detail ul li i {
  margin-right: 8px;
}

.create-resservation-section .box-detail figure {
  position: relative;
  background-color: #000;
}

.create-resservation-section .box-detail figure img {
  opacity: 0.8;
}

.create-resservation-section .box-detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.create-resservation-section .box-detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.create-resservation-section .box-detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.create-resservation-section .box-detail .total-cart .total-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
}

.create-resservation-section .box-detail .total-cart .total-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
}

.create-resservation-section .reservation-extra-item-wrapper .item-counter {
    display: flex;
    gap: 10px;
    height: max-content;
    align-items: center;
    justify-content: end;
}

.create-resservation-section .reservation-extra-item-wrapper .item-counter-title {
    display: flex;
    gap: 10px;
    align-items: center;
}

:is(.reservation-extra-item-wrapper .item-counter) .qt-plus, .qt-minus {
    cursor: pointer;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0.25rem;
    color: #fff;
    border: none;
    font-size: 30px;
    font-weight: 300;
    height: 100%;
    padding: 0 20px;
    -webkit-transition: background .2s linear;
    -moz-transition: background .2s linear;
    -ms-transition: background .2s linear;
    -o-transition: background .2s linear;
    transition: background .2s linear;
}

.create-resservation-section .reservation-extra-item-wrapper .item-counter .qt-minus {
    line-height: 30px;
    padding: 1px 8px 1px 9px;
}

.create-resservation-section .reservation-extra-item-wrapper .item-counter .qt {
    font-size: 19px;
    line-height: 50px;
    text-align: center;
}

.create-resservation-section .reservation-extra-item-wrapper .item-counter .qt-plus {
    line-height: 30px;
    font-size: 24px;
    padding: 1px 8px 1px 9px;
}

.payment-type-wrapper {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.payment-type-wrapper .type-wrap:first-child {
    padding-left: 0;
}

.reservation-message-wrapper {
    display: block;
    font-size: 18px;
    text-align: center;
    border: 0;
    color: #7cc566;
    background-color: #f8f8f8;
    padding: 2em 1em;
    margin-bottom: 40px;
}

.confirmation-information {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.confirmation-information > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 25%;
    text-align: center;
    border-right: 1px solid;
    border-right-color: var(--border-color);
}

.confirmation-information > div:last-child {
    border: none;
}

.confirmation-information div .title {
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--text-color);
}

.confirmation-information div .content {
    font-size: 14px;
    color: var(--primary-color);
}

.order-details-table {
    max-width: 630px;
    margin: 0 auto;
}

.order-details-table .order-heading {
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 38px;
}

.mtablo {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 5mm;
    margin-top: 5mm;
}

.mtablo tr {
    border-bottom: 1px solid var(--border-color);
}

.mtablo .mtd {
    text-align: left;
    padding: 6px 0;
    width: 10%;
}

@media screen and (max-width: 767.98px) {
    .confirmation-information > div {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid;
        border-bottom-color: var(--border-color);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .confirmation-information > div:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* TOUR - TOUR DETAIL START */
.item-detail-wrapper #caleandar {
    min-height: 540px;
}

.item-detail-wrapper .cld-main {
    width: 100%;
}

.item-detail-wrapper .cld-main a {
        color: #7B00FF;
    }

.item-detail-wrapper .cld-datetime {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 16px 10px;
    background-color: var(--secondary-color);
    color: #fff;
}

.item-detail-wrapper .cld-datetime svg {
    fill: #fff;
}

.item-detail-wrapper .cld-datetime .today {
        position: relative;
        float: left;
        width: calc(100% - 40px);
        margin: auto;
        text-align: center;
    }

.item-detail-wrapper .cld-nav {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.item-detail-wrapper .cld-nav:hover {
        cursor: pointer;
    }

.item-detail-wrapper .cld-nav:hover svg {
        fill: #666;
    }

.item-detail-wrapper .cld-rwd {
    float: left;
}

.item-detail-wrapper .cld-fwd {
    float: right;
}

.item-detail-wrapper .cld-nav svg:hover {
}

.item-detail-wrapper .cld-labels {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 2px;
}

.item-detail-wrapper .cld-days {
    padding-left: 0;
    margin-bottom: 0;
}

.item-detail-wrapper .cld-label {
    box-sizing: border-box;
    display: inline-block;
    width: 14.28%;
    text-align: center;
    padding: 20px;
    background-color: #eff1f6;
}

.item-detail-wrapper .cld-day {
    box-sizing: border-box;
    display: inline-block;
    width: 14.28%;
    text-align: end;
    padding: 20px;
}

.item-detail-wrapper .cld-day {
    display: block;
    float: left;
    position: relative;
    margin: 0;
    padding: 5px 10px 5px 5px;
    height: 66px;
    border: 1px solid #eff1f6;
    overflow-y: auto;
}

.item-detail-wrapper .cld-day span.cld-price {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
}

.item-detail-wrapper .cld-day.today span.cld-price {
    color: #fff;
}

    .item-detail-wrapper .cld-day.clickable:hover {
        cursor: pointer;
    }

    .item-detail-wrapper .cld-day.today {
        border: 1px solid #202F59;
        background-color: #202F59;
        color: #fff!important;
    }

    .item-detail-wrapper .cld-day.disableDay {
        opacity: 0.5;
    }

    .item-detail-wrapper .cld-day.nextMonth, .item-detail-wrapper .cld-day.prevMonth {
        opacity: 0.33;
    }

.item-detail-wrapper .cld-number {
    margin: 0;
    text-align: end;
}

.item-detail-wrapper .cld-title {
    font-size: 10px;
    display: block;
    margin: 0;
    font-weight: normal;
}

.item-detail-wrapper .cld-day:hover {
    background: #eee;
}

.item-detail-wrapper .cld-day.today:hover {
    border: 1px solid #202F59;
    background-color: #202F59;
    color: #fff !important;
}

.item-detail-wrapper .cld-number.eventday {
    font-weight: bold;
}

    .item-detail-wrapper .cld-number.eventday:hover {
        background: #eee;
    }

.item-detail-wrapper .today .cld-number.eventday:hover {
}


.item-detail-wrapper {
    padding: 20px 0;
    background-color: #F6F7FB;
}

.item-detail-wrapper .detail-title {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.item-detail-wrapper .detail-title h3 {
    color: var(--primary-color);
    font-size: 36px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-carousel {
    margin-bottom: 20px;
}

.detail-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 18px 23px !important;
    font-size: 30px;
    line-height: 20px;
    border-radius: 50px;
}

.detail-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 18px 23px !important;
    font-size: 30px;
    line-height: 20px;
    border-radius: 50px;
}

.detail-information-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-information-wrapper .best-price {
    padding: 5px 20px 5px 20px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(220, 131.00000000000003, 78.00000000000004, 0.61);
}

.detail-information-wrapper .detail-info-item {
    margin: 10px 20px 10px 20px;
}

.detail-information-wrapper .detail-info-item.best-price {
    margin: 0;
}

.tour-detail-section .babe-detail-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 0;
}

.tour-detail-section .detail-info .info-price {
    font-weight: 500;
    font-size: 1.25rem;
    margin-right: 5px;
    color: var(--secondary-color);
}

.tour-detail-section .detail-info label,
.tour-detail-section .detail-info span {
    color: var(--lighter-color);
    font-weight: 400;
}

.detail-information-wrapper .detail-info-item .detail-info label,
.detail-information-wrapper .detail-info-item .detail-info span {
    color: var(--lighter-color);
    font-weight: 400;
}

.detail-information-wrapper .detail-info-item .detail-icon {
    font-size: 30px;
    color: var(--secondary-color);
    line-height: 1em;
    margin-right: 20px;
}

.detail-information-wrapper section#description {
    border-bottom: 3px solid var(--secondary-color);
    margin-bottom: 45px;
    padding-top: 0;
}

.our-service-detail-section section#description {
    border-bottom: none;
}

.our-service-detail-section .grid ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}

.our-service-detail-section .grid ul li figure img {
    height: 200px;
    object-fit: cover;
}

.gallery-wrapper h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tour-detail-section .detail-content-wrapper .content-title {
    color: var(--title-color);
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.tour-detail-section .detail-content-wrapper .content-sub-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.tour-detail-section .detail-content-wrapper .detail-location {
    display: flex;
    align-items: center;
}

.tour-detail-section .detail-content-wrapper .detail-location h3 {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
    line-height: inherit;
}

.tour-detail-section .detail-content-wrapper .detail-location .detail-location-content {
    display: flex;
    align-items: center;
}

.tour-detail-section .detail-content-wrapper .detail-location .detail-location-content span {
    margin-bottom: 0;
}

.tour-detail-section .detail-content-wrapper .detail-location .detail-location-content i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.tour-detail-section .detail-content-wrapper .detail-content-texts p, 
.tour-detail-section .detail-content-wrapper .detail-content-texts span {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.tour-detail-section .detail-content-wrapper .included-list i {
    color: #2EA452;
    font-size: 15px;
}

.tour-detail-section .detail-content-wrapper .excluded-list li i {
    color: #dc3545;
    font-size: 15px;
}

.tour-detail-section .detail-content-wrapper .included-list li,
.tour-detail-section .detail-content-wrapper .excluded-list li {
    margin-bottom: 8px;
}


.questions-wrapper .flex-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.questions-wrapper .collapsible h4 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    font-size: 16px;
    margin-bottom: 0;
    padding: 8px 0;
    color: var(--accent);
}

.questions-wrapper .collapsible {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    border-radius: 5px;
    padding: 18px 20px;
    line-height: 24px;
    background-color: #eff1f6;
    border: none;
    color: var(--title-color);
}

.questions-wrapper .content {
    padding-top: 30px;
    display: none;
    overflow: hidden;
}

.questions-wrapper .content p {
    margin-bottom: 10px;
}

.questions-wrapper .collapsible i {
    transition: all .3s ease-in-out;
    font-size: 18px;
    padding-top: 8px;
}

.questions-wrapper .collapsible.active i {
    transform: rotate(-180deg);
    padding-bottom: 8px;
}

.tour-detail-section .detail-content-wrapper .rating-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.tour-detail-section .detail-content-wrapper .rating-wrapper .rating-stars .star {
    font-size: 18px;
}

.tour-detail-section .detail-content-wrapper .rating-wrapper > span {
    margin-right: 15px;
    min-width: 70px;
    display: inline-block;
}

@media screen and (max-width: 991.98px) {
    .search-section .custom-search-input-2 {
        background: #fff;
        -webkit-box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
        -moz-box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
        box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
    }
}

/* TOUR - TOUR DETAIL END */
/* Panel Drop Down */
.panel-dropdown {
    position: relative;
    text-align: left;
    padding: 0px 10px;
}

.panel-dropdown a {
  color: #575757;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
  position: relative;
}

.panel-dropdown a:after {
  font-family: 'ElegantIcons';
  content: "\33";
  font-size: 24px;
  font-size: 1.5rem;
  color: #575757;
  font-weight: 500;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: -8px;
}

.Pax a:after {
    content: '';
}

.panel-dropdown.active a:after {
  transform: rotate(180deg);
}

.panel-dropdown .panel-dropdown-content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  top: 58px;
  left: 0px;
  z-index: 99;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  padding: 15px 15px 0 15px;
  white-space: normal;
  width: 280px;
}

.panel-dropdown .panel-dropdown-content:before, .panel-dropdown .panel-dropdown-content:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.panel-dropdown .panel-dropdown-content:before {
  top: -7px;
  left: 9px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.panel-dropdown .panel-dropdown-content:after {
  left: 10px;
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.panel-dropdown .panel-dropdown-content.right {
  left: auto;
  right: 0;
}

.panel-dropdown .panel-dropdown-content.right:before {
  left: auto;
  right: 9px;
}

.panel-dropdown .panel-dropdown-content.right:after {
  left: auto;
  right: 10px;
}

.panel-dropdown.active .panel-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.qtyButtons {
  display: flex;
  margin: 0 0 13px 0;
}

.qtyButtons input {
  outline: 0;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  width: 50px;
  height: 36px !important;
  color: #333;
  line-height: 36px;
  margin: 0 !important;
  padding: 0 5px !important;
  border: none;
  box-shadow: none;
  pointer-events: none;
  display: inline-block;
  border: none !important;
}

.qtyButtons label {
  font-weight: 500;
  line-height: 36px;
  padding-right: 15px;
  display: block;
  flex: 1;
  color: #727b82;
}

.qtyInc,
.qtyDec {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 28px;
  font-size: 1.75rem;
  background-color: #f2f2f2;
  -webkit-text-stroke: 1px #f2f2f2;
  color: #333;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'ElegantIcons';
}

.qtyInc:before {
  content: "\4c";
}

.qtyDec:before {
  content: "\4b";
}

.qtyTotal {
  background-color: #575757;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  text-align: center;
  position: relative;
  top: 0;
  left: 2px;
  height: 18px;
  width: 18px;
}

.rotate-x {
  animation-duration: .5s;
  animation-name: rotate-x;
}

@keyframes rotate-x {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@media (max-width: 991px) {
    .panel-dropdown {
        background-color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        height: 50px;
    }
}
/* Footer */
footer .footer-center-wrapper {
  background-color: #202F59;
  color: #fbfbfb;
  color: rgba(255, 255, 255, 0.7);
}

footer .footer-center-wrapper .elementor-button-link {
    padding: 10px 20px;
    background-color: transparent;
    border-color: transparent;
    position: relative;
    z-index: 1;
}

footer .footer-center-wrapper .elementor-button-link:hover {
    color: var(--secondary-color);
}

.footer-top-wrapper {
    padding: 40px 0;
}

.footer-top-wrapper .left-content {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.footer-top-wrapper .left-content .text p {
    color: var(--lighter-color);
    text-align: center;
    font-size: 18px;
}

.footer-top-wrapper .left-content .text p span {
    color: #514E4E;
}

    .footer-top-wrapper .left-content .wp-wrap svg.fa-whatsapp {
        width: fit-content;
        height: 40px;
    }


:is(.footer-top-wrapper .left-content .info) .wp-wrap, .num-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

:is(.footer-top-wrapper .left-content .info) .wp-wrap:hover strong, .num-wrap:hover strong {
    color: #9E5D5A;
}

:is(.footer-top-wrapper .left-content .info) .wp-wrap strong, .num-wrap strong {
    font-size: 40px;
    color: var(--secondary-color);
    transition: color .3s ease-in-out;
}


    :is(.footer-top-wrapper .left-content .info) .wp-wrap svg  {
        font-size: 40px;
        color: var(--secondary-color);
    }

:is(.footer-top-wrapper .left-content .info) .wp-wrap a, .num-wrap a {
    padding-left: 5px;
    font-size: 28px;
    font-weight: bold;
    line-height: 20px;
    color: var(--title-color);
}

:is(.footer-top-wrapper .left-content .info) .wp-wrap a:hover, .num-wrap a:hover {
    color: #9E5D5A;
}

.footer-top-wrapper .right-content {
    width: 20%;
}

.footer-top-wrapper .right-content > div {
    margin: 0px 0px 0px 25px;
}

.footer-top-wrapper .right-content .text p {
    margin-bottom: 1rem;
    text-align: center;
    color: #514E4E;
}

.footer-top-wrapper .right-content .social {
    display: flex;
    justify-content: space-between;
}

.footer-top-wrapper .right-content .social .social-link {
    background-color: #FFFFFF;
    --icon-padding: 0.8em;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E3DCD7;
    border-radius: 25px;
    font-size: 17px;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

footer h5, footer h3, footer h2 {
    color: #fff;
    margin: 25px 0;
    font-size: 18px;
    font-size: 1.125rem;
}

footer ul li {
  margin-bottom: 5px;
}

footer ul li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #fff;
  opacity: 0.7;
}

footer ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

footer ul li a i {
  margin-right: 10px;
  color: #fff;
}

footer ul.links li a:hover {
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}

footer ul.links li a:hover:after {
  opacity: 1;
  color: #fc5b62;
}

footer ul.links li a:after {
  font-family: 'ElegantIcons';
  content: "\24";
  position: absolute;
  margin-left: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer ul.contacts li a i {
  margin-right: 10px;
}

footer hr {
  opacity: 0.1;
}

footer #copy {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0.7;
}

#FooterLogos a {
    display: block;
    height: 100%;
    padding: 14px;
}

@media screen and (max-width: 991.98px) {
    .footer-top-wrapper .container > div {
        gap: 30px;
    }

    .footer-top-wrapper .left-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer-top-wrapper .right-content {
        width: 100%;
    }

    .footer-top-wrapper .right-content > div {
        margin: 0px;
    }

    .footer-top-wrapper .right-content .social {
        justify-content: center;
        gap: 20px;
    }
}

@media screen and (max-width: 767.98px) {
  footer #copy {
    text-align: left;
    margin: 5px 0 20px 0;
  }

    footer ul li a {
        padding: 8px;
    }

    footer ul.links li a:after {
        top: 10px;
    }
}

@media screen and (max-width: 575.98px) {
    footer h5, footer h3, footer h2 {
        margin: 25px 0 10px 0;
    }

    :is(.footer-top-wrapper .left-content .info) .wp-wrap a, .num-wrap a {
        padding-left: 5px;
        font-size: 20px;
        font-weight: bold;
        line-height: 20px;
        color: var(--title-color);
    }
}

/* CUSTOM CSS HERE */
.company-add-btn {
    font-size: 30px;
}

.comp-detail-line {
    content: "";
    width: 100%;
    height: 1px;
    margin: 0 16px;
    background: #d2d8dd;
}

.logo-upload-wrapper .pictures {
    position: absolute;
    right: 0;
    max-width: 89px;
    top: -31px;
    margin-bottom: 0;
}

.custom-ck-editor .cke_top,
.custom-ck-editor .cke_bottom {
    background: #fff;
    box-shadow: none;
}

.custom-ck-editor .cke_chrome {
    border: 1px solid #d2d8dd;
}

.sub-title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.lightbox-gallery {
    display: flex;
    column-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 400px;
}

.lightbox-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

figure {
    margin: 0;
    width: 100% !important;
    display: block !important;
}

.slick {
    width: 80%;
    margin: 0 auto 0 !important;
}

pre {
    text-align: center;
    margin: 15px 0;
}

.slick-initialized .slick-slide {
    display: block;
    margin: 0 5px;
}

.slick-initialized.simple-gallery .slick-track {
    width: 100%;
}

    .slick-initialized.simple-gallery .slick-track .slick-slide {
        width: 100%;
    }

.slick-prev {
    left: -30px;
}

.slick .slick-next:before,
.slick .slick-prev:before {
    font-size: 25px;
    opacity: .75;
    color: var(--secondary-color);
}

.click-box {
    cursor: pointer;
}

.message-wrapper {
    background-color: #f8f8f8;
    padding: 15px;
    margin-bottom: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
}

.message-wrapper img {
    width: 300px;
}

.message-wrapper .message-text {
    font-size: 40px;
    max-width: 460px;
}

@media screen and (max-width: 991.98px) {
    .message-wrapper .message-text {
        font-size: 28px;
    }
}


@media screen and (max-width: 767.98px) {
    .message-wrapper {
        flex-direction: column;
    }

    .message-wrapper .message-text {
        text-align: center;
    }
}

ul#additional_links {
    text-align: center;
    float: none;
}

.owl-theme .owl-nav .disabled {
    display: none;
}

ul#cat_nav li a:hover, ul#cat_nav li a#active, ul#cat_nav li a.active {
    color: var(--secondary-color);
}

.accordion_2 .card-header h5 a i.indicator {
    color: var(--secondary-color);
}

article.blog-card,
article.blog-card .no-gutters,
article.blog-card .card-description {
    height: 100%;
}

article.blog-card .card-description .post_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

article.blog-card figure {
    height: 200px!important;
}

article.blog figure img {
    -webkit-transform: translate(0, 0) scale(1)!important;
    -moz-transform: translate(0, 0) scale(1)!important;
    -ms-transform: translate(0, 0) scale(1)!important;
    -o-transform: translate(0, 0) scale(1)!important;
    transform: translate(0, 0) scale(1)!important;
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
    left: 0!important;
    top: 0!important;
}

article.blog-card .post_info {
    padding: 15px!important;
}

article.blog-card .post_info ul {
    margin: 0!important;
    position: relative!important;
    bottom: 0!important;
    padding: 10px 0 0 0!important;
    text-align: end;
}

article.blog-card .post_info ul li:last-child {
    float: none!important;
}

.social-sidebar .title h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.social-sidebar .sidebar-info ul {
    display: flex;
    column-gap: 12px;
}

.social-sidebar .sidebar-info ul li a {
    color: var(--primary-color);
    font-size: 18px;
    transition: all .3s ease-in-out;
}

    .social-sidebar .sidebar-info ul li a:hover {
        color: var(--secondary-color);
    }

.category-title span {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

.font-90 {
    font-size: 90%;
}

.topRatedTours-inner-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.aboutTours-carousel-wrapper {
    width: calc(100% - 1px);
}

@media screen and (max-width: 767.98px) {
    .homeFeaturedTourContent {
        flex-direction: column;
    }
    .hero_single.jarallax .wrapper h1 {
        font-size: 24px;
        line-height: 26px;
    }
    .owl-carousel.home-carousel .wrapper h1 {
        font-size: 24px;
        line-height: 26px;
    }
}

/* tour details faq question accordion styles */

.accordionFaqQuestion {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 50px 0;
    box-shadow: 0px 2px 2px -2px #954c1b;
    background: none;
}

    .accordionFaqQuestion .panel {
        float: left;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: none;
        box-shadow: 0px -2px 2px -2px #954c1b;
    }

        .accordionFaqQuestion .panel .panel-heading {
            float: left;
            width: 100%;
            border-bottom: none;
            padding: 0;
            margin: 0;
            background: none;
        }

        .accordionFaqQuestion .panel .panel-heading h4 {
            padding: 0;
            font-weight: 400;
            margin: 0;
            padding: 0;
            background: none;
        }

            .accordionFaqQuestion .panel .panel-heading a {
                color: #8A4619;
                text-decoration: none;
                font-weight: 400;
                margin: 0;
                width: 100%;
                padding: 10px;
                font-size: 16px;
                float: left;
                background: none;
                box-shadow: none;
                border: none;
                position: relative;
            }

                .accordionFaqQuestion .panel .panel-heading a:hover {
                    background: #f8f8f8;
                }

                .accordionFaqQuestion .panel .panel-heading a:after {
                    content: "-";
                    font-size: 26px;
                    position: absolute;
                    font-weight: 700;
                    top: 50%;
                    right: 10px;
                    margin: -16px 0 0 0;
                }

                .accordionFaqQuestion .panel .panel-heading a.collapsed:after {
                    content: "+";
                }

    .accordionFaqQuestion .panel .panel-collapse {
        background: #f8f8f8;
    }

        .accordionFaqQuestion .panel .panel-collapse .panel-body p {
            margin: 0;
            padding: 10px;
        }

        
        .error {
            position: absolute;
            bottom: -58px;
            left: 50%;
            width: 264px;
            background: #ff4500;
            padding: 4px 8px;
            color: #fff;
            border-radius: 4px;
            transform: translateX(-50%);
            z-index: 10;
        }

.transfer-fromTo-place-wrapper {
    position: relative;
}

.transfer-fromTo-place-wrapper .error {
    position: absolute;
    bottom: -44px;
    left: 50%;
    width: 264px;
    background: #ff4500;
    padding: 4px 8px;
    color: #fff;
    border-radius: 4px;
    transform: translateX(-50%);
    z-index: 10;
}

.transfer-fromTo-place-wrapper .error::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ff4500;
    top: -4px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: translate(-50%) rotate(45deg);
    -moz-transform: translate(-50%) rotate(45deg);
    -ms-transform: translate(-50%) rotate(45deg);
    -o-transform: translate(-50%) rotate(45deg);
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width: 767.98px) {
    .transfer-fromTo-place-wrapper .error {
        bottom: -36px;
    }
}
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* >>> General responsive styles */
@media screen and (max-width: 767.98px) {

    .header {
        padding: 20px;
    }

    header #logo {
        left: 60px;
        width: fit-content;
    }

    #toTop {
        bottom: 70px;
        right: 20px;
        box-shadow: 0px 0px 10px 0px #ccc;
    }

    #gb-widget-1139 {
        right: 10px;
        bottom: 10px;
    }

    .banner-search-area.container .custom-search-wrapper {
        box-shadow: 0px 0px 8px 0px #ccc;
    }

    .elementor-widget-title h2 {
        margin: 0;
        display: flex;
        font-size: 18px;
        align-items: center;
    }

    .section.section .section-title-area h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon {
        margin: 0 0 5px 0;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon strong {
        font-size: 20px;
    }

    .elementor-info-section .elementor-info-wrapper .info-text {
        text-align: center;
        font-weight: 500;
        padding: 0 20px;
    }

    .elementor-elements-section .elementor-elements-wrapper {
        margin: 0 0 30px 0;
    }

    .elementor-elements-section .elementor-elements-wrapper .elements-icon {
        margin: 0 0 10px 0;
    }

        .elementor-elements-section .elementor-elements-wrapper .elements-icon strong {
            font-size: 34px;
        }

    .elementor-elements-section .elementor-elements-wrapper .elements-title {
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    section.section.homeCommentSection .section-title-area h2 {
        font-size: 22px;
    }

    section.section.homeCommentSection .testimonial-carousel-wrapper {
        margin: 20px 0;
    }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-content {
            font-size: 16px;
        }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details {
            flex-direction: column;
        }

            section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper {
                margin: 0 0 30px 0;
            }

                section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon {
                    margin: 0 !important;
                    width: 50px;
                    height: 50px;
                }

                    section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon strong {
                        font-size: 18px;
                    }

    footer .footer-center-wrapper .error {
        position: relative;
        left: auto;
        bottom: auto;
        transform: translateX(0);
        background: none;
        max-width: 100%;
    }

    .elementor-tours-section .item-day-info-wrap .item-dayx {
        font-size: 12px;
    }

    section.search-top-wrapper .container .search-top-wrapper {
        padding: 40px 0 !important;
    }

    section.tour-detail-section .item-detail-wrapper .detail-information-wrapper .detail-info-item.bottom-tour-details-infos {
        flex-direction: column !important;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .content-title {
        font-size: 18px;
        font-weight: 700;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location {
        flex-direction: column;
    }

        section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location h3 {
            font-size: 14px;
            font-weight: 700;
        }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .knowing-input-label {
        font-size: 18px;
        font-weight: 600;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .accordionFaqQuestion .panel .panel-heading h4.panel-title a {
         font-size: 14px;
         font-weight: 500;
    }

    .search-top-wrapper .container .pages-main-content .membership-area {
        margin: 0 !important;
    }

    .search-top-wrapper .container .pages-main-content .membership-area > .container {
        padding: 0 !important;
    }

        .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid {
            padding: 0 !important;
        }

            .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid .historialPlacesList .historialPlacesListItem .card-body .item-description {
                padding: 0 5px;
                text-align: justify;
            }

    .banner-search-area.container .historial-places-search-wrapper {
        flex-wrap: wrap;
    }

        .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

            .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper button {
                width: 100%;
            }

    .footer-logos-wrapper > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .elementor-widget-inner .booking-wrapper {
        padding: 0 15px;
    }

    .historial-place-detail-wrapper .container .detail-content-wrapper  {
        padding: 0 15px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .aboutTours-carousel-wrapper {
        padding: 0 20px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-prev {
        left: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-next {
        right: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title {
        font-size: 20px;
        font-weight: 600;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title span {
        font-size: 16px;
        font-weight: 600;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper {
        padding: 20px !important;
        border-radius: 0 !important;
    }

        section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper .map-container {
            border-radius: 0 !important;
        }

    .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check {
        padding: 0 !important;
    }

        .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check .included-list li {
            padding: 0 !important;
            margin: 0 0 5px 0;
        }

    section.tour-detail-section .item-detail-wrapper .detail-title-wrap .detail-title h3 {
        font-size: 26px;
        font-weight: 600;
    }

    .mm-navbar .mm-title {
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }

    ul.mm-listview li a {
        font-weight: 600;
    }

    .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper {
        margin: 0 0 20px 0 !important;
    }

        .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-text {
            height: auto !important;
            font-weight: 600;
        }

    .footer-top-wrapper .info .wp-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .wp-wrap a {
        font-size: 18px !important;
    }

    .footer-top-wrapper .info .num-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .num-wrap a {
        font-size: 18px !important;
    }

    .homePage-banner-search-area {
        margin-top: -30px !important;
    }

    .tourCampaigns-section {
        padding: 40px 0 0 0 !important;
    }

    .tourCampaigns-section .tourCampaigns-section-inner {
        padding: 0;
    }

    .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content {
        padding: 0 20px;
    }

    .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
    }

        .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner {
            width: 100% !important;
            max-width: 100% !important;
        }

            .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img {
                width: 100% !important;
                max-width: 100% !important;
                height: fit-content !important;
                max-height: 298px;
            }

                .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img img {
                    width: 100%;
                    max-width: 100%;
                    height: fit-content !important;
                    max-height: 298px;
                    border-radius: 10px 10px 0 0 !important;
                }

        .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-prev {
            margin-top: -48px;
            left: -32px;
        }

        .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-next {
            margin-top: -48px;
            right: -32px;
        }

    .tours-page-main-banner {
        height: 180px;
        max-height: 180px;
        margin: 50px 0 0 0;
    }

        .tours-page-main-banner > img {
            height: 180px;
            max-height: 180px;
            object-fit: cover;
        }

    .banner-search-area.tours-main-search-area {
        margin-top: -30px !important;
    }

    .tours-main-search-top-wrapper {
        padding-top: 0 !important;
    }

    .daterangepicker {
        padding: 40px 0 0 0;
    }

    .datepicker_mobile_full .daterangepicker {
        max-width: 100vw;
    }

        .daterangepicker .drp-buttons {
            display: inline-block !important;
            top: 0;
            left: 0;
            right: 0;
            padding: 0 5px;
            position: absolute;
        }

            .daterangepicker .drp-buttons button.cancelBtn {
                font-weight: 700;
                font-size: 1.5em;
            }

            .daterangepicker .drp-buttons button.applyBtn {
                display: none !important;
            }


    


}
/* end of general responsive styles */

/* small phones */
@media screen and (max-width: 359px) {

    .section.section .section-title-area h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon strong {
        font-size: 16px;
    }

    .elementor-elements-section .elementor-elements-wrapper .elements-title {
        font-size: 16px;
        margin: 0 0 10px 0;
    }

    section.section.homeCommentSection .section-title-area h2 {
        font-size: 18px;
    }

    section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon strong {
        font-size: 16px;
    }

    .elementor-tours-section .item-day-info-wrap .item-dayx {
        font-size: 12px;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .content-title {
        font-size: 16px;
        font-weight: 600;
    }

        section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location h3 {
            font-size: 13px;
            font-weight: 700;
        }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .knowing-input-label {
        font-size: 16px;
        font-weight: 600;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .accordionFaqQuestion .panel .panel-heading h4.panel-title a {
        font-size: 12px;
        font-weight: 500;
    }

    .search-top-wrapper .container .pages-main-content .membership-area {
        margin: 0 !important;
    }

        .search-top-wrapper .container .pages-main-content .membership-area > .container {
            padding: 0 !important;
        }

            .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid {
                padding: 0 !important;
            }

                .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid .historialPlacesList .historialPlacesListItem .card-body .item-description {
                    padding: 0 5px;
                    text-align: justify;
                }

    .banner-search-area.container .historial-places-search-wrapper {
        flex-wrap: wrap;
    }

        .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

            .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper button {
                width: 100%;
            }

    .footer-logos-wrapper > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title {
        font-size: 20px;
        font-weight: 600;
    }

        section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title span {
            font-size: 16px;
            font-weight: 600;
        }

    section.tour-detail-section .item-detail-wrapper .detail-title-wrap .detail-title h3 {
        font-size: 24px;
        font-weight: 600;
    }

    .mm-navbar .mm-title {
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }

    .footer-top-wrapper .info .wp-wrap strong {
        font-size: 24px !important;
    }

    .footer-top-wrapper .info .wp-wrap a {
        font-size: 16px !important;
    }

    .footer-top-wrapper .info .num-wrap strong {
        font-size: 22px !important;
    }

    .footer-top-wrapper .info .num-wrap a {
        font-size: 16px !important;
    }

    .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img {
        width: 100% !important;
        max-width: 100% !important;
        height: fit-content !important;
        max-height: 200px !important;
    }

        .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img img {
            width: 100%;
            max-width: 100%;
            height: fit-content !important;
            max-height: 200px !important;
        }

    .datepicker_mobile_full .daterangepicker {
        max-width: 100% !important;
    }

    .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-prev {
        margin-top: -30px;
    }

    .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-next {
        margin-top: -30px;
    }

}

/*iPad mini > portrait*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .header {
        padding: 20px;
    }

    header #logo {
        left: 60px;
        width: fit-content;
    }

    #toTop {
        bottom: 70px;
        right: 20px;
        box-shadow: 0px 0px 10px 0px #ccc;
    }

    #gb-widget-1139 {
        right: 10px;
        bottom: 10px;
    }

    .banner-search-area.container .custom-search-wrapper {
        box-shadow: 0px 0px 8px 0px #ccc;
    }

    .elementor-widget-title h2 {
        margin: 0;
        display: flex;
        font-size: 18px;
        align-items: center;
    }

    .section.section .section-title-area h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon {
        margin: 0 0 5px 0;
    }

        .elementor-info-section .elementor-info-wrapper .info-icon strong {
            font-size: 20px;
        }

    .elementor-info-section .elementor-info-wrapper .info-text {
        text-align: center;
        font-weight: 500;
        padding: 0 20px;
    }

    .elementor-elements-section .elementor-elements-wrapper {
        margin: 0 0 30px 0;
    }

        .elementor-elements-section .elementor-elements-wrapper .elements-icon {
            margin: 0 0 10px 0;
        }

            .elementor-elements-section .elementor-elements-wrapper .elements-icon strong {
                font-size: 34px;
            }

        .elementor-elements-section .elementor-elements-wrapper .elements-title {
            font-size: 18px;
            margin: 0 0 10px 0;
        }

    section.section.homeCommentSection .section-title-area h2 {
        font-size: 22px;
    }

    section.section.homeCommentSection .testimonial-carousel-wrapper {
        margin: 20px 0;
    }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-content {
            font-size: 16px;
        }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details {
            flex-direction: column;
        }

            section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper {
                margin: 0 0 30px 0;
            }

                section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon {
                    margin: 0 !important;
                    width: 50px;
                    height: 50px;
                }

                    section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon strong {
                        font-size: 18px;
                    }

    footer .footer-center-wrapper .error {
        position: relative;
        left: auto;
        bottom: auto;
        transform: translateX(0);
        background: none;
        max-width: 100%;
    }

    .elementor-tours-section .item-day-info-wrap .item-dayx {
        font-size: 12px;
    }

    section.search-top-wrapper .container .search-top-wrapper {
        padding: 40px 0 !important;
    }

    section.tour-detail-section .item-detail-wrapper .detail-information-wrapper .detail-info-item.bottom-tour-details-infos {
        flex-direction: column !important;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .content-title {
        font-size: 18px;
        font-weight: 700;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location {
        flex-direction: column;
    }

        section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location h3 {
            font-size: 14px;
            font-weight: 700;
        }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .knowing-input-label {
        font-size: 18px;
        font-weight: 600;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .accordionFaqQuestion .panel .panel-heading h4.panel-title a {
        font-size: 14px;
        font-weight: 500;
    }

    .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-text {
        height: auto !important;
        font-weight: 600;
    }

    .search-top-wrapper .container .pages-main-content .membership-area {
        margin: 0 !important;
    }

    .search-top-wrapper .container .pages-main-content .membership-area > .container {
        padding: 0 !important;
    }

        .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid {
            padding: 0 !important;
        }

            .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid .historialPlacesList .historialPlacesListItem .card-body .item-description {
                padding: 0 5px;
                text-align: justify;
            }

    .banner-search-area.container .historial-places-search-wrapper {
        flex-wrap: wrap;
    }

        .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

            .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper button {
                width: 100%;
            }

    .footer-logos-wrapper > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .elementor-widget-inner .booking-wrapper {
        padding: 0 15px;
    }

    .historial-place-detail-wrapper .container .detail-content-wrapper  {
        padding: 0 15px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .aboutTours-carousel-wrapper {
        padding: 0 20px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-prev {
        left: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-next {
        right: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title {
        font-size: 20px;
        font-weight: 600;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title span {
        font-size: 16px;
        font-weight: 600;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper {
        padding: 20px !important;
        border-radius: 0 !important;
    }

        section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper .map-container {
            border-radius: 0 !important;
        }

    .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check {
        padding: 0 !important;
    }

        .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check .included-list li {
            padding: 0 !important;
            margin: 0 0 5px 0;
        }

    section.tour-detail-section .item-detail-wrapper .detail-title-wrap .detail-title h3 {
        font-size: 26px;
        font-weight: 600;
    }

    .mm-navbar .mm-title {
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }

    ul.mm-listview li a {
        font-weight: 600;
    }

    .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper {
        margin: 0 0 20px 0 !important;
    }

        .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-text {
            height: auto !important;
            font-weight: 600;
        }

    .footer-top-wrapper .info .wp-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .wp-wrap a {
        font-size: 18px !important;
    }

    .footer-top-wrapper .info .num-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .num-wrap a {
        font-size: 18px !important;
    }

    .homePage-banner-search-area {
        margin-top: -30px !important;
    }

    .tourCampaigns-section {
        padding: 40px 0 0 0 !important;
    }

        .tourCampaigns-section .tourCampaigns-section-inner {
            padding: 0;
        }

        .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content {
            padding: 0 20px;
        }

            .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item {
                padding: 0;
                width: 100% !important;
                max-width: 100% !important;
            }

                .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner {
                    width: 100% !important;
                    max-width: 100% !important;
                }

                    .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img {
                        width: 100% !important;
                        max-width: 100% !important;
                        height: fit-content !important;
                        max-height: 298px;
                    }

                        .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .popularTourOptions-carousel-item .popularTourOptions-carousel-inner .item-img img {
                            width: 100%;
                            max-width: 100%;
                            height: fit-content !important;
                            max-height: 298px;
                            border-radius: 10px 10px 0 0 !important;
                        }

            .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-prev {
                margin-top: -48px;
                left: -32px;
            }

            .tourCampaigns-section .home-popular-tour-options-content .tour-campaigns-element-content .owl-carousel.popularTourOptions-carousel .owl-nav button.owl-next {
                margin-top: -48px;
                right: -32px;
            }

    .tours-page-main-banner {
        height: 180px;
        max-height: 180px;
        margin: 50px 0 0 0;
    }

        .tours-page-main-banner > img {
            height: 180px;
            max-height: 180px;
            object-fit: cover;
        }

    .banner-search-area.tours-main-search-area {
        margin-top: -30px !important;
    }

    .tours-main-search-top-wrapper {
        padding-top: 0 !important;
    }

    .daterangepicker {
        padding: 40px 0 0 0;
    }

    .datepicker_mobile_full .daterangepicker {
        max-width: 100vw;
    }

        .daterangepicker .drp-buttons {
            display: inline-block !important;
            top: 0;
            left: 0;
            right: 0;
            padding: 0 5px;
            position: absolute;
        }

            .daterangepicker .drp-buttons button.cancelBtn {
                font-weight: 700;
                font-size: 1.5em;
            }

        .daterangepicker .drp-buttons button.applyBtn {
            display: none !important;
        }

}

/*iPad Air > portrait*/
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .header {
        padding: 20px;
    }

    header #logo {
        left: 60px;
        width: fit-content;
    }

    #toTop {
        bottom: 70px;
        right: 20px;
        box-shadow: 0px 0px 10px 0px #ccc;
    }

    #gb-widget-1139 {
        right: 10px;
        bottom: 10px;
    }

    .banner-search-area.container .custom-search-wrapper {
        box-shadow: 0px 0px 8px 0px #ccc;
    }

    .elementor-widget-title h2 {
        margin: 0;
        display: flex;
        font-size: 18px;
        align-items: center;
    }

    .section.section .section-title-area h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .elementor-info-section .elementor-info-wrapper .info-icon {
        margin: 0 0 5px 0;
    }

        .elementor-info-section .elementor-info-wrapper .info-icon strong {
            font-size: 20px;
        }

    .elementor-info-section .elementor-info-wrapper .info-text {
        text-align: center;
        font-weight: 500;
        padding: 0 20px;
    }

    .elementor-elements-section .elementor-elements-wrapper {
        margin: 0 0 30px 0;
    }

        .elementor-elements-section .elementor-elements-wrapper .elements-icon {
            margin: 0 0 10px 0;
        }

            .elementor-elements-section .elementor-elements-wrapper .elements-icon strong {
                font-size: 34px;
            }

        .elementor-elements-section .elementor-elements-wrapper .elements-title {
            font-size: 18px;
            margin: 0 0 10px 0;
        }

    section.section.homeCommentSection .section-title-area h2 {
        font-size: 22px;
    }

    section.section.homeCommentSection .testimonial-carousel-wrapper {
        margin: 20px 0;
    }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-content {
            font-size: 16px;
        }

        section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details {
            flex-direction: column;
        }

            section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper {
                margin: 0 0 30px 0;
            }

                section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon {
                    margin: 0 !important;
                    width: 50px;
                    height: 50px;
                }

                    section.section.homeCommentSection .testimonial-carousel-wrapper .testimonial-item .testimonial-details .image-wrapper .icon strong {
                        font-size: 18px;
                    }

    footer .footer-center-wrapper .error {
        position: relative;
        left: auto;
        bottom: auto;
        transform: translateX(0);
        background: none;
        max-width: 100%;
    }

    .elementor-tours-section .item-day-info-wrap .item-dayx {
        font-size: 12px;
    }

    section.search-top-wrapper .container .search-top-wrapper {
        padding: 40px 0 !important;
    }

    section.tour-detail-section .item-detail-wrapper .detail-information-wrapper .detail-info-item.bottom-tour-details-infos {
        flex-direction: column !important;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .content-title {
        font-size: 18px;
        font-weight: 700;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location {
        flex-direction: column;
    }

        section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .detail-location h3 {
            font-size: 14px;
            font-weight: 700;
        }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .knowing-input-label {
        font-size: 18px;
        font-weight: 600;
    }

    section.tour-detail-section .item-detail-wrapper .tour-other-details-wrapper .detail-content-wrapper .accordionFaqQuestion .panel .panel-heading h4.panel-title a {
        font-size: 14px;
        font-weight: 500;
    }

    .search-top-wrapper .container .pages-main-content .membership-area {
        margin: 0 !important;
    }

        .search-top-wrapper .container .pages-main-content .membership-area > .container {
            padding: 0 !important;
        }

            .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid {
                padding: 0 !important;
            }

                .search-top-wrapper .container .pages-main-content .membership-area > .container .elementor-tours-section .wrapper-grid .historialPlacesList .historialPlacesListItem .card-body .item-description {
                    padding: 0 5px;
                    text-align: justify;
                }

    .banner-search-area.container .historial-places-search-wrapper {
        flex-wrap: wrap;
    }

        .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

            .banner-search-area.container .historial-places-search-wrapper .historial-places-seach-btn-wrapper button {
                width: 100%;
            }

    .footer-logos-wrapper > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .elementor-widget-inner .booking-wrapper {
        padding: 0 15px;
    }

    .historial-place-detail-wrapper .container .detail-content-wrapper {
        padding: 0 15px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .aboutTours-carousel-wrapper {
        padding: 0 20px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-prev {
        left: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .owl-nav button.owl-next {
        right: -30px;
    }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title {
        font-size: 20px;
        font-weight: 600;
    }

        section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper .booking-title span {
            font-size: 16px;
            font-weight: 600;
        }

    section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper {
        padding: 20px !important;
        border-radius: 0 !important;
    }

        section.tour-detail-section .historial-place-detail-wrapper .booking-wrapper.map-outer-wrapper .map-container {
            border-radius: 0 !important;
        }

    .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check {
        padding: 0 !important;
    }

        .elementor-widget-inner .booking-wrapper form .knowing-form-block .form-check .included-list li {
            padding: 0 !important;
            margin: 0 0 5px 0;
        }

    section.tour-detail-section .item-detail-wrapper .detail-title-wrap .detail-title h3 {
        font-size: 26px;
        font-weight: 600;
    }

    .mm-navbar .mm-title {
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }

    ul.mm-listview li a {
        font-weight: 600;
    }

    .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper {
        margin: 0 0 20px 0 !important;
    }

        .search-top-wrapper .container .elementor-tours-section.section-top-wrapper .elementor-tours-wrap .elementor-tours-wrap-item.all-tours-actions-wrapper .card .card-body .item-text {
            height: auto !important;
            font-weight: 600;
        }

    .footer-top-wrapper .info .wp-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .wp-wrap a {
        font-size: 18px !important;
    }

    .footer-top-wrapper .info .num-wrap strong {
        font-size: 26px !important;
    }

    .footer-top-wrapper .info .num-wrap a {
        font-size: 18px !important;
    }
}

/*Free Shuttle */
/* Genel Custom Experience Bölümü */
.custom-experience-section {
    padding: 50px;
    background: linear-gradient(135deg, #f7f8fc, #fff);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 50px;
}

.custom-experience-title {
    font-weight: 800;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-experience-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Menüsü Stili */
.custom-experience-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.custom-experience-tabs .tab-button {
    background-color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-right: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-experience-tabs .tab-button:hover {
    background-color: #ff6f00;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-experience-tabs .tab-button.active {
    background-color: #795548;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tab İçerik Stili */
.custom-experience-tab-content {
    display: none;
    padding: 20px 0;
}

.custom-experience-tab-content.active {
    display: block;
}

/* Kartlar Stili */
.custom-experience-options .custom-experience-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
    border: none;
    position: relative;
    overflow: hidden;
}

.custom-experience-options .custom-experience-card i {
    font-size: 30px;
    margin-right: 12px;
    color: #795548;
}

.custom-experience-options .custom-experience-card span {
    font-size: 16px;
    color: #333;
}

.custom-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Date, Participants, Time Seçiciler */
.custom-experience-date-picker,
.custom-experience-participant-count,
.custom-experience-time-select {
    margin-top: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.custom-experience-date-picker:focus,
.custom-experience-participant-count:focus,
.custom-experience-time-select:focus {
    outline: none;
    border-color: #795548;
    box-shadow: 0 0 5px rgba(121, 85, 72, 0.6);
}

/* Shuttle Info Stili */
.custom-experience-shuttle-info {
    padding: 25px;
    background: linear-gradient(135deg, #e6f7ff, #f0f4ff);
    border-radius: 15px;
    border: 1px solid #d4ebf6;
    color: #333;
    display: flex;
    align-items: center;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.custom-experience-shuttle-info i {
    font-size: 36px;
    margin-right: 15px;
    color: #007bff;
    background: #e0f7ff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.custom-experience-shuttle-info strong {
    font-weight: 700;
    font-size: 18px;
    color: #007bff;
    margin-right: 10px;
}

.custom-experience-shuttle-info p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.custom-experience-shuttle-info:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Card Stili */
.custom-experience-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

/* Card Hover Efekti */
.custom-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Form Girdileri */
.custom-experience-input {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

/* Form Hover ve Focus */
.custom-experience-input:focus {
    border-color: #795548;
    box-shadow: 0 0 8px rgba(121, 85, 72, 0.3);
}

/* Label Stili */
.custom-experience-personal-info label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}
/* Seçim Özeti Stili */
.custom-experience-selection-summary {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 30px auto;
    text-align: left;
    transition: all 0.3s ease;
}

.custom-experience-summary-title {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.custom-experience-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #555;
}

.custom-experience-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.custom-experience-summary-list li strong {
    color: #333;
    font-weight: 700;
    flex: 1;
}

.custom-experience-summary-list span {
    color: #795548;
    font-weight: 600;
    font-size: 16px;
    flex: 2;
    text-align: right;
}

.custom-experience-summary-list li:before {
    content: "•";
    font-size: 20px;
    color: #ff6f00;
    margin-right: 10px;
}

/* Save & Continue Butonu */
.custom-experience-save-continue-btn {
    background: linear-gradient(45deg, #795548, #ff6f00);
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.custom-experience-save-continue-btn:hover {
    background: linear-gradient(45deg, #5d4037, #e65100);
    transform: translateY(-5px);
}/* Tab Menüsü */
.custom-experience-nav-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: none;
}

.custom-experience-nav-tabs .custom-experience-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #f7f8fc;
    border: none;
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-experience-nav-tabs .custom-experience-nav-link.active {
    background-color: #795548;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-experience-nav-tabs .custom-experience-nav-link:hover {
    background: linear-gradient(45deg, #795548, #ff6f00);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tablar Arası Geçiş Butonu */
.custom-experience-save-continue-btn {
    background: linear-gradient(45deg, #795548, #ff6f00);
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    float: right;
}

.custom-experience-save-continue-btn:hover {
    background: linear-gradient(45deg, #5d4037, #e65100);
    transform: translateY(-5px);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .custom-experience-nav-tabs {
        flex-direction: column;
    }

    .custom-experience-nav-tabs .custom-experience-nav-link {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .custom-experience-save-continue-btn {
        width: 100%;
        padding: 15px;
        margin-top: 20px;
    }
    .custom-experience-card {
        padding: 20px;
    }

    .custom-experience-input {
        font-size: 14px;
        padding: 10px;
    }
}
