/* ======= Basic style ======= */
html, body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.mx-80 {
	margin-left: 80px;
	margin-right: 80px;
}

body {
	font-family: "Poppins" !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
	color: #676977;
	overflow-x: hidden !important;
}

p {
	font-size: 16px;
	color: #000;
	margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins" !important;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: #000;
}

span, a, a:hover {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style-type: none;
}

/* text field */
input[type="password"]:focus, input[type="email"]:focus, input[type="text"]:focus,
	input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus,
	textarea:focus {
	outline: none;
}

input[type="password"], input[type="email"], input[type="text"], input[type="file"],
	textarea {
	outline: none;
	max-width: 100%;
	margin-bottom: 0px;
	padding: 20px;
	height: auto;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	border-radius: 0px;
	display: block;
	width: 100%;
	line-height: 1.5em;
	font-size: 16px;
	font-weight: 400;
	color: #676977;
}

.loginform .form-signin .form-control {
	border: 1px solid #ddd;
}

.loginform .form-signin .field-loginform-password .field-icon {
	margin-top: -40px;
}

input:focus, textarea:focus {
	border-bottom-width: 1px;
	border-color: #24656f;
}

input[type="submit"], input[type="reset"], input[type="button"], button
	{
	text-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	line-height: 1.75em;
	-webkit-transition: background-color .15s ease-out;
	transition: background-color .15s ease-out;
	background: transparent;
	border: 0px solid transparent;
}

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
	button:hover {
	border: 0px solid transparent;
}

select {
	padding: 10px;
	border-radius: 5px;
}

table, th, tr, td {
	border: 1px solid #f4f5f8;
}

th, tr, td {
	padding: 10px;
}

input[type="radio"], input[type="checkbox"] {
	display: inline;
}

input[type="submit"] {
	font-weight: 400;
	text-transform: uppercase;
	background: #24656f;
	color: #fff;
	padding: 8px 24px;
	margin: 0;
	position: relative;
	font-size: 16px;
	letter-spacing: 2px;
}

/* placeholder */
::-webkit-input-placeholder {
	color: #676977;
	font-size: 16px;
	font-weight: 400;
}

:-moz-placeholder {
	color: #676977;
}

::-moz-placeholder {
	color: #676977;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #676977;
}

.text-light-gray {
	color: #545454 !important;
}

/* ======= Helper style ======= */
.mt-0 {
	margin-top: 0 !important;
}

.mt-15 {
	margin-top: 15px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mt-90 {
	margin-top: 90px !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

/* important */
.o-hidden {
	overflow: hidden;
}

.back-position-center {
	background-position: center;
}

.position-re {
	position: relative;
}

.full-width {
	width: 100%;
}

.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}

.bg-fixed {
	background-attachment: fixed;
}

.pattern {
	background-repeat: repeat;
	background-size: auto;
}

.bold {
	font-weight: 600;
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.js .animate-box {
	opacity: 0;
}

/* background & color */
.bg-navy {
	background: #0f2454;
}

.bg-lightnav {
	background: #f4f5f8;
}

.color-1 {
	color: #fff;
}

.color-2 {
	color: rgba(255, 255, 255, 0.8);
}

/* star-rating  */
.rating {
	margin-bottom: 5px;
	display: inline-flex;
}

.rating .star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.7em;
	margin-right: 0.7em;
	margin-bottom: 2em;
	border-right: 0.3em solid transparent;
	border-bottom: 0.7em solid #fff;
	border-left: 0.3em solid transparent;
	/* Controlls the size of the stars. */
	font-size: 6px;
}

.rating .star:before, .star:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 0.6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: 0.7em solid #fff;
	border-left: 1em solid transparent;
	transform: rotate(-35deg);
}

.rating .star:after {
	transform: rotate(35deg);
}

/* star-rating active */
.rating .star.active {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.8em;
	margin-right: 0.8em;
	margin-bottom: 2em;
	border-right: 0.4em solid transparent;
	border-bottom: 0.8em solid #e4a853;
	border-left: 0.4em solid transparent;
	/* Controlls the size of the stars. */
}

.rating .star.active:before, .star.active:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 0.6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: 0.7em solid #e4a853;
	border-left: 1em solid transparent;
	transform: rotate(-35deg);
}

.rating .star.active:after {
	transform: rotate(35deg);
}

.rating .reviews-count {
	width: auto;
	font-size: 13px;
	color: #fff;
	margin-left: 10px;
	line-height: 1;
}

.rating .reviews-count.color-2 {
	color: #676977;
}

/* ======= Selection style ======= */
::-webkit-selection {
	color: #fff;
	background: #24656f;
}

::-moz-selection {
	color: #fff;
	background: #24656f;
}

::selection {
	color: #fff;
	background: #24656f;
}

/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 20px;
	line-height: 1;
	display: block;
	outline: none;
}

.owl-theme .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 0 3px;
	border-radius: 50%;
	background: #FFDCE4;
	border: 1px solid #FFDCE4;
	display: inline-block;
}

