:root{
    --bs-primary: #3191cc;
    --primary-light: #eef4f8;
    --bs-secondary: #eb7f26;
    --orange-light: #fea738;
    --secondary-light: #fff1e2;
    --bs-success: #25d366;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --gradient1: linear-gradient(45deg, #f39f3c, #cf6d05);
    --bs-font-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-Bold.eot');
    src: url('../fonts/GTEestiProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-Bold.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-Bold.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-Light.eot');
    src: url('../fonts/GTEestiProDisplay-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-Light.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-Light.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-Medium.eot');
    src: url('../fonts/GTEestiProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-Medium.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-Regular.eot');
    src: url('../fonts/GTEestiProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-Regular.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-Regular.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-Thin.eot');
    src: url('../fonts/GTEestiProDisplay-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-Thin.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-Thin.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Display';
    src: url('../fonts/GTEestiProDisplay-UltraBold.eot');
    src: url('../fonts/GTEestiProDisplay-UltraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GTEestiProDisplay-UltraBold.woff2') format('woff2'),
        url('../fonts/GTEestiProDisplay-UltraBold.woff') format('woff'),
        url('../fonts/GTEestiProDisplay-UltraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jitter';
    src: url('../fonts/Jitter-Regular.eot');
    src: url('../fonts/Jitter-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Jitter-Regular.woff2') format('woff2'),
        url('../fonts/Jitter-Regular.woff') format('woff'),
        url('../fonts/Jitter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body{
    font-family: 'GT Eesti Pro Display';
}
.bg-light-orange{
    background-color: var(--secondary-light);
}
.bg-orange-light{
    background-color: var(--orange-light);
}
.main-header::before {
	content: '';
	height: 10px;
	width: 100%;
	background: var(--bs-primary);
	display: block;
}
.main-header {
	background: #FFF;
background: linear-gradient(125deg, rgba(255, 255, 255, 1) 11%, rgba(245, 245, 245, 1) 52%, rgba(255, 255, 255, 1) 88%);
}
.top-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.main-menu .nav-link{
    text-transform: uppercase;
    font-weight: 300;
    color: var(--bs-dark);
    font-size: 17px;
}
.categories-nav {
	text-align: center;
	margin-top: 10px;
}
.categories-nav ul {
	list-style: none;
	display: inline-flex;
	gap: 20px;
	margin-bottom: 0;
    padding-left: 0;
}
.categories-nav ul li a {
	display: flex;
	text-decoration: none;
	background: #fff;
	padding: 12px 20px;
	border-radius: 20px;
	border-bottom: 3px solid var(--bs-secondary);
	color: #333;
	font-weight: 500;
	font-size: 14px;
    align-items: center;
    gap: 10px;
    min-width: 135px;
    justify-content: center;
    box-shadow: 2px -3px 8px rgba(0, 0, 0, 0.1);
}
.categories-nav ul li a .svg-icn {
	width: 30px;
}
.categories-nav ul li a .svg-icn svg,.categories-nav ul li a .svg-icn svg g {
	fill: var(--bs-secondary);
}
.categories-nav ul li a:hover .svg-icn svg, .categories-nav ul li a:hover .svg-icn svg g,.categories-nav ul li a.active .svg-icn svg, .categories-nav ul li a.active .svg-icn svg g{
    fill: #fff;
}
.categories-nav ul li a:hover, .categories-nav ul li a.active{
    background-color: var(--bs-secondary);
    border-color: #fff;
    color: #fff;
}

.categories-nav ul li a.attractions .icn {
	width: 18px;
	height: 28px;
	background: url(../images/icons/attractions.png) no-repeat;
	background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a.car-hire .icn {
    width: 26px;
    height: 28px;
    background: url(../images/icons/car-hire.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a.hotels .icn {
    width: 24px;
    height: 25px;
    background: url(../images/icons/hotels.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a.air-tickets .icn {
    width: 24px;
    height: 26px;
    background: url(../images/icons/air-tickets.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a.visa .icn {
    width: 17px;
    height: 26px;
    background: url(../images/icons/visa.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a.packages .icn {
    width: 24px;
    height: 26px;
    background: url(../images/icons/packages.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease-in-out;
}
.categories-nav ul li a:hover .icn, .categories-nav ul li a.active .icn {
    background-position: top;
}
.categories-cont {
	position: relative;
	z-index: 9;
}
.hero{
    margin-top: -20px;
}
/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}
.banner-img {
	position: absolute;
	width: 100%;
	height: 100%;
    background-size: cover !important;
}
.banner-img .img-fluid {
	width: 100%;
}
.banner-content-container{
    position: relative;
    z-index: 10;
    padding: 60px 0 300px;
}
.img-fluid.banner-img1 {
	width: 100%;
}
/* Declare heights because of positioning of img element */
.carousel-item {
  height: auto;
}
.banner-custom-heading1 h1 {
	display: flex;
	flex-direction: column;
}
.banner-custom-heading1 h1 .hd1 {
	color: var(--bs-secondary);
    font-family: 'Jitter';
    font-size: 60px;
}
.banner-custom-heading1 {
    text-align: center;
}
.banner-custom-heading1 h1 .hd2 {
	font-weight: bold;
	font-size: 98px;
	line-height: 110px;
}
.outline {
    color: white; /* Unfortunately you can't use transparent here … */
    text-shadow:
	   -1px -1px 0 #000,  
		1px -1px 0 #000,
		-1px 1px 0 #000,
		 1px 1px 0 #000
}

/* Real outline for modern browsers */
@supports((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
    .outline {
        color: transparent;
        -webkit-text-stroke: 2px #fff;
		text-stroke: 2px black;
        text-shadow: none;
    }
}

.banner-custom-heading1 h1 .hd3 {
	/* background-color: var(--bs-secondary);
	padding: 10px 20px; */
	font-weight: bold;
	font-size: 70px;
	line-height: 80px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 3px 4px 16px rgba(0,0,0,.18);
}
.hero .carousel-inner{
    overflow: visible;
}
.hero .carousel {
	margin-bottom: 120px;
}
.banner-btm-img {
	position: absolute;
    bottom: -40px;
}
.book-btn {
	text-align: center;
}
.feats-list {
	text-align: center;
	max-width: 900px;
	margin: 20px auto;
	color: #fff;
}
.feats-list ul {
	padding-left: 6px;
	list-style: none;
	column-count: 3;
}
.feats-list ul li {
	color: #fff;
	line-height: 34px;
	position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    justify-content: center;
}
.feats-list ul li::before {
	content: '';
	width: 20px;
	display: inline-block;
    background: url(../images/icons/check.png) no-repeat;
    background-size: contain;
    height: 20px;
}
.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}
.btn-secondary:hover {
  background-color: #b35204;
  border-color: #b35204;
}

.hdr-contact-btns {
	gap: 15px;
}
.hdr-contact-btns .btn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.hdr-contact-btns .btn.hdr-call-btn img {
    width: 20px;
}
.btn.btn-outline-primary.rounded-pill.hdr-call-btn:hover {
  background-color: #fff;
 color: var(--bs-primary);
}
.packege-card-container {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
    margin-top: 30px;
}
.packege-card {
	width: 210px;
	height: auto;
	background-color: #000;
	color: white;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	align-items: center;
	transition: width 0.5s ease;
	cursor: pointer;
	transform-origin: right;
	overflow: hidden;
	position: relative;
	padding-bottom: 65px;
}
.packege-card.active {
	width: 400px;
    background-color: #db6303;
}
.packege-card img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 8px 8px 0px 0px;
}
.packege-card-content {
	padding: 20px;
	width: 100%;
	min-height: 200px;
}
.packege-card-content h3 {
	font-size: 25px;
	font-weight: 600;
	color: white;
}
.packege-card .packege-card-content ul {
	display: none;
	min-width: 400px;
}
.packege-card.active .packege-card-content ul {
	font-size: 15px;
	padding-left: 15px;
	display: block;
    width: 100%;
    min-width: 100%;
}
.packege-card-text span {
	display: none;
}
.packege-card.active .packege-card-text span {
	display: block;
}
.packege-card-content ul li {
	list-style-type: disc;
}
.packege-btn-div {
	position: absolute;
	width: 100%;
	left: 0;
	padding: 0 15px;
	bottom: 20px;
}
.packege-card.active .packege-card-content a{
    background-color: var(--bs-secondary);
    color: #fff;
}
.packege-card-content a {
	display: block;
	color: #000;
	text-decoration: none;
	/* width: 100% !important; */
	background-color: #fff;
	border-radius: 50px;
	padding: 15px;
	font-size: 15px;
	font-weight: 500;
}
.packege-card .ryt-arrow {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
    
}
.packege-card .ryt-arrow svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}
.packege-card.active .ryt-arrow svg{
    fill: #db6303;
    transform: rotate(0deg);
}
.section-title .h2 {
	font-size: 50px;
    line-height: 50px;
}
.btn-black{
    background-color: #000;
    color: #fff;
}
.btn-black:hover{
    background-color: #222;
    color: #fff;
}
.product-item {
    border-radius: 12px;
    overflow: hidden;
}
.product-item .product-img {
    position: relative;
}
.product-item .product-img ._price {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(252,177,68, 0.85);
    padding: 5px;
    text-align: center;
    line-height: 20px;
    z-index: 99;
}
.car-rental-list .car-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.car-feats {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #777;
}
.car-rental-list .car-info span.badge {
    font-weight: 400;
    display: flex;
    padding-top: 5px;
}
.car-feats > span:after {
    content: '|';
    margin-left: 5px;
}
.car-feats > span:last-child:after{
    display: none;
}
.star-rating {
    color: #fbaa24;
    font-size: 18px;
}
.star-rating .star svg{
    fill: #fbaa24;
    width: 15px;
    height: 15px;
}
.product-details h3 {
    font-size: 35px;
    font-weight: normal;
}
.product-details h3 a,.product-details .h5 a{
    color: #000;
    text-decoration: none;
}
.product-details .reviews {
    gap: 10px;
}
.product-details p {
    color: #6b6b6b;
    font-weight: 300;
    font-size: 14px;
}
.product-item ._price .curr {
    font-size: 18px;
    font-weight: 600;
}
.product-item ._price span.by {
    font-size: 12px;
}

.pagination a {
    width: 45px;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pagination a svg {
    width: 100%;
    height: 100%;
    fill: var(--bs-secondary);
}
.pagination a.disabled{
    cursor: default;
}
.pagination a.disabled svg{
    fill: #000;
}
.bg-light-orange {
    background-color: var(--secondary-light);
}
.text-orange{
    color: var(--bs-secondary);
}
.custom-select {
  position: relative;
  width: 100px;
  font-size: 12px;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: transparent;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 8px;
  right: -14px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #333 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000;
  padding: 0;
  border: 0px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.package-form .form-cont {
	background: #fff;
	padding: 8px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.package-form .form-cont .form-field {
	display: flex;
	width: 24%;
	gap: 5px;
}
.package-form .form-cont .form-field ._field .form-control {
	padding: 0;
	border: 0px;
	font-size: 12px;
}
.car-rental-list .nav-link {
	color: #909090;
	font-weight: normal;
}
.car-rental-list .nav-link.active {
	background: transparent;
	color: var(--bs-secondary);
}
.car-rental-list .nav-item {
	position: relative;
}
.car-rental-list .nav-item::after {
	content: '|';
	display: inline-block;
	position: absolute;
	top: 7px;
	right: 0;
    color: #909090;
}
.car-rental-list .nav-item:last-child::after {
	content: '';
}
.car-rental-list ul.nav-pills {
	justify-content: center;
}
.hotels-list {
	margin-top: 40px;
    position: relative;
}
.owl-nav .prev, .owl-nav .next {
	width: 40px;
	display: inline-block;
}
.packages {
	position: relative;
}
.hotels-list .owl-nav, .packages .owl-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.hotels-list .owl-nav .owl-prev, .packages .owl-nav .owl-prev {
	position: absolute;
	left: -70px;
}
.hotels-list .owl-nav .owl-next, .packages .owl-nav .owl-next {
	position: absolute;
	right: -70px;
}
.hotels-list .owl-nav .owl-next:hover, .hotels-list .owl-nav .owl-prev:hover,.packages .owl-nav .owl-prev:hover, .packages .owl-nav .owl-next:hover{
    background-color: transparent;
}
.hotels-list .owl-nav button svg,.packages .owl-nav button svg{
    fill: var(--bs-secondary);
}
.hotels-list .owl-nav button.disabled svg,.packages .owl-nav button.disabled svg{
    fill: #000;
}
.hotel-item.item h3 {
	font-size: 22px;
}
.hotel-item .hotel-location {
	display: flex;
	gap: 5px;
	font-size: 11px;
    justify-content: center;

}
.hotel-item .hotel-location .icn {
	width: 14px;
    min-width: 14px;
}
.hotel-item .hotel-location ._loc {
	display: flex;
	gap: 5px;
	align-items: center;
}
.hotel-item .hotel-location .icn svg {
	width: 100%;
}
.hotel-item .hotel-location .nearby-loc {
	display: flex;
	gap: 5px;
	align-items: center;
}
.hotel-item .hotel-location .nearby-loc .icn{
    width: 9px;
    min-width: 9px;
}
.hotel-item ._occupancy {
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 10px auto;
	background: var(--secondary-light);
	padding: 10px;
	align-items: center;
}
.hotel-item ._occupancy > div {
	display: flex;
	gap: 6px;
    align-items: center ;
}
.hotel-item ._occupancy > div ._icn {
	width: 15px;
}
.hotel-item ._occupancy > div ._icn svg{
    width: 100%;
}
.package-feats .pack-feat {
	background: #f4f5f2;
	padding: 10px;
	border-radius: 5px;
	display: flex;
	gap: 10px;
	border: 1px solid #f6936b;
	box-shadow: 0 0 0px rgba(219,99,3);
    align-items: center;
    margin-bottom: 15px;
}
.package-feats .pack-feat .icn {
	width: 40px;
	min-width: 40px;
    background-color: #fff;
    padding: 5px;
}
.package-feats .pack-feat .icn svg{
    width: 100%;
}
.package-feats .pack-feat p{
    margin-bottom: 0;
     font-size: 12px;
}
.package-feats .pack-feat .h5{
    margin-bottom: 0px;
}
.package-feats {
	margin: 10px 0;
}
._form .form-group {
    background: #f4f7ff;
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    min-height: 52px;
    align-items: center;
    border-radius: 10px;
}
._form .form-group select {
    width: 100%;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
._form .form-group input[type="date"] {
    background: transparent;
    border: 0;
    width: 100%;
}
._form .form-group select:focus, ._form .form-group input[type="date"]:focus{
    outline: none;
}
.hotel-btm-form {
	display: flex;
	margin: 15px auto;
	justify-content: center;
	gap: 15px;
	align-items: center;
}
.hotel-btm-form .number-of-guests {
    background: #f4f7ff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.11);
    display: flex;
    align-items: center;
    gap: 15px;
}
.hotel-form._form .form-group {
	box-shadow: 0 0 10px rgba(0,0,0,0.11);
}
.hotel-btm-form .number-of-guests input[type="number"] {
    padding: 8px 5px;
    border: 0;
    border-radius: 8px;
}
.hotel-booking-form-cont .hotel-btm-form .number-of-guests{
    width: 100%;
}
.hotel-booking-form-cont .hotel-btm-form .number-of-guests input[type="number"]{width: 100%;}
.hotel-booking-form-cont .hotel-btm-form .number-of-guests label {
    width: 50%;
}
._form .form-group input[type="text"],._form .form-group input[type="email"],._form .form-group input[type="tel"], ._form .form-group textarea {
	background: transparent;
	border: 0;
	width: 100%;
}
._form .form-group input[type="text"]:focus,._form .form-group input[type="email"]:focus,._form .form-group input[type="tel"]:focus,._form .form-group textarea:focus{
    outline: none;
}
._form .form-group input[type="number"] {
	width: 100%;
	border: 0;
	background: transparent;
}
.visa-ticket-box ._form .form-group {
	margin-bottom: 10px;
}
.visa-ticket-box {
	margin-top: 20px;
    overflow: hidden;
    border-radius: 20px;
}
section.cta-section .container {
    padding: 60px 60px;
    background: url(../images/cta-bg1.jpg) no-repeat;
    background-size: cover;
    border-radius: 40px;
    margin: 40px auto;
    background-position: center;
}
section.cta-section.attraction-cta .container{
    background: url(../images/attraction-cta-img.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
section.cta-section .container .h2 {
	font-size: 60px;
	font-weight: 400;
}
.step-box ._box-img .img-fluid,.step-box ._box-txt {
	border-radius: 25px;
}
.testimonials-section {
	/* background: linear-gradient(130deg, #f39f3c, #cf6d05); */
    background: url(../images/testimonial-bg.jpg) no-repeat;
	padding: 120px 0;
    margin-top: 30px;
    background-size: cover;
    background-position: center;
}
.testim-item .img-box {
	width: 64px;
	height: 64px;
	background: #ccc;
	border-radius: 100%;
}
.testim-item {
	background: var(--secondary-light);
	color: #000;
	padding: 20px;
	border-radius: 30px;
	box-shadow: 3px 3px 12px rgba(0,0,0,0.29);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	font-weight: 300;
	max-width: 800px;
	margin: 40px auto 20px;
}
.stars ._star {
	width: 20px;
}
.testim-item ._star svg {
	fill: #fbaa24;
    width: 100%;
}
.testimonials-section .container {
	position: relative;
}
/* .testimonials-section .container:before{
    content: '';
    position: absolute;
    left: -40px;
    bottom: -126px;
    width: 250px;
    height: 242px;
    background: url(../images/icons/testim-bg-icn2.png) no-repeat;
}
.testimonials-section .container:after{
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    width: 110px;
    height: 155px;
    background: url(../images/icons/testim-bg-icn1.png) no-repeat;
} */
.why-us-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	text-align: center;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    /* min-height: 392px; */
}
.why-us-box:hover{
    border-color: var(--bs-secondary);
}
.why-us-icn {
	background: var(--bs-secondary);
	padding: 20px;
	border-radius: 50%;
}
.why-us-icn img {
    width: 60px;
}
.why-us {
	margin-top: 40px;
}
.faq-form {
	padding: 40px;
	background: #f8f8f8;
}
.faq-form .form-control {
	background: #f2f2f2;
}
.accordion-item .accordion-button {
	background: var(--bs-secondary);
	color: #fff;
}
.accordion-item .accordion-button:after{
    filter: invert(1);
}
.accordion-item .accordion-button.collapsed{
    background: transparent;
    color: #000;
}
.accordion-item .accordion-button.collapsed:after{
    filter: invert(0);
}
.home-blogs {
	margin-top: 20px;
	padding: 140px 0;
    color: #fff;
    background: url(../images/blogs-bg.jpg) no-repeat;
    background-size: cover;
}
.home-blogs .blog-box a{
    color: #fff;
    text-decoration: none;
}
.blog-box .blog-img {
	margin-bottom: 30px;
}
.blog-box .date {
	font-weight: 300;
}
.blog-box .blog-title {
	border-left: 3px solid #ffd000;
	padding-left: 20px;
	line-height: 20px;
	margin: 15px 0;
}
.blog-box .read a {
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 13px;
	
}
.subscribe-form svg {
	width: 20px;
	fill: #Fff;
}
.subscribe-form .input-group .btn{
    border-radius: 0;
}
.subscribe-form .form-control{
    background: #f9f9f9;
}
.footer a{
    color: #000;
    text-decoration: none;
}
.footer .contact-info ._info {
	display: flex;
	gap: 10px;
}
.footer .contact-info ._info svg{
    width: 14px;
    fill: var(--bs-secondary);
}
.socio svg{
    width: 20px;
    fill: var(--bs-secondary)
}
.copyright {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #ccc;
}
.copyright p{margin-bottom: 0;}
.footer-nav ul {
	list-style: none;
	padding-left: 0;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--bs-secondary);
}
.car-carousel {
    position: relative;
}
.car-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.floating-contact {
	background: rgb(0 0 0 / .7);
	z-index: 99;
	bottom: 0;
}
.floating-contact a{
    text-decoration: none;
}
.floating-contact .contact-icons {
	width: 20px;
	display: inline-block;
}
.floating-contact .contact-icons svg {
	fill: var(--bs-primary);
	width: 100%;
}
.floating-contact .contact-icons img {
	width: 20px;
}
section.hero.inner-banner {
    padding: 60px 0 120px;
}
.car-rental-banner{
    background: url(../images/car-hire-banner-img.jpg) no-repeat;
    background-size: cover;
    height: 900px;
}
._color-box{
    width: 20px;
    height: 20px;
}
.visa-banner{
    background: url(../images/visa-banner-img1.jpg) no-repeat;
    background-size: cover;
    height: 900px;
}
.car-rental-banner h1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
.car-rental-banner h1 span.hd-txt1 {
    font-family: 'jitter';
    font-size: 60px;
    color: #ffae43;
}
.car-rental-banner h1 span.hd-txt2 {
    font-size: 70px;
}
.filter-item .field-group._inline label{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
._serach-input .search-icn svg {
    width: 16px;
}
span._filter-icn {
    width: 15px;
}
span._filter-icn svg{
    width: 100%;
}
.search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-filter ._serach-input {
    display: flex;
    align-items: center;
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 20px;
    gap: 5px;
}
.search-filter ._serach-input .search-icn {
    display: flex;
}
.search-filter ._serach-input input{
    background: transparent;
    border: 0;
}
.search-filter ._serach-input input:focus{
    outline: none;
}
.filter-fields .filter-item {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-bottom: 15px;
}
.filter-fields .filter-item._filter{
    border: 0;
}
.attractions-banner{
    background: url(../images/attractions-banner-img.jpg) no-repeat;
    background-size: cover;
    height: 900px;
    background-position: center;
    position: relative;
}
.hotels-banner{
    background: url(../images/hotels-banner-img.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    
}
.air-tickets-banner{
    background: url(../images/air-ticket-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    
}
.attractions-banner .container {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 140px;
    max-width: 100%;
    color: #fff;
}
.attractions-banner h1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.attractions-banner h1 span.hd-txt1 {
    font-family: 'jitter';
    color: var(--bs-secondary);
    font-size: 60px;
    line-height: 52px;
}
.attractions-banner h1 span.hd-txt2{
    font-size: 100px;
    line-height: 100px;
}
.att-feat-box {
    background: var(--bs-secondary);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    position: relative;
}
/* .att-feat-box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/feat-box-overlay.png) no-repeat;
    background-size: 100%;
} */
.att-feat-box .feat-icn img {
    width: 100px;
}
.deals-tabs ul.nav.nav-tabs {
    justify-self: center;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: inline-flex;
}
.deals-tabs ul.nav.nav-tabs .nav-link {
    background: #f4f4f4;
    border-radius: 0;
    border: 0;
    padding: 20px 30px;
    font-size: 18px;
    color: #000;
}
.deals-tabs ul.nav.nav-tabs .nav-link.active {
    background: var(--bs-secondary);
    color: #fff;
}
.tab-pane .deals-form {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 20px;
    border-top: 1px solid #fff;
}
.tab-pane .deals-form .form-fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.tab-pane .deals-form .form-fields .select2-container, .tab-pane .deals-form .form-fields input[type="number"] {
    width: 100% !important;
}
.tab-pane .deals-form .form-fields input[type="number"]{
    border: 0px;
    padding: 10px;
    border-radius: 20px;
}
.tab-pane .deals-form .form-fields .select2-container.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 0px solid #aaa;
    border-radius: 20px;
    padding: 10px;
    height: auto;
}
.tab-pane .deals-form .form-fields .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #db6303 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.about-intro{
    background: url(../images/about-intro-bg.png) no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    padding: 250px 0;
}
.about-intro:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/about-intro-img.png) no-repeat;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}
.about-intro .container {
	position: relative;
	z-index: 99;
}
.text-primary {
	color: var(--bs-primary) !important;
}
.bg-orange{
    background: var(--bs-secondary);
}
.activity-img .img-fluid {
	border-radius: 10px;
	border: 2px solid #fff;
    width: 100%;
}
.small-contact-section{
    background: #ebebeb;
}
.packages-banner {
	background: url(../images/packages-banner2.jpg) no-repeat;
	background-size: cover;
	height: 900px;
	background-position: center;
	position: relative;
}
.packages-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-shadow: 2px 2px 2px #666;
}
.package-duration {
    font-size: 22px;
    margin-bottom: 12px;
}
.banner-price ._price-cont {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}
.banner-price ._price-cont span._price {
    text-decoration: line-through;
}
.banner-price ._price-cont .deal-img img {
    width: 200px;
}
.package-feats.feats-list {
    background: #fff4ec;
    padding: 15px;
}
.package-feats.feats-list li {
    color: #000;
    font-size: 16px;
}
.package-feats.feats-list ul {
    column-count: 1;
    margin-bottom: 0;
}
.passport-info-form .form-group {
	margin-bottom: 15px;
}
.nuber-select select.form-control {
	border-right: 1px solid #ccc;
	border-radius: 5px 0 0 5px;
}
.nuber-select #contact_no {
	border-left: 0;
	border-radius: 0 6px 6px 0;
}
.passport-info-form .card-title {
	background: #f2f2f2;
	padding: 15px 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
}
.booking-parent-tab > .tab-content {
    padding: 40px 20px;
}
.booking-parent-tab {
    border: 1px solid #efefef;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 30px;
}
.booking-parent-tab > .nav.nav-tabs {
    background: #3585bf;
}
.booking-parent-tab > .nav.nav-tabs .nav-link {
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-parent-tab > .nav.nav-tabs .nav-link svg{
    width: 40px;
    fill: #fff;
}
.booking-parent-tab > .nav.nav-tabs .nav-link.active {
    background: #f0f0f0;
    color: #000;
}
.booking-parent-tab > .nav.nav-tabs .nav-link:hover{
    border-color: transparent;
}
.booking-parent-tab > .nav.nav-tabs .nav-link.active svg {
    fill: var(--bs-secondary);
}
.booking-parent-tab > .nav.nav-tabs {
    background: #3585bf;
    border: 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.air-booking-tabs .tab-content {
    border: 1px solid #e7e7e7;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}
.air-booking-tabs .nav.nav-tabs {
    padding-left: 20px;
    border-bottom: 0;
    display: flex;
    gap: 10px;
}
.air-booking-tabs .nav.nav-tabs .nav-link {
    background: #c0c0c0;
    color: #000;
}
.air-booking-tabs .nav.nav-tabs .nav-link.active{
    background: var(--bs-secondary);
    color: #fff;
}
.air-booking-tabs .form-group {
    margin-bottom: 15px;
    background: #fff;
}
section.support-contact-section .support-box {
    background: #f0f0f0;
    padding: 30px;
    border-radius: 12px;
}
section.support-contact-section .support-box p{
    margin-bottom: 0;
}
section.support-contact-section .support-box:hover{
    background: #ffda94;
}
section.support-contact-section .support-box img {
    width: 60px;
}
.flight-deals-section .card ._desc {
    margin-top: 20px;
}
.flight-deals-section .card img.img-fluid {
    border-radius: 8px;
}
.flight-deals-section .card {
    padding: 15px;
    background: #f0f0f0;
    border: 0;
    margin-bottom: 15px;
}

.hero.inner-banner.about-us-banner {
    background: url('../images/about-us-banner-bg.jpg') no-repeat center center/cover;
}
.hero.inner-banner.about-us-banner h1 {
    padding-top: 120px;
    color: var(--bs-secondary);
    font-size: 60px;
}
.team-member {
    position: relative;
    border-bottom: 8px solid #3191cc;
    margin-bottom: 15px;
}
.team-member .team-member-info {
    position: absolute;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.7);
    color: #000;
    bottom: 0;
    padding: 16px 0 10px;
}
section.about-welcome-section {
    background: url(../images/about-welcome.jpg) no-repeat center center/cover;
    color: #fff;
}
section.about-welcome-section ._welcome-message {
    background: var(--bs-secondary);
    position: relative;
    padding: 100px 40px 40px;
    width: 90%;
    border-radius: 40px;
}
._welcome-message ._ceo-img {
    position: absolute;
    bottom: -48px;
    right: -101px;
}
._welcome-message ._ceo-img img {
    width: 300px;
}
section.about-welcome-section ._welcome-message h2.h2 {
    font-size: 90px;
    line-height: 90px;
}
section.about-welcome-section ._welcome-message p {
    font-size: 20px;
}
section.about-welcome-section ._welcome-message .row {
    position: relative;
    z-index: 10;
}
section.about-welcome-section ._welcome-message .quot {
    position: absolute;
    font-size: 800px;
    top: 0;
    opacity: .22;
    z-index: 1;
    top: 52px;
    line-height: 728px;
}
section.hero.inner-banner.details-page-banner {
    background-image: linear-gradient(to bottom, #bcdbee, #fff);
    padding: 60px 0;
}
.user-info-section .card-fields {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
}
.countries-carousel .country img {
    height: 100px;
    margin-right: 10px;
    border: 0px solid #ccc;
    display: inline-block !important;
    margin-bottom: 10px;
}
.countries-carousel .country-name {
    font-size: 1.2em;
}
.countries-carousel .country {
    text-align: center;
}
.gallrey-imgs {
    margin-bottom: 23px;
}
#imgs-gallery img.img-fluid {
    border-radius: 30px;
}
.attraction-deals-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.attraction-deals-tags .tag-box1{
    background: #f3feeb;
}
.attraction-deals-tags .tag-box2{
    background: #eaf8ff;
}
.attraction-deals-tags .tag-box3{
    background: #fffae3;
}
.attraction-deals-tags .tag-box{
    padding: 12px 20px;
    border-radius: 15px;
}
.attraction-deals-tags .tag-box .h4, .attraction-deals-tags .tag-box p{
    margin-bottom: 0;
}
.attraction-deals-tags .tag-box img {
    border-radius: 10px;
    box-shadow: 0 36px 60px rgba(0,0,0,0.07);
}
.sidebar ._pricing-card {
    font-size: 22px;
}
.sidebar ._pricing-card span.sale-price {
    font-weight: 900;
    font-size: 28px;
}
.nuber-select select.form-control {
	border-right: 1px solid #ccc;
	border-radius: 5px 0 0 5px;
}
.sidebar-ticket-form {
    padding: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    border-radius: 20px;
}
.sidebar-ticket-form .form-group {
    margin-bottom: 15px;
}
._offers-bar {
    font-size: 20px;
}
._offers-bar a.btn-offer {
    text-decoration: none;
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-secondary);
}
._offers-bar a.btn-offer .label {
    color: #000;
    background: var(--orange-light);
    padding: 0px 6px;
    border-radius: 5px;
}
.custom-tabs .nav.nav-tabs {
    padding-left: 20px;
    border-bottom: 0;
    display: flex;
    gap: 10px;
}
.custom-tabs .nav.nav-tabs .nav-link.active {
    background: var(--bs-secondary);
    color: #fff;
}
.custom-tabs .nav.nav-tabs .nav-link {
    background: #c0c0c0;
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 52px;
}
.custom-tabs .nav.nav-tabs .nav-link .deals-label {
    background: orange;
    padding: 4px 14px;
    border-radius: 6px;
}
.custom-tabs .tab-content {
    border: 1px solid #e7e7e7;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}
/* Gallery Style */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
/* Popup */
    .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #222;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    background: var(--bs-secondary);
}

.main-image-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: #000;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    cursor: zoom-in;
}

.main-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.thumbnail-carousel {
    display: flex;
    padding: 15px 10px;
    overflow-x: auto;
    background: #333;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-secondary) #333;
}

.thumbnail-carousel::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-carousel::-webkit-scrollbar-track {
    background: #333;
}

.thumbnail-carousel::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 4px;
}

.thumbnail {
    flex: 0 0 auto;
    width: 100px;
    height: 80px;
    margin: 0 5px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.9;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid var(--bs-secondary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-controls {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: #333;
}
.feat-img .btn-container {
    position: absolute;
    z-index: 99;
    bottom: 15px;
    right: 15px;
}
.zoom-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 5;
    display: none;
}
.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.zoom-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.zoom-btn:hover {
    background: var(--bs-secondary);
    transform: scale(1.1);
}
._rt-terms {
    color: #575e61;
}
._rt-terms svg{
    fill: #575e61;
}
.car-features-cards img {
    height: 25px;
}
.car-features-cards ._item {
    border: 1px solid #e7e7e7;
    padding: 6px 12px;
    border-radius: 7px;
}
.card {
    border-color: #e7e7e7;
}
.contact-banner{
    background: url(../images/contact-banner.webp) no-repeat;
    background-size: cover;
    min-height: 450px;
    background-position: center;
    position: relative;
}
.legal-banner{
    background: url(../images/legal-banner-bg.webp) no-repeat;
    background-size: cover;
    min-height: 450px;
    background-position: center;
    position: relative;
}
.how-it-works-banner{
    background: url(../images/how-it-works-banner.webp) no-repeat;
    background-size: cover;
    min-height: 450px;
    background-position: center;
    position: relative;
}
.contact-banner h1 span.hd-txt2,.legal-banner h1 span.hd-txt2 {
    font-size: 100px;
    line-height: 100px;
}
.how-it-works-banner h1 span.hd-txt2 {
    font-size: 100px;
    line-height: 100px;
}
.contact-box ._icn svg {
    fill: var(--bs-secondary);
}
._content-how-it-works ._number {
    display: inline-flex;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--bs-secondary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-top: 4px;
}
/*------------Responsive Layout--------------*/
@media(min-width: 991px){
    .flight-deals-section ._featured-deal .card {
        min-height: 682px;
    }
    .most-popular .product-item {
        min-height: 510px;
        position: relative;
    }
    .packages .product-item {
        min-height: 600px;
        background: #fff;
        position: relative;
        border-radius: 30px;
    }
    .most-popular  .product-details .reviews,.packages .product-details .reviews {
	    position: absolute;
	    width: 100%;
	    bottom: 12px;
    }
    .attractions-list-cont .product-item {
        min-height: 375px;
        position: relative;
    }
    .attractions-list-cont .product-item .load-more- {
        position: absolute;
        width: 100%;
        bottom: 15px;
        left: 0;
    }
    .one-day-packages .product-item {
        min-height: 910px;
        position: relative;
    }
    .one-day-packages .product-item .load-more- {
        position: absolute;
        width: 100%;
        bottom: 15px;
        left: 0;
    }
    .two-3-packages .product-item {
        min-height: 720px;
        position: relative;
    }
    .two-3-packages .product-item .load-more- {
        position: absolute;
        width: 100%;
        bottom: 15px;
        left: 0;
    }
    .four-five-packages .product-item {
        min-height: 780px;
        position: relative;
    }
    .four-five-packages .product-item .load-more- {
        position: absolute;
        width: 100%;
        bottom: 15px;
        left: 0;
    }
    .six-seven-day-packages .product-item {
        min-height: 910px;
        position: relative;
    }
    .six-seven-day-packages .product-item .load-more- {
        position: absolute;
        width: 100%;
        bottom: 15px;
        left: 0;
    }
    section.support-contact-section .support-box{
        min-height: 145px;
    }
    .team-member._ceo {
        height: 547px;
        overflow: hidden;
    }
}
@media(max-width: 992px){
    .hero {
	    margin-top: 0;
    }
    .offcanvas{
        background-color: #333;
        color: #fff;
    }
    .offcanvas .nav-link{
        color: #fff;
    }
    .offcanvas-header {
        background: #000;
    }
    .categories-nav ul{
        flex-wrap: wrap;
        padding-left: 0;
        justify-content: center;
    }
    .offcanv-cat-menu {
        background: #000;
        padding: 20px;
        border-radius: 20px;
    }
    /* .categories-nav ul li {
	    width: 100%;
    } */
    .banner-custom-heading1 h1{
        text-align: center;
    }
    .banner-custom-heading1 h1 .hd2{
        font-size: 75px;
        line-height: 80px;
    }
    section.hero.inner-banner.car-rental-banner{
        background-position: center !important;
    }
    .banner-custom-heading1 h1 .hd3{
        font-size: 70px;
        line-height: 80px;
    }
    .feats-list ul li{
        justify-content: center;
    }
    .banner-content .book-btn {
	    text-align: center;
    }
    .banner-content{
        margin-bottom: 40px;
    }
    .banner-content-container{
        padding: 60px 30px;
    }
    .packege-card.active {
        width: 100%;
        background-color: #db6303;
    }
    .packege-card {
	    width: 100%;
    }
    .hotel-form._form .form-group {
        margin-bottom: 20px;
    }
    .hotel-btm-form {
        flex-direction: column;
        gap: 30px;
    }
    .hotel-btm-form .number-of-guests {
        flex-direction: column;
        width: 100%;
    }
    .hotel-btm-form .number-of-guests input[type="number"] {
        width: 100%;
    }
    .step-box {
        margin-bottom: 30px;
    }
    .step-box ._box-img img {
        width: 100%;
    }
    .faqs {
        margin-bottom: 30px;
    }
    .blog-box {
        margin-bottom: 40px;
    }
    .mob-cat-menu {
        padding: 10px 30px;
        margin-bottom: 60px;
    }
    .why-us-box {
        min-height: auto;
    }
    .why-us-box p {
        margin-bottom: 0;
    }
    .car-rental-banner{
        background-position: center;
        height: 600px;
    }
    .car-rental-banner h1 span.hd-txt1{
        font-size: 40px;
    }
    .car-rental-banner h1 span.hd-txt2 {
        font-size: 60px;
    }
    .packege-card-text span {
        display: block;
    }
    .packege-card .packege-card-content ul {
        display: block;
        min-width: 100%;
    }
    .feats-list ul {
        padding-left: 6px;
        list-style: none;
        column-count: 2;
    }
    ._welcome-message ._ceo-img {
        position: relative;
        bottom: 0;
        right: 0;
        text-align: center;
    }
    section.about-welcome-section ._welcome-message{
        padding: 40px;
        text-align: center;
    }
    section.about-welcome-section ._welcome-message h2.h2 {
        font-size: 30px;
        line-height: 30px;
        margin-top: 30px;
    }
    section.about-welcome-section ._welcome-message p {
        font-size: 16px;
    }
    .about-intro{
        padding: 60px 0;
    }
    .about-intro-content {
        text-align: center;
        margin-top: 40px;
    }
    .feat-img{
        margin-bottom: 20px;
    }
    .contact-banner h1 span.hd-txt2,.legal-banenr h1 span.hd-txt2 {
        font-size: 50px;
        line-height: 50px;
    }
    .how-it-works-banner h1 span.hd-txt2 {
        font-size: 50px;
        line-height: 50px;
    }
}
@media(max-width: 768px){
    body{
        padding-bottom: 30px;
    }
    .main-image-container {
        height: 50vh;
    }
    .hotels-list .owl-nav {
        position: relative;
        width: auto;
    }
    .hotels-list .owl-nav .owl-prev {
        position: relative;
        left: 0;
    }
    .hotels-list .owl-nav .owl-next {
        position: relative;
        right: 0;
    }
    .feats-list ul{
        column-count: 1;
    }
    .banner-btm-img {
	    display: none;
    }
    .hero .carousel {
	    margin-bottom: 40px;
    }
    .banner-custom-heading1 h1 .hd3 {
	    font-size: 40px;
	    line-height: 60px;
    }
    .banner-custom-heading1 h1 .hd2 {
	    font-size: 64px;
	    line-height: 65px;
    }
    .hotels-list .owl-nav .owl-next, .packages .owl-nav .owl-next {
        position: absolute;
        right: 0;
        box-shadow: 0 0 12px rgba(0,0,0,0.2);
        border-radius: 100%;
        background: #fff !important;
    }
    .hotels-list .owl-nav .owl-prev, .packages .owl-nav .owl-prev {
        position: absolute;
        left: 0;
        box-shadow: 0 0 12px rgba(0,0,0,0.2);
        border-radius: 100%;
        background: #fff !important;
    }
    .car-rental-banner {
        background-position: center;
        height: 500px;
        padding-top: 40px !important;
    }
    .car-rental-banner h1 span.hd-txt1 {
        font-size: 30px;
    }
    .car-rental-banner h1 span.hd-txt2 {
        font-size: 45px;
    }
    .search-filter {
        flex-direction: column;
        gap: 10px;
    }
    .attractions-banner{
        height: 400px;
    }
    .attractions-banner .container {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        max-width: 100%;
        color: #fff;
    }
    .banner-content {
        margin-bottom: 0;
    }
    .attractions-banner h1 span.hd-txt1{
        font-size: 30px;
        line-height: 32px;
    }
    .attractions-banner h1 span.hd-txt2 {
        font-size: 50px;
        line-height: 50px;
    }
    section.hero.inner-banner{
        position: relative;
    }
    section.hero.inner-banner:after{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0,0,0,.6);
    }
    section.hero.inner-banner .container{
        position: relative;
        z-index: 99;
    }
    .deals-tabs ul.nav.nav-tabs {
        flex-direction: column;
        border-radius: 0;
        display: flex;
    }
    .tab-pane .deals-form{
        border-radius: 0;
    }
    .deals-tabs ul.nav.nav-tabs .nav-link {
        border-bottom: 3px solid #fff;
    }
    .tab-pane .deals-form .form-fields {
        flex-direction: column;
    }
    .section-title .h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .booking-parent-tab > .nav.nav-tabs {
        flex-direction: column;
    }
    .air-booking-tabs .nav.nav-tabs {
        flex-direction: column;
        padding-left: 0;
    }
    .air-booking-tabs .nav.nav-tabs .nav-link{
        width: 100%;
        border-radius: 5px;
    }
    .air-booking-tabs .tab-content {
        margin-top: 20px;
    }
    .attraction-deals-tags .tag-box{
        width: 100%;
    }
}
@media(max-width: 575px){
    .banner-custom-heading1 h1 .hd2 {
	    font-size: 54px;
	    line-height: 55px;
    }
    .banner-custom-heading1 h1 .hd3 {
	    font-size: 30px;
	    line-height: 42px;
    }
    section.cta-section .container{
        padding: 60px 30px;
        border-radius: 0;
        text-align: center;
    }
    .custom-tabs .nav.nav-tabs{
        flex-direction: column;
        padding-left: 0;
    }
    .custom-tabs .nav.nav-tabs .nav-link {
        background: #c0c0c0;
        color: #000;
        display: flex;
        gap: 10px;
        align-items: center;
        min-height: 52px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .car-pricing-info ._txt {
        width: 120px;
    }
    .car-extras {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
            
    .popup-content {
        width: 95%;
    }
    ._offers-bar .offer-btns {
        flex-direction: column;
    }
}