.owl-dots {
	display: flex !important;
	justify-content: center !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span
	{
	background: #24656f;
	border: 1px solid #24656f;
}

/* === owl carousel nav style  === */
.clients .owl-theme .owl-nav, .blog .owl-theme .owl-nav, .testimonials .owl-theme .owl-nav,
	.destination1 .owl-theme .owl-nav, .tours1 .owl-theme .owl-nav {
	position: absolute !important;
	top: -110px;
	bottom: auto !important;
	width: 150px;
	right: 0 !important;
	left: auto !important;
	text-align: end !important;
	transform: none !important;
}

.clients .owl-theme .owl-nav, .blog .owl-theme .owl-nav, .testimonials .owl-theme .owl-nav,
	.destination1 .owl-theme .owl-nav, .tours1 .owl-theme .owl-nav {
	position: relative;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.clients .owl-theme .owl-prev, .blog .owl-theme .owl-prev, .testimonials .owl-theme .owl-prev,
	.destination1 .owl-theme .owl-prev, .tours1 .owl-theme .owl-prev {
	left: 10px !important
}

.clients .owl-theme .owl-next, .blog .owl-theme .owl-next, .testimonials .owl-theme .owl-next,
	.destination1 .owl-theme .owl-next, .tours1 .owl-theme .owl-next {
	right: 10px !important
}

.clients .owl-theme .owl-prev, .clients .owl-theme .owl-next, .blog .owl-theme .owl-prev,
	.blog .owl-theme .owl-next, .testimonials .owl-theme .owl-prev,
	.testimonials .owl-theme .owl-next, .destination1 .owl-theme .owl-prev,
	.tours1 .owl-theme .owl-prev, .tours1 .owl-theme .owl-next {
	color: #fff;
	position: absolute !important;
	top: 50%;
	padding: 0;
	height: 50px;
	width: 50px;
	border-radius: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #0f2454;
	border: 1px solid #0f2454;
	line-height: 0;
	text-align: center;
	font-size: 16px
}

.clients .owl-theme .owl-prev>span, .clients .owl-theme .owl-next>span,
	.blog .owl-theme .owl-prev>span, .blog .owl-theme .owl-next>span,
	.testimonials .owl-theme .owl-prev>span, .testimonials .owl-theme .owl-next>span,
	.destination1 .owl-theme .owl-prev>span, .destination1 .owl-theme .owl-next>span,
	.tours1 .owl-theme .owl-prev>span, .tours1 .owl-theme .owl-next>span {
	position: absolute;
	line-height: 0;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.clients .owl-theme .owl-nav [class*="owl-"], .blog .owl-theme .owl-nav [class*="owl-"],
	.testimonials .owl-theme .owl-nav [class*="owl-"], .destination1 .owl-theme .owl-nav [class*="owl-"],
	.tours1 .owl-theme .owl-nav [class*="owl-"] {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background: #fff;
	color: #B6B6B6;
	font-size: 22px;
	margin-right: 0;
	margin-left: 0;
	cursor: pointer;
	border: 0;
	border-radius: 100%;
	transition: all 0.2s ease-in-out;
	transform: scale(1.0);
}

.clients .owl-theme .owl-nav [class*=owl-]:hover, .blog .owl-theme .owl-nav [class*=owl-]:hover,
	.testimonials .owl-theme .owl-nav [class*=owl-]:hover, .destination1 .owl-theme .owl-nav [class*=owl-]:hover,
	.tours1 .owl-theme .owl-nav [class*=owl-]:hover {
	background: #24656f;
	border: 1px solid #24656f;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.clients .owl-theme .owl-nav, .blog .owl-theme .owl-nav, .testimonials .owl-theme .owl-nav,
		.destination1 .owl-theme .owl-nav, .tours1 .owl-theme .owl-nav {
		display: none;
	}
}

.destination1 {
	overflow: hidden;
}

.bottom-footer-text {
	overflow: hidden;
}

/* ======= Section style ======= */
.section-padding {
	padding: 120px 0;
}

.section-padding2 {
	padding: 0 0 120px 0;
}

.section-padding h6 {
	color: #545454;
	font-size: 18px;
	margin-bottom: 20px;
}

.section-subtitle {
	color: #000;
	font-size: 40px;
	font-weight: bolder;
	line-height: 60px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.section-title {
	font-size: 45px;
	line-height: 1.2em;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #0f2454;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.section-title span {
	color: #24656f;
}

.section-title2 {
	font-size: 32px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #24656f;
	position: relative;
	margin-bottom: 20px;
	line-height: 1.2em;
	text-transform: uppercase;
}

.section-subtitle2 {
	font-size: 16px;
	color: #24656f;
	margin-bottom: 5px;
}

.section-title2 span {
	color: #fff;
}

.section-title i, .section-title span i {
	color: #24656f;
}

/* ======= Navbar style ======= */
.navbar .container {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-scroll .container {
	border: none;
}

.navbar-toggler-icon {
	background-image: none;
}

.navbar .navbar-toggler-icon, .navbar .icon-bar {
	color: #FFF;
}

.navbar .navbar-toggler-icon {
	color: #24656f;
}

.navbar .navbar-nav .nav-link {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	-webkit-transition: all .4s;
	transition: all .4s;
	text-decoration: underline;
	padding: 0 30px;
}

.navbar .navbar-nav .nav-link.nav-color {
	color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
	color: #24656f;
}

.navbar .navbar-nav .active {
	color: #24656f !important;
}

.navbar .navbar-nav .active i {
	color: #24656f;
}

.nav-scroll .navbar-toggler-icon, .nav-scroll .icon-bar {
	color: #24656f;
}

.nav-scroll .navbar-nav .nav-link {
	color: #0f2454;
}

.nav-scroll .navbar-nav .active {
	color: #24656f !important;
}

.nav-scroll .navbar-nav .logo {
	padding: 15px 0;
	color: #fff;
}

.nav-scroll .logo-img {
	width: 140px;
}

.nav-scroll .logo-img {
	margin-bottom: 0px;
}

.nav-scroll .logo-wrapper .logo h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 27px;
	font-weight: 700;
	display: block;
	width: 100%;
	position: relative;
	color: #24656f;
	margin-bottom: 0;
	padding: 23px 0;
}

.nav-scroll .logo-wrapper .logo span {
	display: block;
	font-size: 9px;
	color: #0f2454;
	font-weight: 400;
	letter-spacing: 1px;
	display: block;
	margin-top: 0px;
	line-height: 1.2em;
}

.nav-scroll .logo-wrapper {
	
}

.logo-wrapper {
	float: left;
}

.logo-wrapper .logo h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 27px;
	font-weight: 700;
	display: block;
	width: 100%;
	position: relative;
	color: #fff;
	margin-bottom: 0;
	padding: 23px 0;
}

.logo-wrapper .logo h2 a i {
	color: #fff;
	font-size: 20px;
	vertical-align: super;
}

.logo-wrapper .logo span {
	display: block;
	font-size: 9px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	display: block;
	margin-top: 0px;
	line-height: 1.2em;
}

.logo {
	padding: 0;
}

.logo-img {
	padding: 10px 0;
	width: 140px;
	text-align: center;
}

.dropdown .nav-link i {
	padding-left: 0px;
	font-size: 8px;
	color: rgba(255, 255, 255, 0.5);
}

.nav-scroll .dropdown .nav-link i {
	color: rgba(15, 36, 84, 0.5);
}

.nav-scroll .navbar-nav .active i {
	color: #24656f;
}

.navbar .dropdown-menu .dropdown-item {
	padding: 9px 0;
	font-size: 16px;
	font-weight: 400;
	color: #0f2454;
	position: relative;
	-webkit-transition: all .4s;
	transition: all .4s;
	background-color: transparent;
}

.navbar .dropdown-menu .dropdown-item span {
	display: block;
	cursor: pointer;
}

.navbar .dropdown-menu .dropdown-item i {
	padding: 13px 0 0 5px;
	font-size: 8px;
	float: right;
}

.navbar .dropdown-menu .dropdown:hover>.dropdown-item, .navbar .dropdown-menu .dropdown-item.active,
	.navbar .dropdown-menu .dropdown-item:hover {
	color: #24656f;
}

.navbar .dropdown-toggle::after {
	display: none;
}

.navbar .dropdown-menu {
	box-shadow: 0 16px 50px rgb(0 0 0/ 7%);
}

.navbar .dropdown-menu li {
	border-bottom: 1px solid rgba(15, 36, 84, .03);
}

.navbar .dropdown-menu li:last-child {
	border-bottom: none;
}

.navbar .dropdown-menu .dropdown-menu.float-start {
	top: 0;
	left: auto;
	right: 100%;
}

/* Navbar Media Query */
@media screen and (min-width: 992px) {
	.navbar .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		width: 190px;
		padding: 15px;
		border-radius: 0;
		border: 0;
		background-color: #fff;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	.navbar .dropdown-menu .dropdown-menu {
		left: calc(100% + 5px);
		top: -10px;
		right: auto;
		min-width: 190px;
		transform: translateY(0);
	}
	.navbar .dropdown:hover>.dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media screen and (max-width: 991px) {
	.navbar {
		padding-left: 0px;
		padding-right: 0px;
		background: transparent;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.nav-scroll {
		background: #fff;
	}
	.logo-wrapper {
		/* float: left; */
		padding: 6px 0 6px 6px;
	}
	.nav-scroll .logo-wrapper {
		padding: 21px 15px;
		background-color: transparent;
	}
	.nav-scroll .logo-img {
		width: 140px;
	}
	.navbar .logo {
		text-align: left;
		margin-left: 0px;
	}
	.logo-img {
		margin-bottom: 0px;
		width: 140px;
		padding: 0;
	}
	.navbar button {
		margin-right: 0px;
		outline: none !important;
		background: transparent;
		margin-top: 10px;
		border: none;
	}
	.navbar button:hover {
		background: transparent;
	}
	.navbar button:active, .navbar button:focus, .navbar button:hover {
		background: transparent;
		outline: none;
		color: #24656f !important;
	}
	.navbar .container {
		max-width: 100%;
		padding: 0;
	}
	.navbar .nav-link {
		margin: 0px auto !important;
	}
	.navbar .navbar-nav .nav-link {
		color: #0f2454;
	}
	.nav-scroll .navbar-collapse .nav-link {
		color: #0f2454 !important;
	}
	.nav-scroll .navbar-collapse .active {
		color: #24656f !important;
	}
	.navbar .dropdown-menu .dropdown-item {
		padding: 0 15px;
		font-size: 16px;
		line-height: 40px;
	}
	.navbar .dropdown-menu .dropdown-item.dropdown-toggle {
		font-weight: 400;
	}
	.navbar .dropdown-submenu .dropdown-toggle::after {
		right: 15px;
		font-size: 13px;
	}
	.navbar .dropdown-submenu:hover>.dropdown-toggle::after {
		transform: rotate(0deg);
	}
	.navbar .dropdown-submenu .dropdown-toggle.show::after {
		transform: rotate(90deg);
	}
	.navbar .dropdown-menu {
		border: none;
		padding: 0;
		border-radius: 0;
		margin: 0;
		background: #fff;
		box-shadow: none;
	}
	.navbar .dropdown-submenu .dropdown-menu {
		margin: 0;
		padding: 0 0 0 20px;
	}
	.navbar .dropdown-menu li a {
		padding: 0 15px;
	}
	.navbar .navbar-nav .nav-link {
		padding-right: 0px;
		padding-left: 0px;
	}
	.dropdown .nav-link i {
		color: rgba(15, 36, 84, 0.5);
	}
	.nav-scroll .dropdown .nav-link i {
		color: rgba(15, 36, 84, 0.5);
	}
	.nav-scroll .dropdown .nav-link.active i {
		color: #24656f;
	}
}

@media screen and (max-width: 991px) {
	.navbar .navbar-collapse {
		max-height: 450px;
		overflow: auto;
		background: #fff;
		text-align: left;
		padding: 20px;
		position: relative;
		z-index: 9;
	}
}

.btn-theme {
	height: 50px;
	line-height: 50px;
	background: #24656f;
	padding: 0 35px;
	color: #fff;
	font-weight: 600;
	border-radius: 40px;
	border: 1px solid #24656f;
	text-align: center;
}

.btn-theme:hover {
	color: #24656f;
	background-color: transparent;
	border: 1px solid #24656f;
}

.btn-yellow {
	height: 50px;
	line-height: 50px;
	background: #fab84d;
	padding: 0 35px;
	color: #fff;
	font-weight: 600;
	border-radius: 40px;
	border: 1px solid #fab84d;
	text-align: center;
}

.btn-yellow:hover {
	color: #fab84d;
	background-color: transparent;
	border: 1px solid #fab84d;
}

/* ======= Header style ======= */
.bannersection {
	background: url(../img/banner-bg.png);
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.header {
	min-height: 80vh;
	overflow: hidden;
	padding-top: 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-theme.btn-md {
	height: 42px;
	line-height: 42px;
	padding: 0 25px;
	font-size: 14px;
}

.header .caption h2 {
	font-weight: 400;
	font-size: 30px;
}

.header .caption h1 {
	position: relative;
	margin-bottom: 0;
	font-size: 55px;
	text-transform: capitalize;
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	color: #000;
	font-weight: 700;
	letter-spacing: -1px;
}

.headerslider .owl-stage {
	align-items: center;
	display: flex;
	padding-right: 10px;
}

.header .owl-carousel .owl-stage-outer {
	padding-right: 10px;
}

.header .catname {
	position: absolute;
	bottom: 10px;
	color: #fff;
	left: 10px;
	font-weight: 600;
	z-index: 1;
	display: none;
}

.imgmain::after {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	position: absolute;
	left: 0;
	top: 0;
}

.header .caption p {
	font-size: 16px;
	margin-bottom: 0;
	color: #000;
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	font-weight: 500;
}

.imgmain {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin: 15px 0;
	position: relative;
}

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

.imgmain.col-ist {
	height: 240px;
}

.imgmain.col-2nd {
	height: 232px;
	width: 120px;
}

.imgmain.col-3rd {
	height: 150px;
	width: 150px;
}

.imgmain.col-4th {
	height: 180px;
}

.imgmain.col-5th {
	height: 220px;
}

.imgmain.col-6th {
	height: 155px;
}

/* ======= Dynamic Background video style ======= */
.dynamic-video-wrapper {
	max-width: 100%;
	padding: 0;
	margin: 0;
	max-height: 500px;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.dynamic-video-wrapper video {
	display: flex;
}

.dynamic-video-wrapper .wrap-content {
	position: absolute;
	width: 100%;
	margin: auto;
	z-index: 10;
	text-align: center;
}

.dynamic-video-wrapper .wrap-content p {
	font-size: 16px !important;
	color: #fff;
}

.dynamic-video-wrapper .wrap-content h4, .dynamic-video-wrapper .wrap-content .h4
	{
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.dynamic-video-wrapper .wrap-content h1, .dynamic-video-wrapper .wrap-content .h1
	{
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	line-height: 1.2em;
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	color: #fff;
	font-weight: 600;
}

/* ======= About style ======= */
.teamimg {
	width: 300px;
	border-radius: 20px;
	margin-bottom: 20px !important;
	margin: auto;
	display: block;
}

/* about img */
.appsection {
	background-image: url(../img/banner2.png);
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
}

.about .about-img img:hover {
	transform: scale(0.95);
}

.about .about-img {
	position: relative;
}

/* ======= Tours and Destination 1 style ======= */
.tours1 .container {
	background: url(../img/event.png);
	background-size: cover;
	border-radius: 32px;
}

.tours1 .item .position-re img, .tours-new .item .position-re img {
	height: 320px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	width: 100% !important;
	object-fit: cover;
}

.tours1 .item, .destination1 .item {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: 0;
}

.tours1 .item:hover img, .destination1 .item:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.09, 1.09);
	transform: scale(1.09, 1.09);
	-webkit-filter: brightness(70%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.tours1 .item:hover .con, .destination1 .item:hover .con {
	bottom: 0;
}

.tours1 .item img, .destination1 .item img {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.tours1 .item .category, .listing-wrapper .category, .destination1 .item .category,
	.tours-new .item .category {
	position: absolute;
	top: 35px;
	left: 0;
	z-index: 3;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 5px 8px;
	line-height: 1.5em;
	box-shadow: 0px 0px 35px 0px rgb(0 0 0/ 5%);
	background: #24656f;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.tours1 .item .category a, .destination1 .item .category a {
	color: #fff;
}

.tours1 .item .category:hover, .destination1 .item .category:hover {
	color: #fff;
}

.tours1 .item .con, .destination1 .item .con {
	padding: 20px;
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-align: left;
	z-index: 20;
	height: auto;
	box-sizing: border-box;
	background: -moz-linear-gradient(top, transparent 0, rgba(15, 36, 84, .1)
		2%, rgba(15, 36, 84, .75) 90%);
	background: -webkit-linear-gradient(top, transparent 0, rgba(15, 36, 84, .01)
		2%, rgba(15, 36, 84, .75) 90%);
	background: linear-gradient(to bottom, transparent 0, rgba(15, 36, 84, .01)
		2%, rgba(15, 36, 84, .75) 90%);
}

.tours1 .item .con h6, .tours1 .item .con h6 a, .destination1 .item .con h6,
	.destination1 .item .con h6 a {
	position: relative;
	color: #fff;
	font-size: 13px;
	display: inline;
}

.tours1 .item .con h6 i, .destination1.item .con h6 i {
	font-size: 6px;
	margin-right: 2px;
}

.tours1 .item .con h5, .tours1 .item .con h5 a, .destination1 .item .con h5,
	.destination1 .item .con h5 a {
	position: relative;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-top: 0px;
	margin-bottom: 10px;
}

.tours1 .item .con p, .destination1 .item .con p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 0px;
}

.tours1 .item .con span, .destination1 .item .con span {
	color: #fff;
	font-size: 10px;
}

.tours1 .item .con i, .destination1 .item .con i {
	color: #fff;
}

.tours1 .item .con i:hover, .destination1 .item .con i:hover {
	color: #fff;
}

.tours1 .item .con .butn-light, .destination1 .item .con .butn-light {
	margin-left: 0;
	border-radius: 30px;
	border-color: #676977;
	padding: 11px 30px;
}

.tours1 .item .con .butn-light:hover, .destination1 .item .con .butn-light:hover
	{
	border-color: #24656f;
}

/* line animation */
.tours1 .item .line, .destination1 .item .line {
	text-align: center;
	height: 1px;
	width: 60px;
	background-color: rgba(255, 255, 255, 0.2);
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	margin: auto 0 20px;
}

.tours1 .item:hover .line, .destination1 .item:hover .line {
	width: 100%;
	transition-property: all;
	transition-duration: 0.8s;
	transition-timing-function: ease-in-out;
}

/* facilities */
.tours1 .facilities ul, .destination1 .facilities ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.bottomcard {
	padding: 20px;
	background: #f2f2f2;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	box-shadow: 0px 0px 5px #ebebeb;
	margin-top: -20px;
}

.bottomcard h4 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0px;
	font-weight: 700;
	transition: all .5s;
}

.bottomcard h4:hover {
	color: #24656f;
}

.starline {
	font-size: 14px;
}

.starline img {
	width: inherit !important;
	display: inline !important;
}

.bottomcard p {
	font-size: 14px;
}

.bottomcard h6 {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 500;
}

.destination1 .facilities ul li, .tours1 .facilities ul li {
	color: #000;
	font-size: 16px;
	margin-bottom: 10px;
	display: flex;
}

.destination1 .facilities ul li img, .tours1 .facilities ul li img {
	width: auto !important;
	height: auto !important;
	object-fit: contain;
}

.destination1 .facilities ul li:last-of-type, .tours1 .facilities ul li:last-of-type
	{
	margin-right: 0px;
}

.destination1 .facilities ul li i, .tours1 .facilities ul li i {
	font-size: 14px;
	margin-right: 1px;
}

/* permalink */
.tours1 .item .con .permalink, .destination1 .item .con .permalink {
	font-size: 14px;
	color: #fff;
	height: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display: inline;
}

.tours1 .item .con .permalink a, .destination1 .item .con .permalink a {
	color: #fff;
	text-align: right;
}

.tours1 .item .con .permalink i, .destination1 .item .con .permalink i {
	font-size: 10px;
	text-align: right;
}

.tours1 .item .con .permalink a:hover, .tours1 .item .con .permalink i:hover,
	.destination1 .item .con .permalink a:hover, .destination1 .item .con .permalink i:hover
	{
	color: #24656f;
}

/* country map */
.country {
	padding-top: 0px;
}

.country .section-title2 {
	color: #0f2454;
}

.country .section-subtitle span {
	color: #24656f;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 0px;
	letter-spacing: 3px;
}

.country1 {
	background: url(../img/map1.png) center center no-repeat;
	background-size: contain;
}

.country2 {
	background: url(../img/map2.png) center center no-repeat;
	background-size: contain;
}

.country2 ul {
	display: inline-block;
}

@media ( max-width : 991.98px) {
	.tours2 figure {
		width: auto;
		margin: 0;
	}
	.tours2 .caption {
		position: relative;
		left: 0;
		top: 0;
		width: auto;
		padding: 30px 20px;
		-ms-transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

/* hr style */
hr.border-1 {
	border-top: 1px solid rgba(106, 177, 191, 0.2);
}

hr.border-2 {
	border-top: 1px solid rgba(106, 177, 191, 0.2);
	margin-bottom: 25px;
	margin-top: 10px;
}

/* button link */
.link-btn {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 400;
}

.link-btn i {
	margin-left: 3px;
	font-size: 16px;
	color: #24656f;
}

.link-btn:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #24656f;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.link-btn:hover::before {
	width: 100%
}

/* phone-call button */
.phone-call {
	display: flex;
	align-items: center;
}

.phone-call .icon {
	position: relative;
	top: 3px;
}

.phone-call .icon span {
	font-size: 36px;
	color: #24656f;
}

.phone-call .icon.color-1 span {
	font-size: 36px;
	color: #fff;
}

.phone-call .text {
	margin-left: 15px;
}

.phone-call .text p {
	font-size: 16px;
	margin: 0;
}

.phone-call .text a {
	font-size: 24px;
	color: #24656f;
}

.phone-call .text a.color-1 {
	color: #fff;
	font-weight: 400;
}

/* page list */
.page-list {
	position: relative;
	display: block;
}

.page-list li {
	position: relative;
	display: flex;
	align-items: center;
}

.page-list li+li {
	margin-top: 10px;
}

.page-list-icon {
	display: flex;
	align-items: center;
}

.page-list-icon span {
	font-size: 18px;
	color: #24656f;
}

.page-list-text {
	margin-left: 15px;
}

.page-list-text p {
	font-size: 16px;
	margin: 0;
}

/* tour-list */
.tour-list .wrap {
	background: #0f2454;
	padding: 30px;
}

.tour-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.tour-list ul li {
	color: #676977;
	font-size: 16px;
	padding-bottom: 10px;
}

.tour-list ul li i {
	margin-right: 2px;
	color: #24656f;
	font-size: 16px;
}

/* ======= CountUp Numbers style ======= */
.numbers {
	background-attachment: fixed;
}

.numbers .item img {
	position: absolute;
	width: 50%;
	right: -30%;
	top: 30%;
	z-index: 4;
}

.numbers .item img.tobotm {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	top: 15%;
}

.numbers .item:hover .icon .front {
	-webkit-transform: translateX(-120%);
	transform: translateX(-120%);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.numbers .item:hover .icon .back {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.numbers .item .icon {
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 30px;
	margin-bottom: 10px;
	color: #fff;
	border-radius: 50%;
	border: 7px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.numbers .item .icon span, .numbers .item .icon i {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	line-height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.numbers .item .icon .back {
	-webkit-transform: translateX(120%);
	transform: translateX(120%);
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	color: #fff;
}

.numbers .item h3 {
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 10px;
	font-size: 36px;
}

.numbers .item h6 {
	font-size: 16px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

.numbers .item h6 span {
	font-size: 16px;
	color: #24656f;
	margin-right: 5px;
}

ol.number {
	list-style-type: none;
	counter-reset: item;
	margin-bottom: 20px;
}

ol.number li {
	counter-increment: item;
	margin-bottom: 10px;
}

ol.number li:before {
	margin-right: 10px;
	content: counter(item);
	background: #24656f;
	border-radius: 100%;
	color: #fff;
	width: 26px;
	height: 26px;
	text-align: center;
	display: inline-block;
	font-size: 13px;
	line-height: 27px;
}

/* ======= Clients style ======= */
.clients {
	background: #f4f5f8;
}

.clients .owl-carousel {
	margin: 20px 0;
}

.clients .clients-logo {
	opacity: 1;
	line-height: 0;
}

.clients .clients-logo:hover {
	opacity: 1;
}

.clients img {
	-webkit-filter: none;
	filter: none;
}

.clients img:hover {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* ======= Gallery style ======= */
.gallery-item {
	position: relative;
	padding-top: 20px;
}

.gallery-box {
	overflow: hidden;
	position: relative;
}

.gallery-box .gallery-img {
	position: relative;
	overflow: hidden;
}

.gallery-box .gallery-img:after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0px;
	transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-img>img {
	transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
	border-radius: 0;
}

.gallery-box .gallery-detail {
	opacity: 0;
	color: #FFF;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	overflow: hidden;
	transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-detail h4 {
	font-size: 18px;
}

.gallery-box .gallery-detail p {
	color: rgba(15, 36, 84, 0.4);
	font-size: 16px;
}

.gallery-box .gallery-detail i {
	color: #0f2454;
	padding: 8px;
}

.gallery-box .gallery-detail i:hover {
	color: #0f2454;
}

.gallery-box:hover .gallery-detail {
	top: 50%;
	transform: translate(0, -50%);
	opacity: 1;
}

.gallery-box:hover .gallery-img:after {
	background: rgba(15, 36, 84, 0.2);
}

.gallery-box:hover .gallery-img>img {
	transform: scale(1.05);
}

/* magnific popup custom */
.mfp-figure button {
	border: 0px solid transparent;
}

button.mfp-close, button.mfp-arrow {
	border: 0px solid transparent;
	background: transparent;
}

/* ======= Promo Video style ======= */
/* play button */
.vid-area h5 {
	font-size: 27px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 30px;
}

.play-button {
	position: relative;
	margin: auto;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	z-index: 4;
}

.play-button svg {
	position: absolute;
	width: 100%;
	height: 100%;
}

.circle-fill circle {
	opacity: 1;
	fill: rgba(174, 140, 100, 0.7);
}

.polygon {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 90px;
	font-size: 35px;
	z-index: 2;
}

.play-button svg.circle-fill {
	z-index: 1;
	stroke-dasharray: 322;
	stroke-dashoffset: 322;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.play-button:hover svg.circle-fill {
	stroke-dashoffset: 38.5;
}

.play-button svg.circle-track {
	z-index: 0;
}

.play-button.color {
	color: #24656f;
}

.play-button.color .circle-fill circle {
	fill: #24656f;
}

/* video section */
.video-wrapper {
	min-height: 500px;
}

.video-wrapper .section-title {
	color: #fff;
}

.video-wrapper .section-title span {
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
	opacity: .9;
}

.video-wrapper .vid {
	position: relative;
	z-index: 8;
}

.video-wrapper .vid .vid-butn:hover .icon {
	color: #fff;
}

.video-wrapper .vid .vid-butn:hover .icon:before {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.video-wrapper .vid .vid-butn .icon {
	color: #24656f;
	width: 100px;
	height: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	line-height: 100px;
	text-align: center;
	font-size: 40px;
	position: relative;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	display: inline-block;
}

.video-wrapper .vid .vid-butn .icon:after {
	content: '';
	position: absolute;
	top: 5px;
	bottom: 5px;
	right: 5px;
	left: 5px;
	border: 1px solid #eee;
	border-radius: 50%;
	z-index: -1;
}

.video-wrapper .vid .vid-butn .icon:before {
	content: '';
	position: absolute;
	top: 5px;
	bottom: 5px;
	right: 5px;
	left: 5px;
	background: #fff;
	border-radius: 50%;
	z-index: -1;
	-webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	-o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
	transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}

/* video gallery */
.video-gallery-button {
	position: relative;
	margin: auto;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	z-index: 4;
	margin-left: 15px;
	float: right;
}

.video-gallery-polygon {
	z-index: 2;
	padding-left: 5px;
	display: inline-block;
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: transparent;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	padding: 9px 8px 9px 10px;
	line-height: 0;
}

.video-gallery-polygon:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #24656f;
}

.magnific-custom {
	position: relative;
	margin: auto;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	z-index: 4;
	margin-left: 15px;
	float: right;
}

.video-gallery-icon {
	z-index: 2;
	padding-left: 5px;
	display: inline-block;
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: transparent;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	padding: 9px 8px 9px 10px;
	line-height: 0;
}

.video-gallery-icon:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #24656f;
}

/* ======= Testimonials style ======= */
.testimonials-box {
	position: relative;
	height: 500px;
	width: 100%;
	overflow: hidden;
	border-radius: 0;
}

.testimonials-box img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-top-right-radius: 32px;
	border-top-left-radius: 0;
	border-bottom-right-radius: 32px;
	border-bottom-left-radius: 0;
}

.testimonials .container {
	border-radius: 32px;
	overflow: hidden;
}

.arrowside {
	width: 30px;
	height: 30px;
	background: #ed3b59;
	text-align: center;
	line-height: 30px;
	border-radius: 100%;
	color: #fff;
}

.spancard {
	display: inline-block;
	background: #fff;
	padding: 3px 20px;
	border-radius: 20px;
	color: #24656f;
	font-weight: 600;
	font-size: 12px;
}

.subscribeletter {
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	height: 50px;
}

.subscribeletter>div {
	width: 100%;
}

.subscribeletter input {
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	height: 100%;
}

/* ======= Booking style ======= */
.booking2-wrapper {
	position: relative;
	margin-bottom: 40px;
}

.tour-inner {
	position: relative;
	border-radius: 0;
	/* display: flex; */
	width: 100%;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 0px;
	padding: 15px;
	border-radius: 60px;
}

.form1 {
	padding: 0;
	position: relative;
}

.btn-form1-submit {
	display: block;
	padding: 0;
	border: none;
	margin: 0;
	width: 100%;
	background: #24656f;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	line-height: 64px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.btn-form1-submit i {
	font-size: 13px;
	margin-right: 5px;
}

.btn-form1-submit:hover {
	background: #0f2454;
}

.btn-form1-submit:focus {
	outline: none;
}

.btn-form1-submit:after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	background: inherit;
}

.input1_inner {
	position: relative;
}

.input1_inner:after {
	content: '';
	display: block;
	position: absolute;
	right: 30px;
	top: 23px;
	pointer-events: none;
	content: "\e6b6";
	font-family: "themify";
	font-size: 16px;
	color: #24656f;
	line-height: 1;
}

.input1_inner input {
	display: block;
	width: 100%;
	font-size: 16px;
	color: #676977;
	padding: 20px 40px 20px 20px;
	background: #fff;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.input1_inner input::placeholder {
	font-size: 16px;
	color: #676977 !important;
}

.input1_inner input:focus {
	outline: none;
	box-shadow: none;
	background: #fff;
	color: #0f2454 !important;
}

.input2_inner {
	position: relative;
	position: relative;
}

.input2_inner input {
	display: block;
	width: 100%;
	font-size: 16px;
	color: #000;
	padding: 0 15px;
	background: #fff;
	border: none;
	box-shadow: none;
	border-radius: 0;
	height: 50px;
	border-radius: 30px;
	border: 1px solid #E9E9E9;
	line-height: 50px;
}

.input2_inner input::placeholder {
	font-size: 16px;
	color: #676977 !important;
}

.input2_inner input:focus {
	outline: none;
	box-shadow: none;
	background: #fff;
	color: #0f2454 !important;
}

.select1_wrapper {
	margin-bottom: 0;
}

.select1_inner {
	position: relative;
}

.select1_inner::after {
	content: '';
	display: block;
	position: absolute;
	right: 15px;
	top: 20px;
	pointer-events: none;
	content: "\e64b";
	font-family: "themify";
	font-size: 12px;
	color: #B6B6B6;
	line-height: 1;
}

.customselect {
	height: 50px;
	border-radius: 40px;
	border: 1px solid #E9E9E9;
	padding: 0 15px;
	box-shadow: none !important;
	outline: none !important;
}

.customselect:focus {
	border-color: #ed2f5894;
}

/* responsive */
@media ( max-width : 1259.98px) {
	.booking2-wrapper {
		margin-bottom: 30px;
	}
}

@media ( max-width : 991.98px) {
	.booking2-wrapper {
		margin-bottom: 40px;
	}
	.booking-wrapper {
		position: relative;
		bottom: auto;
		padding: 30px 0;
	}
}

@media ( max-width : 767.98px) {
	.btn-form1-submit:after {
		background: none;
	}
}

/* booking form */
.booking-box {
	position: relative;
	background: rgba(255, 255, 255, 0.3);
	padding: 60px 45px;
	margin-bottom: -75px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.booking-box .head-box h6 {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.booking-box .head-box h4 {
	font-size: 27px;
	font-weight: 400;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 15px;
}

.booking-box .head-box h4 span {
	color: #fff;
}

@media screen and (max-width: 991px) {
	.booking-box {
		margin-bottom: 90px;
		padding: 35px 20px;
	}
}

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

/* ======= Accordion Box (for Faqs) style ======= */
.accordion-box {
	position: relative;
	padding: 0;
}

.accordion-box .block {
	position: relative;
	background: #f4f5f8;
	border-radius: 0px;
	overflow: hidden;
	margin-bottom: 15px;
}

.accordion-box .block.active-block {
	background-color: #f4f5f8;
}

.accordion-box .block:last-child {
	margin-bottom: 0;
}

.accordion-box .block .acc-btn {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
	padding: 20px 30px;
	padding-right: 60px;
	color: #0f2454;
	transition: all 500ms ease;
	font-family: 'Poppins', sans-serif;
}

.accordion-box .block .acc-btn .count {
	color: #24656f;
	padding-right: 3px;
}

.accordion-box .block .acc-btn:before {
	position: absolute;
	right: 35px;
	top: 20px;
	height: 30px;
	font-size: 16px;
	font-weight: normal;
	color: #24656f;
	line-height: 30px;
	content: "\e61a";
	font-family: "Themify";
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
	background-color: #f4f5f8;
	color: #24656f;
}

.accordion-box .block .acc-btn.active:before {
	color: "Themify";
	content: "\e622";
}

.accordion-box .block .acc-content {
	position: relative;
	display: none;
}

.accordion-box .block .content {
	position: relative;
	padding: 0px 30px 30px;
	background-color: #f4f5f8;
	color: #676977;
}

.accordion-box .block .acc-content.current {
	display: block;
}

.accordion-box .block .content .text {
	display: block;
	position: relative;
	top: 0px;
	display: block;
}

/* ======= Blog style ======= */
.blogbannerimg {
	position: absolute;
	width: 100%;
	height: 500px;
	border-top-right-radius: 32px;
	border-top-left-radius: 32px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	overflow: hidden;
	/*z-index: -1;*/
}

.blog .item, .blog .swiper-slide {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.blog .swiper-slide {
	border-radius: 0 !important;
}

.blog .section-title {
	color: #fff;
}

.blog .item:hover img, .blog .swiper-slide:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.09, 1.09);
	transform: scale(1.09, 1.09);
	-webkit-filter: brightness(75%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.blog .item:hover .con, .blog .swiper-slide:hover .con {
	bottom: 0;
}

.blog .item img, .blog .swiper-slide img {
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-filter: brightness(100%);
	height: 350px;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	object-fit: cover;
	width: 100% !important;
}

.blog .item .con, .blog .swiper-slide .con {
	padding: 20px;
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-align: left;
	z-index: 20;
	height: auto;
	box-sizing: border-box;
	background: linear-gradient(top, transparent 0, rgba(15, 36, 84, .0) 2%,
		rgba(15, 36, 84, .75) 90%);
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.blog .item .con .category, .blog .swiper-slide .con .category {
	text-transform: capitalize;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 15px;
	display: block;
}

.blog .item .con .category a, .blog .swiper-slide .con .category a {
	position: relative;
	color: #fff;
}

.blog .item .con .category a:last-child, .blog .swiper-slide .con .category a:last-child
	{
	margin-right: 0;
}

.blog .item .con .category a:last-child:after, .blog .swiper-slide .con .category a:last-child:after
	{
	display: none;
}

.blog .item::after, .blog .swiper-slide::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
	top: 0;
}

.blog .item .con h5, .blog .swiper-slide .con h5, .blog .swiper-slide .con h5 a,
	.blog .item .con h5 a {
	color: #fff;
	font-size: 20px;
	margin-bottom: 0px;
	font-weight: 600;
	line-height: 1.5em;
}

.blog .item .con h5:hover, .blog .swiper-slide .con h5:hover, .blog .swiper-slide .con h5 a:hover .blog .item .con h5 a:hover
	{
	color: #fff;
}

.blog .item .con p, .blog .swiper-slide .con p {
	color: #fff;
	font-size: 17px;
}

.blog .item .con i, .blog .swiper-slide .con i {
	color: #fff;
	font-size: 20px;
}

/* ======= Blog 2 style ======= */
.blog2 .item {
	margin-bottom: 30px;
}

.blog2 .post-img {
	position: relative;
	overflow: hidden;
}

.blog2 .post-img:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.blog2 .post-img a {
	display: block;
}

.blog2 .post-img img {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.blog2 .post-img .date {
	display: inline-block;
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
	padding: 12px 12px;
	text-align: center;
	background: #24656f;
}

.blog2 .post-img .date span {
	font-family: 'Poppins', sans-serif;
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	font-weight: 500;
	line-height: 1.5em;
}

.blog2 .post-img .date i {
	display: block;
	font-size: 20px;
	font-style: normal;
	color: #fff;
	font-weight: 600;
}

.blog2 .post-cont {
	padding: 30px 0;
}

.blog2 .post-cont .tag {
	display: block;
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 2px;
	color: #24656f;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.blog2 .post-cont h5 {
	font-size: 30px;
}

.blog2 .post-cont h5 a {
	color: #0f2454;
}

.blog2 .post-cont h5 a:hover {
	color: #0f2454;
}

.blog2 .post-cont .date {
	margin-top: 0px;
	font-size: 13px;
	text-align: right;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.blog2 .post-cont .date a {
	color: #24656f;
}

.blog2 .post-cont i {
	color: #ccc;
	margin: 0 10px;
	font-size: 13px;
}

/* blog sidebar */
.blog2-sidebar .widget {
	background: #f4f5f8;
	padding: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.blog2-sidebar .widget ul {
	margin-bottom: 0;
	padding: 0;
}

.blog2-sidebar .widget ul li {
	margin-bottom: 15px;
	color: #676977;
	font-size: 16px;
	line-height: 1.5em;
}

.blog2-sidebar .widget ul li a {
	color: #676977;
}

.blog2-sidebar .widget ul li a.active {
	color: #24656f;
}

.blog2-sidebar .widget ul li a:hover {
	color: #24656f;
}

.blog2-sidebar .widget ul li:last-child {
	margin-bottom: 0;
}

.blog2-sidebar .widget ul li i {
	font-size: 9px;
	margin-right: 10px;
}

.blog2-sidebar .widget .recent li {
	display: block;
	overflow: hidden;
}

.blog2-sidebar .widget .recent .thum {
	width: 90px;
	overflow: hidden;
	float: left;
}

.blog2-sidebar .widget .recent a {
	display: block;
	margin-left: 105px;
}

.blog2-sidebar .widget-title {
	margin-bottom: 20px;
}

.blog2-sidebar .widget-title h6 {
	padding-bottom: 5px;
	border-bottom: 1px solid #e6eaf6;
	font-size: 20px;
	line-height: 1.75em;
	margin-bottom: 15px;
	color: #0f2454;
}

.blog2-sidebar .search form {
	position: relative;
}

.blog2-sidebar .search form input {
	width: 100%;
	padding: 10px;
	border: 0;
	background: #fff;
	margin-bottom: 0;
}

.blog2-sidebar .search form button {
	position: absolute;
	right: 0;
	top: 0;
	background-color: transparent;
	color: #0f2454;
	border: 0;
	padding: 10px;
	cursor: pointer;
}

.blog2-sidebar .tags li {
	margin: 3px !important;
	padding: 8px 20px;
	background-color: #fff;
	border: 1px solid #fff;
	color: #676977 !important;
	float: left;
}

.blog2-sidebar ul.tags li a {
	font-size: 16px;
	color: #676977;
}

.blog2-sidebar ul.tags li:hover, .blog2-sidebar ul.tags li a:hover {
	background-color: #24656f;
	color: #fff;
}

/* pagination */
.blog-pagination-wrap {
	padding: 0;
	margin: 0;
	text-align: center;
}

.blog-pagination-wrap li {
	display: inline-block;
	margin: 0 5px;
}

.blog-pagination-wrap li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 37px;
	text-align: center;
	color: #676977;
	font-weight: 400;
	background: #fff;
	font-size: 16px;
	border-radius: 100%;
	border: 1px solid #f4f5f8;
}

.blog-pagination-wrap li a i {
	font-size: 11px;
}

.blog-pagination-wrap li a:hover {
	opacity: 1;
	text-decoration: none;
	background: #24656f;
	border: 1px solid #24656f;
	color: #fff;
}

.blog-pagination-wrap li a.active {
	background-color: #24656f;
	border: 1px solid #24656f;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.blog-pagination-wrap {
		padding: 0;
		margin: 0;
		text-align: center;
	}
}

/* ======= Post style ======= */
.blog-post-section {
	padding-top: 120px;
}

/* Post Comment */
.comments-area {
	padding: 30px 0;
}

.item-form {
	background: #f4f5f8;
	padding: 45px 25px;
}

.comments-area .comments-title {
	font-size: 24px;
	color: #0f2454;
	line-height: 1.2em;
	font-weight: 600;
}

ol.comment-list {
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
}

ol.comment-list li.comment {
	position: relative;
	padding: 0;
}

ol.comment-list li.comment .comment-body {
	position: relative;
	padding: 20px 30px 20px 90px;
	margin-left: 40px;
	color: red;
	position: relative;
}

ol.comment-list li.comment .comment-author {
	display: block;
	margin-bottom: 0px;
}

ol.comment-list li.comment .comment-author .avatar {
	position: absolute;
	top: 20px;
	left: -40px;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	background-color: #f4f5f8;
}

ol.comment-list li.comment .comment-author .name {
	display: inline-block;
	font-size: 18px;
	color: #0f2454;
	line-height: 1.2em;
	font-weight: 600;
	margin-bottom: 0;
}

ol.comment-list li.comment .comment-author .says {
	display: none;
	color: #676977;
}

ol.comment-list li.comment .comment-meta {
	color: #676977;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
}

ol.comment-list li.comment .comment-meta a {
	color: #24656f;
}

ol.comment-list li.comment .comment-meta:before, ol.comment-list li.comment .reply a:before
	{
	font-family: "FontAwesome";
	font-size: 16px;
	vertical-align: top;
}

ol.comment-list li.comment p {
	font-size: 16px;
	margin: 0 0 15px;
	color: #676977;
}

ol.comment-list li.comment .reply a {
	position: absolute;
	top: 50px;
	right: 30px;
	margin-top: -5px;
	font-size: 14px;
	color: #676977;
}

ol.comment-list li.comment .reply a:hover {
	color: #24656f
}

ol.comment-list li .children {
	list-style-type: none;
	margin-left: 80px;
}

ol.comment-list li .children li {
	padding: 0;
}

@media only screen and (max-width: 767px) {
	.comments-area .padding-30 {
		padding: 15px;
	}
	ol.comment-list li.comment .comment-body {
		margin-bottom: 30px;
		margin-left: 30px;
	}
	ol.comment-list li.comment .comment-author .avatar {
		left: -35px;
		height: 70px;
		width: 70px;
	}
	ol.comment-list li .children {
		margin-left: 20px;
	}
	ol.comment-list li.comment .reply a {
		position: static;
	}
}

@media only screen and (max-width: 480px) {
	ol.comment-list li.comment .comment-body {
		margin-left: 26px;
	}
	ol.comment-list li.comment .comment-author .avatar {
		left: -15px;
		top: 12px;
		width: 60px;
		height: 60px;
	}
	ol.comment-list li.comment .comment-body {
		padding-left: 55px;
	}
}

/* ======= Contact style ======= */
.contact h3 {
	font-size: 27px;
	color: #0f2454;
}

.map {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* ======= Buttons style ======= */
/* dark */
.butn-dark {
	position: relative;
	line-height: 1.2em;
	padding-top: 13px;
	padding-bottom: 13px;
}

.butn-dark a {
	font-size: 16px;
	font-weight: 400;
	background: #24656f;
	color: #fff;
	padding: 14px 25px;
	margin: 0;
	position: relative;
}

.butn-dark a:after {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 100%;
	z-index: 1;
	background: #1288a2;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.butn-dark a span {
	position: relative;
	z-index: 2;
}

.butn-dark a span i {
	font-size: 10px;
	margin-left: 3px;
}

.butn-dark a:hover:after {
	width: 100%;
	left: 0;
	-webkit-transition: width 0.3s ease;
	transition: width 0.3s ease;
}

.butn-dark a:hover span {
	color: #fff;
}

/* go home */
.go-back {
	margin-top: 45px;
}

.go-back a {
	color: #fff;
	display: inline-block;
	font-size: 16px;
}

.go-back a:hover {
	color: #24656f;
}

.go-back a span {
	transition: all .5s;
}

.go-back a span i {
	color: #fff;
	font-size: 13px;
}

.go-back a:hover span {
	padding-right: 15px;
}

/* ======= Footer style ======= */
.footer {
	background: #000;
}

.footer-logo {
	width: 160px;
	margin-bottom: 15px;
}

.footer .widget .widget-title {
	font-size: 20px;
	display: inline-block;
	position: relative;
	color: #fff;
}

/* footer icon */
.icon-footer {
	color: #fff;
	font-size: 25px;
}

.icon-footer i {
	width: 100%;
	text-align: center;
}

/* footer link */
.links.dark {
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.1);
	background-color: #0f2454;
	box-shadow: none;
	border-radius: 0px;
}

.links.dark.footer-contact-links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 45px;
	padding: 20px 20px 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer-contact-links-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1032px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-contact-link-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
}

.image-wrapper.footer-contact-link-icon {
	margin-right: 22px;
}

.footer-contact-link-wrapper h6 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 0px;
}

.footer-contact-link-wrapper p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	margin-bottom: 0px;
}

/* second footer */
.second-footer .widget-area .widget {
	padding: 45px 0;
}

.second-footer .widget-area .widget p {
	color: rgba(255, 255, 255, 0.8);
}

/* usefull links */
.footer .usful-links ul {
	margin: 0;
	padding: 0;
}

.footer .usful-links ul li {
	margin-bottom: 5px;
}

.footer .usful-links ul li:hover {
	color: #24656f;
}

.footer .usful-links ul li i {
	font-size: 7px;
	margin-right: 3px;
}

.footer .usful-links ul li a {
	color: #FFFFFF;
	position: relative;
	padding-left: 0px;
	margin-bottom: 5px;
	display: block;
}

.footer .usful-links ul li a:hover {
	color: #24656f;
}

/* bottom footer */
.copyright {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #424242;
}

.copyright p {
	color: rgba(255, 255, 255, 1);
}

.copyright p a {
	color: rgba(255, 255, 255, 1);
	font-weight: 600;
}

.copyright p a:hover {
	color: #fff;
}

.copyright p span {
	color: rgba(255, 255, 255, 0.01);
	padding: 0 5px;
}

/* social icons */
.social-icons li {
	display: inline-block;
	border: none;
	z-index: 1;
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #fab84d;
	margin-right: 5px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	border-radius: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons li a {
	display: block;
	text-align: center;
	color: #fff;
}

.footer .social-icons li>a {
	font-size: 14px;
	-o-transition: all .4s;
	transition: all .4s;
}

.social-icons li a:hover {
	background: #fff;
	color: #fab84d;
	border-radius: 100%;
}

.social-icons li:hover {
	border-color: #fff !important;
}

/* newsletter */
.widget-newsletter {
	position: relative;
}

.widget-newsletter input {
	height: 60px;
	width: 100%;
	border: none;
	background: #fff;
	font-size: 16px;
	color: #676977;
	outline: none;
	padding: 0 90px 0 20px;
}

.widget-newsletter button {
	height: 50px;
	border: none;
	background: #24656f;
	font-size: 16px;
	color: #fff;
	outline: none;
	padding: 0 25px;
	cursor: pointer;
	display: inline-block;
	position: absolute;
	top: 5px;
	right: 5px;
}

.widget-newsletter button:hover {
	background: #1288a2;
}

@media screen and (max-width: 767px) {
	.footer-contact-links-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.footer-contact-links-divider {
		width: auto;
		min-height: 1px;
		margin: 20px 0px;
	}
}

/* ======= toTop Button style ======= */
.progress-wrap {
	position: fixed;
	bottom: 30px;
	right: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	-webkit-box-shadow: inset 0 0 0 1px transparent;
	box-shadow: inset 0 0 0 1px transparent;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	font-family: 'themify';
	content: '\e648';
	text-align: center;
	line-height: 50px;
	font-size: 13px;
	font-weight: normal;
	color: transparent;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: transparent;
	stroke-width: 3;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.progress-wrap {
	-webkit-box-shadow: inset 0 0 0 1px transparent;
	box-shadow: inset 0 0 0 1px transparent;
}

.progress-wrap::after {
	color: #24656f;
}

.progress-wrap svg.progress-circle path {
	stroke: #24656f;
}

/* ======= Responsive style ======= */
@media screen and (max-width: 991px) {
	.bg-fixed {
		background-attachment: scroll !important;
	}
	.header {
		background-attachment: scroll !important;
		background-position: 50% 0% !important;
	}
	.header .caption h1 {
		font-size: 40px;
	}
}

@media screen and (max-width: 767px) {
	.header .caption h1 {
		font-size: 28px;
		margin-bottom: 15px;
		letter-spacing: 1px;
		line-height: 1.2em;
	}
	.header .caption h4 {
		font-size: 13px;
		line-height: 1.75em;
	}
	.header .caption p {
		font-size: 16px;
		margin-right: 10px;
	}
	.about #circle {
		display: none;
	}
	.dynamic-video-wrapper .wrap-content h1, .dynamic-video-wrapper .wrap-content .h1
		{
		font-size: 32px;
	}
	.dynamic-video-wrapper .wrap-content h4, .dynamic-video-wrapper .wrap-content .h4
		{
		font-size: 14px;
	}
	.numbers .item img {
		display: none;
	}
	.portfolio .filtering span {
		margin-bottom: 10px;
	}
	.blog .item .con h5, .blog .item .con h5 a {
		font-size: 20px;
	}
	.post-comment-section h3 span {
		margin-left: 0px;
	}
}

.anchormain {
	color: #24656f;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.price {
	color: #24656f;
	font-weight: 700;
}

.imagead {
	height: 400px;
	border-radius: 30px !important;
	overflow: hidden;
}

.imagead img {
	height: 100%;
	width: 100% !important;
	object-fit: cover;
}

/* 
.tax-item {
	padding: 40px 15px 40px 15px;
	position: relative;
	border-radius: 16px;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
	background-image: url("../img/h1_activity-6.png");
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-size: 100% auto;
} */
.link-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}

.thumbnail-tax img {
	width: 130px;
	margin-bottom: 15px;
	height: auto !important;
}

.thumbnail-tax {
	display: flex;
	justify-content: center;
}

.content-tax {
	text-align: center;
}

.sub-title {
	font-size: 15px;
	font-weight: 700;
	color: #000;
}

/* header search css start */
.header-search {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 100px;
	padding: 5px 15px;
	margin-left: 50px;
}

.header-search input {
	padding: 3px 5px;
}

.header-search .header-select {
	width: 35%;
	position: relative;
}

.header-search .header-select:before {
	content: "";
	background: #ccc;
	width: 2px;
	height: 100%;
	position: absolute;
	left: 109%;
}

.form-check-input:checked {
	background-color: #24656f;
	border-color: #24656f;
}

.header-select input.form-check-input {
	height: 20px;
	width: 20px !important;
	display: inline-block !important;
}

.header-select input {
	width: 100%;
	text-align: start;
	color: #676977;
	text-transform: capitalize;
	position: relative;
	font-size: 14px;
}

.header-select .arrow-icon {
	position: absolute;
	top: 3px;
	right: 0;
	cursor: pointer;
	z-index: -1;
}

.header-search .header-input {
	width: 65%;
}

.header-search .header-input input {
	background-color: transparent !important;
	color: #676977;
	font-size: 14px;
}

.header-search .header-input input:focus {
	box-shadow: none;
}

.header-search .header-input input::placeholder {
	text-transform: capitalize;
}

.header-search .header-input .search-icon {
	position: absolute;
	top: -1px;
	right: 15px;
	cursor: pointer;
}

.header-right button {
	font-size: 14px;
}

.header-search .header-input .search-icon svg {
	fill: #676977;
}

.header-search .form-select {
	box-shadow: none !important;
	color: #676977;
	text-transform: capitalize;
}

.header-right button {
	text-transform: capitalize;
}

.city-modal .form-select {
	border-color: #ccc;
	border-radius: 50px;
	padding: 15px;
	text-transform: capitalize;
}

.city-modal .form-select:focus {
	box-shadow: none;
}

#form1 {
	width: 800px;
	background: #fff;
	position: absolute;
	top: 54px;
	max-height: 800px;  /* or any height you prefer */
  	overflow-y: auto;   /* vertical scroll if content exceeds max height */
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 1001;
}

#form1 .form-select {
	border: 1px solid #ccc;
	padding: 0 15px;
	border-radius: 50px;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
}

.city-modal input {
	border: 1px solid #eee;
}

.pac-container {
	z-index: 1060;
}

/* header search css end */

/**New Css**/
.header-inr {
	position: static;
}

a {
	text-decoration: none !important;
}

ul {
	padding-left: 0;
}

.page-title-area {
	display: flex;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	padding: 30px 0;
	z-index: 999;
}

/*---.page-title-area::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000000a3;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
---*/
.page-title-area.withoutbanner::before {
	content: none !important;
}

.trail-items .trail-item {
	color: #fff;
}

.trail-items .trail-item a:hover {
	text-decoration: underline !important;
}

.page-title-wrapper {
	position: relative;
}

.page-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.277;
	color: #24656f;
}

.about-img img {
	width: 100%;
}

.site-title-tagline {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 17px;
	font-weight: 700;
	color: #24656f;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.about-list li {
	position: relative;
	margin-top: 16px;
	font-weight: 400;
	color: #000;
	display: flex;
	align-items: center;
}

.about-list li i {
	margin-right: 5px;
	color: #24656f;
}

.team-item {
	padding: 15px;
	text-align: center;
	position: relative;
	background: #fff;
	border-radius: 15px;
	transition: all .5s ease-in-out;;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
}

.team-img img {
	border-radius: 15px;
	margin-top: -50px;
}

.team-social {
	position: absolute;
	margin-bottom: 10px;
	text-align: center;
	top: 20px;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all .5s ease-in-out;
}

.team-social a {
	display: block;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 10px;
	border-radius: 50px;
	background: #24656f;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
}

.team-item:hover .team-social {
	opacity: 1;
	right: 30px;
}

.team-item:hover {
	transform: translateY(-10px);
}

.team-img img {
	border-radius: 15px;
	margin-top: -50px;
	width: 100%;
}

.team-content {
	padding: 10px 0 5px;
}

.team-bio h5 {
	font-size: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.team-bio span {
	font-size: 16px;
	font-weight: 500;
	color: #7d7d7d;
	text-transform: capitalize;
}

.team-bio h5 a {
	font-size: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: capitalize;
	text-decoration: none;
	color: #24656f;
	font-weight: 700;
}

/* .about-img {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 37px rgba(8, 21, 66, 0.05);
	border: 2px solid #fff;
} */
.aboutimg img {
	width: 90%;
	margin: auto;
	display: block;
}

.team-area {
	background: #f4f4f4;
}

/****Contact Us Pages Start****/
.contact-info-icon i {
	font-size: 35px;
	color: #fff;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50px;
	background: #24656f;
}

.contact-info h5 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #000;
}

.contact-info:hover {
	transform: translateY(-8px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	padding: 30px 20px;
	position: relative;
	margin-bottom: 25px;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
	transition: all .5s ease-in-out;
	border: 1px solid #ddd;
}

.contact-info-content p a {
	color: #000;
}

.contact-wrapper {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0/ 5%);
}

.contact-img {
	height: 520px !important;
}

.contact-img img {
	width: 100%;
	height: 100%;
}

.contact-form {
	padding: 20px 0;
}

.contact-form-header h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}

.contact-form-header p {
	color: #555;
}

.contact-form .form-control {
	height: 45px;
	border-radius: 4px;
	border-color: #eee;
}

.contact-form textarea.form-control {
	height: 130px !important;
	border-radius: 4px;
}

.contact-form-header {
	margin-bottom: 30px;
}

.contact-form-header p {
	margin-bottom: 0;
	line-height: 28px;
}

#contact-form .form-control {
	border: 1px solid #ddddddd6;
	padding: 15px;
	border-radius: 10px;
	color: #000;
}

#contact-form textarea.form-control {
	border: 1px solid #ddddddd6;
	padding: 15px;
	border-radius: 10px;
}

/****Contact Us Pages End****/
#myTab2 {
	width: fit-content;
	padding: 15px 15px 0 15px;
	background: #24656f;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	box-shadow: 0px 5px 5px #24656f5e;
}

.searchcard .nav-tabs .nav-link {
	color: #fff !important;
	background-color: #24656f !important;
	border-color: #24656f;
	min-width: 100px;
	padding: 0 10px 10px;
	font-weight: 600;
	border-bottom: 3px solid transparent;
}

#myTabContent2 {
	background: #24656f;
	border: 0;
	border-radius: 16px;
	box-shadow: 0px 5px 5px #24656f5e;
}

#myTabContent2 .btn-theme {
	border-radius: 10px;
	margin-top: 28px !important;
}

.searchcard .nav-tabs .nav-link.active {
	color: #fab84d !important;
	border-bottom: 3px solid #fab84d !important;
	min-width: 100px;
}

.spr-review-profile {
	width: 80px;
	margin-right: 20px;
	height: 80px;
	border-radius: 100%;
	overflow: hidden;
}

.spr-review-profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spr-reviews .spr-review:not(:last-of-type) {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.spr-reviews .spr-review {
	padding: 20px;
}

.modal-header {
	background: #fff;
	color: #000;
	padding: 20px 20px;
	border: 0;
}

.modal-body {
	padding: 30px;
}

.morecate-bottom {
	display: block;
	text-align: center;
	border-top: 1px solid #efefef;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #2b2f4c;
}

.morecate-bottom a {
	display: block;
	text-align: center;
	border: 1px solid #3aa3cd;
	padding: 7px 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background: #3aa3cd;
	margin: auto;
	width: 130px;
}

.modal-header h4 {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	color: #000;
}

textarea.form-control {
	min-height: 130px;
}

.avg-rating .avg-mark {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 0;
	letter-spacing: -.05em
}

.avg-rating .text-rating {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0
}

.ratings-list .progress {
	margin: 0 20px;
	height: 10px;
	background-color: #eee;
	width: 100%
}

.spr-header {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #ddd
}

.spr-review-profile {
	width: 80px;
	margin-right: 20px
}

.spr-review-profile img {
	border-radius: 100%
}

.product-review-form {
	padding: 20px;
	background-color: #f5f5f5
}

.spr-reviews .review-inner {
	max-height: 500px;
	overflow-y: auto
}

.spr-reviews .spr-review:not(:last-of-type) {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px
}

.spr-review-byline {
	opacity: .7;
	display: block;
	margin: 0
}

.fa.fa-star, .fa-star-half {
	color: gold;
}

form .inner_box .field-inner.child2 .form-control {
	border-radius: 0px 4px 4px 0px !important;
	padding-right: 15px !important;
}

form .inner_box {
	display: inline-flex;
	width: 100%;
	position: relative;
}

.inner_box .form-group {
	width: 50%;
}

form .inner_box .form-control::placeholder {
	color: #808080 !important;
}

.arrow_wrp img {
	width: 20px;
}

form .inner_box .field-inner.child2 .c_name {
	padding: 0px 0 0 15px;
	border-radius: 0 4px 0 0;
}

.section-inner {
	border-radius: 32px;
	border: 1px solid #ddd;
}

.icon-box {
	background: #24656f;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: auto;
	line-height: 50px;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

.cardhow h3 {
	font-size: 21px;
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 700;
}

.inner_box .icon {
	display: flex;
	align-items: center;
	padding-left: 5px;
}

.inner_box .icon svg {
	width: 15px;
	fill: #fab84d;
}

.inner_box .form-control {
	border: 0 !important;
	border-radius: 0 !important;
	background-clip: unset;
	height: 50px;
	min-height: 50px !important;
	padding: 0px 30px 0 0 !important;
	font-size: 13px !important;
	color: #808080 !important;
	font-weight: 500 !important;
	box-shadow: none !important;
}

form .inner_box .field-inner.child1::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #D9D9D9;
	top: 0;
	right: 8px;
}

form .inner_box .form-group .dropdown_passenger_area .dropdown-toggle {
	border: 0 !important;
	border-radius: 4px !important;
	background-clip: unset;
	height: 32px;
	padding: 0px 0 5px 30px;
	color: #0878BA;
	font-weight: 500;
	font-size: 13px;
	box-shadow: none;
}

form .inner_box .form-group .dropdown_passenger_area .dropdown-toggle::before
	{
	display: none;
}

form .inner_box .field-inner {
	height: 50px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}

form .field-inner .c_name {
	display: flex;
	padding: 0;
	gap: 5px;
	background: #fff;
}

form .field-inner h6 {
	font-size: 18px;
	line-height: 26px;
	margin: 0;
	font-weight: 700;
	color: #000;
}

form .field-inner .f_date_month h6 {
	font-size: 18px;
	line-height: 28px;
	margin: 0;
	font-weight: 700;
	color: #000;
	display: inline;
}

form .field-inner .f_date_month span {
	font-size: 13px;
	line-height: 24px;
	font-weight: 500;
}

form .field-inner h6 span {
	font-size: 13px;
	line-height: normal;
	font-weight: 500;
}

form .cancel-btn {
	position: absolute;
	right: 3px;
	top: 25px;
}

form .inner_box .arrow_wrp {
	position: absolute;
	top: 48%;
	z-index: 2;
	left: 49%;
	right: unset;
	transform: translate(-50%, 0%);
	cursor: pointer;
	display: none;
}

.orders-lgimg img {
	width: 150px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}

/***Mobile Filter Start***/
.filter-card {
	background: #f4f4f4;
	padding: 10px 14px;
	border-radius: 8px;
}

.filter-btn {
	width: 38px;
	height: 38px;
	display: inline-block;
	background: #24656f;
	color: #fff;
	text-align: center;
	line-height: 38px;
	border-radius: 6px;
	border: 1px solid #24656f;
	transition: all .5s ease-in-out;
}

.filter-btn:hover {
	background: transparent;
	color: #24656f;
}

#filtersExample .right_sidebar_area {
	box-shadow: none;
}

#filtersExample .offcanvas-header {
	border-bottom: 1px solid #ebebeb;
}

/***Mobile Filter End***/

/***Profile Drop Start***/
.profile-drop .btn-secondary {
	background: none;
	border: none;
	padding: 0;
}

.profile-drop .dropdown-toggle::after {
	display: none;
}

.profile-drop .dropdown-menu.show {
	min-width: 220px;
	padding: 0;
	border: none;
	overflow: hidden;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.profile-drop .dropdown-menu.show li a {
	padding: 8px 12px;
	border-bottom: 1px solid #f4f4f4;
	font-size: 14px;
}

.profile-card-drop {
	display: flex;
	align-items: center;
	background: #24656f;
	padding: 14px 12px;
	position: relative;
}

.profile-card-drop span {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	margin-right: 10px;
	border: 1px solid #fff;
}

.profile-card-drop span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-card-rt h4 {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
}

.profile-card-rt p {
	font-size: 13px;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 0;
}

.profile-drop .dropdown-item {
	transition: all .5s ease-in-out;
}

.profile-drop .dropdown-item:hover {
	background: #24656f;
	color: #fff;
}

.profile-drop .btn:first-child:active, .profile-drop .btn.show {
	background: none !important;
	border-color: none !important;
}

.hdr-pro-view {
	display: flex;
}

.hdr-pro-view span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #24656f;
	display: inline-block;
}

.hdr-pro-view span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/***Profile Drop End***/
.header-card {
	background: #fff;
}

.fixed-header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	visibility: visible;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1.2s;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-ms-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
	z-index: 9999;
}

.mobile-login {
	font-size: 19px;
	color: #000000;
}

.header-src {
	color: #000;
}

#form2 {
	width: 90%;
	background: #fff;
	position: absolute;
	top: 54px;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 99;
	left: 50%;
	/* right: 0; */
	transform: translateX(-50%);
}

#form2 .form-select {
	border: 1px solid #ccc;
	padding: 0 15px;
	border-radius: 50px;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
}

#offcanvasTop .offcanvas-body {
	overflow-y: visible;
}

.mobile-cat-search {
	position: relative;
}

.mobile-off-top {
	max-height: 150px !important;
}

.profile-drop .dropdown-toggle:focus {
	box-shadow: none !important;
	border: none;
}

.header-card.header-card-inr {
	position: static;
}

.listing-wrapper .item .position-re img {
	height: 210px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	width: 100%;
	object-fit: cover;
}

.owl-carousel img {
	width: auto !important;
	display: inline-block !important;
}

.owl-carousel .imagead img, .owl-carousel .imgmain img {
	width: 100% !important;
}

.wpte-trip-highlights li {
	line-height: 1.5;
	position: relative;
	padding-left: 34px;
	margin: 0 0 15px;
	min-width: 50%;
}

.wpte-trip-highlights li i {
	width: 20px;
	height: 20px;
	background-color: #24656f;
	position: absolute;
	top: 0;
	left: 5px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	border-radius: 100%;
	font-size: 12px;
}

/*blog*/
.card-image-wrapper {
	max-height: var(--bs-card-style-2-img-height);
	height: 260px;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.card-img-top {
	border-radius: var(--bs-card-inner-border-radius);
	object-fit: cover;
	transition: transform 0.4s ease-in-out;
	width: 100%;
	height: 100%;
}

.card-style-2 .card-header {
	margin-bottom: 5px;
}

.blog-title {
	color: #24656f;
}

.card-body .text-uppercase a {
	color: #000;
}

.card .card-meta li {
	position: relative;
	padding-right: 20px;
}

.card .card-meta li:first-child::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #676977;
	top: calc(50% - 2px);
	right: 5px;
}

.post-single__meta-img {
	width: 30px;
	height: 30px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 8px;
}

.post-single__meta-item {
	text-transform: capitalize;
	font-weight: 600;
	color: #444;
	font-size: 13px;
	font-family: "Inter Tight", sans-serif;
}

.post-single__meta-link {
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.post-single__meta-link:hover {
	color: #f67280 !important;
}

.post-single__body {
	margin-top: 30px;
}

.post-single__body h5 {
	margin-top: 30px;
	margin-bottom: 10px;
	color: #24656f;
}

.list-inline li {
	display: inline-block;
}

.dot {
	width: 4px;
	height: 4px;
	background-color: #f67280;
	border-radius: 50%;
	display: inline-block;
	margin: 2px 6px !important;
}

.post-single__body p {
	color: #545454;
}

.list li {
	position: relative;
	padding-left: 0;
	margin-bottom: 10px;
	list-style-type: disc;
	list-style-position: inside;
}

.wpte-trip-highlights li {
	line-height: 1.5;
	position: relative;
	padding-left: 34px;
	margin: 0 0 15px;
	min-width: 50%;
}

.wpte-trip-highlights li::before {
	content: "\f00c";
	width: 20px;
	height: 20px;
	background-color: #24656f;
	position: absolute;
	top: 0;
	left: 5px;
	font-family: 'Font Awesome 6 Free';
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	color: #fff;
	text-align: center;
	line-height: 20px;
	border-radius: 100%;
	font-size: 12px;
}

.guest-card .select-box-padding {
	padding: 19px 10px;
}

.guest-card {
	background: #fff;
}

.guest_cs {
	max-height: 800px;
	overflow-y: auto;
	overflow-x: hidden;
}

.guest-card .form-control {
	border: 1px solid #dee2e6;
	border-radius: 6px;
}

.guest-card .form-select {
	min-height: 66px;
}

.file-upload {
	border: 1px solid #ced4da;
	border-style: dashed;
	width: 100%;
	border-radius: 5px;
	position: absolute;
	left: 0%;
	top: 35px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 64px; label { cursor : pointer;
	height: 100%;
	width: 100%;
	padding: 30px 0;
	input
	{
	display
	:
	none;
}

span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .4s;
	color: black;
	width: 100%; i { position : absolute;
	font-size: 25px;
}

&
:hover {
	transform: scale(0.8);
}

}
}
.blog_categories ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.categories_widget .blog_categories ul li a:hover {
	background: #24656f;
	color: #fff;
}

.recent_post ul li {
	padding-bottom: 30px;
}

.categories_widget ul li h6 {
	margin: 0 0 5px 0;
}

.categories_widget ul li h6 a {
	background: transparent;
	padding: 0;
	color: #24656f;
	font-size: 16px !important;
	font-weight: 600;
	margin: 0;
}

.date i {
	margin-right: 10px;
}

.pagination .active>.page-link, .pagination .page-link.active {
	z-index: 3;
	color: var(--bs-pagination-active-color);
	background-color: #24656f;
	border-color: #24656f;
}

.pagination .page-link {
	color: #000;
}

.work-process-box.style1 {
	text-align: center;
	max-width: 280px;
	margin: auto;
	margin-bottom: 30px !important;
}

.work-process-wrapper.style1 {
	position: relative;
	margin-top: 85px;
}

.work-process-wrapper.style1 .shape {
	position: absolute;
	bottom: 0;
	right: 0;
}

.work-process-wrapper.style1 .shape img {
	max-width: 100%;
}

.work-process-box.style1 .title {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
	letter-spacing: -0.48px;
	margin-bottom: 8px;
}

.work-process-box.style1.child2 {
	margin-top: 100px;
}

.work-process-box.style1 .step {
	color: #24656f;
	text-align: center;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 28px;
	letter-spacing: -0.32px;
	display: inline-flex;
	height: 24px;
	padding: 7px 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 100px;
	background: #ed2f5838;
	margin-bottom: 10px;
}

}
.whislist-img .position-re img {
	height: 200px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	width: 100% !important;
	object-fit: cover;
}

input#newsletter-email {
	box-shadow: none !important;
}

#news-letter .field-newsletter-email {
	margin-bottom: 0 !important;
}

.team-item .team-img {
	width: 100%;
	height: 250px;
}

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

.se-component figure {
	width: 100%;
	height: 450px;
}

.se-component figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.field-user-contact_no { .iti { width:100%!important;
	
}

}
.pagination {
	padding: 0;
	margin: 0;
	text-align: center;
}

.pagination li {
	display: inline-block;
	margin: 0 5px;
}

.pagination li, .pagination li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 37px;
	text-align: center;
	color: #676977;
	font-weight: 400;
	background: #fff;
	font-size: 16px;
	border-radius: 100%;
	border: 1px solid #f4f5f8;
}

.booking_pagination li.active .page-link{
	background: #24656f;
}

.pagination li a i {
	font-size: 11px;
}

.pagination li a:hover {
	opacity: 1;
	text-decoration: none;
	background: #24656f;
	border: 1px solid #24656f;
	color: #fff;
}

.pagination li a.active {
	background-color: #24656f;
	border: 1px solid #24656f;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.pagination {
		padding: 0;
		margin: 0;
		text-align: center;
	}
}

img.home-page-icon {
	border-radius: 16px;
}

.page-title-area.event-bnr {
	background-color: #fff;
}

.page-title-area.event-bnr::before {
	display: none;
}

.page-title-area .breadcrumb-item+.breadcrumb-item::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

/*date picker css*/
.datepicker-days .table-condensed {
	width: 100%;
}

.item.popular-tickets {
	box-shadow: 0px 4px 11px rgba(0, 0, 0, .2);
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
}

.blog .swiper-button-prev:after, .blog .swiper-button-next:after {
	content: none;
}

.blog .swiper-button-prev, .blog .swiper-button-next {
	width: 59px;
	height: 59px;
	background-color: #fff;
	border-radius: 100px;
}

.blog .swiper-button-prev {
	right: 7%;
	left: auto;
}

.blog .swiper-button-prev, .blog .swiper-button-next {
	top: -24%;
	transition: all .5s ease-in-out;
}

.blog .swiper-button-prev i, .blog .swiper-button-next i {
	font-size: 23px;
	transition: all .5s ease-in-out;
}

.blog .swiper-button-prev i, .blog .swiper-button-next i {
	font-size: 23px;
	color: #246671;
}

.blog .swiper-button-prev:hover, .blog .swiper-button-next:hover {
	background-color: #246671;
}

.blog .swiper-button-prev:hover i, .blog .swiper-button-next:hover i {
	color: #fff;
}

hr {
	margin: 0 !important;
}

.bottomcard.facilities p {
	color: #545454;
	font-weight: 300;
	margin-right: 15px;
}

.bottomcard.facilities p span {
	margin-left: 10px;
}

.offer-txt h4 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0px;
	font-weight: 700;
}

.offer-box {
	background-image: url(../img/benefit-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	padding: 30px;
	min-height: 265px;
}

.offer-box p {
	font-size: 14px;
	line-height: 24px;
	color: #545454 !important;
	margin-bottom: 0;
}

.blog-img img {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.blog-box {
	box-shadow: 0px 4px 11px rgba(0, 0, 0, .2);
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
}

.blog-box img {
	height: 320px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	width: 100% !important;
	object-fit: cover;
}

.blog-box h4 {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 0px;
	font-weight: 700;
	transition: all .5s ease-in;
}

.blog-box h4:hover {
	color: #2a6775;
}

.blog-box p {
	color: #868383;
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 0;
	margin-top: 10px;
}

.blog-inner-txt-box {
	padding: 20px;
	min-height: 150px;
}

.bolg-bottom p {
	font-size: 14px;
	text-transform: capitalize;
	color: #696969;
}

.text-blue {
	color: #2a6775;
	text-decoration: underline;
}

.blog-pagination li, .blog-pagination li a {
	border: 0 !important;
}

.blog-pagination li, .blog-pagination li a {
	border: 0 !important;
	font-size: 20px !important;
	color: #000;
	font-weight: 500;
	padding: 0;
	width: auto;
	height: auto;
}

.blog-pagination li a i {
	font-size: 20px !important;
}

.blog-pagination .active a {
	color: #2a6775 !important;
	background-color: transparent !important;
}

.blog-pagination .pagination li a:hover {
	background-color: transparent !important;
	color: #2a6775;
}

ol.breadcrumb {
	justify-content: center;
}

.blog_categories ul li {
	border-bottom: 1px solid #ccc;
}

.s_widget.categories_widget .card-header {
	background-color: #24656f;
}

.post-single .post-single__image {
	width: 100%;
	height: 400px;
}

.post-single .post-single__image img {
	height: 100% !important;
	object-fit: cover;
}

.custom_check_date { &
	input [type="radio"]: checked+label{   
		background-color: #fab84d24;
	color: #fab84d;
	border-color: #fab84d;
}

}
.headerslider .owl-item {
	width: 150px !important;
}

.read-more-btn {
	color: #24656f;
	font-weight: 500;
	text-transform: capitalize;
}

.event-border .item .position-re {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.swiper-backface-hidden .swiper-wrapper .position-re {
	border-radius: 16px !important;
}

.blog .swiper-slide::after {
	border-radius: 16px !important;
}

.field-vehicledetail-vehicle_type .form-select,
	.field-vehicledetail-fuel_type .form-select,
	.field-vehicledetail-gear_type .form-select {
	border: 0;
	background-color: transparent;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background-clip: unset;
	padding: 0px 30px 0 0 !important;
	font-size: 13px !important;
	color: #808080 !important;
	font-weight: 500 !important;
	box-shadow: none !important;
}

#vehicleitems .inner_box .icon, #filter-form .inner_box .icon,
	#vehicle-booking-form .inner_box .icon {
	display: unset !important;
	padding-left: 0px !important;
	position: absolute;
	top: 9px;
	left: 9px;
	pointer-events: none;
}

#vehicleitems .inner_box .form-control, #filter-form .inner_box .form-control,
	#vehicleitems .inner_box .form-select, #filter-form .inner_box .form-select,
	#vehicle-booking-form .form-select, #vehicle-booking-form .form-control
	{
	padding-left: 30px !important;
}

.inner_box .form-control::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 5px;
	opacity: 0;
}

#filter-form .inner_box .arrow_wrp {
	left: 47% !important;
}

#vehicle-booking-form .inner_box .arrow_wrp {
	left: 48% !important;
}

#vehicle-booking-form .invalid-feedback {
	font-size: 10px;
	position: absolute;
	bottom: -26px;
	left: 10px;
}

#vehicle-booking-form .field-pickup-location, #vehicle-booking-form .field-vehicle-start_date,
	#vehicle-booking-form .field-vehicle-start_time, #vehicle-booking-form .field-dropoff-location,
	#vehicle-booking-form .field-vehicle-end_date, #vehicle-booking-form .field-vehicle-end_time
	{
	margin-bottom: 0 !important;
}

#vehicle-booking-form .field-inner .c_name {
	display: unset !important;
}

#vehicle-booking-form .inner_box .field-inner.child2 .c_name {
	padding: 0 !important;
}

#vehicle-booking-form .inner_box .field-inner.child1::before {
	right: 2px;
}

.form-select-inr .form-select {
	border: 1px solid #e4e4e4;
	font-size: 14px;
	color: #6e6c6c;
}

.form-select-inr .form-select:focus {
	box-shadow: none !important;
}
/*place detail 19-may-2025 */
.wpte-trip-highlights {
	list-style: none;
	padding-left: 0;
	margin-top: 1rem;
}

.trip-highlight {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
	margin: 10px;
	flex: 1 1 calc(50% - 20px);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}

.trip-highlight:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.trip-highlight i {
	font-size: 24px;
	color: #007bff;
	flex-shrink: 0;
}

.trip-highlight a {
	font-weight: 500;
	color: #333;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 5px;
}

.trip-highlight a:hover {
	color: #007bff;
	text-decoration: underline;
}

.highlight-title {
	font-weight: bold;
	color: #666;
	font-size: 14px;
	display: block;
}

.distance-info {
	font-size: 13px;
	color: #888;
	margin-top: 2px;
}

.btn-search-custom {
    background-color: #24656f;
    color: white;
    border: none;
}
/*product page serach  button css */
.btn-search-custom:hover {
    background-color: #1e565e; /* Slightly darker on hover */
}

/* Cart Icon count csss */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    line-height: 14px;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 0 2px #800;
}

/*suggestion serach global */
.suggestions-list {
    position: absolute; /* Position it below the search input */
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    z-index: 1000; /* Ensure it appears above other elements */
    width: 100%; /* Full width of the input */
    max-height: 300px; /* Limit height */
    overflow-y: auto; /* Scroll if too many suggestions */
    display: none; /* Initially hidden */
    transition: all 0.3s ease; /* Smooth transition */
}

.suggestion-item {
    padding: 12px 16px; /* Padding for each suggestion */
    cursor: pointer; /* Pointer cursor on hover */
    border-bottom: 1px solid #f0f0f0; /* Divider between items */
    transition: background-color 0.3s; /* Smooth background transition */
}

.suggestion-item:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.suggestion-item:hover {
    background-color: #f9f9f9; /* Light gray background on hover */
}

.suggestion-item a {
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Dark text color */
    font-weight: 500; /* Slightly bolder text */
}

.suggestion-item a:hover {
    color: #007bff; /* Change color on link hover */
}

