:root {
	--font-primary: "Jost", sans-serif;
}

:root {
	--text-4: 4px;
	--text-7: 7px;
	--text-10: 10px;
	--text-12: 12px;
	--text-13: 13px;
	--text-14: 14px;
	--text-15: 15px;
	--text-16: 16px;
	--text-18: 18px;
	--text-20: 20px;
	--text-22: 22px;
	--text-24: 24px;
	--text-25: 25px;
	--text-26: 26px;
	--text-30: 30px;
	--text-40: 40px;
	--text-50: 50px;
	--text-60: 60px;
	--text-80: 80px;
}

:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-border: #dddddd;
	--color-dark-1: #051036;
	--color-dark-2: #0d2857;
	--color-dark-3: #13357b;
	--color-dark-4: #163c8c;
	--color-light-1: #697488;
	--color-light-2: #f5f5f5;
	--color-light-3: #fbfcff;
	/* --color-blue-1: #3554D1; */
	--color-blue-1: #036cbd;
	--color-blue-2: #e5f0fd;
	--color-green-1: #ebfcea;
	--color-green-2: #008009;
	--color-yellow-1: #f8d448;
	--color-yellow-2: #e1c03f;
	--color-yellow-3: #ffc700;
	--color-yellow-4: #fff8dd;
	--color-brown-1: #923e01;
	--color-purple-1: #7e53f9;
	--color-red-1: #d93025;
	--color-red-2: #f1416c;
	--color-red-3: #fff5f8;
	--color-info-1: #cde9f6;
	--color-info-2: #4780aa;
	--color-warning-1: #f7f3d7;
	--color-warning-2: #927238;
	--color-error-1: #ecc8c5;
	--color-error-2: #ab3331;
	--color-success-1: #def2d7;
	--color-success-2: #5b7052;
}

.ratio {
	position: relative;
	display: block;
	overflow: hidden;
}

.ratio::before {
	display: block;
	width: 100%;
	content: "";
}

.ratio-1\:1::before {
	padding-bottom: 100%;
}

.ratio-2\:1::before {
	padding-bottom: 50%;
}

.ratio-3\:2::before {
	padding-bottom: 66.66667%;
}

.ratio-3\:4::before {
	padding-bottom: 133.33333%;
}

.ratio-4\:3::before {
	padding-bottom: 75%;
}

.ratio-4\:1::before {
	padding-bottom: 25%;
}

.ratio-5\:4::before {
	padding-bottom: 80%;
}

.ratio-8\:5::before {
	padding-bottom: 62.5%;
}

.ratio-15\:9::before {
	padding-bottom: 60%;
}

.ratio-16\:9::before {
	padding-bottom: 56.25%;
}

.ratio-64\:45::before {
	padding-bottom: 70.3125%;
}

.ratio-6\:5::before {
	padding-bottom: 83.33333%;
}

.ratio-23\:18::before {
	padding-bottom: 78.26087%;
}

.ratio-41\:35::before {
	padding-bottom: 85.36585%;
}

.ratio-41\:45::before {
	padding-bottom: 109.7561%;
}

.ratio-63\:55::before {
	padding-bottom: 87.30159%;
}

[data-anim-wrap] {
	pointer-events: none;
}

[data-anim-wrap].animated {
	pointer-events: auto;
}

@-webkit-keyframes reveal {
	100% {
		opacity: 1;
	}
}

@keyframes reveal {
	100% {
		opacity: 1;
	}
}

[data-anim^='slide-'],
[data-anim-child^='slide-'] {
	opacity: 0;
	transition-property: opacity, transform;
	pointer-events: none;
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-anim^='slide-'].is-in-view,
[data-anim-child^='slide-'].is-in-view {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}

.featureIcon:hover {
	border: 1.5px solid #0d6efd;
	border-radius: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
}
.theme-separator-line-horrizontal-full {
	background-color: #036cbd;
}
.theme-separator-line-horrizontal-full {
	width: 100%;
	width: 5rem;
	height: 0.2rem;
	float: none;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
}

.theme-separator-line-horrizontal-full:hover {
	background-color: rgb(244, 244, 244);
}

[data-anim^='slide-up'],
[data-anim-child^='slide-up'] {
	transform: translate3d(0, 40px, 0);
}

[data-anim^='slide-down'],
[data-anim-child^='slide-down'] {
	transform: translate3d(0, -40px, 0);
}

[data-anim^='slide-right'],
[data-anim-child^='slide-right'] {
	transform: translate3d(-40px, 0, 0);
}

[data-anim^='slide-left'],
[data-anim-child^='slide-left'] {
	transform: translate3d(40px, 0, 0);
}

[data-anim^='fade'],
[data-anim-child^='fade'] {
	opacity: 0;
	transition-property: opacity;
	pointer-events: none;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-anim^='fade'].is-in-view,
[data-anim-child^='fade'].is-in-view {
	opacity: 1;
	pointer-events: auto;
}

[data-anim*="delay-1"],
[data-anim-child*="delay-1"] {
	transition-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

[data-anim*="delay-1"]::after,
[data-anim-child*="delay-1"]::after {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

[data-anim*="delay-1"] > *,
[data-anim-child*="delay-1"] > * {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

[data-anim*="delay-2"],
[data-anim-child*="delay-2"] {
	transition-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

[data-anim*="delay-2"]::after,
[data-anim-child*="delay-2"]::after {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

[data-anim*="delay-2"] > *,
[data-anim-child*="delay-2"] > * {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

[data-anim*="delay-3"],
[data-anim-child*="delay-3"] {
	transition-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

[data-anim*="delay-3"]::after,
[data-anim-child*="delay-3"]::after {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

[data-anim*="delay-3"] > *,
[data-anim-child*="delay-3"] > * {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

[data-anim*="delay-4"],
[data-anim-child*="delay-4"] {
	transition-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

[data-anim*="delay-4"]::after,
[data-anim-child*="delay-4"]::after {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

[data-anim*="delay-4"] > *,
[data-anim-child*="delay-4"] > * {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

[data-anim*="delay-5"],
[data-anim-child*="delay-5"] {
	transition-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

[data-anim*="delay-5"]::after,
[data-anim-child*="delay-5"]::after {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

[data-anim*="delay-5"] > *,
[data-anim-child*="delay-5"] > * {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

[data-anim*="delay-6"],
[data-anim-child*="delay-6"] {
	transition-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

[data-anim*="delay-6"]::after,
[data-anim-child*="delay-6"]::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

[data-anim*="delay-6"] > *,
[data-anim-child*="delay-6"] > * {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

[data-anim*="delay-7"],
[data-anim-child*="delay-7"] {
	transition-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

[data-anim*="delay-7"]::after,
[data-anim-child*="delay-7"]::after {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

[data-anim*="delay-7"] > *,
[data-anim-child*="delay-7"] > * {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

[data-anim*="delay-8"],
[data-anim-child*="delay-8"] {
	transition-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

[data-anim*="delay-8"]::after,
[data-anim-child*="delay-8"]::after {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

[data-anim*="delay-8"] > *,
[data-anim-child*="delay-8"] > * {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

[data-anim*="delay-9"],
[data-anim-child*="delay-9"] {
	transition-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

[data-anim*="delay-9"]::after,
[data-anim-child*="delay-9"]::after {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

[data-anim*="delay-9"] > *,
[data-anim-child*="delay-9"] > * {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

[data-anim*="delay-10"],
[data-anim-child*="delay-10"] {
	transition-delay: 1s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

[data-anim*="delay-10"]::after,
[data-anim-child*="delay-10"]::after {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

[data-anim*="delay-10"] > *,
[data-anim-child*="delay-10"] > * {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

[data-anim*="delay-11"],
[data-anim-child*="delay-11"] {
	transition-delay: 1.1s;
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

[data-anim*="delay-11"]::after,
[data-anim-child*="delay-11"]::after {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

[data-anim*="delay-11"] > *,
[data-anim-child*="delay-11"] > * {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

[data-anim*="delay-12"],
[data-anim-child*="delay-12"] {
	transition-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

[data-anim*="delay-12"]::after,
[data-anim-child*="delay-12"]::after {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

[data-anim*="delay-12"] > *,
[data-anim-child*="delay-12"] > * {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

[data-anim*="delay-13"],
[data-anim-child*="delay-13"] {
	transition-delay: 1.3s;
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}

[data-anim*="delay-13"]::after,
[data-anim-child*="delay-13"]::after {
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}

[data-anim*="delay-13"] > *,
[data-anim-child*="delay-13"] > * {
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}

[data-anim*="delay-14"],
[data-anim-child*="delay-14"] {
	transition-delay: 1.4s;
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

[data-anim*="delay-14"]::after,
[data-anim-child*="delay-14"]::after {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

[data-anim*="delay-14"] > *,
[data-anim-child*="delay-14"] > * {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

[data-anim*="delay-15"],
[data-anim-child*="delay-15"] {
	transition-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

[data-anim*="delay-15"]::after,
[data-anim-child*="delay-15"]::after {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

[data-anim*="delay-15"] > *,
[data-anim-child*="delay-15"] > * {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

[data-anim*="delay-16"],
[data-anim-child*="delay-16"] {
	transition-delay: 1.6s;
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}

[data-anim*="delay-16"]::after,
[data-anim-child*="delay-16"]::after {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}

[data-anim*="delay-16"] > *,
[data-anim-child*="delay-16"] > * {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}

[data-anim*="delay-17"],
[data-anim-child*="delay-17"] {
	transition-delay: 1.7s;
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}

[data-anim*="delay-17"]::after,
[data-anim-child*="delay-17"]::after {
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}

[data-anim*="delay-17"] > *,
[data-anim-child*="delay-17"] > * {
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}

[data-anim*="delay-18"],
[data-anim-child*="delay-18"] {
	transition-delay: 1.8s;
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

[data-anim*="delay-18"]::after,
[data-anim-child*="delay-18"]::after {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

[data-anim*="delay-18"] > *,
[data-anim-child*="delay-18"] > * {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

[data-anim*="delay-19"],
[data-anim-child*="delay-19"] {
	transition-delay: 1.9s;
	-webkit-animation-delay: 1.9s;
	animation-delay: 1.9s;
}

[data-anim*="delay-19"]::after,
[data-anim-child*="delay-19"]::after {
	-webkit-animation-delay: 1.9s;
	animation-delay: 1.9s;
}

[data-anim*="delay-19"] > *,
[data-anim-child*="delay-19"] > * {
	-webkit-animation-delay: 1.9s;
	animation-delay: 1.9s;
}

[data-anim*="delay-20"],
[data-anim-child*="delay-20"] {
	transition-delay: 2s;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

[data-anim*="delay-20"]::after,
[data-anim-child*="delay-20"]::after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

[data-anim*="delay-20"] > *,
[data-anim-child*="delay-20"] > * {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100%;
}

body {
	padding: 0;
	font-family: var(--font-primary);
	width: 100%;
	background-color: white;
	color: var(--color-blue-1);
	font-size: 16px;
	line-height: 1.875;
}

select,
input:not([type="range"]),
textarea {
	/* border: 0;
  outline: none;
  width: 100%;
  background-color: transparent; */
}

main {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	transition: color 0.2s ease-in-out;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	font-size: 14px;
	color: var(--color-light-1);
	line-height: 1.8 !important;
}

button {
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	text-decoration: none;
}

button:focus {
	outline: 0;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	text-align: center;
	line-height: 1;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2;
	border-radius: 4px;
	border: 1px solid transparent;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button.-md {
	padding: 14px 30px;
}

.button.-lg {
	padding: 19px 30px;
}

.button.-min-180 {
	min-width: 180px;
}

.button.-underline:hover {
	text-decoration: underline;
}

.button.-white:hover {
	border-color: var(--color-white);
	background-color: var(--color-white) !important;
	color: white !important;
}

.button.-outline-white {
	border-color: var(--color-white);
}

.button.-outline-white:hover {
	background-color: var(--color-white);
	border-color: transparent;
	color: white !important;
}

.button.-black:hover {
	border-color: var(--color-black);
	background-color: var(--color-black) !important;
	color: white !important;
}

.button.-outline-black {
	border-color: var(--color-black);
}

.button.-outline-black:hover {
	background-color: var(--color-black);
	border-color: transparent;
	color: white !important;
}

.button.-border:hover {
	border-color: var(--color-border);
	background-color: var(--color-border) !important;
	color: white !important;
}

.button.-outline-border {
	border-color: var(--color-border);
}

.button.-outline-border:hover {
	background-color: var(--color-border);
	border-color: transparent;
	color: white !important;
}

.button.-dark-1:hover {
	border-color: var(--color-dark-1);
	background-color: var(--color-dark-1) !important;
	color: white !important;
}

.button.-outline-dark-1 {
	border-color: var(--color-dark-1);
}

.button.-outline-dark-1:hover {
	background-color: var(--color-dark-1);
	border-color: transparent;
	color: white !important;
}

.button.-dark-2:hover {
	border-color: var(--color-dark-2);
	background-color: var(--color-dark-2) !important;
	color: white !important;
}

.button.-outline-dark-2 {
	border-color: var(--color-dark-2);
}

.button.-outline-dark-2:hover {
	background-color: var(--color-dark-2);
	border-color: transparent;
	color: white !important;
}

.button.-dark-3:hover {
	border-color: var(--color-dark-3);
	background-color: var(--color-dark-3) !important;
	color: white !important;
}

.button.-outline-dark-3 {
	border-color: var(--color-dark-3);
}

.button.-outline-dark-3:hover {
	background-color: var(--color-dark-3);
	border-color: transparent;
	color: white !important;
}

.button.-dark-4:hover {
	border-color: var(--color-dark-4);
	background-color: var(--color-dark-4) !important;
	color: white !important;
}

.button.-outline-dark-4 {
	border-color: var(--color-dark-4);
}

.button.-outline-dark-4:hover {
	background-color: var(--color-dark-4);
	border-color: transparent;
	color: white !important;
}

.button.-light-1:hover {
	border-color: var(--color-light-1);
	background-color: var(--color-light-1) !important;
	color: white !important;
}

.button.-outline-light-1 {
	border-color: var(--color-light-1);
}

.button.-outline-light-1:hover {
	background-color: var(--color-light-1);
	border-color: transparent;
	color: white !important;
}

.button.-light-2:hover {
	border-color: var(--color-light-2);
	background-color: var(--color-light-2) !important;
	color: white !important;
}

.button.-outline-light-2 {
	border-color: var(--color-light-2);
}

.button.-outline-light-2:hover {
	background-color: var(--color-light-2);
	border-color: transparent;
	color: white !important;
}

.button.-light-3:hover {
	border-color: var(--color-light-3);
	background-color: var(--color-light-3) !important;
	color: white !important;
}

.button.-outline-light-3 {
	border-color: var(--color-light-3);
}

.button.-outline-light-3:hover {
	background-color: var(--color-light-3);
	border-color: transparent;
	color: white !important;
}

.button.-blue-1:hover {
	border-color: var(--color-blue-1);
	background-color: var(--color-blue-1) !important;
	color: white !important;
}

.button.-outline-blue-1 {
	border-color: var(--color-blue-1);
}

.button.-outline-blue-1:hover {
	background-color: var(--color-blue-1);
	border-color: transparent;
	color: white !important;
}

.button.-blue-2:hover {
	border-color: var(--color-blue-2);
	background-color: var(--color-blue-2) !important;
	color: white !important;
}

.button.-outline-blue-2 {
	border-color: var(--color-blue-2);
}

.button.-outline-blue-2:hover {
	background-color: var(--color-blue-2);
	border-color: transparent;
	color: white !important;
}

.button.-green-1:hover {
	border-color: var(--color-green-1);
	background-color: var(--color-green-1) !important;
	color: white !important;
}

.button.-outline-green-1 {
	border-color: var(--color-green-1);
}

.button.-outline-green-1:hover {
	background-color: var(--color-green-1);
	border-color: transparent;
	color: white !important;
}

.button.-green-2:hover {
	border-color: var(--color-green-2);
	background-color: var(--color-green-2) !important;
	color: white !important;
}

.button.-outline-green-2 {
	border-color: var(--color-green-2);
}

.button.-outline-green-2:hover {
	background-color: var(--color-green-2);
	border-color: transparent;
	color: white !important;
}

.button.-yellow-1:hover {
	border-color: var(--color-yellow-1);
	background-color: var(--color-yellow-1) !important;
	color: white !important;
}

.button.-outline-yellow-1 {
	border-color: var(--color-yellow-1);
}

.button.-outline-yellow-1:hover {
	background-color: var(--color-yellow-1);
	border-color: transparent;
	color: white !important;
}

.button.-yellow-2:hover {
	border-color: var(--color-yellow-2);
	background-color: var(--color-yellow-2) !important;
	color: white !important;
}

.button.-outline-yellow-2 {
	border-color: var(--color-yellow-2);
}

.button.-outline-yellow-2:hover {
	background-color: var(--color-yellow-2);
	border-color: transparent;
	color: white !important;
}

.button.-yellow-3:hover {
	border-color: var(--color-yellow-3);
	background-color: var(--color-yellow-3) !important;
	color: white !important;
}

.button.-outline-yellow-3 {
	border-color: var(--color-yellow-3);
}

.button.-outline-yellow-3:hover {
	background-color: var(--color-yellow-3);
	border-color: transparent;
	color: white !important;
}

.button.-yellow-4:hover {
	border-color: var(--color-yellow-4);
	background-color: var(--color-yellow-4) !important;
	color: white !important;
}

.button.-outline-yellow-4 {
	border-color: var(--color-yellow-4);
}

.button.-outline-yellow-4:hover {
	background-color: var(--color-yellow-4);
	border-color: transparent;
	color: white !important;
}

.button.-brown-1:hover {
	border-color: var(--color-brown-1);
	background-color: var(--color-brown-1) !important;
	color: white !important;
}

.button.-outline-brown-1 {
	border-color: var(--color-brown-1);
}

.button.-outline-brown-1:hover {
	background-color: var(--color-brown-1);
	border-color: transparent;
	color: white !important;
}

.button.-purple-1:hover {
	border-color: var(--color-purple-1);
	background-color: var(--color-purple-1) !important;
	color: white !important;
}

.button.-outline-purple-1 {
	border-color: var(--color-purple-1);
}

.button.-outline-purple-1:hover {
	background-color: var(--color-purple-1);
	border-color: transparent;
	color: white !important;
}

.button.-red-1:hover {
	border-color: var(--color-red-1);
	background-color: var(--color-red-1) !important;
	color: white !important;
}

.button.-outline-red-1 {
	border-color: var(--color-red-1);
}

.button.-outline-red-1:hover {
	background-color: var(--color-red-1);
	border-color: transparent;
	color: white !important;
}

.button.-red-2:hover {
	border-color: var(--color-red-2);
	background-color: var(--color-red-2) !important;
	color: white !important;
}

.button.-outline-red-2 {
	border-color: var(--color-red-2);
}

.button.-outline-red-2:hover {
	background-color: var(--color-red-2);
	border-color: transparent;
	color: white !important;
}

.button.-red-3:hover {
	border-color: var(--color-red-3);
	background-color: var(--color-red-3) !important;
	color: white !important;
}

.button.-outline-red-3 {
	border-color: var(--color-red-3);
}

.button.-outline-red-3:hover {
	background-color: var(--color-red-3);
	border-color: transparent;
	color: white !important;
}

.button.-info-1:hover {
	border-color: var(--color-info-1);
	background-color: var(--color-info-1) !important;
	color: white !important;
}

.button.-outline-info-1 {
	border-color: var(--color-info-1);
}

.button.-outline-info-1:hover {
	background-color: var(--color-info-1);
	border-color: transparent;
	color: white !important;
}

.button.-info-2:hover {
	border-color: var(--color-info-2);
	background-color: var(--color-info-2) !important;
	color: white !important;
}

.button.-outline-info-2 {
	border-color: var(--color-info-2);
}

.button.-outline-info-2:hover {
	background-color: var(--color-info-2);
	border-color: transparent;
	color: white !important;
}

.button.-warning-1:hover {
	border-color: var(--color-warning-1);
	background-color: var(--color-warning-1) !important;
	color: white !important;
}

.button.-outline-warning-1 {
	border-color: var(--color-warning-1);
}

.button.-outline-warning-1:hover {
	background-color: var(--color-warning-1);
	border-color: transparent;
	color: white !important;
}

.button.-warning-2:hover {
	border-color: var(--color-warning-2);
	background-color: var(--color-warning-2) !important;
	color: white !important;
}

.button.-outline-warning-2 {
	border-color: var(--color-warning-2);
}

.button.-outline-warning-2:hover {
	background-color: var(--color-warning-2);
	border-color: transparent;
	color: white !important;
}

.button.-error-1:hover {
	border-color: var(--color-error-1);
	background-color: var(--color-error-1) !important;
	color: white !important;
}

.button.-outline-error-1 {
	border-color: var(--color-error-1);
}

.button.-outline-error-1:hover {
	background-color: var(--color-error-1);
	border-color: transparent;
	color: white !important;
}

.button.-error-2:hover {
	border-color: var(--color-error-2);
	background-color: var(--color-error-2) !important;
	color: white !important;
}

.button.-outline-error-2 {
	border-color: var(--color-error-2);
}

.button.-outline-error-2:hover {
	background-color: var(--color-error-2);
	border-color: transparent;
	color: white !important;
}

.button.-success-1:hover {
	border-color: var(--color-success-1);
	background-color: var(--color-success-1) !important;
	color: white !important;
}

.button.-outline-success-1 {
	border-color: var(--color-success-1);
}

.button.-outline-success-1:hover {
	background-color: var(--color-success-1);
	border-color: transparent;
	color: white !important;
}

.button.-success-2:hover {
	border-color: var(--color-success-2);
	background-color: var(--color-success-2) !important;
	color: white !important;
}

.button.-outline-success-2 {
	border-color: var(--color-success-2);
}

.button.-outline-success-2:hover {
	background-color: var(--color-success-2);
	border-color: transparent;
	color: white !important;
}

.button.-white:hover {
	background-color: var(--color-light-3) !important;
	color: var(--color-dark-1) !important;
}

.button.-blue-1-05:hover {
	background-color: rgba(53, 84, 209, 0.05) !important;
	color: var(--color-blue-1) !important;
}

.button.-outline-white:hover {
	background-color: white !important;
	color: var(--color-dark-1) !important;
}

.contact-form select,
.contact-form input:not([type="range"]),
.contact-form textarea {
	border-radius: 4px;
	padding: 17px 20px;
	font-size: 15px;
	letter-spacing: 0.02em;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form select:focus,
.contact-form input:not([type="range"]):focus,
.contact-form textarea:focus {
	outline: none;
}

.contact-form ::-moz-placeholder {
	font-weight: 400;
}

.contact-form :-ms-input-placeholder {
	font-weight: 400;
}

.contact-form ::placeholder {
	font-weight: 400;
}

input.text-white::-moz-placeholder {
	color: white;
}

input.text-white:-ms-input-placeholder {
	color: white;
}

input.text-white::placeholder {
	color: white;
}

.form-checkbox {
	cursor: pointer;
	position: relative;
	display: flex;
}

.form-checkbox label {
	margin: 0;
	margin-left: 9px;
	font-size: 14px;
}

.form-checkbox__mark {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 16px;
	height: 16px;
	border: 1px solid var(--color-dark-1);
	border-radius: 4px;
}

.form-checkbox__icon {
	display: none;
	position: absolute;
	font-size: 8px;
	color: white;
}

.form-checkbox input {
	cursor: pointer;
	z-index: 5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
}

.form-checkbox input:checked ~ .form-checkbox__mark {
	background-color: var(--color-blue-1);
	border-color: var(--color-blue-1);
}

.form-checkbox input:checked ~ .form-checkbox__mark .form-checkbox__icon {
	display: block;
}

.form-checkbox:hover input ~ .form-checkbox__mark {
	background-color: var(--color-blue-1);
}

.form-checkbox:hover input:checked ~ .form-checkbox__mark {
	background-color: var(--color-blue-1);
}

.form-radio {
	display: flex;
	align-items: center;
}

.form-radio .radio {
	cursor: pointer;
	position: relative;
	display: block;
}

.form-radio .radio__mark {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 16px;
	width: 16px;
	border-radius: 100%;
	border: 1px solid var(--color-dark-1);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio__icon {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--color-white);
	transform-origin: center;
	opacity: 1;
	transform: scale(0.2);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-radio .radio input {
	cursor: pointer;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
}

.form-radio .radio input:checked ~ .radio__mark {
	border-color: var(--color-blue-1);
	background-color: var(--color-blue-1);
}

.form-radio .radio input:checked ~ .radio__mark .radio__icon {
	opacity: 1;
	transform: scale(1);
}

.form-switch .switch {
	position: relative;
	width: 60px;
	height: 30px;
}

.form-switch .switch__slider {
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: 0px 10px 50px rgba(13, 38, 59, 0.1);
	background-color: rgba(255, 255, 255, 0.2);
	transition: .3s;
	border-radius: 30px;
	border: 1px solid var(--color-blue-1);
}

.form-switch .switch__slider::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 5px;
	bottom: 4px;
	background-color: var(--color-blue-1);
	border-radius: 50%;
	transition: .3s;
}

.form-switch .switch input {
	z-index: 5;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.form-switch .switch input:checked + .switch__slider {
	background-color: var(--color-blue-1);
}

.form-switch .switch input:checked + .switch__slider::before {
	transform: translateX(29px);
	background-color: white;
}

.single-field input {
	border-radius: 4px;
	padding: 17px 20px;
	font-size: 15px;
	letter-spacing: 0.02em;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-field.-w-410 input {
	width: 410px;
}

@media (max-width: 991px) {
	.single-field.-w-410 input {
		width: 100%;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.45;
	font-weight: 700;
}

.text-4 {
	font-size: var(--text-4) !important;
}

.text-7 {
	font-size: var(--text-7) !important;
}

.text-10 {
	font-size: var(--text-10) !important;
}

.text-12 {
	font-size: var(--text-12) !important;
}

.text-13 {
	font-size: var(--text-13) !important;
}

.text-14 {
	font-size: var(--text-14) !important;
}

.text-15 {
	font-size: var(--text-15) !important;
	font-weight: 500;
}

.text-16 {
	font-size: var(--text-16) !important;
}

.text-18 {
	font-size: var(--text-18) !important;
}

.text-20 {
	font-size: var(--text-20) !important;
}

.text-22 {
	font-size: var(--text-22) !important;
}

.text-24 {
	font-size: var(--text-24) !important;
}

.text-25 {
	font-size: var(--text-25) !important;
}

.text-26 {
	font-size: var(--text-26) !important;
}

.text-30 {
	font-size: var(--text-30) !important;
}

.text-40 {
	font-size: var(--text-40) !important;
}

.text-50 {
	font-size: var(--text-50) !important;
}

.text-60 {
	font-size: var(--text-60) !important;
}

.text-80 {
	font-size: var(--text-80) !important;
}

@media (max-width: 1199px) {
	.xl\:text-4 {
		font-size: var(--text-4) !important;
	}
	.xl\:text-7 {
		font-size: var(--text-7) !important;
	}
	.xl\:text-10 {
		font-size: var(--text-10) !important;
	}
	.xl\:text-12 {
		font-size: var(--text-12) !important;
	}
	.xl\:text-13 {
		font-size: var(--text-13) !important;
	}
	.xl\:text-14 {
		font-size: var(--text-14) !important;
	}
	.xl\:text-15 {
		font-size: var(--text-15) !important;
	}
	.xl\:text-16 {
		font-size: var(--text-16) !important;
	}
	.xl\:text-18 {
		font-size: var(--text-18) !important;
	}
	.xl\:text-20 {
		font-size: var(--text-20) !important;
	}
	.xl\:text-22 {
		font-size: var(--text-22) !important;
	}
	.xl\:text-24 {
		font-size: var(--text-24) !important;
	}
	.xl\:text-25 {
		font-size: var(--text-25) !important;
	}
	.xl\:text-26 {
		font-size: var(--text-26) !important;
	}
	.xl\:text-30 {
		font-size: var(--text-30) !important;
	}
	.xl\:text-40 {
		font-size: var(--text-40) !important;
	}
	.xl\:text-50 {
		font-size: var(--text-50) !important;
	}
	.xl\:text-60 {
		font-size: var(--text-60) !important;
	}
	.xl\:text-80 {
		font-size: var(--text-80) !important;
	}
}

@media (max-width: 991px) {
	.lg\:text-4 {
		font-size: var(--text-4) !important;
	}
	.lg\:text-7 {
		font-size: var(--text-7) !important;
	}
	.lg\:text-10 {
		font-size: var(--text-10) !important;
	}
	.lg\:text-12 {
		font-size: var(--text-12) !important;
	}
	.lg\:text-13 {
		font-size: var(--text-13) !important;
	}
	.lg\:text-14 {
		font-size: var(--text-14) !important;
	}
	.lg\:text-15 {
		font-size: var(--text-15) !important;
	}
	.lg\:text-16 {
		font-size: var(--text-16) !important;
	}
	.lg\:text-18 {
		font-size: var(--text-18) !important;
	}
	.lg\:text-20 {
		font-size: var(--text-20) !important;
	}
	.lg\:text-22 {
		font-size: var(--text-22) !important;
	}
	.lg\:text-24 {
		font-size: var(--text-24) !important;
	}
	.lg\:text-25 {
		font-size: var(--text-25) !important;
	}
	.lg\:text-26 {
		font-size: var(--text-26) !important;
	}
	.lg\:text-30 {
		font-size: var(--text-30) !important;
	}
	.lg\:text-40 {
		font-size: var(--text-40) !important;
	}
	.lg\:text-50 {
		font-size: var(--text-50) !important;
	}
	.lg\:text-60 {
		font-size: var(--text-60) !important;
	}
	.lg\:text-80 {
		font-size: var(--text-80) !important;
	}
}

@media (max-width: 767px) {
	.md\:text-4 {
		font-size: var(--text-4) !important;
	}
	.md\:text-7 {
		font-size: var(--text-7) !important;
	}
	.md\:text-10 {
		font-size: var(--text-10) !important;
	}
	.md\:text-12 {
		font-size: var(--text-12) !important;
	}
	.md\:text-13 {
		font-size: var(--text-13) !important;
	}
	.md\:text-14 {
		font-size: var(--text-14) !important;
	}
	.md\:text-15 {
		font-size: var(--text-15) !important;
	}
	.md\:text-16 {
		font-size: var(--text-16) !important;
	}
	.md\:text-18 {
		font-size: var(--text-18) !important;
	}
	.md\:text-20 {
		font-size: var(--text-20) !important;
	}
	.md\:text-22 {
		font-size: var(--text-22) !important;
	}
	.md\:text-24 {
		font-size: var(--text-24) !important;
	}
	.md\:text-25 {
		font-size: var(--text-25) !important;
	}
	.md\:text-26 {
		font-size: var(--text-26) !important;
	}
	.md\:text-30 {
		font-size: var(--text-30) !important;
	}
	.md\:text-40 {
		font-size: var(--text-40) !important;
	}
	.md\:text-50 {
		font-size: var(--text-50) !important;
	}
	.md\:text-60 {
		font-size: var(--text-60) !important;
	}
	.md\:text-80 {
		font-size: var(--text-80) !important;
	}
}

@media (max-width: 575px) {
	.sm\:text-4 {
		font-size: var(--text-4) !important;
	}
	.sm\:text-7 {
		font-size: var(--text-7) !important;
	}
	.sm\:text-10 {
		font-size: var(--text-10) !important;
	}
	.sm\:text-12 {
		font-size: var(--text-12) !important;
	}
	.sm\:text-13 {
		font-size: var(--text-13) !important;
	}
	.sm\:text-14 {
		font-size: var(--text-14) !important;
	}
	.sm\:text-15 {
		font-size: var(--text-15) !important;
	}
	.sm\:text-16 {
		font-size: var(--text-16) !important;
	}
	.sm\:text-18 {
		font-size: var(--text-18) !important;
	}
	.sm\:text-20 {
		font-size: var(--text-20) !important;
	}
	.sm\:text-22 {
		font-size: var(--text-22) !important;
	}
	.sm\:text-24 {
		font-size: var(--text-24) !important;
	}
	.sm\:text-25 {
		font-size: var(--text-25) !important;
	}
	.sm\:text-26 {
		font-size: var(--text-26) !important;
	}
	.sm\:text-30 {
		font-size: var(--text-30) !important;
	}
	.sm\:text-40 {
		font-size: var(--text-40) !important;
	}
	.sm\:text-50 {
		font-size: var(--text-50) !important;
	}
	.sm\:text-60 {
		font-size: var(--text-60) !important;
	}
	.sm\:text-80 {
		font-size: var(--text-80) !important;
	}
}

@media (max-width: 479px) {
	.xs\:text-4 {
		font-size: var(--text-4) !important;
	}
	.xs\:text-7 {
		font-size: var(--text-7) !important;
	}
	.xs\:text-10 {
		font-size: var(--text-10) !important;
	}
	.xs\:text-12 {
		font-size: var(--text-12) !important;
	}
	.xs\:text-13 {
		font-size: var(--text-13) !important;
	}
	.xs\:text-14 {
		font-size: var(--text-14) !important;
	}
	.xs\:text-15 {
		font-size: var(--text-15) !important;
	}
	.xs\:text-16 {
		font-size: var(--text-16) !important;
	}
	.xs\:text-18 {
		font-size: var(--text-18) !important;
	}
	.xs\:text-20 {
		font-size: var(--text-20) !important;
	}
	.xs\:text-22 {
		font-size: var(--text-22) !important;
	}
	.xs\:text-24 {
		font-size: var(--text-24) !important;
	}
	.xs\:text-25 {
		font-size: var(--text-25) !important;
	}
	.xs\:text-26 {
		font-size: var(--text-26) !important;
	}
	.xs\:text-30 {
		font-size: var(--text-30) !important;
	}
	.xs\:text-40 {
		font-size: var(--text-40) !important;
	}
	.xs\:text-50 {
		font-size: var(--text-50) !important;
	}
	.xs\:text-60 {
		font-size: var(--text-60) !important;
	}
	.xs\:text-80 {
		font-size: var(--text-80) !important;
	}
}

.lh-1 {
	line-height: 1 !important;
}

.lh-11 {
	line-height: 1.1 !important;
}

.lh-12 {
	line-height: 1.2 !important;
}

.lh-13 {
	line-height: 1.3 !important;
}

.lh-14 {
	line-height: 1.4 !important;
}

.lh-15 {
	line-height: 1.5 !important;
}

.lh-16 {
	line-height: 1.6 !important;
}

.lh-17 {
	line-height: 1.7 !important;
}

.lh-18 {
	line-height: 1.8 !important;
}

.lh-19 {
	line-height: 1.9 !important;
}

.lh-2 {
	line-height: 2 !important;
}

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

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

@media (max-width: 1199px) {
	.xl\:text-center {
		text-align: center !important;
	}
	.xl\:text-right {
		text-align: right !important;
	}
	.xl\:text-left {
		text-align: left !important;
	}
}

@media (max-width: 991px) {
	.lg\:text-center {
		text-align: center !important;
	}
	.lg\:text-right {
		text-align: right !important;
	}
	.lg\:text-left {
		text-align: left !important;
	}
}

@media (max-width: 767px) {
	.md\:text-center {
		text-align: center !important;
	}
	.md\:text-right {
		text-align: right !important;
	}
	.md\:text-left {
		text-align: left !important;
	}
}

@media (max-width: 575px) {
	.sm\:text-center {
		text-align: center !important;
	}
	.sm\:text-right {
		text-align: right !important;
	}
	.sm\:text-left {
		text-align: left !important;
	}
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}
.sectionTitle__text {
	font-weight: 500;
}

.sectionTitle.-md .sectionTitle__title {
	font-size: var(--text-30);
}

@media (max-width: 767px) {
	.sectionTitle.-md .sectionTitle__title {
		font-size: var(--text-26);
	}
}

.sectionTitle.-lg .sectionTitle__title {
	font-size: var(--text-40);
}

.masthead.-type-1 {
	position: relative;
	padding-top: 330px;
	padding-bottom: 210px;
}

@media (max-width: 991px) {
	.masthead.-type-1 {
		padding-top: 260px;
		padding-bottom: 180px;
	}
}

@media (max-width: 575px) {
	.masthead.-type-1 {
		padding-top: 160px;
		padding-bottom: 20px;
	}
}

.masthead.-type-1 .masthead__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.masthead.-type-1 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-1 .masthead__bg::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(5, 16, 54, 0.5) 0%, #051036 72.43%);
	opacity: 0.85;
}

.masthead.-type-2 {
	position: relative;
}

.masthead.-type-2 .mainSearch {
	position: absolute;
	bottom: 30px;
}

@media (max-width: 1199px) {
	.masthead.-type-2 .mainSearch {
		position: relative;
		bottom: 0;
		width: 100%;
	}
}

.masthead.-type-2 .masthead__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 70px);
}

@media (max-width: 1199px) {
	.masthead.-type-2 .masthead__bg {
		height: 100%;
	}
}

.masthead.-type-2 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-2 .masthead__tabs {
	padding-top: 90px;
}

@media (max-width: 767px) {
	.masthead.-type-2 .masthead__tabs {
		padding-top: 74px;
	}
}

.masthead.-type-2 .masthead__content {
	padding-top: 120px;
}

@media (max-width: 1199px) {
	.masthead.-type-2 .masthead__content {
		padding-top: 120px;
		padding-bottom: 80px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-2 .masthead__content {
		padding-top: 40px;
	}
}

@media (max-width: 575px) {
	.masthead.-type-2 .masthead__content {
		padding-bottom: 20px;
	}
}

.masthead.-type-2 .masthead__images {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: 1fr 1fr;
	gap: 30px;
}

@media (max-width: 575px) {
	.masthead.-type-2 .masthead__images {
		gap: 12px;
	}
}

.masthead.-type-2 .masthead__images img {
	border-radius: 4px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-2 .masthead__images > *:nth-child(1) {
	grid-row: span 2;
}

.masthead.-type-3 {
	position: relative;
	padding-top: 360px;
	padding-bottom: 100px;
}

@media (max-width: 991px) {
	.masthead.-type-3 {
		padding-top: 220px;
		padding-bottom: 80px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-3 {
		padding-top: 160px;
		padding-bottom: 30px;
	}
}

.masthead.-type-3 .masthead__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.masthead.-type-3 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-3 .masthead__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-3 .masthead__tabs {
	margin-top: 110px;
}

@media (max-width: 767px) {
	.masthead.-type-3 .masthead__tabs {
		margin-top: 40px;
	}
}

.masthead.-type-3 .masthead__tabs .tabs__controls {
	bottom: -5px;
}

.masthead.-type-3 .masthead__tabs .tabs__button {
	height: 64px;
}

.masthead.-type-4 {
	position: relative;
	margin: 20px 20px 0 20px;
}

@media (max-width: 1199px) {
	.masthead.-type-4 {
		margin: 0;
	}
}

.masthead.-type-4 .masthead__content {
	position: relative;
	z-index: 1;
	padding-top: 360px;
	padding-bottom: 140px;
}

@media (max-width: 991px) {
	.masthead.-type-4 .masthead__content {
		padding-top: 220px;
		padding-bottom: 120px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-4 .masthead__content {
		padding-top: 160px;
		padding-bottom: 100px;
	}
}

.masthead.-type-4 .masthead__scroll {
	position: absolute;
	z-index: 5;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 767px) {
	.masthead.-type-4 .masthead__scroll {
		display: none;
	}
}

.masthead.-type-4 .masthead__scroll .-line {
	width: 1px;
	height: 48px;
	background-color: white;
	margin-top: 3px;
}

.masthead.-type-4 .masthead-slider {
	position: relative;
	z-index: 0;
}

.masthead.-type-4 .masthead-slider .masthead__image {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.masthead.-type-4 .masthead-slider .masthead__image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-4 .masthead-slider img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-4 .masthead-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
}

.masthead.-type-4 .masthead-slider__nav.-prev {
	left: 40px;
}

.masthead.-type-4 .masthead-slider__nav.-next {
	right: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-4 .masthead-slider__nav {
		top: unset;
		bottom: 30px;
		transform: none;
	}
	.masthead.-type-4 .masthead-slider__nav.-prev {
		left: unset;
		right: calc(50% + 10px);
	}
	.masthead.-type-4 .masthead-slider__nav.-next {
		right: unset;
		left: calc(50% + 10px);
	}
}

.masthead.-type-4 .mainSearch {
	margin-top: 90px;
}

@media (max-width: 767px) {
	.masthead.-type-4 .mainSearch {
		margin-top: 40px;
	}
}

.masthead.-type-5 {
	position: relative;
	padding-top: 260px;
	padding-bottom: 200px;
}

@media (max-width: 991px) {
	.masthead.-type-5 {
		padding-top: 220px;
		padding-bottom: 160px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-5 {
		padding-top: 160px;
		padding-bottom: 40px;
	}
}

.masthead.-type-5 .masthead__bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 58%;
	z-index: -1;
}

@media (max-width: 767px) {
	.masthead.-type-5 .masthead__bg {
		width: 100%;
	}
}

.masthead.-type-5 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-5 .masthead__image {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 42%;
	z-index: -2;
}

.masthead.-type-5 .masthead__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-5 .-line {
	position: absolute;
	bottom: -40%;
	left: 0;
	width: 100%;
}

.masthead.-type-5 .-line img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-6 {
	position: relative;
	padding-top: 360px;
	padding-bottom: 300px;
}

@media (max-width: 1199px) {
	.masthead.-type-6 {
		padding-top: 240px;
		padding-bottom: 180px;
	}
}

@media (max-width: 991px) {
	.masthead.-type-6 {
		padding-top: 200px;
		padding-bottom: 60px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-6 {
		padding-top: 120px;
		padding-bottom: 40px;
	}
}

.masthead.-type-6 .masthead__bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.masthead.-type-6 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-6 .masthead__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-7 {
	position: relative;
	padding-top: 90px;
}

@media (max-width: 991px) {
	.masthead.-type-7 {
		padding-bottom: 200px;
	}
}

.masthead.-type-7 .masthead__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.masthead.-type-7 .masthead__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-7 .masthead__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.5);
}

.masthead.-type-7 .masthead__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 650px;
}

@media (max-width: 991px) {
	.masthead.-type-7 .masthead__content {
		height: auto;
		width: 400px;
		max-width: 100%;
		padding-top: 100px;
		padding-bottom: 220px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-7 .masthead__content {
		padding-top: 60px;
		padding-bottom: 260px;
	}
}

.masthead.-type-7 .masthead-slider {
	overflow: hidden;
	position: relative;
	width: 1720px;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 4px;
}

.masthead.-type-7 .masthead-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.masthead.-type-7 .masthead-slider__nav.-prev {
	left: 40px;
}

.masthead.-type-7 .masthead-slider__nav.-next {
	right: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-7 .masthead-slider__nav {
		top: 52%;
	}
	.masthead.-type-7 .masthead-slider__nav.-prev {
		left: unset;
		right: 51%;
	}
	.masthead.-type-7 .masthead-slider__nav.-next {
		right: unset;
		left: 51%;
	}
}

.masthead.-type-7 .mainSearch {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -50px;
	z-index: 1;
}

@media (max-width: 991px) {
	.masthead.-type-7 .mainSearch {
		bottom: 0;
		width: 480px;
		max-width: calc(100% - 40px);
	}
}

.masthead.-type-8 {
	position: relative;
	padding-top: 200px;
}

@media (max-width: 991px) {
	.masthead.-type-8 {
		padding-top: 160px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-8 {
		padding-top: 120px;
	}
}

.masthead.-type-8 .masthead__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 700px;
	z-index: -1;
}

.masthead.-type-8 .masthead-bottom {
	position: relative;
	max-width: 1500px;
	margin: 0 auto;
}

.masthead.-type-8 .mainSearch {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -50px;
	z-index: 2;
}

@media (max-width: 991px) {
	.masthead.-type-8 .mainSearch {
		position: relative;
		top: unset;
		left: unset;
		transform: none;
		max-width: 600px;
	}
}

.masthead.-type-8 .masthead-slider {
	position: relative;
	border-radius: 16px;
	margin: 0 24px;
}

@media (max-width: 767px) {
	.masthead.-type-8 .masthead-slider {
		border-radius: 0;
		margin: 0;
	}
}

.masthead.-type-8 .masthead-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.masthead.-type-8 .masthead-slider__nav.-prev {
	left: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-8 .masthead-slider__nav.-prev {
		left: 12px;
	}
}

.masthead.-type-8 .masthead-slider__nav.-next {
	right: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-8 .masthead-slider__nav.-next {
		right: 12px;
	}
}

.masthead.-type-9 {
	position: relative;
	z-index: 0;
}

.masthead.-type-9 .masthead__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	max-height: 550px;
}

.masthead.-type-9 .masthead__bg img {
	width: 100%;
	height: 100%;
	/* height: 100vh; */
	-o-object-fit: cover;
	object-fit: cover;
}

.masthead.-type-9 .masthead__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(2, 6, 20, 0.5);
}

.masthead.-type-9 .masthead__scroll {
	position: absolute;
	bottom: 30px;
	right: 50px;
}

@media (max-width: 1199px) {
	.masthead.-type-9 .masthead__scroll {
		display: none;
	}
}

.masthead.-type-9 .masthead__scroll .-icon {
	position: relative;
}

.masthead.-type-9 .masthead__scroll .-icon > *:nth-child(1) {
	width: 28px;
	height: 40px;
	border: 2px solid white;
	border-radius: 200px;
}

.masthead.-type-9 .masthead__scroll .-icon > *:nth-child(2) {
	position: absolute;
	top: 8px;
	left: 10px;
	width: 8px;
	height: 8px;
	border: 2px solid white;
	border-radius: 100%;
	transition: all 0.5s ease;
}

.masthead.-type-9 .masthead__scroll:hover .-icon > *:nth-child(2) {
	transform: translateY(16px);
}

.masthead.-type-9 .masthead-slider {
	position: relative;
	z-index: -1;
}

.masthead.-type-9 .masthead-slider .swiper-slide {
	padding-top: 200px;
	padding-bottom: 22px;
}

@media (max-width: 991px) {
	.masthead.-type-9 .masthead-slider .swiper-slide {
		padding-top: 200px;
		padding-bottom: 150px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-9 .masthead-slider .swiper-slide {
		padding-top: 160px;
		/* padding-bottom: 120px; */
	}
}

.masthead.-type-9 .masthead-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.masthead.-type-9 .masthead-slider__nav.-prev {
	left: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-9 .masthead-slider__nav.-prev {
		left: 12px;
	}
}

.masthead.-type-9 .masthead-slider__nav.-next {
	right: 40px;
}

@media (max-width: 767px) {
	.masthead.-type-9 .masthead-slider__nav.-next {
		right: 12px;
	}
}

.masthead.-type-9 .mainSearch-wrap {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	width: 55vw;
}

@media (max-width: 1300px) {
	.masthead.-type-9 .mainSearch-wrap {
		left: 50%;
		transform: translateX(-50%);
		justify-content: center;
		width: 100%;
		background-color: transparent !important;
	}
}

@media (max-width: 991px) {
	.masthead.-type-9 .mainSearch-wrap {
		left: unset;
		transform: none;
		position: relative;
		margin-top: 50px;
	}
}

.masthead.-type-10 {
	position: relative;
	padding-top: 360px;
	padding-bottom: 205px;
	background: linear-gradient(180deg, rgba(53, 84, 209, 0.1) 0%, rgba(196, 196, 196, 0) 100%);
}

@media (max-width: 991px) {
	.masthead.-type-10 {
		padding-top: 140px;
		padding-bottom: 60px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-10 {
		padding-top: 120px;
		padding-bottom: 40px;
	}
}

.masthead.-type-10 .masthead__content {
	position: relative;
	z-index: 1;
}

.masthead.-type-10 .masthead__image {
	position: absolute;
	z-index: 0;
	display: flex;
	top: 160px;
	right: 0;
}

@media (max-width: 991px) {
	.masthead.-type-10 .masthead__image {
		top: unset;
		position: relative;
		margin-top: 30px;
	}
}

.masthead.-type-10 .container-1500 {
	margin: 0 auto;
	max-width: 1530px;
	padding: 0 15px;
}

@media (max-width: 1600px) {
	.masthead.-type-10 .container-1500 {
		max-width: 1320px;
	}
}

@media (max-width: 1399px) {
	.masthead.-type-10 .container-1500 {
		max-width: 1140px;
	}
}

@media (max-width: 1199px) {
	.masthead.-type-10 .container-1500 {
		max-width: 960px;
	}
}

@media (max-width: 991px) {
	.masthead.-type-10 .container-1500 {
		max-width: 720px;
	}
}

@media (max-width: 767px) {
	.masthead.-type-10 .container-1500 {
		max-width: 540px;
	}
}

@media (max-width: 575px) {
	.masthead.-type-10 .container-1500 {
		max-width: 100%;
	}
}

.masthead.-type-10 .mainSearch .button-grid {
	grid-template-columns: 1fr 1fr auto auto auto auto;
}

@media (max-width: 991px) {
	.masthead.-type-10 .mainSearch .button-grid {
		grid-template-columns: 1fr;
	}
}

.citiesCard.-type-1 {
	position: relative;
	z-index: 0;
}

.citiesCard.-type-1 .citiesCard__image {
	border-radius: inherit;
}

.citiesCard.-type-1 .citiesCard__image img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.citiesCard.-type-1 .citiesCard__content {
	overflow: hidden;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.citiesCard.-type-1 .citiesCard__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.4);
	border-radius: inherit;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.citiesCard.-type-1 .citiesCard__top {
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.citiesCard.-type-1 .citiesCard__bottom {
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translateY(80px);
}

.citiesCard.-type-1:hover {
	cursor: pointer;
}

.citiesCard.-type-1:hover .citiesCard__top {
	opacity: 1;
}

.citiesCard.-type-1:hover .citiesCard__bottom {
	transform: translateY(0);
}

.citiesCard.-type-1:hover .citiesCard__bg {
	opacity: 1;
}

.citiesCard.-type-2 {
	position: relative;
	z-index: 0;
}

.citiesCard.-type-2 .citiesCard__image {
	overflow: hidden;
}

.citiesCard.-type-2 .citiesCard__image img {
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-2:hover {
	cursor: pointer;
}
.blog-sec {
	background-color: #1b4754;
}
.blog-sec-2 {
	background-color: #ffffff;
}
.car-sec {
	background-color: #29595a !important;
}
.button text-dark-1 {
	background-color: #74b3b3;
}

.citiesCard.-type-2:hover .citiesCard__image img {
	transform: scale(1.15);
}

.citiesCard.-type-3 {
	position: relative;
	overflow: hidden;
	z-index: 0;
}

@media (max-width: 575px) {
	.citiesCard.-type-3 {
		width: 100%;
		padding-bottom: 100%;
	}
	.citiesCard.-type-3 > * {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.citiesCard.-type-3 .citiesCard__image {
	overflow: hidden;
	border-radius: inherit;
	width: 100%;
	height: 100%;
}

.citiesCard.-type-3 .citiesCard__image img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: inherit;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-3 .citiesCard__content {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.citiesCard.-type-3 .citiesCard__content::before {
	content: "";
	position: absolute;
	border-radius: inherit;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(5, 16, 54, 0.6) 0%, rgba(5, 16, 54, 0) 63.5%);
}

.citiesCard.-type-3:hover .citiesCard__image img {
	transform: scale(1.1);
}

.citiesCard.-type-4 .citiesCard__image {
	overflow: hidden;
}

.citiesCard.-type-4 .citiesCard__image img {
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-4:hover .citiesCard__image img {
	transform: scale(1.1);
}

.citiesCard.-type-5 {
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.citiesCard.-type-5:hover {
	background-color: var(--color-blue-1) !important;
}

.citiesCard.-type-5:hover * {
	color: white !important;
}

.ctaCard.-type-1 {
	position: relative;
	z-index: 0;
}

.ctaCard.-type-1 .ctaCard__image {
	border-radius: inherit;
}

.ctaCard.-type-1 .ctaCard__image img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.ctaCard.-type-1 .ctaCard__content {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.ctaCard.-type-1 .ctaCard__content::before {
	transition: 1s ease;

	content: "";
	border-radius: inherit;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(5, 16, 54, 0.7) 0%, rgba(5, 16, 54, 0) 100%);
}

.ctaCard.-type-1 .ctaCard__content:hover {
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	transition: 1s ease;
}

.ctaCard.-type-1.-no-overlay .ctaCard__content::before {
	display: none;
}

.tabs__content {
	position: relative;
}

.tabs__pane {
	position: absolute;
	top: 0;
	visibility: hidden;
	transition: none;
	opacity: 0;
}

.tabs__pane.is-tab-el-active {
	transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
	position: relative;
	opacity: 1;
	visibility: visible;
}

.tabs.-pills .tabs__controls .tabs__button {
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-pills .tabs__controls .tabs__button:hover {
	color: var(--color-blue-1) !important;
}

.tabs.-pills .tabs__controls .tabs__button.is-tab-el-active {
	color: var(--color-blue-1) !important;
	background-color: rgba(53, 84, 209, 0.05);
}

.tabs.-pills-2 .tabs__controls .tabs__button {
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-pills-2 .tabs__controls .tabs__button:hover {
	color: var(--color-blue-1) !;
}

.tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active {
	color: var(--color-white) !important;
	background-color: #f26122  !important;
}

.tabs.-pills-3 .tabs__controls .tabs__button {
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-pills-3 .tabs__controls .tabs__button:hover {
	color: var(--color-dark-3) !important;
}

.tabs.-pills-3 .tabs__controls .tabs__button.is-tab-el-active {
	color: var(--color-white) !important;
	background-color: var(--color-dark-3) !important;
}

.tabs__controls {
	position: relative;
	overflow: auto;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	white-space: nowrap;
}

.tabs__controls > div {
	scroll-snap-align: center;
}

.tabs.-bookmark .tabs__controls {
	position: relative;
	overflow: auto;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}

.tabs.-bookmark .tabs__controls > div {
	scroll-snap-align: center;
}

.tabs.-bookmark .tabs__button {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-bookmark .tabs__button:hover {
	color: var(--color-blue-1) !important;
}

.tabs.-bookmark .tabs__button.is-tab-el-active {
	color: var(--color-dark-1) !important;
	background-color: white;
}

.tabs.-bookmark-2 .tabs__controls {
	position: relative;
	overflow: auto;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}

.tabs.-bookmark-2 .tabs__controls > div {
	scroll-snap-align: center;
}

.tabs.-bookmark-2 .tabs__button {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-bookmark-2 .tabs__button:hover {
	color: var(--color-blue-1) !important;
}

.tabs.-bookmark-2 .tabs__button.is-tab-el-active {
	color: white !important;
	background-color: rgba(255, 255, 255, 0.1);
}

.tabs.-underline .tabs__controls .tabs__button {
	position: relative;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-underline .tabs__controls .tabs__button::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: white;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.tabs.-underline .tabs__controls .tabs__button:hover {
	color: var(--color-blue-1) !important;
}

.tabs.-underline .tabs__controls .tabs__button.is-tab-el-active::after {
	opacity: 1;
}

.tabs.-underline-2 .tabs__controls .tabs__button {
	position: relative;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tabs.-underline-2 .tabs__controls .tabs__button::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-blue-1);
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.tabs.-underline-2 .tabs__controls .tabs__button:hover {
	color: var(--color-blue-1) !important;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active {
	color: var(--color-blue-1) !important;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active::after {
	opacity: 1;
}

.accordion__icon {
	position: relative;
}

.accordion__icon .icon {
	transition: all 0.2s ease-out;
}

.accordion__icon .icon:nth-child(1) {
	position: absolute;
	top: 0;
	left: 0;
}

.accordion__icon .icon:nth-child(2) {
	position: relative;
	transform: rotate(-90deg);
	opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(1) {
	transform: rotate(90deg);
	opacity: 0;
}

.accordion__item.is-active .accordion__icon > *:nth-child(2) {
	transform: none;
	opacity: 1;
}

.accordion__content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease-out;
}

.accordion__button {
	cursor: pointer;
}

.accordion.-simple .accordion__button {
	cursor: pointer;
	transition: 0.4s;
}

.accordion.-simple .accordion__button button {
	color: var(--text-dark-1);
}

.accordion.-simple .accordion__icon {
	transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon > *:nth-child(1) {
	position: absolute;
	transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__icon > *:nth-child(2) {
	position: relative;
	transform: rotate(-90deg);
	opacity: 0;
	transition: all 0.2s ease-out;
}

.accordion.-simple .accordion__item.is-active .accordion__icon {
	background-color: var(--color-dark-1) !important;
	color: white !important;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(1) {
	transform: rotate(90deg);
	opacity: 0;
}

.accordion.-simple .accordion__item.is-active .accordion__icon > *:nth-child(2) {
	transform: none;
	opacity: 1;
}

.accordion.-map .accordion__icon {
	transition: all 0.2s ease-out;
}

.accordion.-map .accordion__item.is-active .accordion__icon {
	background-color: var(--color-blue-1) !important;
	color: white !important;
}

.accordion.-map .accordion__item.is-active .accordion__icon > * {
	transform: none !important;
	opacity: 1 !important;
}

.accordion.-db-sidebar .accordion__button {
	cursor: pointer;
	transition: 0.4s;
}

.accordion.-db-sidebar .accordion__button button {
	color: var(--text-dark-1);
}

.accordion.-db-sidebar .accordion__icon {
	transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__icon > *:nth-child(1) {
	position: absolute;
	transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__icon > *:nth-child(2) {
	position: relative;
	transform: rotate(-90deg);
	opacity: 0;
	transition: all 0.2s ease-out;
}

.accordion.-db-sidebar .accordion__item.is-active .sidebar__button {
	background-color: rgba(53, 84, 209, 0.05) !important;
	color: var(--color-blue-1) !important;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon {
	background-color: var(--color-dark-1) !important;
	color: white !important;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon > *:nth-child(1) {
	transform: rotate(90deg);
	opacity: 0;
}

.accordion.-db-sidebar .accordion__item.is-active .accordion__icon > *:nth-child(2) {
	transform: none;
	opacity: 1;
}

.header-margin {
	margin-top: 90px;
}

@media (max-width: 767px) {
	.header-margin {
		margin-top: 80px;
	}
}

.header {
	background: white !important;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 90px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
	.header {
		height: 80px;
	}
}

.header.-fixed {
	position: absolute !important;
}

.header .is-menu-opened-hide {
	transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.is-menu-opened {
	background-color: white !important;
	border-bottom: 1px solid var(--color-border);
}

.header.is-menu-opened .is-menu-opened-hide {
	opacity: 0;
	pointer-events: none;
}

.header.is-sticky {
	margin: 0 !important;
	box-shadow: 0 0 15px rgb(0 0 0 / 15%);
	-webkit-box-shadow: 0 0 15px rgb(0 0 0 / 15%);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.header .row {
	flex-wrap: nowrap;
}

.header__container {
	width: 100%;
}

.header__container-1500 {
	max-width: 1560px;
}

.header .header-logo {
	position: relative;
}

.header .header-logo img {
	width: 200px;
}

@media (max-width: 767px) {
	.header .header-logo img {
		max-width: 200px;
	}
}

.header .header-logo img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.header .header-logo.is-logo-dark img:nth-child(1) {
	opacity: 0;
}

.header .header-logo.is-logo-dark img:nth-child(2) {
	opacity: 1;
}

.header.-type-2 {
	margin-top: 20px;
	transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), margin 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 1199px) {
	.header.-type-2 {
		margin-top: 0;
	}
}

.header.-type-2.is-sticky {
	margin: 0;
}

@media (max-width: 1199px) {
	.header.-type-2 .col-auto-menu {
		position: absolute;
	}
}

@media (max-width: 767px) {
	.header.-type-5 .header__buttons > *:nth-child(1) {
		color: white !important;
		background-color: var(--color-dark-1) !important;
		border-color: var(--color-dark-1) !important;
	}
	.header.-type-5 .header__buttons > *:nth-child(1):hover {
		background-color: var(--color-blue-1) !important;
		color: white !important;
		border-color: var(--color-blue-1) !important;
	}
	.header.-type-5 .header__buttons > *:nth-child(2) {
		color: var(--color-dark-1) !important;
		border-color: var(--color-dark-1) !important;
	}
	.header.-type-5 .header__buttons > *:nth-child(2):hover {
		background-color: var(--color-blue-1) !important;
		color: white !important;
		border-color: var(--color-blue-1) !important;
	}
}

.header.-type-5.-header-5-sticky {
	background-color: white !important;
	box-shadow: 0px 10px 30px 0px #05103608;
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(1) {
	color: white !important;
	background-color: var(--color-dark-1) !important;
	border-color: var(--color-dark-1) !important;
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(1):hover {
	background-color: var(--color-blue-1) !important;
	color: white !important;
	border-color: var(--color-blue-1) !important;
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(2) {
	color: var(--color-dark-1) !important;
	border-color: var(--color-dark-1) !important;
}

.header.-type-5.-header-5-sticky .header__buttons > *:nth-child(2):hover {
	background-color: var(--color-blue-1) !important;
	color: white !important;
	border-color: var(--color-blue-1) !important;
}

.header.-dashboard .header__container {
	display: flex;
	align-items: center;
}

.header.-dashboard .header__container > .row {
	width: 100%;
}

.header.-dashboard .-left-side {
	flex-shrink: 0;
	width: calc(var(--dashboard-width) - 30px);
}

@media (max-width: 991px) {
	.header.-dashboard .-left-side {
		width: auto;
	}
}

@media (min-width: 1200px) {
	.header .header-menu .menu li {
		position: relative;
	}
	.header .header-menu .menu li a {
		cursor: pointer;
	}
	.header .header-menu .menu li:hover > .subnav {
		opacity: 1;
		pointer-events: auto;
	}
	.header .header-menu .menu li.-has-mega-menu:hover > .mega {
		opacity: 1 !important;
		pointer-events: auto !important;
	}
	.header .header-menu .menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 14px;
		transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.header .header-menu .menu__nav {
		display: flex;
		margin-bottom: 0;
	}
	.header .header-menu .menu__nav > li {
		padding: 10px;
	}
	.header .header-menu .menu__nav > li.menu-item-has-children > a .icon {
		font-size: 7px;
	}
	.header .header-menu .menu__nav > li > .subnav::before {
		content: '';
		position: absolute;
		top: -5px;
		left: 20px;
		width: 10px;
		height: 10px;
		background-color: white;
		transform: rotate(45deg);
	}
	.header .header-menu .menu__nav a {
		padding: 10px;
	}
	.header .header-menu .menu .subnav {
		position: absolute;
		top: 100%;
		background-color: white;
		border-radius: 4px;
		color: var(--color-dark-1) !important;
		min-width: 240px;
		padding: 20px;
		box-shadow: 0px 10px 60px 0px #0510360D;
		opacity: 0;
		pointer-events: none;
		transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.header .header-menu .menu .subnav__backBtn {
		display: none;
	}
	.header .header-menu .menu .subnav .subnav {
		/* top: 0;
		left: 100%; */
		top: -16px;
    	left: 100%;
	}
	.header .header-menu .menu .subnav > li > a {
		padding: 5px 15px;
		border-radius: 4px;
	}
	.header .header-menu .menu .subnav > li > a:hover {
		color: var(--color-blue-1);
		background-color: rgba(53, 84, 209, 0.05);
	}
	.header .header-menu .menu .mega-mobile {
		display: none;
	}
	.header .header-menu .menu .mega {
		position: absolute;
		top: 100%;
		background-color: white;
		padding: 30px;
		border-radius: 4px;
		color: var(--color-dark-1);
		width: 800px;
		box-shadow: 0px 10px 30px 0px #05103608;
		transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
		opacity: 0;
		pointer-events: none;
	}
	.header .header-menu .menu .mega__content {
		display: flex;
		justify-content: space-between;
	}
	.header .header-menu .menu .mega__grid {
		display: grid;
		gap: 60px;
		grid-template-columns: auto auto auto;
	}
	.header .header-menu .menu .mega__image {
		width: 270px;
	}
	.header .header-menu .menu .mega__image img {
		width: 100%;
		min-height: 300px;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.header .header-menu .menu .mega a {
		padding-left: 0px;
		padding-right: 0px;
	}
	.header .header-menu .menu__backButton {
		display: none;
	}
	.header .header-menu .mobile-overlay {
		display: none;
	}
	.header .header-menu .mobile-bg {
		display: none;
	}
	.header .header-menu .mobile-back-button {
		display: none;
	}
	.header .header-menu .mobile-footer {
		display: none;
	}
}

@media (max-width: 1199px) {
	.header .header-menu {
		position: fixed;
		top: 80px;
		left: 0;
		z-index: 10;
		width: 100vw;
		height: calc(100vh - 80px);
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		opacity: 0;
		pointer-events: none;
	}
	.header .header-menu.is-menu-active {
		opacity: 1;
		pointer-events: auto;
	}
	.header .header-menu.is-menu-active .-is-active {
		pointer-events: auto !important;
		overflow-y: scroll;
		overflow-x: hidden;
	}
	.header .header-menu .mega {
		display: none;
	}
	.header .header-menu ul {
		overflow-y: hidden;
		overflow-x: hidden;
	}
	.header .header-menu__content {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.header .header-menu .mobile-overlay {
		display: none;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(5, 16, 54, 0.7);
		z-index: -2;
	}
	.header .header-menu .mobile-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-color: white;
	}
	.header .header-menu .menu {
		overflow-y: scroll;
		overflow-x: hidden;
		position: relative;
		height: 100%;
		padding: 20px;
		/* padding-top: 40px; */
	}
	.header .header-menu .menu ul {
		pointer-events: none;
	}
	.header .header-menu .menu li {
		overflow: hidden;
	}
	.header .header-menu .menu a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 50px;
		padding: 0 20px;
		border-radius: 4px;
		font-weight: 500;
		color: var(--color-dark-1);
		transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.header .header-menu .menu a .icon {
		font-size: 10px;
		transform: rotate(-90deg);
	}
	.header .header-menu .menu a:hover {
		color: var(--color-blue-1);
	}
	.header .header-menu .menu__nav {
		display: flex;
		flex-direction: column;
	}
	.header .header-menu .menu__nav > li > a {
		font-size: 20px;
		color: #005ea5 !important;
	}
	.header .header-menu .menu__nav > li > a:hover {
		background-color: rgba(53, 84, 209, 0.05) !important;
	}
	.header .header-menu .menu .subnav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-top: 40px;
	}
	.header .header-menu .menu .subnav li {
		padding: 0 20px;
	}
	.header .header-menu .menu .subnav a {
		height: 40px;
		font-size: 18px;
		padding: 0 20px;
		transform: translateY(100%);
	}
	.header .header-menu .menu .subnav__backBtn {
		margin-bottom: 20px;
	}
	.header .header-menu .menu .subnav__backBtn li {
		padding: 0;
	}
	.header .header-menu .menu .subnav__backBtn a {
		justify-content: flex-start;
		height: 50px;
		font-size: 20px;
		color: var(--color-blue-1);
		background-color: rgba(53, 84, 209, 0.05) !important;
	}
	.header .header-menu .menu .subnav__backBtn a .icon {
		margin-right: 12px;
		transform: rotate(90deg);
	}
}

.cardImage {
	position: relative;
	z-index: 0;
	border-radius: inherit;
}

.cardImage:hover .cardImage-slider__nav {
	opacity: 1 !important;
}

.cardImage:hover .pagination__item {
	opacity: 1 !important;
}

.cardImage__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	border-radius: inherit;
}

.cardImage__content:hover {
	-webkit-filter: sepia(0);
	filter: sepia(0);
}
.vc_column_container {
	padding-left: 0;
	padding-right: 0;
}
.vc_row-has-fill > .vc_column_container > .vc_column-inner {
	padding-top: 35px;
}
.vc_row.vc_row-no-padding .vc_column-inner {
	padding-left: 0;
	padding-right: 0;
}
.vc_column_container > .vc_column-inner {
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.vc_column-inner::before {
	content: " ";
	display: table;
}
.page-single__content p {
	margin: 0;
	margin-bottom: 10px;
	text-align: justify;
}
.font-name {
	margin-bottom: 10px;
	font-family: 'Kaushan Script';
	font-size: 1.200em;
}
.title--underline {
	border-bottom: 1px solid #e9e9e9;
}
.title--center {
	margin-bottom: 30px;
	text-align: center;
	margin-top: 20px;
}

.title--decoration-bottom-center {
	padding-bottom: 20px;
}
.title--decoration-bottom-center:after {
	content: ' ';
	display: block;
	background: #036cbd;
	position: absolute;
	height: 5px;
	width: 30px;
	bottom: -1px;
	left: 50%;
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 50px;
}
.vc_row.vc_row-flex {
	box-sizing: border-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.vc_row.vc_row-flex > .vc_column_container {
	display: flex;
}
.vc_row.vc_row-o-content-middle > .vc_column_container > .vc_column-inner {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.vc_row.vc_row-flex > .vc_column_container > .vc_column-inner {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.vc_ie-flexbox-fixer,
.vc_row.vc_row-flex > .vc_column_container > .vc_column-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
}
.vc_column-inner::before {
	content: " ";
	display: table;
}
.wpb_start_animation.wpb_left-to-right {
	-webkit-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	opacity: 1;
	filter: alpha(opacity=100);
}
.swiper-slide {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	min-height:400px;
	top:40px;
	position: relative;
}
.atgrid__item {
	background: #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, .09);
	border-radius: 3px;
}
.atgrid__item__title a:hover {
	color: #47a0ff;
}
.item-attributes {
	display: table;
	width: 100%;
	height: 50px;
	border-top: 1px solid #e4e4e4;
	background: #fff;
	font-family: share tech mono;
	font-weight: 400;
	font-style: normal;
}
.atgrid__item__top {
	min-height: 45px;
	position: relative;
	width: 100% !important;
	float: none;
	height: auto;
	padding: 10px;
}
.page-single__content p {
	margin: 0;
	margin-bottom: 10px;
	text-align: justify;
}
.atgrid__item__top__image {
	display: block;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	border-bottom: none;
}
img.attachment-thumb_tour_listing_small.size-thumb_tour_listing_small.wp-post-image {
	height: 240px;
	width: 396px;
	margin: -18px 0 -14px 0;
}
img.attachment-thumb_tour_listing_small.size-thumb_tour_listing_small.wp-post-image {
	height: 250px;
	width: 396px;
	margin: -18px 0 -14px 0;
}

img.attachment-thumb_tour_listing_small.size-thumb_tour_listing_small.wp-post-image:hover {
	opacity: .5;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.atgrid__item__top img {
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: 0 0 #000;
}
.atgrid__item__angle-wrap {
	pointer-events: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 2;
}

.atgrid__item__angle {
	width: 200px;
	height: 35px;
	line-height: 35px;
	position: absolute;
	top: 20px;
	right: -67px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	color: #fefefe;
	text-align: center;
	background: #ff47a0;
	font-size: .867em;
	font-family: share tech mono;
	font-weight: 400;
	font-style: normal;
}
.atgrid__item__price {
	width: 100%;
	position: absolute;
	bottom: 0;
	pointer-events: none;
	right: 0;
	text-align: right;
}
.atgrid__item__price__button {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	padding: 0 20px;
	background: #495760;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	color: #fefefe;
	font-size: 1.333em;
	font-family: share tech mono;
	font-weight: 400;
	font-style: normal;
}

.atgrid__item__icons {
	position: absolute;
	bottom: 5px;
	left: 30px;
	color: #fff;
	text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}
.atgrid__item__content {
	padding: 30px;
	width: 100%;
	border: none;
	background-color: aliceblue;
}
.atgrid__item__title {
	margin: 0;
	font-size: 1.4em;
	font-family: share tech mono;
	font-weight: 400;
	font-style: normal;
}
.atgrid__item__title a {
	color: #333;
	border-bottom: none;
	font-size: 21px;
	font-weight: 600;
}
.atgrid__item__description {
	margin-top: 10px;
	color: #6e6e6e;
	line-height: 1.6em;
}

.item-attributes__item:last-child {
	border: none;
}

.view-detail {
	background: #036cbd;
}
.item-attributes__item {
	display: table-cell;
	padding: 5px;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #e4e4e4;
	color: #828282;
	font-size: .933em;
}
.card-2 {
	box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
	border-radius: 4px;
	transition: 0.5s;
	position: unset;
	margin: 0 0 40px;
}
.card-2 .box {
	text-align: center;
	padding: 0 0px;
	box-sizing: border-box;
	width: 100%;
}
.card-2 .box .img {
	height: 200px;
	object-fit: cover;
	margin: 0 auto;
	overflow: hidden;
}
.card-2 .box .img img {
	width: 100%;
	height: 100%;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}
.card-2 .box h2 {
	font-size: 18px;
	color: #000;
	margin: 20px auto 15px;
}
.our_pak h2 {
	color: #ffeb3b;
	display: block;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	margin-bottom: 0px;
}
.card-2 .box p {
	color: #00adef;
	border: 1px dashed #eee;
	padding: 10px;
	background: #fbfbfb;
	letter-spacing: 1.5px;
}
.card-2 .box ul li {
	list-style: none;
	float: left;
	font-size: 14px;
}

.tp li {
	margin: 0 26px 15px;
}

.card-2 .box h2 span {
	font-size: 14px;
	background: #055bac;
	color: #fff;
	display: inline-block;
	padding: 6px 10px;
	border-radius: 5px;
	margin-top: 10px;
	letter-spacing: 1px;
	font-weight: 700;
}

.sectionTitle.-md .sectionTitle__title-2 {
	font-size: var(--text-30);
}
.sectionTitle__title-2 {
	text-align: center;
}

.sectionTitle.-md .sectionTitle__title-2 h2 {
	margin: 0;
	line-height: 1.45;
	font-weight: 700;
}
.sectionTitle__text {
	font-weight: 500;
}
.vc_row {
	margin-left: -15px;
	margin-right: -15px;
}
.vc_column_container > .vc_column-inner {
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.title--underline {
	border-bottom: 1px solid #e9e9e9;
}

.title--center {
	margin-bottom: 30px;
	text-align: center;
}
.title--decoration-bottom-center {
	padding-bottom: 20px;
}
.title {
	font-size: 20px;
	color: #000;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
}

@media (min-width: 768px) {
	.vc_col-sm-12 {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.vc_col-sm-4 {
		/* width: 33.33333333%; */
	}
	.img.attachment-thumb_tour_listing_small.size-thumb_tour_listing_small.wp-post-image {
		margin-top: 10px;
	}
}
.atgrid__item__angle {
	width: 270px;
	height: 35px;
	line-height: 32px;
	position: absolute;
	top: 32px;
	right: -72px;
}

.cardImage__content > img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: inherit;
}

.cardImage .cardImage-slider .swiper-wrapper {
	position: relative;
	z-index: 0;
}

.cardImage .cardImage-slider__pagination {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	color: rgba(255, 255, 255, 0.7);
}

.cardImage .cardImage-slider__pagination.-sm {
	bottom: 15px;
}

.cardImage .cardImage-slider__pagination > * + * {
	margin-left: 7px;
}

.cardImage .cardImage-slider__pagination .pagination__item {
	height: 8px;
	width: 8px;
	border-radius: 100%;
	background-color: currentColor;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(0.75);
	opacity: 0;
}

.cardImage .cardImage-slider__pagination .pagination__item.is-active {
	transform: scale(1);
	background-color: var(--color-white);
	opacity: 1;
}

.cardImage .cardImage-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.cardImage .cardImage-slider__nav.-prev {
	left: 20px;
}

.cardImage .cardImage-slider__nav.-next {
	right: 20px;
}

.cardImage__wishlist {
	position: absolute;
	top: 20px;
	right: 20px;
}

.cardImage__wishlist.-sm {
	top: 10px;
	right: 10px;
}

.cardImage__leftBadge {
	position: absolute;
	top: 20px;
	left: 0;
}

.footer.-dashboard {
	border-top: 1px solid var(--color-border);
}

.footer.-dashboard .footer__row {
	padding: 15px 0;
}

.mainSearch {
	position: relative;
	z-index: 20;
}

@media (max-width: 991px) {
	.mainSearch {
		width: 100%;
		border-radius: 4px !important;
	}

	.vc_row.vc_row-flex {
		box-sizing: border-box;
		/* display: flex; */
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		/* flex-wrap: wrap; */
	}

	.vc_row {
		margin-left: -15px;
		margin-right: -15px;
		display: flex;
		flex-direction: column;
	}
}

.atgrid__item__description p {
	margin-left: 17px;
	font-size: 15px;
	font-weight: 500;
}

.mainSearch .button-grid {
	display: grid;
	grid-template-columns: 1fr 250px 290px auto;
}

.mainSearch .button-grid > * + * {
	border-left: 1px solid var(--color-border);
}

@media (max-width: 991px) {
	.mainSearch .button-grid {
		grid-template-columns: 1fr;
	}
	.mainSearch .button-grid > * + * {
		border-left: 0;
		border-top: 1px solid var(--color-border);
	}
}

.mainSearch .button-item {
	border: none !important;
}

@media (max-width: 991px) {
	.mainSearch__submit {
		border-radius: 4px !important;
	}
}

.mainSearch.-col-2 .button-grid {
	grid-template-columns: 1fr 1fr -webkit-min-content;
	grid-template-columns: 1fr 1fr min-content;
}

@media (max-width: 991px) {
	.mainSearch.-col-2 .button-grid {
		grid-template-columns: 1fr;
	}
}

.mainSearch.-col-4 .button-grid {
	grid-template-columns: auto auto 200px 200px -webkit-min-content;
	grid-template-columns: auto auto 200px 200px min-content;
}

@media (max-width: 991px) {
	.mainSearch.-col-4 .button-grid {
		grid-template-columns: 1fr;
	}
}

.mainSearch.-col-3-big .button-grid {
	grid-template-columns: 1fr 0.6fr 0.6fr auto;
}

@media (max-width: 991px) {
	.mainSearch.-col-3-big .button-grid {
		grid-template-columns: 1fr;
	}
}

.mainSearch.-col-5 .button-grid {
	grid-template-columns: auto auto auto auto auto -webkit-min-content;
	grid-template-columns: auto auto auto auto auto min-content;
}

@media (max-width: 991px) {
	.mainSearch.-col-5 .button-grid {
		grid-template-columns: 1fr;
	}
	.mainSearch.-col-5 .button-grid > * + * {
		border-left: 0;
		border-top: 1px solid var(--color-border);
	}
}

.mainSearch.-w-900 {
	width: 900px;
}

@media (max-width: 991px) {
	.mainSearch.-w-900 {
		width: auto;
	}
}

.mainSearch.-w-1070 {
	width: 1070px;
	max-width: 100%;
}

@media (max-width: 991px) {
	.mainSearch.-w-1070 {
		width: auto;
	}
}

.searchMenu-loc {
	position: relative;
}

.searchMenu-loc__field {
	position: absolute;
	margin-top: 30px;
	top: 100%;
	left: 0;
	z-index: 20;
	width: 500px;
	max-width: 100vw;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

@media (max-width: 991px) {
	.searchMenu-loc__field {
		width: auto;
		left: -20px;
		right: -20px;
	}
}

@media (max-width: 575px) {
	.searchMenu-loc__field {
		left: -35px;
		right: -35px;
	}
}

.searchMenu-loc__field.-is-active {
	pointer-events: auto;
	opacity: 1;
}

.searchMenu-loc .-link:hover {
	background-color: rgba(53, 84, 209, 0.05) !important;
}

.searchMenu-date {
	position: relative;
}

.searchMenu-date.-left .searchMenu-date__field {
	transform: none !important;
}

.searchMenu-date.-right .searchMenu-date__field {
	left: unset;
	right: 0;
	transform: none !important;
}

.searchMenu-date__field {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
	width: 900px;
	max-width: 100vw;
	margin-top: 30px;
	box-shadow: 0px 10px 60px 0px #0510360D;
	transform: translateX(-31%);
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

.searchMenu-date__field.-is-active {
	pointer-events: auto;
	opacity: 1;
}

@media (max-width: 991px) {
	.searchMenu-date__field {
		transform: none;
		width: auto;
		left: -20px;
		right: -20px;
	}
}

@media (max-width: 575px) {
	.searchMenu-date__field {
		left: -35px;
		right: -35px;
	}
}

.searchMenu-guests {
	position: relative;
}

.searchMenu-guests__field {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
	width: 400px;
	max-width: 100vw;
	margin-top: 30px;
	box-shadow: 0px 10px 60px 0px #0510360D;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

@media (max-width: 991px) {
	.searchMenu-guests__field {
		width: auto;
		left: -20px;
		right: -20px;
	}
}

@media (max-width: 575px) {
	.searchMenu-guests__field {
		left: -35px;
		right: -35px;
	}
}

.searchMenu-guests__field.-is-active {
	pointer-events: auto;
	opacity: 1;
}

.featureIcon.-type-1.-hover-shadow {
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featureIcon.-type-1.-hover-shadow:hover {
	box-shadow: 0px 20px 40px 0px #05103612;
}

.testimonials-slider-2 .swiper-slide {
	opacity: 0.8;
}

.testimonials-slider-2 .swiper-slide.swiper-slide-active {
	opacity: 1;
}

.testimonials.-type-2 .testimonials__image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 0;
}

.testimonials.-type-2 .testimonials__image > img:nth-child(2) {
	position: absolute;
	z-index: 1;
	width: 96px;
	height: 96px;
	-o-object-fit: cover;
	object-fit: cover;
}

.pagination.-dots {
	display: flex;
}

.pagination.-dots > * {
	margin: 0 5px;
}

.pagination.-dots .pagination__item {
	background-color: currentColor;
	height: 8px;
	width: 8px;
	border-radius: 100%;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: scale(0.75);
}

.pagination.-dots .pagination__item.is-active {
	background-color: var(--color-blue-1);
	transform: scale(1);
}

.arrow-left-hover {
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-left-hover:hover {
	color: var(--color-blue-1);
	transform: translateX(-5px) scale(1.25);
}

.arrow-right-hover {
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.arrow-right-hover:hover {
	color: var(--color-blue-1);
	transform: translateX(5px) scale(1.25);
}

.pagination.-buttons {
	display: flex;
	align-items: center;
}

.pagination.-buttons > * + * {
	margin-left: 40px;
}

.pagination.-buttons .pagination__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	width: 45px;
	border-radius: 100%;
	background-color: var(--color-light-7);
	color: var(--color-purple-1);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pagination.-buttons .pagination__button .icon {
	font-size: 12px;
}

.pagination.-buttons .pagination__button:hover {
	background-color: var(--color-purple-1);
	color: white;
}

.pagination.-buttons .pagination__count > * {
	position: relative;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-dark-1);
}

.pagination.-buttons .pagination__count > * + * {
	margin-left: 30px;
}

.pagination.-buttons .pagination__count a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	width: 16px;
	height: 2px;
	transform: translateX(-50%);
	background-color: var(--color-purple-1);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	opacity: 0;
}

.pagination.-buttons .pagination__count a.-count-is-active {
	color: var(--color-purple-1);
}

.pagination.-buttons .pagination__count a.-count-is-active::after {
	opacity: 1;
}

.pagination.-avatars {
	display: flex;
	align-items: center;
}

.pagination.-avatars .pagination__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination.-avatars .pagination__item::before {
	content: "";
	position: absolute;
	border-radius: 100%;
	width: 92px;
	height: 92px;
	border: 2px solid var(--color-dark-1);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	opacity: 0;
}

.pagination.-avatars .pagination__item.is-active::before {
	opacity: 1;
}

:root {
	--dashboard-width: 300px;
}

@media (max-width: 1199px) {
	:root {
		--dashboard-width: 250px;
	}
}

.dashboard {
	display: flex;
}

@media (max-width: 991px) {
	.dashboard {
		flex-direction: column;
	}
}

.dashboard__main {
	overflow: hidden;
	width: 100%;
	padding-left: var(--dashboard-width);
	will-change: padding-left;
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dashboard__main::after {
	content: "";
	display: none;
	position: fixed;
	z-index: 50;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	pointer-events: none;
	opacity: 0;
}

@media (max-width: 991px) {
	.dashboard__main {
		padding-left: 0;
	}
	.dashboard__main::after {
		display: block;
	}
}

.dashboard__content {
	width: 100%;
	padding: 60px;
	padding-bottom: 0;
}

@media (max-width: 767px) {
	.dashboard__content {
		padding: 30px;
		padding-bottom: 0;
	}
}

@media (max-width: 575px) {
	.dashboard__content {
		padding: 20px;
		padding-bottom: 0;
	}
}

.dashboard__sidebar {
	overflow-y: scroll;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: var(--dashboard-width);
	height: calc(100% - 90px);
	padding: 30px;
	padding-top: 60px;
	padding-bottom: 40px;
	will-change: transform;
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 991px) {
	.dashboard__sidebar {
		transform: translateX(-100%);
	}

	.atgrid__item__description {
		margin-top: 10px;
		color: #6e6e6e;
		line-height: 1.6em;
		margin-left: 16px;
	}
}

@media (max-width: 767px) {
	.dashboard__sidebar {
		width: 80%;
		height: calc(100% - 80px);
	}
}

@media (max-width: 991px) {
	.dashboard.-is-sidebar-open .dashboard__sidebar {
		transform: none;
	}
	.dashboard.-is-sidebar-open .dashboard__main::after {
		pointer-events: auto;
		opacity: 1;
	}
}

@media (min-width: 992px) {
	.dashboard.-is-sidebar-open .dashboard__sidebar {
		transform: translateX(-100%);
	}
	.dashboard.-is-sidebar-open .dashboard__main {
		padding-left: 0;
	}
	.dashboard.-is-sidebar-open .dashboard__main::after {
		pointer-events: auto;
		opacity: 1;
	}
}

.sidebar.-dashboard .sidebar__item {
	border: none;
}

.sidebar.-dashboard .sidebar__button {
	display: flex;
	align-items: center;
	border-radius: 4px;
	padding: 0 15px;
	height: 55px;
}

@media (max-width: 575px) {
	.sidebar.-dashboard .sidebar__button {
		height: 45px;
	}
}

.sidebar.-dashboard .sidebar__button.-is-active {
	background-color: rgba(53, 84, 209, 0.05);
	color: var(--color-blue-1) !important;
}

.scroll-bar-1::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.scroll-bar-1::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 12px;
}

.dropdown {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 8px;
}

.dropdown__button {
	height: 40px;
}

.dropdown .icon {
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown.-is-dd-active .border-light {
	border: 2px solid var(--color-dark-1) !important;
}

.dropdown.-is-dd-active .icon {
	transform: rotate(180deg);
}

.dropdown__item {
	position: absolute;
	z-index: 500;
	pointer-events: none;
	top: 100%;
	left: 50%;
	padding: 26px;
	background-color: white;
	box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
	min-width: 180px;
	border-radius: 8px;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translateX(-50%);
	opacity: 0;
}

.dropdown:hover .dropdown__item {
	z-index: 20;
	transform: translateX(-50%);
	opacity: 1;
	pointer-events: auto;
}

.toggle-element {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	opacity: 0;
	pointer-events: none;
}

.toggle-element.-down {
	transform: translateY(20px);
}

.toggle-element.-is-el-visible {
	z-index: 25;
	transform: none;
	opacity: 1;
	pointer-events: auto;
}

.toggle-element.-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	padding: 14px 20px;
	background-color: white;
	box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
	min-width: 160px;
	border-radius: 4px;
	border: 1px solid var(--color-border);
	font-weight: 500;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translateX(-50%);
}

.toggle-element.-dropdown-2 {
	position: absolute;
	top: 100%;
	left: 50%;
	padding: 10px;
	background-color: white;
	box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
	min-width: 120px;
	border-radius: 4px;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translateX(-50%);
}

.toggle-element.-dropdown-2 a {
	padding: 10px;
}

.toggle-element.-dropdown-2 a:hover {
	background-color: var(--color-light-2);
	color: var(--color-dark-1);
}

.blogCard.-type-1 .blogCard__image {
	overflow: hidden;
}

.blogCard.-type-1 .blogCard__image img {
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-1:hover .blogCard__image img {
	transform: scale(1.1);
}

.blogCard.-type-2 .blogCard__image {
	overflow: hidden;
}

.blogCard.-type-2 .blogCard__image img {
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-2:hover .blogCard__image img {
	transform: scale(1.15);
}

.blogCard.-type-3 {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.blogCard.-type-3 .blogCard__image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

.blogCard.-type-3 .blogCard__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blogCard.-type-3 .blogCard__content {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(5, 16, 54, 0) 0%, rgba(5, 16, 54, 0.7) 100%);
	padding-left: 50px;
	padding-bottom: 30px;
	padding: 20px 20px;
}

.blogCard.-type-3:hover .blogCard__image img {
	transform: scale(1.1);
}

[data-slider] > div > [data-sign] {
	background-color: unset;
	width: unset;
	height: unset;
	border-radius: unset;
	display: inline-block;
	text-align: unset;
	margin-top: 22px;
	color: black;
}

[data-slider] > div > [data-sign]:last-child {
	float: right;
}

[data-slider] > div > [data-sign] span::before {
	content: 'Min Price: $';
	display: inline-block;
}

[data-slider] > div > [data-sign]:last-child span::before {
	content: 'Max Price: $';
	display: inline-block;
}

[data-slider] > div > [data-sign] > span {
	font-size: 14px;
	line-height: 16px;
}

[data-slider] {
	position: relative;
	border-radius: 10px;
	text-align: left;
}

[data-slider] > div {
	width: 100%;
}

[data-slider] > div > [data-inverse-left] {
	position: absolute;
	left: 0;
	height: 5px;
	border-radius: 10px;
	background-color: var(--color-blue-2);
}

[data-slider] > div > [data-inverse-right] {
	position: absolute;
	right: 0;
	height: 5px;
	border-radius: 10px;
	background-color: var(--color-blue-2);
}

[data-slider] > div > [data-range] {
	position: absolute;
	left: 0;
	height: 5px;
	border-radius: 14px;
	background-color: var(--color-blue-1);
}

[data-slider] > div > [data-thumb] {
	position: absolute;
	top: -7px;
	z-index: 2;
	height: 17px;
	width: 17px;
	text-align: left;
	margin-left: -11px;
	cursor: pointer;
	background-color: #fff;
	border-radius: 50%;
	outline: none;
	border: 2px solid var(--color-blue-1);
}

div[data-slider] > input[type=range]::-ms-thumb {
	pointer-events: all;
	width: 17px;
	height: 17px;
	border-radius: 0px;
	border: 0 none;
	background: red;
}

div[data-slider] > input[type=range]::-moz-range-thumb {
	pointer-events: all;
	width: 17px;
	height: 17px;
	border-radius: 0px;
	border: 0 none;
	background: red;
}

div[data-slider] > input[type=range]::-webkit-slider-thumb {
	pointer-events: all;
	width: 17px;
	height: 17px;
	border-radius: 0px;
	border: 0 none;
	background: red;
	-webkit-appearance: none;
}

div[data-slider] > input[type=range]::-ms-fill-lower {
	background: transparent;
	border: 0 none;
}

div[data-slider] > input[type=range]::-ms-fill-upper {
	background: transparent;
	border: 0 none;
}

[data-slider] > input[type=range] {
	position: absolute;
	pointer-events: none;
	-webkit-appearance: none;
	z-index: 3;
	height: 5px;
	top: -2px;
	width: 100%;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

div[data-slider] > input[type=range]::-ms-track {
	-webkit-appearance: none;
	background: transparent;
	color: transparent;
}

div[data-slider] > input[type=range]::-moz-range-track {
	-moz-appearance: none;
	background: transparent;
	color: transparent;
}

div[data-slider] > input[type=range]:focus::-webkit-slider-runnable-track {
	background: transparent;
	border: transparent;
}

div[data-slider] > input[type=range]:focus {
	outline: none;
}

div[data-slider] > input[type=range]::-ms-tooltip {
	display: none;
}

[data-slider] > div > [data-sign] {
	display: inline-block;
	text-align: center;
	padding: 4px 16px;
	border-radius: 8px;
	margin-top: 22px;
}

[data-slider] > div > [data-sign] > span {
	font-size: 12px;
	line-height: 28px;
}

[data-slider]:hover > div > [data-sign] {
	opacity: 1;
}

.select {
	position: relative;
}

.select__button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 15px;
	height: 70px;
	border-radius: 4px;
	border: 1px solid #dddddd;
	background-color: white;
	text-align: left;
}

.select__icon {
	width: 20px;
	height: 20px;
}

.select__dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	border: 1px solid var(--color-light-8);
	background-color: white;
	padding: 20px;
	width: 100%;
	min-height: 150px;
	max-height: 300px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
	border: 1px solid #dddddd;
	transition: all 0.2s ease;
	pointer-events: none;
	opacity: 0;
}

.select__dropdown.-is-visible {
	opacity: 1;
	pointer-events: auto;
}

.select__options {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: scroll;
}

.select__options::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.select__options::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
}

.select__options__button {
	display: flex;
	align-items: center;
	font-size: 15px;
	padding: 6px 0;
	text-align: left;
	transition: all 0.15s ease;
}

.select__options__button:hover {
	cursor: pointer;
	color: var(--color-purple-1) !important;
}

.select__options__button:focus {
	color: var(--color-purple-1) !important;
}

.select__search {
	flex-shrink: 0;
	height: 50px;
	border-radius: 4px;
	background-color: #f5f5f5 !important;
	color: black;
	padding: 0 20px;
	margin-bottom: 12px;
}

.mapFilter {
	overflow: hidden;
	position: fixed;
	top: 30px;
	bottom: 70px;
	left: 30px;
	right: 30px;
	z-index: 1000;
	border-radius: 4px;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

@media (max-width: 1400px) {
	.mapFilter {
		top: 20px;
		bottom: 20px;
		left: 20px;
		right: 20px;
	}
}

@media (max-width: 1199px) {
	.mapFilter {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 0;
	}
}

.mapFilter.-is-active {
	pointer-events: auto;
	opacity: 1;
}

.mapFilter__overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.4);
}

.mapFilter__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
}

@media (max-width: 575px) {
	.mapFilter__close {
		right: 50%;
		transform: translateX(50%);
	}
}

.mapFilter__grid {
	display: grid;
	gap: 0;
	grid-template-columns: 515px 1fr;
	width: 100%;
	height: 100%;
	background-color: white;
	padding-left: 340px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 991px) {
	.mapFilter__grid {
		grid-template-columns: 420px 1fr;
	}
}

@media (max-width: 767px) {
	.mapFilter__grid {
		grid-template-columns: 250px 1fr;
		padding-left: 330px;
	}
	.mapFilter__grid .ratio {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 575px) {
	.mapFilter__grid {
		grid-template-columns: 1fr;
	}
}

.mapFilter__grid.-filters-hidden {
	padding-left: 80px;
}

.mapFilter__grid.-filters-hidden .mapFilter-filter {
	transform: translateX(-255px);
}

@media (max-width: 767px) {
	.mapFilter__grid.-filters-hidden {
		padding-left: 70px;
	}
}

.mapFilter-filter {
	overflow-y: scroll;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0px 10px 35px 0px #0510361A;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter-filter__item {
	border-top: 1px solid var(--color-border);
	padding-top: 20px;
	margin-top: 20px;
}

.mapFilter-results {
	overflow-y: scroll;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 575px) {
	.mapFilter-results {
		display: none;
	}
}

.mapFilter-results__item {
	border-top: 1px solid var(--color-border);
	padding-top: 20px;
	margin-top: 20px;
}

.mapFilter-map {
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mapFilter-map img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.scroll-bar-1::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.scroll-bar-1::-webkit-scrollbar-thumb {
	background-color: #e7e7e7;
	border-radius: 4px;
}

.hotelsCard.-type-1 .hotelsCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.hotelsCard.-type-1 .hotelsCard__image .cardImage__content .swiper-slide,
.hotelsCard.-type-1 .hotelsCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hotelsCard.-type-1 .hotelsCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.hotelsCard.-type-1 .hotelsCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.hotelsCard.-type-1:hover .hotelsCard__image .cardImage__content > img,
.hotelsCard.-type-1:hover .hotelsCard__image .swiper-slide {
	transform: scale(1.15);
}

.hotelsCard.-type-1:hover .hotelsCard__title span {
	background-size: 100% !important;
}

.tourCard.-type-1 .tourCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.tourCard.-type-1 .tourCard__image .cardImage__content .swiper-slide,
.tourCard.-type-1 .tourCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tourCard.-type-1 .tourCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.tourCard.-type-1 .tourCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.tourCard.-type-1:hover .tourCard__image .cardImage__content > img,
.tourCard.-type-1:hover .tourCard__image .swiper-slide {
	transform: scale(1.15);
}

.tourCard.-type-1:hover .tourCard__title span {
	background-size: 100% !important;
}

.activityCard.-type-1 .activityCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.activityCard.-type-1 .activityCard__image .cardImage__content .swiper-slide,
.activityCard.-type-1 .activityCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activityCard.-type-1 .activityCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.activityCard.-type-1 .activityCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.activityCard.-type-1:hover .activityCard__image .cardImage__content > img,
.activityCard.-type-1:hover .activityCard__image .swiper-slide {
	transform: scale(1.15);
}

.activityCard.-type-1:hover .activityCard__title span {
	background-size: 100% !important;
}

.rentalCard.-type-1 .rentalCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.rentalCard.-type-1 .rentalCard__image .cardImage__content .swiper-slide,
.rentalCard.-type-1 .rentalCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rentalCard.-type-1 .rentalCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.rentalCard.-type-1 .rentalCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.rentalCard.-type-1:hover .rentalCard__image .cardImage__content > img,
.rentalCard.-type-1:hover .rentalCard__image .swiper-slide {
	transform: scale(1.15);
}

.rentalCard.-type-1:hover .rentalCard__title span {
	background-size: 100% !important;
}

.rentalCard.-type-2 .rentalCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.rentalCard.-type-2 .rentalCard__image .cardImage__content .swiper-slide,
.rentalCard.-type-2 .rentalCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rentalCard.-type-2 .rentalCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.rentalCard.-type-2 .rentalCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.rentalCard.-type-2:hover .rentalCard__image .cardImage__content > img,
.rentalCard.-type-2:hover .rentalCard__image .swiper-slide {
	transform: scale(1.15);
}

.rentalCard.-type-2:hover .rentalCard__title span {
	background-size: 100% !important;
}

.carCard.-type-1 .carCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.carCard.-type-1 .carCard__image .cardImage__content .swiper-slide,
.carCard.-type-1 .carCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carCard.-type-1 .carCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.carCard.-type-1:hover .carCard__image .cardImage__content > img,
.carCard.-type-1:hover .carCard__image .swiper-slide {
	transform: scale(1.05);
}

.cruiseCard.-type-1 .cruiseCard__image {
	overflow: hidden;
	border-radius: 4px;
}

.cruiseCard.-type-1 .cruiseCard__image .cardImage__content .swiper-slide,
.cruiseCard.-type-1 .cruiseCard__image .cardImage__content > img {
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cruiseCard.-type-1 .cruiseCard__image .swiper-slide-active {
	position: relative;
	z-index: 2;
}

.cruiseCard.-type-1 .cruiseCard__title span {
	background-image: linear-gradient(transparent 24px, black 20px);
	background-size: 0;
	background-repeat: no-repeat;
	transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.cruiseCard.-type-1:hover .cruiseCard__image .cardImage__content > img,
.cruiseCard.-type-1:hover .cruiseCard__image .swiper-slide {
	transform: scale(1.15);
}

.cruiseCard.-type-1:hover .cruiseCard__title span {
	background-size: 100% !important;
}

.tourTypeCard.-type-1 {
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tourTypeCard.-type-1:hover {
	background-color: var(--color-blue-1) !important;
	transform: translateY(-10px);
}

.tourTypeCard.-type-1:hover .tourTypeCard__content > * {
	color: white !important;
}

.destCard.-type-1 {
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destCard.-type-1 .destCard__image {
	overflow: hidden;
}

.destCard.-type-1 .destCard__image img {
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destCard.-type-1:hover .destCard__image img {
	transform: scale(1.15);
}

.preloader {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: white;
	transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.preloader__wrap {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 72px;
	height: 72px;
	border-radius: 30px;
	background-color: white;
	box-shadow: 0px 2px 24px 0px #00000014;
	-webkit-animation-name: preloaderWraper;
	animation-name: preloaderWraper;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.preloader__icon {
	position: absolute;
	-webkit-animation-name: preloader;
	animation-name: preloader;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.preloader__title {
	font-size: 47px;
	font-weight: 600;
	line-height: 68px;
	letter-spacing: 0em;
	margin-top: 16px;
	color: #036cbd !important;
}

.preloader.-is-hidden {
	opacity: 0;
	pointer-events: none;
}

@-webkit-keyframes preloaderWraper {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: none;
	}
}

@keyframes preloaderWraper {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: none;
	}
}

@-webkit-keyframes preloader {
	0% {
		transform: translateY(150%) scale(1);
	}
	50% {
		transform: translateY(0%) scale(1.2) rotate(20deg);
	}
	100% {
		transform: translateY(-150%) rotate(-20deg);
	}
}

@keyframes preloader {
	0% {
		transform: translateY(150%) scale(1);
	}
	50% {
		transform: translateY(0%) scale(1.2) rotate(20deg);
	}
	100% {
		transform: translateY(-150%) rotate(-20deg);
	}
}

.py-0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

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

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

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

.pl-0 {
	padding-left: 0px !important;
}

.pr-0 {
	padding-right: 0px !important;
}

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

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

.ml-0 {
	margin-left: 0px !important;
}

.mr-0 {
	margin-right: 0px !important;
}

.py-4 {
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}

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

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

.pb-4 {
	padding-bottom: 4px !important;
}

.pl-4 {
	padding-left: 4px !important;
}

.pr-4 {
	padding-right: 4px !important;
}

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

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

.ml-4 {
	margin-left: 4px !important;
}

.mr-4 {
	margin-right: 4px !important;
}

.py-5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

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

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

.pb-5 {
	padding-bottom: 5px !important;
}

.pl-5 {
	padding-left: 5px !important;
}

.pr-5 {
	padding-right: 5px !important;
}

.mt-5 {
	/* margin-top: 25px !important; */
	margin-top: 5px !important;
}

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

.ml-5 {
	margin-left: 5px !important;
}

.mr-5 {
	margin-right: 5px !important;
}

.py-10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

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

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

.pb-10 {
	padding-bottom: 10px !important;
}

.pl-10 {
	padding-left: 10px !important;
}

.pr-10 {
	padding-right: 10px !important;
}

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

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

.ml-10 {
	margin-left: 10px !important;
}

.mr-10 {
	margin-right: 10px !important;
}

.py-15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

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

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

.pb-15 {
	padding-bottom: 15px !important;
}

.pl-15 {
	padding-left: 15px !important;
}

.pr-15 {
	padding-right: 15px !important;
}

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

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

.ml-15 {
	margin-left: 15px !important;
}

.mr-15 {
	margin-right: 15px !important;
}

.py-20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

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

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

.pb-20 {
	padding-bottom: 20px !important;
}

.pl-20 {
	padding-left: 20px !important;
}

.pr-20 {
	padding-right: 20px !important;
}

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

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

.ml-20 {
	margin-left: 20px !important;
}

.mr-20 {
	margin-right: 20px !important;
}

.py-24 {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}

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

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

.pb-24 {
	padding-bottom: 24px !important;
}

.pl-24 {
	padding-left: 24px !important;
}

.pr-24 {
	padding-right: 24px !important;
}

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

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

.ml-24 {
	margin-left: 24px !important;
}

.mr-24 {
	margin-right: 24px !important;
}

.py-28 {
	padding-top: 28px !important;
	padding-bottom: 28px !important;
}

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

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

.pb-28 {
	padding-bottom: 28px !important;
}

.pl-28 {
	padding-left: 28px !important;
}

.pr-28 {
	padding-right: 28px !important;
}

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

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

.ml-28 {
	margin-left: 28px !important;
}

.mr-28 {
	margin-right: 28px !important;
}

.py-30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

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

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

.pb-30 {
	padding-bottom: 30px !important;
}

.pl-30 {
	padding-left: 30px !important;
}

.pr-30 {
	padding-right: 30px !important;
}

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

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

.ml-30 {
	margin-left: 30px !important;
}

.mr-30 {
	margin-right: 30px !important;
}

.py-35 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
}

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

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

.pb-35 {
	padding-bottom: 35px !important;
}

.pl-35 {
	padding-left: 35px !important;
}

.pr-35 {
	padding-right: 35px !important;
}

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

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

.ml-35 {
	margin-left: 35px !important;
}

.mr-35 {
	margin-right: 35px !important;
}

.py-40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

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

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

.pb-40 {
	padding-bottom: 40px !important;
}

.pl-40 {
	padding-left: 40px !important;
}

.pr-40 {
	padding-right: 40px !important;
}

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

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

.ml-40 {
	margin-left: 40px !important;
}

.mr-40 {
	margin-right: 40px !important;
}

.py-45 {
	padding-top: 45px !important;
	padding-bottom: 45px !important;
}

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

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

.pb-45 {
	padding-bottom: 45px !important;
}

.pl-45 {
	padding-left: 45px !important;
}

.pr-45 {
	padding-right: 45px !important;
}

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

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

.ml-45 {
	margin-left: 45px !important;
}

.mr-45 {
	margin-right: 45px !important;
}

.py-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

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

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

.pb-50 {
	padding-bottom: 50px !important;
}

.pl-50 {
	padding-left: 50px !important;
}

.pr-50 {
	padding-right: 50px !important;
}

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

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

.ml-50 {
	margin-left: 50px !important;
}

.mr-50 {
	margin-right: 50px !important;
}

.py-60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

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

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

.pb-60 {
	padding-bottom: 60px !important;
}

.pl-60 {
	padding-left: 60px !important;
}

.pr-60 {
	padding-right: 60px !important;
}

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

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

.ml-60 {
	margin-left: 60px !important;
}

.mr-60 {
	margin-right: 60px !important;
}

.py-70 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

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

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

.pb-70 {
	padding-bottom: 70px !important;
}

.pl-70 {
	padding-left: 70px !important;
}

.pr-70 {
	padding-right: 70px !important;
}

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

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

.ml-70 {
	margin-left: 70px !important;
}

.mr-70 {
	margin-right: 70px !important;
}

.py-80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

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

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

.pb-80 {
	padding-bottom: 80px !important;
}

.pl-80 {
	padding-left: 80px !important;
}

.pr-80 {
	padding-right: 80px !important;
}

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

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

.ml-80 {
	margin-left: 80px !important;
}

.mr-80 {
	margin-right: 80px !important;
}

.py-90 {
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}

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

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

.pb-90 {
	padding-bottom: 90px !important;
}

.pl-90 {
	padding-left: 90px !important;
}

.pr-90 {
	padding-right: 90px !important;
}

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

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

.ml-90 {
	margin-left: 90px !important;
}

.mr-90 {
	margin-right: 90px !important;
}

.py-120 {
	padding-top: 120px !important;
	padding-bottom: 120px !important;
}

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

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

.pb-120 {
	padding-bottom: 120px !important;
}

.pl-120 {
	padding-left: 120px !important;
}

.pr-120 {
	padding-right: 120px !important;
}

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

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

.ml-120 {
	margin-left: 120px !important;
}

.mr-120 {
	margin-right: 120px !important;
}

@media (max-width: 1199px) {
	.xl\:py-0 {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	.xl\:px-0 {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.xl\:pt-0 {
		padding-top: 0px !important;
	}
	.xl\:pb-0 {
		padding-bottom: 0px !important;
	}
	.xl\:pl-0 {
		padding-left: 0px !important;
	}
	.xl\:pr-0 {
		padding-right: 0px !important;
	}
	.xl\:mt-0 {
		margin-top: 0px !important;
	}
	.xl\:mb-0 {
		margin-bottom: 0px !important;
	}
	.xl\:ml-0 {
		margin-left: 0px !important;
	}
	.xl\:mr-0 {
		margin-right: 0px !important;
	}
	.xl\:py-4 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
	.xl\:px-4 {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}
	.xl\:pt-4 {
		padding-top: 4px !important;
	}
	.xl\:pb-4 {
		padding-bottom: 4px !important;
	}
	.xl\:pl-4 {
		padding-left: 4px !important;
	}
	.xl\:pr-4 {
		padding-right: 4px !important;
	}
	.xl\:mt-4 {
		margin-top: 4px !important;
	}
	.xl\:mb-4 {
		margin-bottom: 4px !important;
	}
	.xl\:ml-4 {
		margin-left: 4px !important;
	}
	.xl\:mr-4 {
		margin-right: 4px !important;
	}
	.xl\:py-5 {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	.xl\:px-5 {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	.xl\:pt-5 {
		padding-top: 5px !important;
	}
	.xl\:pb-5 {
		padding-bottom: 5px !important;
	}
	.xl\:pl-5 {
		padding-left: 5px !important;
	}
	.xl\:pr-5 {
		padding-right: 5px !important;
	}
	.xl\:mt-5 {
		margin-top: 5px !important;
	}
	.xl\:mb-5 {
		margin-bottom: 5px !important;
	}
	.xl\:ml-5 {
		margin-left: 5px !important;
	}
	.xl\:mr-5 {
		margin-right: 5px !important;
	}
	.xl\:py-10 {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.xl\:px-10 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.xl\:pt-10 {
		padding-top: 10px !important;
	}
	.xl\:pb-10 {
		padding-bottom: 10px !important;
	}
	.xl\:pl-10 {
		padding-left: 10px !important;
	}
	.xl\:pr-10 {
		padding-right: 10px !important;
	}
	.xl\:mt-10 {
		margin-top: 10px !important;
	}
	.xl\:mb-10 {
		margin-bottom: 10px !important;
	}
	.xl\:ml-10 {
		margin-left: 10px !important;
	}
	.xl\:mr-10 {
		margin-right: 10px !important;
	}
	.xl\:py-15 {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}
	.xl\:px-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.xl\:pt-15 {
		padding-top: 15px !important;
	}
	.xl\:pb-15 {
		padding-bottom: 15px !important;
	}
	.xl\:pl-15 {
		padding-left: 15px !important;
	}
	.xl\:pr-15 {
		padding-right: 15px !important;
	}
	.xl\:mt-15 {
		margin-top: 15px !important;
	}
	.xl\:mb-15 {
		margin-bottom: 15px !important;
	}
	.xl\:ml-15 {
		margin-left: 15px !important;
	}
	.xl\:mr-15 {
		margin-right: 15px !important;
	}
	.xl\:py-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.xl\:px-20 {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.xl\:pt-20 {
		padding-top: 20px !important;
	}
	.xl\:pb-20 {
		padding-bottom: 20px !important;
	}
	.xl\:pl-20 {
		padding-left: 20px !important;
	}
	.xl\:pr-20 {
		padding-right: 20px !important;
	}
	.xl\:mt-20 {
		margin-top: 20px !important;
	}
	.xl\:mb-20 {
		margin-bottom: 20px !important;
	}
	.xl\:ml-20 {
		margin-left: 20px !important;
	}
	.xl\:mr-20 {
		margin-right: 20px !important;
	}
	.xl\:py-24 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
	.xl\:px-24 {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.xl\:pt-24 {
		padding-top: 24px !important;
	}
	.xl\:pb-24 {
		padding-bottom: 24px !important;
	}
	.xl\:pl-24 {
		padding-left: 24px !important;
	}
	.xl\:pr-24 {
		padding-right: 24px !important;
	}
	.xl\:mt-24 {
		margin-top: 24px !important;
	}
	.xl\:mb-24 {
		margin-bottom: 24px !important;
	}
	.xl\:ml-24 {
		margin-left: 24px !important;
	}
	.xl\:mr-24 {
		margin-right: 24px !important;
	}
	.xl\:py-28 {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}
	.xl\:px-28 {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
	.xl\:pt-28 {
		padding-top: 28px !important;
	}
	.xl\:pb-28 {
		padding-bottom: 28px !important;
	}
	.xl\:pl-28 {
		padding-left: 28px !important;
	}
	.xl\:pr-28 {
		padding-right: 28px !important;
	}
	.xl\:mt-28 {
		margin-top: 28px !important;
	}
	.xl\:mb-28 {
		margin-bottom: 28px !important;
	}
	.xl\:ml-28 {
		margin-left: 28px !important;
	}
	.xl\:mr-28 {
		margin-right: 28px !important;
	}
	.xl\:py-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.xl\:px-30 {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.xl\:pt-30 {
		padding-top: 30px !important;
	}
	.xl\:pb-30 {
		padding-bottom: 30px !important;
	}
	.xl\:pl-30 {
		padding-left: 30px !important;
	}
	.xl\:pr-30 {
		padding-right: 30px !important;
	}
	.xl\:mt-30 {
		margin-top: 30px !important;
	}
	.xl\:mb-30 {
		margin-bottom: 30px !important;
	}
	.xl\:ml-30 {
		margin-left: 30px !important;
	}
	.xl\:mr-30 {
		margin-right: 30px !important;
	}
	.xl\:py-35 {
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}
	.xl\:px-35 {
		padding-left: 35px !important;
		padding-right: 35px !important;
	}
	.xl\:pt-35 {
		padding-top: 35px !important;
	}
	.xl\:pb-35 {
		padding-bottom: 35px !important;
	}
	.xl\:pl-35 {
		padding-left: 35px !important;
	}
	.xl\:pr-35 {
		padding-right: 35px !important;
	}
	.xl\:mt-35 {
		margin-top: 35px !important;
	}
	.xl\:mb-35 {
		margin-bottom: 35px !important;
	}
	.xl\:ml-35 {
		margin-left: 35px !important;
	}
	.xl\:mr-35 {
		margin-right: 35px !important;
	}
	.xl\:py-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.xl\:px-40 {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
	.xl\:pt-40 {
		padding-top: 40px !important;
	}
	.xl\:pb-40 {
		padding-bottom: 40px !important;
	}
	.xl\:pl-40 {
		padding-left: 40px !important;
	}
	.xl\:pr-40 {
		padding-right: 40px !important;
	}
	.xl\:mt-40 {
		margin-top: 40px !important;
	}
	.xl\:mb-40 {
		margin-bottom: 40px !important;
	}
	.xl\:ml-40 {
		margin-left: 40px !important;
	}
	.xl\:mr-40 {
		margin-right: 40px !important;
	}
	.xl\:py-45 {
		padding-top: 45px !important;
		padding-bottom: 45px !important;
	}
	.xl\:px-45 {
		padding-left: 45px !important;
		padding-right: 45px !important;
	}
	.xl\:pt-45 {
		padding-top: 45px !important;
	}
	.xl\:pb-45 {
		padding-bottom: 45px !important;
	}
	.xl\:pl-45 {
		padding-left: 45px !important;
	}
	.xl\:pr-45 {
		padding-right: 45px !important;
	}
	.xl\:mt-45 {
		margin-top: 45px !important;
	}
	.xl\:mb-45 {
		margin-bottom: 45px !important;
	}
	.xl\:ml-45 {
		margin-left: 45px !important;
	}
	.xl\:mr-45 {
		margin-right: 45px !important;
	}
	.xl\:py-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	.xl\:px-50 {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
	.xl\:pt-50 {
		padding-top: 50px !important;
	}
	.xl\:pb-50 {
		padding-bottom: 50px !important;
	}
	.xl\:pl-50 {
		padding-left: 50px !important;
	}
	.xl\:pr-50 {
		padding-right: 50px !important;
	}
	.xl\:mt-50 {
		margin-top: 50px !important;
	}
	.xl\:mb-50 {
		margin-bottom: 50px !important;
	}
	.xl\:ml-50 {
		margin-left: 50px !important;
	}
	.xl\:mr-50 {
		margin-right: 50px !important;
	}
	.xl\:py-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.xl\:px-60 {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
	.xl\:pt-60 {
		padding-top: 60px !important;
	}
	.xl\:pb-60 {
		padding-bottom: 60px !important;
	}
	.xl\:pl-60 {
		padding-left: 60px !important;
	}
	.xl\:pr-60 {
		padding-right: 60px !important;
	}
	.xl\:mt-60 {
		margin-top: 60px !important;
	}
	.xl\:mb-60 {
		margin-bottom: 60px !important;
	}
	.xl\:ml-60 {
		margin-left: 60px !important;
	}
	.xl\:mr-60 {
		margin-right: 60px !important;
	}
	.xl\:py-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}
	.xl\:px-70 {
		padding-left: 70px !important;
		padding-right: 70px !important;
	}
	.xl\:pt-70 {
		padding-top: 70px !important;
	}
	.xl\:pb-70 {
		padding-bottom: 70px !important;
	}
	.xl\:pl-70 {
		padding-left: 70px !important;
	}
	.xl\:pr-70 {
		padding-right: 70px !important;
	}
	.xl\:mt-70 {
		margin-top: 70px !important;
	}
	.xl\:mb-70 {
		margin-bottom: 70px !important;
	}
	.xl\:ml-70 {
		margin-left: 70px !important;
	}
	.xl\:mr-70 {
		margin-right: 70px !important;
	}
	.xl\:py-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
	.xl\:px-80 {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
	.xl\:pt-80 {
		padding-top: 80px !important;
	}
	.xl\:pb-80 {
		padding-bottom: 80px !important;
	}
	.xl\:pl-80 {
		padding-left: 80px !important;
	}
	.xl\:pr-80 {
		padding-right: 80px !important;
	}
	.xl\:mt-80 {
		margin-top: 80px !important;
	}
	.xl\:mb-80 {
		margin-bottom: 80px !important;
	}
	.xl\:ml-80 {
		margin-left: 80px !important;
	}
	.xl\:mr-80 {
		margin-right: 80px !important;
	}
	.xl\:py-90 {
		padding-top: 90px !important;
		padding-bottom: 90px !important;
	}
	.xl\:px-90 {
		padding-left: 90px !important;
		padding-right: 90px !important;
	}
	.xl\:pt-90 {
		padding-top: 90px !important;
	}
	.xl\:pb-90 {
		padding-bottom: 90px !important;
	}
	.xl\:pl-90 {
		padding-left: 90px !important;
	}
	.xl\:pr-90 {
		padding-right: 90px !important;
	}
	.xl\:mt-90 {
		margin-top: 90px !important;
	}
	.xl\:mb-90 {
		margin-bottom: 90px !important;
	}
	.xl\:ml-90 {
		margin-left: 90px !important;
	}
	.xl\:mr-90 {
		margin-right: 90px !important;
	}
	.xl\:py-120 {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
	}
	.xl\:px-120 {
		padding-left: 120px !important;
		padding-right: 120px !important;
	}
	.xl\:pt-120 {
		padding-top: 120px !important;
	}
	.xl\:pb-120 {
		padding-bottom: 120px !important;
	}
	.xl\:pl-120 {
		padding-left: 120px !important;
	}
	.xl\:pr-120 {
		padding-right: 120px !important;
	}
	.xl\:mt-120 {
		margin-top: 120px !important;
	}
	.xl\:mb-120 {
		margin-bottom: 120px !important;
	}
	.xl\:ml-120 {
		margin-left: 120px !important;
	}
	.xl\:mr-120 {
		margin-right: 120px !important;
	}
}

@media (max-width: 991px) {
	.lg\:py-0 {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	.lg\:px-0 {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.lg\:pt-0 {
		padding-top: 0px !important;
	}
	.lg\:pb-0 {
		padding-bottom: 0px !important;
	}
	.lg\:pl-0 {
		padding-left: 0px !important;
	}
	.lg\:pr-0 {
		padding-right: 0px !important;
	}
	.lg\:mt-0 {
		margin-top: 0px !important;
	}
	.lg\:mb-0 {
		margin-bottom: 0px !important;
	}
	.lg\:ml-0 {
		margin-left: 0px !important;
	}
	.lg\:mr-0 {
		margin-right: 0px !important;
	}
	.lg\:py-4 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
	.lg\:px-4 {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}
	.lg\:pt-4 {
		padding-top: 4px !important;
	}
	.lg\:pb-4 {
		padding-bottom: 4px !important;
	}
	.lg\:pl-4 {
		padding-left: 4px !important;
	}
	.lg\:pr-4 {
		padding-right: 4px !important;
	}
	.lg\:mt-4 {
		margin-top: 4px !important;
	}
	.lg\:mb-4 {
		margin-bottom: 4px !important;
	}
	.lg\:ml-4 {
		margin-left: 4px !important;
	}
	.lg\:mr-4 {
		margin-right: 4px !important;
	}
	.lg\:py-5 {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	.lg\:px-5 {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	.lg\:pt-5 {
		padding-top: 5px !important;
	}
	.lg\:pb-5 {
		padding-bottom: 5px !important;
	}
	.lg\:pl-5 {
		padding-left: 5px !important;
	}
	.lg\:pr-5 {
		padding-right: 5px !important;
	}
	.lg\:mt-5 {
		margin-top: 5px !important;
	}
	.lg\:mb-5 {
		margin-bottom: 5px !important;
	}
	.lg\:ml-5 {
		margin-left: 5px !important;
	}
	.lg\:mr-5 {
		margin-right: 5px !important;
	}
	.lg\:py-10 {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.lg\:px-10 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.lg\:pt-10 {
		padding-top: 10px !important;
	}
	.lg\:pb-10 {
		padding-bottom: 10px !important;
	}
	.lg\:pl-10 {
		padding-left: 10px !important;
	}
	.lg\:pr-10 {
		padding-right: 10px !important;
	}
	.lg\:mt-10 {
		margin-top: 10px !important;
	}
	.lg\:mb-10 {
		margin-bottom: 10px !important;
	}
	.lg\:ml-10 {
		margin-left: 10px !important;
	}
	.lg\:mr-10 {
		margin-right: 10px !important;
	}
	.lg\:py-15 {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}
	.lg\:px-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.lg\:pt-15 {
		padding-top: 15px !important;
	}
	.lg\:pb-15 {
		padding-bottom: 15px !important;
	}
	.lg\:pl-15 {
		padding-left: 15px !important;
	}
	.lg\:pr-15 {
		padding-right: 15px !important;
	}
	.lg\:mt-15 {
		margin-top: 15px !important;
	}
	.lg\:mb-15 {
		margin-bottom: 15px !important;
	}
	.lg\:ml-15 {
		margin-left: 15px !important;
	}
	.lg\:mr-15 {
		margin-right: 15px !important;
	}
	.lg\:py-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.lg\:px-20 {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.lg\:pt-20 {
		padding-top: 20px !important;
	}
	.lg\:pb-20 {
		padding-bottom: 20px !important;
	}
	.lg\:pl-20 {
		padding-left: 20px !important;
	}
	.lg\:pr-20 {
		padding-right: 20px !important;
	}
	.lg\:mt-20 {
		margin-top: 20px !important;
	}
	.lg\:mb-20 {
		margin-bottom: 20px !important;
	}
	.lg\:ml-20 {
		margin-left: 20px !important;
	}
	.lg\:mr-20 {
		margin-right: 20px !important;
	}
	.lg\:py-24 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
	.lg\:px-24 {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.lg\:pt-24 {
		padding-top: 24px !important;
	}
	.lg\:pb-24 {
		padding-bottom: 24px !important;
	}
	.lg\:pl-24 {
		padding-left: 24px !important;
	}
	.lg\:pr-24 {
		padding-right: 24px !important;
	}
	.lg\:mt-24 {
		margin-top: 24px !important;
	}
	.lg\:mb-24 {
		margin-bottom: 24px !important;
	}
	.lg\:ml-24 {
		margin-left: 24px !important;
	}
	.lg\:mr-24 {
		margin-right: 24px !important;
	}
	.lg\:py-28 {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}
	.lg\:px-28 {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
	.lg\:pt-28 {
		padding-top: 28px !important;
	}
	.lg\:pb-28 {
		padding-bottom: 28px !important;
	}
	.lg\:pl-28 {
		padding-left: 28px !important;
	}
	.lg\:pr-28 {
		padding-right: 28px !important;
	}
	.lg\:mt-28 {
		margin-top: 28px !important;
	}
	.lg\:mb-28 {
		margin-bottom: 28px !important;
	}
	.lg\:ml-28 {
		margin-left: 28px !important;
	}
	.lg\:mr-28 {
		margin-right: 28px !important;
	}
	.lg\:py-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.lg\:px-30 {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.lg\:pt-30 {
		padding-top: 30px !important;
	}
	.lg\:pb-30 {
		padding-bottom: 30px !important;
	}
	.lg\:pl-30 {
		padding-left: 30px !important;
	}
	.lg\:pr-30 {
		padding-right: 30px !important;
	}
	.lg\:mt-30 {
		margin-top: 30px !important;
	}
	.lg\:mb-30 {
		margin-bottom: 30px !important;
	}
	.lg\:ml-30 {
		margin-left: 30px !important;
	}
	.lg\:mr-30 {
		margin-right: 30px !important;
	}
	.lg\:py-35 {
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}
	.lg\:px-35 {
		padding-left: 35px !important;
		padding-right: 35px !important;
	}
	.lg\:pt-35 {
		padding-top: 35px !important;
	}
	.lg\:pb-35 {
		padding-bottom: 35px !important;
	}
	.lg\:pl-35 {
		padding-left: 35px !important;
	}
	.lg\:pr-35 {
		padding-right: 35px !important;
	}
	.lg\:mt-35 {
		margin-top: 35px !important;
	}
	.lg\:mb-35 {
		margin-bottom: 35px !important;
	}
	.lg\:ml-35 {
		margin-left: 35px !important;
	}
	.lg\:mr-35 {
		margin-right: 35px !important;
	}
	.lg\:py-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.lg\:px-40 {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
	.lg\:pt-40 {
		padding-top: 40px !important;
	}
	.lg\:pb-40 {
		padding-bottom: 40px !important;
	}
	.lg\:pl-40 {
		padding-left: 40px !important;
	}
	.lg\:pr-40 {
		padding-right: 40px !important;
	}
	.lg\:mt-40 {
		margin-top: 40px !important;
	}
	.lg\:mb-40 {
		margin-bottom: 40px !important;
	}
	.lg\:ml-40 {
		margin-left: 40px !important;
	}
	.lg\:mr-40 {
		margin-right: 40px !important;
	}
	.lg\:py-45 {
		padding-top: 45px !important;
		padding-bottom: 45px !important;
	}
	.lg\:px-45 {
		padding-left: 45px !important;
		padding-right: 45px !important;
	}
	.lg\:pt-45 {
		padding-top: 45px !important;
	}
	.lg\:pb-45 {
		padding-bottom: 45px !important;
	}
	.lg\:pl-45 {
		padding-left: 45px !important;
	}
	.lg\:pr-45 {
		padding-right: 45px !important;
	}
	.lg\:mt-45 {
		margin-top: 45px !important;
	}
	.lg\:mb-45 {
		margin-bottom: 45px !important;
	}
	.lg\:ml-45 {
		margin-left: 45px !important;
	}
	.lg\:mr-45 {
		margin-right: 45px !important;
	}
	.lg\:py-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	.lg\:px-50 {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
	.lg\:pt-50 {
		padding-top: 50px !important;
	}
	.lg\:pb-50 {
		padding-bottom: 50px !important;
	}
	.lg\:pl-50 {
		padding-left: 50px !important;
	}
	.lg\:pr-50 {
		padding-right: 50px !important;
	}
	.lg\:mt-50 {
		margin-top: 50px !important;
	}
	.lg\:mb-50 {
		margin-bottom: 50px !important;
	}
	.lg\:ml-50 {
		margin-left: 50px !important;
	}
	.lg\:mr-50 {
		margin-right: 50px !important;
	}
	.lg\:py-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.lg\:px-60 {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
	.lg\:pt-60 {
		padding-top: 60px !important;
	}
	.lg\:pb-60 {
		padding-bottom: 60px !important;
	}
	.lg\:pl-60 {
		padding-left: 60px !important;
	}
	.lg\:pr-60 {
		padding-right: 60px !important;
	}
	.lg\:mt-60 {
		margin-top: 60px !important;
	}
	.lg\:mb-60 {
		margin-bottom: 60px !important;
	}
	.lg\:ml-60 {
		margin-left: 60px !important;
	}
	.lg\:mr-60 {
		margin-right: 60px !important;
	}
	.lg\:py-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}
	.lg\:px-70 {
		padding-left: 70px !important;
		padding-right: 70px !important;
	}
	.lg\:pt-70 {
		padding-top: 70px !important;
	}
	.lg\:pb-70 {
		padding-bottom: 70px !important;
	}
	.lg\:pl-70 {
		padding-left: 70px !important;
	}
	.lg\:pr-70 {
		padding-right: 70px !important;
	}
	.lg\:mt-70 {
		margin-top: 70px !important;
	}
	.lg\:mb-70 {
		margin-bottom: 70px !important;
	}
	.lg\:ml-70 {
		margin-left: 70px !important;
	}
	.lg\:mr-70 {
		margin-right: 70px !important;
	}
	.lg\:py-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
	.lg\:px-80 {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
	.lg\:pt-80 {
		padding-top: 80px !important;
	}
	.lg\:pb-80 {
		padding-bottom: 80px !important;
	}
	.lg\:pl-80 {
		padding-left: 80px !important;
	}
	.lg\:pr-80 {
		padding-right: 80px !important;
	}
	.lg\:mt-80 {
		margin-top: 80px !important;
	}
	.lg\:mb-80 {
		margin-bottom: 80px !important;
	}
	.lg\:ml-80 {
		margin-left: 80px !important;
	}
	.lg\:mr-80 {
		margin-right: 80px !important;
	}
	.lg\:py-90 {
		padding-top: 90px !important;
		padding-bottom: 90px !important;
	}
	.lg\:px-90 {
		padding-left: 90px !important;
		padding-right: 90px !important;
	}
	.lg\:pt-90 {
		padding-top: 90px !important;
	}
	.lg\:pb-90 {
		padding-bottom: 90px !important;
	}
	.lg\:pl-90 {
		padding-left: 90px !important;
	}
	.lg\:pr-90 {
		padding-right: 90px !important;
	}
	.lg\:mt-90 {
		margin-top: 90px !important;
	}
	.lg\:mb-90 {
		margin-bottom: 90px !important;
	}
	.lg\:ml-90 {
		margin-left: 90px !important;
	}
	.lg\:mr-90 {
		margin-right: 90px !important;
	}
	.lg\:py-120 {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
	}
	.lg\:px-120 {
		padding-left: 120px !important;
		padding-right: 120px !important;
	}
	.lg\:pt-120 {
		padding-top: 120px !important;
	}
	.lg\:pb-120 {
		padding-bottom: 120px !important;
	}
	.lg\:pl-120 {
		padding-left: 120px !important;
	}
	.lg\:pr-120 {
		padding-right: 120px !important;
	}
	.lg\:mt-120 {
		margin-top: 120px !important;
	}
	.lg\:mb-120 {
		margin-bottom: 120px !important;
	}
	.lg\:ml-120 {
		margin-left: 120px !important;
	}
	.lg\:mr-120 {
		margin-right: 120px !important;
	}
}

@media (max-width: 767px) {
	.md\:py-0 {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	.md\:px-0 {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.md\:pt-0 {
		padding-top: 0px !important;
	}
	.md\:pb-0 {
		padding-bottom: 0px !important;
	}
	.md\:pl-0 {
		padding-left: 0px !important;
	}
	.md\:pr-0 {
		padding-right: 0px !important;
	}
	.md\:mt-0 {
		margin-top: 0px !important;
	}
	.md\:mb-0 {
		margin-bottom: 0px !important;
	}
	.md\:ml-0 {
		margin-left: 0px !important;
	}
	.md\:mr-0 {
		margin-right: 0px !important;
	}
	.md\:py-4 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
	.md\:px-4 {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}
	.md\:pt-4 {
		padding-top: 4px !important;
	}
	.md\:pb-4 {
		padding-bottom: 4px !important;
	}
	.md\:pl-4 {
		padding-left: 4px !important;
	}
	.md\:pr-4 {
		padding-right: 4px !important;
	}
	.md\:mt-4 {
		margin-top: 4px !important;
	}
	.md\:mb-4 {
		margin-bottom: 4px !important;
	}
	.md\:ml-4 {
		margin-left: 4px !important;
	}
	.md\:mr-4 {
		margin-right: 4px !important;
	}
	.md\:py-5 {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	.md\:px-5 {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	.md\:pt-5 {
		padding-top: 5px !important;
	}
	.md\:pb-5 {
		padding-bottom: 5px !important;
	}
	.md\:pl-5 {
		padding-left: 5px !important;
	}
	.md\:pr-5 {
		padding-right: 5px !important;
	}
	.md\:mt-5 {
		margin-top: 5px !important;
	}
	.md\:mb-5 {
		margin-bottom: 5px !important;
	}
	.md\:ml-5 {
		margin-left: 5px !important;
	}
	.md\:mr-5 {
		margin-right: 5px !important;
	}
	.md\:py-10 {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.md\:px-10 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.md\:pt-10 {
		padding-top: 10px !important;
	}
	.md\:pb-10 {
		padding-bottom: 10px !important;
	}
	.md\:pl-10 {
		padding-left: 10px !important;
	}
	.md\:pr-10 {
		padding-right: 10px !important;
	}
	.md\:mt-10 {
		margin-top: 10px !important;
	}
	.md\:mb-10 {
		margin-bottom: 10px !important;
	}
	.md\:ml-10 {
		margin-left: 10px !important;
	}
	.md\:mr-10 {
		margin-right: 10px !important;
	}
	.md\:py-15 {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}
	.md\:px-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.md\:pt-15 {
		padding-top: 15px !important;
	}
	.md\:pb-15 {
		padding-bottom: 15px !important;
	}
	.md\:pl-15 {
		padding-left: 15px !important;
	}
	.md\:pr-15 {
		padding-right: 15px !important;
	}
	.md\:mt-15 {
		margin-top: 15px !important;
	}
	.md\:mb-15 {
		margin-bottom: 15px !important;
	}
	.md\:ml-15 {
		margin-left: 15px !important;
	}
	.md\:mr-15 {
		margin-right: 15px !important;
	}
	.md\:py-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.md\:px-20 {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.md\:pt-20 {
		padding-top: 20px !important;
	}
	.md\:pb-20 {
		padding-bottom: 20px !important;
	}
	.md\:pl-20 {
		padding-left: 20px !important;
	}
	.md\:pr-20 {
		padding-right: 20px !important;
	}
	.md\:mt-20 {
		margin-top: 20px !important;
	}
	.md\:mb-20 {
		margin-bottom: 20px !important;
	}
	.md\:ml-20 {
		margin-left: 20px !important;
	}
	.md\:mr-20 {
		margin-right: 20px !important;
	}
	.md\:py-24 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
	.md\:px-24 {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.md\:pt-24 {
		padding-top: 24px !important;
	}
	.md\:pb-24 {
		padding-bottom: 24px !important;
	}
	.md\:pl-24 {
		padding-left: 24px !important;
	}
	.md\:pr-24 {
		padding-right: 24px !important;
	}
	.md\:mt-24 {
		margin-top: 24px !important;
	}
	.md\:mb-24 {
		margin-bottom: 24px !important;
	}
	.md\:ml-24 {
		margin-left: 24px !important;
	}
	.md\:mr-24 {
		margin-right: 24px !important;
	}
	.md\:py-28 {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}
	.md\:px-28 {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
	.md\:pt-28 {
		padding-top: 28px !important;
	}
	.md\:pb-28 {
		padding-bottom: 28px !important;
	}
	.md\:pl-28 {
		padding-left: 28px !important;
	}
	.md\:pr-28 {
		padding-right: 28px !important;
	}
	.md\:mt-28 {
		margin-top: 28px !important;
	}
	.md\:mb-28 {
		margin-bottom: 28px !important;
	}
	.md\:ml-28 {
		margin-left: 28px !important;
	}
	.md\:mr-28 {
		margin-right: 28px !important;
	}
	.md\:py-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.md\:px-30 {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.md\:pt-30 {
		padding-top: 30px !important;
	}
	.md\:pb-30 {
		padding-bottom: 30px !important;
	}
	.md\:pl-30 {
		padding-left: 30px !important;
	}
	.md\:pr-30 {
		padding-right: 30px !important;
	}
	.md\:mt-30 {
		margin-top: 30px !important;
	}
	.md\:mb-30 {
		margin-bottom: 30px !important;
	}
	.md\:ml-30 {
		margin-left: 30px !important;
	}
	.md\:mr-30 {
		margin-right: 30px !important;
	}
	.md\:py-35 {
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}
	.md\:px-35 {
		padding-left: 35px !important;
		padding-right: 35px !important;
	}
	.md\:pt-35 {
		padding-top: 35px !important;
	}
	.md\:pb-35 {
		padding-bottom: 35px !important;
	}
	.md\:pl-35 {
		padding-left: 35px !important;
	}
	.md\:pr-35 {
		padding-right: 35px !important;
	}
	.md\:mt-35 {
		margin-top: 35px !important;
	}
	.md\:mb-35 {
		margin-bottom: 35px !important;
	}
	.md\:ml-35 {
		margin-left: 35px !important;
	}
	.md\:mr-35 {
		margin-right: 35px !important;
	}
	.md\:py-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.md\:px-40 {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
	.md\:pt-40 {
		padding-top: 40px !important;
	}
	.md\:pb-40 {
		padding-bottom: 40px !important;
	}
	.md\:pl-40 {
		padding-left: 40px !important;
	}
	.md\:pr-40 {
		padding-right: 40px !important;
	}
	.md\:mt-40 {
		margin-top: 40px !important;
	}
	.md\:mb-40 {
		margin-bottom: 40px !important;
	}
	.md\:ml-40 {
		margin-left: 40px !important;
	}
	.md\:mr-40 {
		margin-right: 40px !important;
	}
	.md\:py-45 {
		padding-top: 45px !important;
		padding-bottom: 45px !important;
	}
	.md\:px-45 {
		padding-left: 45px !important;
		padding-right: 45px !important;
	}
	.md\:pt-45 {
		padding-top: 45px !important;
	}
	.md\:pb-45 {
		padding-bottom: 45px !important;
	}
	.md\:pl-45 {
		padding-left: 45px !important;
	}
	.md\:pr-45 {
		padding-right: 45px !important;
	}
	.md\:mt-45 {
		margin-top: 45px !important;
	}
	.md\:mb-45 {
		margin-bottom: 45px !important;
	}
	.md\:ml-45 {
		margin-left: 45px !important;
	}
	.md\:mr-45 {
		margin-right: 45px !important;
	}
	.md\:py-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	.md\:px-50 {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
	.md\:pt-50 {
		padding-top: 50px !important;
	}
	.md\:pb-50 {
		padding-bottom: 50px !important;
	}
	.md\:pl-50 {
		padding-left: 50px !important;
	}
	.md\:pr-50 {
		padding-right: 50px !important;
	}
	.md\:mt-50 {
		margin-top: 50px !important;
	}
	.md\:mb-50 {
		margin-bottom: 50px !important;
	}
	.md\:ml-50 {
		margin-left: 50px !important;
	}
	.md\:mr-50 {
		margin-right: 50px !important;
	}
	.md\:py-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.md\:px-60 {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
	.md\:pt-60 {
		padding-top: 60px !important;
	}
	.md\:pb-60 {
		padding-bottom: 60px !important;
	}
	.md\:pl-60 {
		padding-left: 60px !important;
	}
	.md\:pr-60 {
		padding-right: 60px !important;
	}
	.md\:mt-60 {
		margin-top: 60px !important;
	}
	.md\:mb-60 {
		margin-bottom: 60px !important;
	}
	.md\:ml-60 {
		margin-left: 60px !important;
	}
	.md\:mr-60 {
		margin-right: 60px !important;
	}
	.md\:py-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}
	.md\:px-70 {
		padding-left: 70px !important;
		padding-right: 70px !important;
	}
	.md\:pt-70 {
		padding-top: 70px !important;
	}
	.md\:pb-70 {
		padding-bottom: 70px !important;
	}
	.md\:pl-70 {
		padding-left: 70px !important;
	}
	.md\:pr-70 {
		padding-right: 70px !important;
	}
	.md\:mt-70 {
		margin-top: 70px !important;
	}
	.md\:mb-70 {
		margin-bottom: 70px !important;
	}
	.md\:ml-70 {
		margin-left: 70px !important;
	}
	.md\:mr-70 {
		margin-right: 70px !important;
	}
	.md\:py-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
	.md\:px-80 {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
	.md\:pt-80 {
		padding-top: 80px !important;
	}
	.md\:pb-80 {
		padding-bottom: 80px !important;
	}
	.md\:pl-80 {
		padding-left: 80px !important;
	}
	.md\:pr-80 {
		padding-right: 80px !important;
	}
	.md\:mt-80 {
		margin-top: 80px !important;
	}
	.md\:mb-80 {
		margin-bottom: 80px !important;
	}
	.md\:ml-80 {
		margin-left: 80px !important;
	}
	.md\:mr-80 {
		margin-right: 80px !important;
	}
	.md\:py-90 {
		padding-top: 90px !important;
		padding-bottom: 90px !important;
	}
	.md\:px-90 {
		padding-left: 90px !important;
		padding-right: 90px !important;
	}
	.md\:pt-90 {
		padding-top: 90px !important;
	}
	.md\:pb-90 {
		padding-bottom: 90px !important;
	}
	.md\:pl-90 {
		padding-left: 90px !important;
	}
	.md\:pr-90 {
		padding-right: 90px !important;
	}
	.md\:mt-90 {
		margin-top: 90px !important;
	}
	.md\:mb-90 {
		margin-bottom: 90px !important;
	}
	.md\:ml-90 {
		margin-left: 90px !important;
	}
	.md\:mr-90 {
		margin-right: 90px !important;
	}
	.md\:py-120 {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
	}
	.md\:px-120 {
		padding-left: 120px !important;
		padding-right: 120px !important;
	}
	.md\:pt-120 {
		padding-top: 120px !important;
	}
	.md\:pb-120 {
		padding-bottom: 120px !important;
	}
	.md\:pl-120 {
		padding-left: 120px !important;
	}
	.md\:pr-120 {
		padding-right: 120px !important;
	}
	.md\:mt-120 {
		margin-top: 120px !important;
	}
	.md\:mb-120 {
		margin-bottom: 120px !important;
	}
	.md\:ml-120 {
		margin-left: 120px !important;
	}
	.md\:mr-120 {
		margin-right: 120px !important;
	}
}

@media (max-width: 575px) {
	.sm\:py-0 {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	.sm\:px-0 {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.sm\:pt-0 {
		padding-top: 0px !important;
	}
	.sm\:pb-0 {
		padding-bottom: 0px !important;
	}
	.sm\:pl-0 {
		padding-left: 0px !important;
	}
	.sm\:pr-0 {
		padding-right: 0px !important;
	}
	.sm\:mt-0 {
		margin-top: 0px !important;
	}
	.sm\:mb-0 {
		margin-bottom: 0px !important;
	}
	.sm\:ml-0 {
		margin-left: 0px !important;
	}
	.sm\:mr-0 {
		margin-right: 0px !important;
	}
	.sm\:py-4 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
	.sm\:px-4 {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}
	.sm\:pt-4 {
		padding-top: 4px !important;
	}
	.sm\:pb-4 {
		padding-bottom: 4px !important;
	}
	.sm\:pl-4 {
		padding-left: 4px !important;
	}
	.sm\:pr-4 {
		padding-right: 4px !important;
	}
	.sm\:mt-4 {
		margin-top: 4px !important;
	}
	.sm\:mb-4 {
		margin-bottom: 4px !important;
	}
	.sm\:ml-4 {
		margin-left: 4px !important;
	}
	.sm\:mr-4 {
		margin-right: 4px !important;
	}
	.sm\:py-5 {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	.sm\:px-5 {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	.sm\:pt-5 {
		padding-top: 5px !important;
	}
	.sm\:pb-5 {
		padding-bottom: 5px !important;
	}
	.sm\:pl-5 {
		padding-left: 5px !important;
	}
	.sm\:pr-5 {
		padding-right: 5px !important;
	}
	.sm\:mt-5 {
		margin-top: 5px !important;
	}
	.sm\:mb-5 {
		margin-bottom: 5px !important;
	}
	.sm\:ml-5 {
		margin-left: 5px !important;
	}
	.sm\:mr-5 {
		margin-right: 5px !important;
	}
	.sm\:py-10 {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.sm\:px-10 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.sm\:pt-10 {
		padding-top: 10px !important;
	}
	.sm\:pb-10 {
		padding-bottom: 10px !important;
	}
	.sm\:pl-10 {
		padding-left: 10px !important;
	}
	.sm\:pr-10 {
		padding-right: 10px !important;
	}
	.sm\:mt-10 {
		margin-top: 10px !important;
	}
	.sm\:mb-10 {
		margin-bottom: 10px !important;
	}
	.sm\:ml-10 {
		margin-left: 10px !important;
	}
	.sm\:mr-10 {
		margin-right: 10px !important;
	}
	.sm\:py-15 {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}
	.sm\:px-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.sm\:pt-15 {
		padding-top: 15px !important;
	}
	.sm\:pb-15 {
		padding-bottom: 15px !important;
	}
	.sm\:pl-15 {
		padding-left: 15px !important;
	}
	.sm\:pr-15 {
		padding-right: 15px !important;
	}
	.sm\:mt-15 {
		margin-top: 15px !important;
	}
	.sm\:mb-15 {
		margin-bottom: 15px !important;
	}
	.sm\:ml-15 {
		margin-left: 15px !important;
	}
	.sm\:mr-15 {
		margin-right: 15px !important;
	}
	.sm\:py-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.sm\:px-20 {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.sm\:pt-20 {
		padding-top: 20px !important;
	}
	.sm\:pb-20 {
		padding-bottom: 20px !important;
	}
	.sm\:pl-20 {
		padding-left: 20px !important;
	}
	.sm\:pr-20 {
		padding-right: 20px !important;
	}
	.sm\:mt-20 {
		margin-top: 20px !important;
	}
	.sm\:mb-20 {
		margin-bottom: 20px !important;
	}
	.sm\:ml-20 {
		margin-left: 20px !important;
	}
	.sm\:mr-20 {
		margin-right: 20px !important;
	}
	.sm\:py-24 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
	.sm\:px-24 {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.sm\:pt-24 {
		padding-top: 24px !important;
	}
	.sm\:pb-24 {
		padding-bottom: 24px !important;
	}
	.sm\:pl-24 {
		padding-left: 24px !important;
	}
	.sm\:pr-24 {
		padding-right: 24px !important;
	}
	.sm\:mt-24 {
		margin-top: 24px !important;
	}
	.sm\:mb-24 {
		margin-bottom: 24px !important;
	}
	.sm\:ml-24 {
		margin-left: 24px !important;
	}
	.sm\:mr-24 {
		margin-right: 24px !important;
	}
	.sm\:py-28 {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}
	.sm\:px-28 {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}
	.sm\:pt-28 {
		padding-top: 28px !important;
	}
	.sm\:pb-28 {
		padding-bottom: 28px !important;
	}
	.sm\:pl-28 {
		padding-left: 28px !important;
	}
	.sm\:pr-28 {
		padding-right: 28px !important;
	}
	.sm\:mt-28 {
		margin-top: 28px !important;
	}
	.sm\:mb-28 {
		margin-bottom: 28px !important;
	}
	.sm\:ml-28 {
		margin-left: 28px !important;
	}
	.sm\:mr-28 {
		margin-right: 28px !important;
	}
	.sm\:py-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.sm\:px-30 {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.sm\:pt-30 {
		padding-top: 30px !important;
	}
	.sm\:pb-30 {
		padding-bottom: 30px !important;
	}
	.sm\:pl-30 {
		padding-left: 30px !important;
	}
	.sm\:pr-30 {
		padding-right: 30px !important;
	}
	.sm\:mt-30 {
		margin-top: 30px !important;
	}
	.sm\:mb-30 {
		margin-bottom: 30px !important;
	}
	.sm\:ml-30 {
		margin-left: 30px !important;
	}
	.sm\:mr-30 {
		margin-right: 30px !important;
	}
	.sm\:py-35 {
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}
	.sm\:px-35 {
		padding-left: 35px !important;
		padding-right: 35px !important;
	}
	.sm\:pt-35 {
		padding-top: 35px !important;
	}
	.sm\:pb-35 {
		padding-bottom: 35px !important;
	}
	.sm\:pl-35 {
		padding-left: 35px !important;
	}
	.sm\:pr-35 {
		padding-right: 35px !important;
	}
	.sm\:mt-35 {
		margin-top: 35px !important;
	}
	.sm\:mb-35 {
		margin-bottom: 35px !important;
	}
	.sm\:ml-35 {
		margin-left: 35px !important;
	}
	.sm\:mr-35 {
		margin-right: 35px !important;
	}
	.sm\:py-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.sm\:px-40 {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
	.sm\:pt-40 {
		padding-top: 40px !important;
	}
	.sm\:pb-40 {
		padding-bottom: 40px !important;
	}
	.sm\:pl-40 {
		padding-left: 40px !important;
	}
	.sm\:pr-40 {
		padding-right: 40px !important;
	}
	.sm\:mt-40 {
		margin-top: 40px !important;
	}
	.sm\:mb-40 {
		margin-bottom: 40px !important;
	}
	.sm\:ml-40 {
		margin-left: 40px !important;
	}
	.sm\:mr-40 {
		margin-right: 40px !important;
	}
	.sm\:py-45 {
		padding-top: 45px !important;
		padding-bottom: 45px !important;
	}
	.sm\:px-45 {
		padding-left: 45px !important;
		padding-right: 45px !important;
	}
	.sm\:pt-45 {
		padding-top: 45px !important;
	}
	.sm\:pb-45 {
		padding-bottom: 45px !important;
	}
	.sm\:pl-45 {
		padding-left: 45px !important;
	}
	.sm\:pr-45 {
		padding-right: 45px !important;
	}
	.sm\:mt-45 {
		margin-top: 45px !important;
	}
	.sm\:mb-45 {
		margin-bottom: 45px !important;
	}
	.sm\:ml-45 {
		margin-left: 45px !important;
	}
	.sm\:mr-45 {
		margin-right: 45px !important;
	}
	.sm\:py-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	.sm\:px-50 {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
	.sm\:pt-50 {
		padding-top: 50px !important;
	}
	.sm\:pb-50 {
		padding-bottom: 50px !important;
	}
	.sm\:pl-50 {
		padding-left: 50px !important;
	}
	.sm\:pr-50 {
		padding-right: 50px !important;
	}
	.sm\:mt-50 {
		margin-top: 50px !important;
	}
	.sm\:mb-50 {
		margin-bottom: 50px !important;
	}
	.sm\:ml-50 {
		margin-left: 50px !important;
	}
	.sm\:mr-50 {
		margin-right: 50px !important;
	}
	.sm\:py-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.sm\:px-60 {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
	.sm\:pt-60 {
		padding-top: 60px !important;
	}
	.sm\:pb-60 {
		padding-bottom: 60px !important;
	}
	.sm\:pl-60 {
		padding-left: 60px !important;
	}
	.sm\:pr-60 {
		padding-right: 60px !important;
	}
	.sm\:mt-60 {
		margin-top: 60px !important;
	}
	.sm\:mb-60 {
		margin-bottom: 60px !important;
	}
	.sm\:ml-60 {
		margin-left: 60px !important;
	}
	.sm\:mr-60 {
		margin-right: 60px !important;
	}
	.sm\:py-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}
	.sm\:px-70 {
		padding-left: 70px !important;
		padding-right: 70px !important;
	}
	.sm\:pt-70 {
		padding-top: 70px !important;
	}
	.sm\:pb-70 {
		padding-bottom: 70px !important;
	}
	.sm\:pl-70 {
		padding-left: 70px !important;
	}
	.sm\:pr-70 {
		padding-right: 70px !important;
	}
	.sm\:mt-70 {
		margin-top: 70px !important;
	}
	.sm\:mb-70 {
		margin-bottom: 70px !important;
	}
	.sm\:ml-70 {
		margin-left: 70px !important;
	}
	.sm\:mr-70 {
		margin-right: 70px !important;
	}
	.sm\:py-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
	.sm\:px-80 {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
	.sm\:pt-80 {
		padding-top: 80px !important;
	}
	.sm\:pb-80 {
		padding-bottom: 80px !important;
	}
	.sm\:pl-80 {
		padding-left: 80px !important;
	}
	.sm\:pr-80 {
		padding-right: 80px !important;
	}
	.sm\:mt-80 {
		margin-top: 80px !important;
	}
	.sm\:mb-80 {
		margin-bottom: 80px !important;
	}
	.sm\:ml-80 {
		margin-left: 80px !important;
	}
	.sm\:mr-80 {
		margin-right: 80px !important;
	}
	.sm\:py-90 {
		padding-top: 90px !important;
		padding-bottom: 90px !important;
	}
	.sm\:px-90 {
		padding-left: 90px !important;
		padding-right: 90px !important;
	}
	.sm\:pt-90 {
		padding-top: 90px !important;
	}
	.sm\:pb-90 {
		padding-bottom: 90px !important;
	}
	.sm\:pl-90 {
		padding-left: 90px !important;
	}
	.sm\:pr-90 {
		padding-right: 90px !important;
	}
	.sm\:mt-90 {
		margin-top: 90px !important;
	}
	.sm\:mb-90 {
		margin-bottom: 90px !important;
	}
	.sm\:ml-90 {
		margin-left: 90px !important;
	}
	.sm\:mr-90 {
		margin-right: 90px !important;
	}
	.sm\:py-120 {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
	}
	.sm\:px-120 {
		padding-left: 120px !important;
		padding-right: 120px !important;
	}
	.sm\:pt-120 {
		padding-top: 120px !important;
	}
	.sm\:pb-120 {
		padding-bottom: 120px !important;
	}
	.sm\:pl-120 {
		padding-left: 120px !important;
	}
	.sm\:pr-120 {
		padding-right: 120px !important;
	}
	.sm\:mt-120 {
		margin-top: 120px !important;
	}
	.sm\:mb-120 {
		margin-bottom: 120px !important;
	}
	.sm\:ml-120 {
		margin-left: 120px !important;
	}
	.sm\:mr-120 {
		margin-right: 120px !important;
	}
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.xl\:mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.lg\:mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.md\:mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.sm\:mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.x-gap-0 {
	margin-left: -0px;
	margin-right: -0px;
}

.x-gap-0 > * {
	padding-left: 0px;
	padding-right: 0px;
}

.y-gap-0 {
	margin-top: -0px;
	margin-bottom: -0px;
}

.y-gap-0 > * {
	padding-top: 0px;
	padding-bottom: 0px;
}

.x-gap-5 {
	margin-left: -2.5px;
	margin-right: -2.5px;
}

.x-gap-5 > * {
	padding-left: 2.5px;
	padding-right: 2.5px;
}

.y-gap-5 {
	margin-top: -2.5px;
	margin-bottom: -2.5px;
}

.y-gap-5 > * {
	padding-top: 2.5px;
	padding-bottom: 2.5px;
}

.x-gap-10 {
	margin-left: -5px;
	margin-right: -5px;
}

.x-gap-10 > * {
	padding-left: 5px;
	padding-right: 5px;
}

.y-gap-10 {
	margin-top: -5px;
	margin-bottom: -5px;
}

.y-gap-10 > * {
	padding-top: 5px;
	padding-bottom: 5px;
}

.x-gap-15 {
	margin-left: -7.5px;
	margin-right: -7.5px;
}

.x-gap-15 > * {
	padding-left: 7.5px;
	padding-right: 7.5px;
}

.y-gap-15 {
	margin-top: -7.5px;
	margin-bottom: -7.5px;
}

.y-gap-15 > * {
	padding-top: 7.5px;
	padding-bottom: 7.5px;
}

.x-gap-20 {
	margin-left: -10px;
	margin-right: -10px;
}

.x-gap-20 > * {
	padding-left: 10px;
	padding-right: 10px;
}

.y-gap-20 {
	margin-top: -10px;
	margin-bottom: -10px;
}

.y-gap-20 > * {
	padding-top: 10px;
	padding-bottom: 10px;
}

.x-gap-30 {
	margin-left: -15px;
	margin-right: -15px;
}

.x-gap-30 > * {
	padding-left: 15px;
	padding-right: 15px;
}

.y-gap-30 {
	margin-top: -15px;
	margin-bottom: -15px;
}

.y-gap-30 > * {
	padding-top: 15px;
	padding-bottom: 15px;
}

.x-gap-40 {
	margin-left: -20px;
	margin-right: -20px;
}

.x-gap-40 > * {
	padding-left: 20px;
	padding-right: 20px;
}

.y-gap-40 {
	margin-top: -20px;
	margin-bottom: -20px;
}

.y-gap-40 > * {
	padding-top: 20px;
	padding-bottom: 20px;
}

.x-gap-50 {
	margin-left: -25px;
	margin-right: -25px;
}

.x-gap-50 > * {
	padding-left: 25px;
	padding-right: 25px;
}

.y-gap-50 {
	margin-top: -25px;
	margin-bottom: -25px;
}

.y-gap-50 > * {
	padding-top: 25px;
	padding-bottom: 25px;
}

.x-gap-60 {
	margin-left: -30px;
	margin-right: -30px;
}

.x-gap-60 > * {
	padding-left: 30px;
	padding-right: 30px;
}

.y-gap-60 {
	margin-top: -30px;
	margin-bottom: -30px;
}

.y-gap-60 > * {
	padding-top: 30px;
	padding-bottom: 30px;
}

.x-gap-80 {
	margin-left: -40px;
	margin-right: -40px;
}

.x-gap-80 > * {
	padding-left: 40px;
	padding-right: 40px;
}

.y-gap-80 {
	margin-top: -40px;
	margin-bottom: -40px;
}

.y-gap-80 > * {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (max-width: 767px) {
	.md\:x-gap-0 {
		margin-left: -0px;
		margin-right: -0px;
	}
	.md\:x-gap-0 > * {
		padding-left: 0px;
		padding-right: 0px;
	}
	.md\:y-gap-0 {
		margin-top: -0px;
		margin-bottom: -0px;
	}
	.md\:y-gap-0 > * {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.md\:x-gap-5 {
		margin-left: -2.5px;
		margin-right: -2.5px;
	}
	.md\:x-gap-5 > * {
		padding-left: 2.5px;
		padding-right: 2.5px;
	}
	.md\:y-gap-5 {
		margin-top: -2.5px;
		margin-bottom: -2.5px;
	}
	.md\:y-gap-5 > * {
		padding-top: 2.5px;
		padding-bottom: 2.5px;
	}
	.md\:x-gap-10 {
		margin-left: -5px;
		margin-right: -5px;
	}
	.md\:x-gap-10 > * {
		padding-left: 5px;
		padding-right: 5px;
	}
	.md\:y-gap-10 {
		margin-top: -5px;
		margin-bottom: -5px;
	}
	.md\:y-gap-10 > * {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.md\:x-gap-15 {
		margin-left: -7.5px;
		margin-right: -7.5px;
	}
	.md\:x-gap-15 > * {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
	.md\:y-gap-15 {
		margin-top: -7.5px;
		margin-bottom: -7.5px;
	}
	.md\:y-gap-15 > * {
		padding-top: 7.5px;
		padding-bottom: 7.5px;
	}
	.md\:x-gap-20 {
		margin-left: -10px;
		margin-right: -10px;
	}
	.md\:x-gap-20 > * {
		padding-left: 10px;
		padding-right: 10px;
	}
	.md\:y-gap-20 {
		margin-top: -10px;
		margin-bottom: -10px;
	}
	.md\:y-gap-20 > * {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.md\:x-gap-30 {
		margin-left: -15px;
		margin-right: -15px;
	}
	.md\:x-gap-30 > * {
		padding-left: 15px;
		padding-right: 15px;
	}
	.md\:y-gap-30 {
		margin-top: -15px;
		margin-bottom: -15px;
	}
	.md\:y-gap-30 > * {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.md\:x-gap-40 {
		margin-left: -20px;
		margin-right: -20px;
	}
	.md\:x-gap-40 > * {
		padding-left: 20px;
		padding-right: 20px;
	}
	.md\:y-gap-40 {
		margin-top: -20px;
		margin-bottom: -20px;
	}
	.md\:y-gap-40 > * {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.md\:x-gap-50 {
		margin-left: -25px;
		margin-right: -25px;
	}
	.md\:x-gap-50 > * {
		padding-left: 25px;
		padding-right: 25px;
	}
	.md\:y-gap-50 {
		margin-top: -25px;
		margin-bottom: -25px;
	}
	.md\:y-gap-50 > * {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.md\:x-gap-60 {
		margin-left: -30px;
		margin-right: -30px;
	}
	.md\:x-gap-60 > * {
		padding-left: 30px;
		padding-right: 30px;
	}
	.md\:y-gap-60 {
		margin-top: -30px;
		margin-bottom: -30px;
	}
	.md\:y-gap-60 > * {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.md\:x-gap-80 {
		margin-left: -40px;
		margin-right: -40px;
	}
	.md\:x-gap-80 > * {
		padding-left: 40px;
		padding-right: 40px;
	}
	.md\:y-gap-80 {
		margin-top: -40px;
		margin-bottom: -40px;
	}
	.md\:y-gap-80 > * {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.sm\:x-gap-0 {
		margin-left: -0px;
		margin-right: -0px;
	}
	.sm\:x-gap-0 > * {
		padding-left: 0px;
		padding-right: 0px;
	}
	.sm\:y-gap-0 {
		margin-top: -0px;
		margin-bottom: -0px;
	}
	.sm\:y-gap-0 > * {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.sm\:x-gap-5 {
		margin-left: -2.5px;
		margin-right: -2.5px;
	}
	.sm\:x-gap-5 > * {
		padding-left: 2.5px;
		padding-right: 2.5px;
	}
	.sm\:y-gap-5 {
		margin-top: -2.5px;
		margin-bottom: -2.5px;
	}
	.sm\:y-gap-5 > * {
		padding-top: 2.5px;
		padding-bottom: 2.5px;
	}
	.sm\:x-gap-10 {
		margin-left: -5px;
		margin-right: -5px;
	}
	.sm\:x-gap-10 > * {
		padding-left: 5px;
		padding-right: 5px;
	}
	.sm\:y-gap-10 {
		margin-top: -5px;
		margin-bottom: -5px;
	}
	.sm\:y-gap-10 > * {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.sm\:x-gap-15 {
		margin-left: -7.5px;
		margin-right: -7.5px;
	}
	.sm\:x-gap-15 > * {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
	.sm\:y-gap-15 {
		margin-top: -7.5px;
		margin-bottom: -7.5px;
	}
	.sm\:y-gap-15 > * {
		padding-top: 7.5px;
		padding-bottom: 7.5px;
	}
	.sm\:x-gap-20 {
		margin-left: -10px;
		margin-right: -10px;
	}
	.sm\:x-gap-20 > * {
		padding-left: 10px;
		padding-right: 10px;
	}
	.sm\:y-gap-20 {
		margin-top: -10px;
		margin-bottom: -10px;
	}
	.sm\:y-gap-20 > * {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.sm\:x-gap-30 {
		margin-left: -15px;
		margin-right: -15px;
	}
	.sm\:x-gap-30 > * {
		padding-left: 15px;
		padding-right: 15px;
	}
	.sm\:y-gap-30 {
		margin-top: -15px;
		margin-bottom: -15px;
	}
	.sm\:y-gap-30 > * {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.sm\:x-gap-40 {
		margin-left: -20px;
		margin-right: -20px;
	}
	.sm\:x-gap-40 > * {
		padding-left: 20px;
		padding-right: 20px;
	}
	.sm\:y-gap-40 {
		margin-top: -20px;
		margin-bottom: -20px;
	}
	.sm\:y-gap-40 > * {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.sm\:x-gap-50 {
		margin-left: -25px;
		margin-right: -25px;
	}
	.sm\:x-gap-50 > * {
		padding-left: 25px;
		padding-right: 25px;
	}
	.sm\:y-gap-50 {
		margin-top: -25px;
		margin-bottom: -25px;
	}
	.sm\:y-gap-50 > * {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.sm\:x-gap-60 {
		margin-left: -30px;
		margin-right: -30px;
	}
	.sm\:x-gap-60 > * {
		padding-left: 30px;
		padding-right: 30px;
	}
	.sm\:y-gap-60 {
		margin-top: -30px;
		margin-bottom: -30px;
	}
	.sm\:y-gap-60 > * {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.sm\:x-gap-80 {
		margin-left: -40px;
		margin-right: -40px;
	}
	.sm\:x-gap-80 > * {
		padding-left: 40px;
		padding-right: 40px;
	}
	.sm\:y-gap-80 {
		margin-top: -40px;
		margin-bottom: -40px;
	}
	.sm\:y-gap-80 > * {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.layout-pt-sm {
	padding-top: 30px;
}

.layout-pb-sm {
	padding-bottom: 30px;
}

.layout-pt-md {
	padding-top: 65px;
}

.layout-pb-md {
	padding-bottom: 65px;
}

.special-off-sec {
	background-color: white;
	border: 1px solid #036cbd3b;
	border-radius: 10px;
}
.andaman-sec {
	background-color: #fafaff;
}


.contact-sec {
	color: #f2f5f9;
	font-size: 14px;
	font-weight: 500;
}

.enchanting-sec-2 {
	color: white;
}

.layout-pt-lg {
	padding-top: 60px;
	background-color: #f6faff;
}

.layout-pb-lg {
	padding-bottom: 90px;
}

.layout-pt-xl {
	padding-top: 140px;
}

.layout-pb-xl {
	padding-bottom: 140px;
}

@media (max-width: 767px) {
	.layout-pt-sm {
		padding-top: 30px;
	}
	.layout-pb-sm {
		padding-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.layout-pt-md {
		padding-top: 65px;
	}
	.layout-pb-md {
		padding-bottom: 65px;
	}
	.enchanting-sec {
		color: #ffffff;
		font-weight: 400;
	}
}

@media (max-width: 767px) {
	.layout-pt-lg {
		padding-top: 100px;
	}
	.layout-pb-lg {
		padding-bottom: 100px;
	}
}

@media (max-width: 767px) {
	.layout-pt-xl {
		padding-top: 120px;
	}
	.layout-pb-xl {
		padding-bottom: 120px;
	}
}

@media (max-width: 575px) {
	.layout-pt-sm {
		padding-top: 30px;
	}
	.layout-pb-sm {
		padding-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.layout-pt-md {
		padding-top: 65px;
	}
	.layout-pb-md {
		padding-bottom: 65px;
	}
}

@media (max-width: 575px) {
	.layout-pt-lg {
		padding-top: 60px;
	}
	.layout-pb-lg {
		padding-bottom: 60px;
	}
}

@media (max-width: 575px) {
	.layout-pt-xl {
		padding-top: 60px;
	}
	.layout-pb-xl {
		padding-bottom: 60px;
	}
}

.w-1\/7 {
	width: 14.285714% !important;
}

.w-1\/5 {
	width: 20% !important;
}

.w-1\/4 {
	width: 25% !important;
}

.w-1\/3 {
	width: 33.333333% !important;
}

.w-1\/2 {
	width: 50% !important;
}

.w-1\/1 {
	width: 100% !important;
}

@media (max-width: 1199px) {
	.xl\:w-1\/5 {
		width: 20% !important;
	}
	.xl\:w-1\/4 {
		width: 25% !important;
	}
	.xl\:w-1\/3 {
		width: 33.333333% !important;
	}
	.xl\:w-1\/2 {
		width: 50% !important;
	}
	.xl\:w-1\/1 {
		width: 100% !important;
	}
}

@media (max-width: 991px) {
	.lg\:w-1\/5 {
		width: 20% !important;
	}
	.lg\:w-1\/4 {
		width: 25% !important;
	}
	.lg\:w-1\/3 {
		width: 33.333333% !important;
	}
	.lg\:w-1\/2 {
		width: 50% !important;
	}
	.lg\:w-1\/1 {
		width: 100% !important;
	}
}

@media (max-width: 767px) {
	.md\:w-1\/5 {
		width: 20% !important;
	}
	.md\:w-1\/4 {
		width: 25% !important;
	}
	.md\:w-1\/3 {
		width: 33.333333% !important;
	}
	.md\:w-1\/2 {
		width: 50% !important;
	}
	.md\:w-1\/1 {
		width: 100% !important;
	}
}

@media (max-width: 575px) {
	.sm\:w-1\/5 {
		width: 20% !important;
	}
	.sm\:w-1\/4 {
		width: 25% !important;
	}
	.sm\:w-1\/3 {
		width: 33.333333% !important;
	}
	.sm\:w-1\/2 {
		width: 50% !important;
	}
	.sm\:w-1\/1 {
		width: 100% !important;
	}
}

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

@media (max-width: 1199px) {
	.xl\:flex-column {
		flex-direction: column !important;
	}
}

@media (max-width: 991px) {
	.lg\:flex-column {
		flex-direction: column !important;
	}
}

@media (max-width: 767px) {
	.md\:flex-column {
		flex-direction: column !important;
	}
}

@media (max-width: 575px) {
	.sm\:flex-column {
		flex-direction: column !important;
	}
}

.justify-start {
	justify-content: flex-start !important;
}

.justify-end {
	justify-content: flex-end !important;
}

.justify-center {
	justify-content: center !important;
}

.justify-between {
	justify-content: space-between !important;
}

.items-start {
	align-items: flex-start !important;
}

.items-end {
	align-items: flex-end !important;
}

.items-center {
	align-items: center !important;
}

@media (max-width: 1199px) {
	.xl\:justify-start {
		justify-content: flex-start !important;
	}
	.xl\:justify-end {
		justify-content: flex-end !important;
	}
	.xl\:justify-center {
		justify-content: center !important;
	}
	.xl\:justify-between {
		justify-content: space-between !important;
	}
	.xl\:items-start {
		align-items: flex-start !important;
	}
	.xl\:items-end {
		align-items: flex-end !important;
	}
	.xl\:items-center {
		align-items: center !important;
	}
}

@media (max-width: 991px) {
	.lg\:justify-start {
		justify-content: flex-start !important;
	}
	.lg\:justify-end {
		justify-content: flex-end !important;
	}
	.lg\:justify-center {
		justify-content: center !important;
	}
	.lg\:justify-between {
		justify-content: space-between !important;
	}
	.lg\:items-start {
		align-items: flex-start !important;
	}
	.lg\:items-end {
		align-items: flex-end !important;
	}
	.lg\:items-center {
		align-items: center !important;
	}
}

@media (max-width: 767px) {
	.md\:justify-start {
		justify-content: flex-start !important;
	}
	.md\:justify-end {
		justify-content: flex-end !important;
	}
	.md\:justify-center {
		justify-content: center !important;
	}
	.md\:justify-between {
		justify-content: space-between !important;
	}
	.md\:items-start {
		align-items: flex-start !important;
	}
	.md\:items-end {
		align-items: flex-end !important;
	}
	.md\:items-center {
		align-items: center !important;
	}
}

@media (max-width: 575px) {
	.sm\:justify-start {
		justify-content: flex-start !important;
	}
	.sm\:justify-end {
		justify-content: flex-end !important;
	}
	.sm\:justify-center {
		justify-content: center !important;
	}
	.sm\:justify-between {
		justify-content: space-between !important;
	}
	.sm\:items-start {
		align-items: flex-start !important;
	}
	.sm\:items-end {
		align-items: flex-end !important;
	}
	.sm\:items-center {
		align-items: center !important;
	}
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

@media (max-width: 1199px) {
	.xl\:order-1 {
		order: 1;
	}
	.xl\:order-2 {
		order: 2;
	}
	.xl\:order-3 {
		order: 3;
	}
}

@media (max-width: 991px) {
	.lg\:order-1 {
		order: 1;
	}
	.lg\:order-2 {
		order: 2;
	}
	.lg\:order-3 {
		order: 3;
	}
}

@media (max-width: 767px) {
	.md\:order-1 {
		order: 1;
	}
	.md\:order-2 {
		order: 2;
	}
	.md\:order-3 {
		order: 3;
	}
}

@media (max-width: 575px) {
	.sm\:order-1 {
		order: 1;
	}
	.sm\:order-2 {
		order: 2;
	}
	.sm\:order-3 {
		order: 3;
	}
}

.bg-white {
	background-color: var(--color-white) !important;
}

.bg-black {
	background-color: var(--color-black) !important;
}

.bg-border {
	background-color: var(--color-border) !important;
}

.bg-dark-1 {
	background-color: var(--color-dark-1) !important;
}

.bg-dark-2 {
	background-color: var(--color-dark-2) !important;
}

.bg-dark-3 {
	background-color: var(--color-dark-3) !important;
}

.bg-dark-4 {
	background-color: var(--color-dark-4) !important;
}

.bg-light-1 {
	background-color: var(--color-light-1) !important;
}

.bg-light-2 {
	background-color: var(--color-light-2) !important;
}

.bg-light-3 {
	background-color: var(--color-light-3) !important;
}

.bg-blue-1 {
	background-color: var(--color-blue-1) !important;
}

.bg-blue-2 {
	background-color: #ffffff !important;
	border: 1px solid #036cbd52;
	border-radius: 10px;
}

.bg-green-1 {
	background-color: var(--color-green-1) !important;
}

.bg-green-2 {
	background-color: var(--color-green-2) !important;
}

.bg-yellow-1 {
	background-color: var(--color-yellow-1) !important;
}

.bg-yellow-2 {
	background-color: var(--color-yellow-2) !important;
}

.bg-yellow-3 {
	background-color: var(--color-yellow-3) !important;
}

.bg-yellow-4 {
	background-color: var(--color-yellow-4) !important;
}

.bg-brown-1 {
	background-color: var(--color-brown-1) !important;
}

.bg-purple-1 {
	background-color: var(--color-purple-1) !important;
}

.bg-red-1 {
	background-color: var(--color-red-1) !important;
}

.bg-red-2 {
	background-color: var(--color-red-2) !important;
}

.bg-red-3 {
	background-color: var(--color-red-3) !important;
}

.bg-info-1 {
	background-color: var(--color-info-1) !important;
}

.bg-info-2 {
	background-color: var(--color-info-2) !important;
}

.bg-warning-1 {
	background-color: var(--color-warning-1) !important;
}

.bg-warning-2 {
	background-color: var(--color-warning-2) !important;
}

.bg-error-1 {
	background-color: var(--color-error-1) !important;
}

.bg-error-2 {
	background-color: var(--color-error-2) !important;
}

.bg-success-1 {
	background-color: var(--color-success-1) !important;
}

.bg-success-2 {
	background-color: var(--color-success-2) !important;
}

.bg-blue-1-05 {
	background-color: rgba(53, 84, 209, 0.05);
}

.bg-white-10 {
	background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-20 {
	background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-50 {
	background-color: rgba(255, 255, 255, 0.5);
}

.bg-black-20 {
	background-color: rgba(0, 0, 0, 0.2);
}

.text-white {
	color: var(--color-white);
}

.text-black {
	color: var(--color-black);
}

.text-border {
	color: var(--color-border);
}

.text-dark-1 {
	color: var(--text-dark-1);
}
.text-dark-1:hover {
	color: var(--color-white-1);
}

.text-dark-2 {
	color: var(--color-dark-2);
}

.text-dark-3 {
	color: var(--color-dark-3);
}

.text-dark-4 {
	color: var(--color-dark-4);
}

.text-light-1 {
	color: var(--color-light-1);
}
.text-light-1:hover {
	color: var(--color-blue-1);
}

.text-light-2 {
	color: var(--color-light-2);
}

.text-light-3 {
	color: var(--color-light-3);
}

.text-blue-1 {
	color: var(--color-blue-1);
}

.text-blue-2 {
	color: var(--color-blue-2);
}

.text-green-1 {
	color: var(--color-green-1);
}

.text-green-2 {
	color: var(--color-green-2);
}

.text-yellow-1 {
	color: var(--color-yellow-1);
}

.text-yellow-2 {
	color: var(--color-yellow-2);
}

.text-yellow-3 {
	color: var(--color-yellow-3);
}

.text-yellow-4 {
	color: var(--color-yellow-4);
}

.text-brown-1 {
	color: var(--color-brown-1);
}

.text-purple-1 {
	color: var(--color-purple-1);
}

.text-red-1 {
	color: var(--color-red-1);
}

.text-red-2 {
	color: var(--color-red-2);
}

.text-red-3 {
	color: var(--color-red-3);
}

.text-info-1 {
	color: var(--color-info-1);
}

.text-info-2 {
	color: var(--color-info-2);
}

.text-warning-1 {
	color: var(--color-warning-1);
}

.text-warning-2 {
	color: var(--color-warning-2);
}

.text-error-1 {
	color: var(--color-error-1);
}

.text-error-2 {
	color: var(--color-error-2);
}

.text-success-1 {
	color: var(--color-success-1);
}

.text-success-2 {
	color: var(--color-success-2);
}

.text-inherit {
	color: inherit;
}

.text-white-50 {
	color: rgba(255, 255, 255, 0.5);
}

.d-none {
	display: none !important;
}

.d-flex {
	display: flex !important;
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

@media (max-width: 1199px) {
	.xl\:d-none {
		display: none !important;
	}
	.xl\:d-inline-block {
		display: inline-block !important;
	}
	.xl\:d-block {
		display: block !important;
	}
	.xl\:d-flex {
		display: flex !important;
	}
}

@media (max-width: 991px) {
	.lg\:d-none {
		display: none !important;
	}
	.lg\:d-inline-block {
		display: inline-block !important;
	}
	.lg\:d-block {
		display: block !important;
	}
	.lg\:d-flex {
		display: flex !important;
	}
}

@media (max-width: 767px) {
	.md\:d-none {
		display: none !important;
	}
	.md\:d-inline-block {
		display: inline-block !important;
	}
	.md\:d-block {
		display: block !important;
	}
	.md\:d-flex {
		display: flex !important;
	}
}

@media (max-width: 575px) {
	.sm\:d-none {
		display: none !important;
	}
	.sm\:d-inline-block {
		display: inline-block !important;
	}
	.sm\:d-block {
		display: block !important;
	}
	.sm\:d-flex {
		display: flex !important;
	}
}

@media (max-width: 1300px) {
	.xxl\:d-none {
		display: none !important;
	}
}

.html-overflow-hidden {
	overflow: hidden !important;
}

.html-overflow-hidden body {
	overflow-y: scroll;
}

.origin-top {
	transform-origin: top !important;
}

.origin-left {
	transform-origin: left !important;
}

.overflow-scroll {
	overflow: scroll !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.overflow-normal {
	overflow: initial !important;
}

.overflow-visible {
	overflow: visible !important;
}

.pointer-events-auto {
	pointer-events: auto !important;
}

.pointer-events-none {
	pointer-events: none !important;
}

.bg-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
}

.img-ratio {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.line-through {
	text-decoration: line-through;
}

.underline {
	text-decoration: underline;
}

.italic {
	font-style: italic;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

.normal {
	text-transform: none;
}

.rounded-0 {
	border-radius: 0;
}

.rounded-4 {
	border-radius: 14px;
}

.rounded-8 {
	border-radius: 8px;
}

.rounded-16 {
	border-radius: 16px;
}

.rounded-22 {
	border-radius: 22px;
}

.rounded-100 {
	border-radius: 100px;
}

.rounded-full {
	border-radius: 100%;
}

.rounded-right-4 {
	border-radius: 0 4px 4px 0;
}
.rounded-right-4:hover {
	transform: translateY(-20px);
	transition: all 0.3s;
}

@media (max-width: 991px) {
	.lg\:border-none {
		border: none !important;
	}
}

.border-type-1 {
	border: 1px dashed var(--color-blue-1);
}

.border-top-light {
	border-top: 1px solid var(--color-border);
}

.border-left-light {
	border-left: 1px solid var(--color-border);
}

.border-bottom-light {
	border-bottom: 1px solid var(--color-border);
}

.border-white {
	border: 1px solid white;
}

.border-dark-1 {
	border: 1px solid var(--color-dark-1);
}

.border-dark-4 {
	border: 1px solid var(--color-dark-4);
}

.border-blue-1 {
	border: 1px solid var(--color-blue-1);
}

.border-white-15 {
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.border-top-white-15 {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.border-light {
	border: 1px solid var(--color-border) !important;
	border-radius: 15px;
}

.size-3 {
	flex-shrink: 0;
	width: 3px;
	height: 3px;
}

.size-4 {
	flex-shrink: 0;
	width: 4px;
	height: 4px;
}

.size-10 {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
}

.size-30 {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
}

.size-38 {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
}

.size-35 {
	flex-shrink: 0;
	width: 35px;
	height: 35px;
}

.size-40 {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.size-180 {
	flex-shrink: 0;
	width: 180px;
	height: 180px;
}

.size-140 {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
}

.size-80 {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
}

.size-50 {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
}

.size-60 {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
}

.size-65 {
	flex-shrink: 0;
	width: 65px;
	height: 65px;
}

.size-20 {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.size-70 {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
}

.size-100 {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
}

.size-120 {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
}

.size-250 {
	flex-shrink: 0;
	width: 250px;
	height: 250px;
}

.size-160 {
	flex-shrink: 0;
	width: 160px;
	height: 160px;
}

.size-130 {
	flex-shrink: 0;
	width: 130px;
	height: 130px;
}

.shadow-1 {
	box-shadow: 0px 20px 40px 0px #05103612;
}

.shadow-2 {
	box-shadow: 0px 10px 35px 0px #0510361A;
}

.shadow-3 {
	box-shadow: 0px 10px 30px 0px #05103608;
}

.shadow-4 {
	box-shadow: 0px 10px 60px 0px #0510360D;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

.h-full {
	height: 100% !important;
}

.h-34 {
	height: 34px !important;
}

.h-60 {
	height: 60px !important;
}

.h-1 {
	height: 1px !important;
}

.h-68 {
	height: 68px !important;
}

.h-50 {
	height: 50px !important;
}

.h-20 {
	height: 20px !important;
}

.h-40 {
	height: 40px !important;
}

.w-48 {
	width: 48px;
}

.w-28 {
	width: 28px;
}

.w-max-300 {
	max-width: 300px;
}

.slider-scrollbar {
	width: 100%;
	border-radius: 4px;
	height: 3px;
}

.slider-scrollbar .swiper-scrollbar-drag {
	cursor: -webkit-grab;
	cursor: grab;
	background-color: var(--color-dark-1);
}

.slider-scrollbar .swiper-scrollbar-drag:active:hover {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.slider-scrollbar.-light .swiper-scrollbar-drag {
	background-color: var(--color-white);
}

.pointer {
	cursor: pointer;
}

.section-bg {
	position: relative;
	z-index: 0;
}

.section-bg__item {
	position: absolute;
	top: 0;
	height: 100%;
	z-index: -1;
}

.section-bg__item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.section-bg__item.-w-1500 {
	width: 1500px;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 1199px) {
	.section-bg__item.-w-1500 {
		width: 100%;
	}
}

.section-bg__item.-w-1165 {
	width: 64vw;
}

@media (max-width: 1199px) {
	.section-bg__item.-w-1165 {
		width: 100%;
	}
}

.section-bg__item.-video-left {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 40vw;
	height: unset;
}

@media (max-width: 1199px) {
	.section-bg__item.-video-left {
		top: unset;
		width: 100%;
		transform: none;
		position: relative;
		margin: 0 auto;
		padding: 0 15px;
		max-width: 960px;
	}
}

@media (max-width: 991px) {
	.section-bg__item.-video-left {
		max-width: 720px;
	}
}

@media (max-width: 767px) {
	.section-bg__item.-video-left {
		max-width: 540px;
	}
}

.section-bg__item.-left {
	left: 0;
}

.section-bg__item.-right {
	right: 0;
}

.section-bg__item.-left-100 {
	left: 100px;
}

@media (max-width: 991px) {
	.section-bg__item.-left-100 {
		left: 0;
	}
}

.section-bg__item.-right-100 {
	right: 100px;
}

@media (max-width: 991px) {
	.section-bg__item.-right-100 {
		right: 0;
	}
}

.section-bg__item.-mx-20 {
	left: 20px;
	right: 20px;
}

@media (max-width: 767px) {
	.section-bg__item.-mx-20 {
		left: 0;
		right: 0;
	}
}

@media (max-width: 767px) {
	.section-bg__item.-image {
		position: relative;
		width: 100%;
	}
}

.object-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.currencyMenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 120px;
	z-index: 1100;
	pointer-events: auto;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.currencyMenu.is-hidden {
	pointer-events: none;
	opacity: 0;
}

.currencyMenu__bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.4);
}

.currencyMenu__content {
	position: absolute;
	left: 50%;
	z-index: 1;
	width: 1070px;
	height: auto;
	transform: translateX(-50%);
}

.modalGrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
}

@media (max-width: 991px) {
	.modalGrid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.modalGrid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
	}
}

.modalGrid__item {
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modalGrid__item > * > *:nth-child(1) {
	transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modalGrid__item:hover {
	background-color: rgba(53, 84, 209, 0.05) !important;
}

.modalGrid__item:hover > * > *:nth-child(1) {
	color: var(--color-blue-1);
}

.modalGrid__item.-is-active {
	background-color: #f5f5f5;
}

.langMenu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	width: 100%;
	height: 100%;
	padding-top: 120px;
	pointer-events: auto;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.langMenu.is-hidden {
	pointer-events: none;
	opacity: 0;
}

.langMenu__bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 16, 54, 0.4);
}

.langMenu__content {
	position: absolute;
	left: 50%;
	z-index: 1;
	width: 1070px;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
}

.relative {
	position: relative;
}

.ph-white::-moz-placeholder {
	color: var(--color-white);
}

.ph-white:-ms-input-placeholder {
	color: var(--color-white);
}

.ph-white::placeholder {
	color: var(--color-white);
}

.absolute {
	position: absolute;
}

.bottom-0 {
	bottom: 0;
}

.flightLine {
	position: relative;
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
}

.flightLine > * {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
	height: 9px;
	border: 1px solid var(--color-border);
	border-radius: 100%;
}

.flightLine > *:nth-child(1) {
	left: 0;
	background-color: var(--color-white);
}

.flightLine > *:nth-child(2) {
	right: 0;
	background-color: var(--color-border);
}

.blog-grid-1 {
	display: grid;
	grid-template-columns: 0.66fr 0.33fr;
	grid-template-rows: 250px 250px;
	gap: 30px;
}

@media (max-width: 991px) {
	.blog-grid-1 {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
}

.blog-grid-1 > *:nth-child(1) {
	grid-row: span 2;
}

@media (max-width: 991px) {
	.blog-grid-1 > *:nth-child(1) {
		grid-row: unset;
	}
}

.border-center > *:nth-child(2n + 2) {
	border-left: 1px solid var(--color-light-2);
}

.border-center > *:nth-child(1n + 3) {
	border-top: 1px solid var(--color-light-2);
}

@media (max-width: 991px) {
	.border-center > *:nth-child(1n + 2) {
		border-top: 1px solid var(--color-light-2);
	}
	.border-center > * {
		border-left: 0;
	}
}

.header-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.section-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.section-slider-nav.-prev {
	left: -20px;
}

.section-slider-nav.-next {
	right: -20px;
}

@media (max-width: 767px) {
	.md\:size-full {
		width: 100%;
		height: auto;
	}
}

.sidebar__item:not(.-no-border) {
	border-top: 1px solid var(--color-border);
}

.sidebar.-mobile-filter {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 10px;
	padding-top: 70px;
}

.sidebar.-mobile-filter .-icon-close {
	position: absolute;
	top: 20px;
	left: 24px;
}

@media (max-width: 767px) {
	.sidebar.-mobile-filter {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.sidebar.-mobile-filter {
		grid-template-columns: 1fr;
	}
}

.sidebar.-mobile-filter > * {
	border-top: none !important;
}

.w-250 {
	width: 250px;
	max-width: 100%;
}

.w-1 {
	width: 1px;
	max-width: 100%;
}

.w-200 {
	width: 200px;
	max-width: 100%;
}

.w-180 {
	width: 180px;
	max-width: 100%;
}

.halfMap {
	display: flex;
	width: 100%;
	min-height: calc(100vh - 90px);
	margin-top: 90px;
}

@media (max-width: 991px) {
	.halfMap {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.halfMap {
		margin-top: 80px;
	}
}

.halfMap__content {
	width: 865px;
	max-width: 100%;
	flex-shrink: 0;
	padding: 30px;
	min-height: 100%;
}

@media (max-width: 1199px) {
	.halfMap__content {
		width: 660px;
	}
}

@media (max-width: 991px) {
	.halfMap__content {
		width: 100%;
		order: 2;
	}
}

@media (max-width: 767px) {
	.halfMap__content {
		padding: 20px;
	}
}

.halfMap__map {
	width: 100%;
	min-height: 100%;
}

@media (max-width: 991px) {
	.halfMap__map {
		order: 1;
	}
}

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

.galleryGrid.-type-1 {
	display: grid;
	grid-template-columns: 0.52fr 0.24fr 0.24fr;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
}

@media (max-width: 991px) {
	.galleryGrid.-type-1 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.galleryGrid.-type-1 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.galleryGrid.-type-1 {
		grid-template-columns: 1fr;
	}
}

.galleryGrid.-type-1 > *:nth-child(1) {
	grid-row: 2 span;
}

@media (max-width: 991px) {
	.galleryGrid.-type-1 > *:nth-child(1) {
		grid-row: 1;
	}
}

.galleryGrid.-type-1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
    border-radius: 6px !important;

}

@media (max-width: 991px) {
	.galleryGrid.-type-1 img {
		width: 100%;
	}
}

.galleryGrid.-type-2 {
	display: grid;
	grid-template-columns: 0.6fr 0.2fr 0.2fr;
	grid-template-rows: 0.4fr 0.6fr;
	gap: 10px;
}

@media (max-width: 991px) {
	.galleryGrid.-type-2 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.galleryGrid.-type-2 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.galleryGrid.-type-2 {
		grid-template-columns: 1fr;
	}
}

.galleryGrid.-type-2 > *:nth-child(1) {
	grid-row: 2 span;
}

.galleryGrid.-type-2 > *:nth-child(4) {
	grid-column: 2 span;
}

.galleryGrid.-type-2 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (max-width: 991px) {
	.galleryGrid.-type-2 img {
		width: 100%;
	}
}

.min-h-250 {
	min-height: 250px;
}

.roomGrid {
	width: 100%;
}

.roomGrid__header {
	display: grid;
	grid-template-columns: 180px 1fr 60px 170px 140px 270px;
	gap: 30px;
	background-color: var(--color-dark-3);
	color: white;
	font-weight: 500;
	padding: 15px 0;
}

@media (max-width: 1400px) {
	.roomGrid__header {
		grid-template-columns: 140px 1fr 60px 170px 140px 180px;
	}
}

@media (max-width: 1199px) {
	.roomGrid__header {
		display: none;
	}
}

.roomGrid__header > *:first-child {
	padding-left: 30px;
}

.roomGrid__grid {
	display: grid;
	gap: 30px;
	grid-template-columns: 180px auto 270px;
}

@media (max-width: 1400px) {
	.roomGrid__grid {
		grid-template-columns: 140px auto 180px;
	}
}

@media (max-width: 1199px) {
	.roomGrid__grid {
		grid-template-columns: 140px auto;
	}
	.roomGrid__grid > *:nth-child(3) {
		grid-column: 2 span;
	}
}

@media (max-width: 991px) {
	.roomGrid__grid {
		grid-template-columns: 1fr;
	}
	.roomGrid__grid > *:nth-child(1) {
		display: flex;
		align-items: center;
	}
	.roomGrid__grid > *:nth-child(1) > *:first-child {
		min-width: 200px;
		margin-right: 20px;
	}
	.roomGrid__grid > *:nth-child(2) {
		grid-column: 2 span;
	}
}

@media (max-width: 767px) {
	.roomGrid__grid > *:nth-child(1) {
		display: block;
		align-items: unset;
	}
	.roomGrid__grid > *:nth-child(1) > *:first-child {
		min-width: auto;
		width: 100%;
		margin-right: 0;
	}
}

.roomGrid__grid > * {
	padding-top: 20px;
}

.roomGrid__grid > *:nth-child(3) {
	background-color: rgba(53, 84, 209, 0.05);
	padding: 20px 30px;
}

.roomGrid__content {
	display: grid;
	grid-template-columns: 1fr 60px 170px 140px;
	gap: 30px;
}

@media (max-width: 767px) {
	.roomGrid__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.roomGrid__content:nth-child(1n + 2) {
	border-top: 1px solid var(--color-border);
}

.progressBar {
	position: relative;
}

.progressBar__bg {
	width: 100%;
	height: 4px;
	border-radius: 4px;
}

.progressBar__bar {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	height: 100%;
	border-radius: 4px;
}

.progressBar__bar span {
	position: absolute;
	right: 0;
	bottom: 100%;
}

.tooltip {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #615e5e;
}

.tooltip__content {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 11px;
	font-size: 14px;
	line-height: 1.2;
	background-color: var(--color-dark-1);
	color: white;
	border-radius: 8px;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.tooltip__content::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: black;
	transform: rotate(45deg);
}

.tooltip.-top .tooltip__content {
	bottom: calc(100% + 6px);
	transform: translateY(8px);
}

.tooltip.-top .tooltip__content::after {
	bottom: -4px;
}

.tooltip.-bottom .tooltip__content {
	top: calc(100% + 6px);
	transform: translateY(-8px);
}

.tooltip.-bottom .tooltip__content::after {
	top: -4px;
}

.tooltip.-left .tooltip__content {
	right: calc(100% + 6px);
	transform: translateX(8px);
}

.tooltip.-left .tooltip__content::after {
	right: -4px;
}

.tooltip.-right .tooltip__content {
	left: calc(100% + 6px);
	transform: translateX(-8px);
}

.tooltip.-right .tooltip__content::after {
	left: -4px;
}

.tooltip:hover .tooltip__content {
	transform: none;
	opacity: 1;
}

.gallery__item {
	position: relative;
	display: block;
}

.gallery__item:hover .gallery__button {
	opacity: 1;
}

.gallery__button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	background-color: black;
	border-radius: 100%;
	width: rem(52px);
	height: rem(52px);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.gallery__button .icon {
	color: white;
	stroke-width: 1;
	width: rem(28px);
	height: rem(28px);
}

.gallery__button.-bottom-right {
	top: unset;
	left: unset;
	transform: unset;
	bottom: rem(30px);
	right: rem(30px);
}

.form-input {
	position: relative;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
}

.form-input label {
	position: absolute;
	top: 0;
	top: 26px;
	padding: 0 15px;
	pointer-events: none;
	font-size: 14px;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-input textarea,
.form-input input {
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 0 15px;
	padding-top: 25px;
	min-height: 70px;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	width: 100%;
}

.form-input textarea:focus,
.form-input input:focus {
	border: 2px solid #051036 !important;
}

.form-input textarea:focus ~ label,
.form-input textarea:valid ~ label,
.form-input input:focus ~ label,
.form-input input:valid ~ label {
	transform: translateY(-10px);
}

.sidebar.-blog > * + * {
	padding-top: 30px;
	margin-top: 30px;
}

.list-disc li {
	list-style-type: disc;
	list-style-position: inside;
}

.w-360 {
	width: 360px;
}

@media (max-width: 991px) {
	.lg\:w-full {
		width: 100% !important;
	}
}

@media (max-width: 575px) {
	.sm\:w-full {
		width: 100% !important;
	}
}

.w-140 {
	width: 140px;
	max-width: 100%;
}

.w-210 {
	width: 210px;
	max-width: 100%;
}

.w-230 {
	width: 230px;
	max-width: 100%;
}

.no-page__title {
	font-size: 200px;
	font-weight: 600;
	line-height: 1.2;
}

table.table th {
	padding: 25px 40px;
	line-height: 1;
	font-weight: 500;
}

table.table th:first-child {
	border-radius: 8px 0 0 8px;
}

table.table th:last-child {
	border-radius: 0 8px 8px 0;
}

table.table tbody > tr + tr {
	border-top: 1px solid var(--color-border);
}

table.table td {
	padding: 20px 40px;
	font-size: 15px;
	border-bottom: 1px solid var(--color-light-5);
}

table.table-2 th {
	font-weight: 500;
	padding: 15px 10px;
	line-height: 1.2;
}

table.table-2 th:first-child {
	border-radius: 8px 0 0 8px;
}

table.table-2 th:last-child {
	border-radius: 0 8px 8px 0;
}

table.table-2 th:nth-child(1) {
	padding-left: 0;
}

table.table-2 th:last-child {
	text-align: right;
	padding-right: 0;
}

table.table-2 tbody > tr {
	border-top: 1px dashed var(--color-border);
	vertical-align: top;
}

table.table-2 td {
	padding: 15px 10px;
	font-size: 15px;
	line-height: 1.2;
}

table.table-2 td:nth-child(1) {
	padding-left: 0;
}

table.table-2 td:last-child {
	text-align: right;
	padding-right: 0;
}

.overflow-x-scroll {
	overflow-x: scroll;
}

table.table-3 th {
	font-weight: 500;
	padding: 20px 30px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-3 th {
		padding: 15px 15px;
		min-width: 100px;
	}
}

table.table-3 th:first-child {
	border-radius: 8px 0 0 8px;
}

table.table-3 th:last-child {
	border-radius: 0 8px 8px 0;
}

table.table-3 tbody tr {
	vertical-align: top;
}

table.table-3 tbody > tr + tr {
	border-top: 1px dashed var(--color-border);
}

table.table-3 td {
	padding: 15px 30px;
	font-size: 15px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-3 td {
		padding: 15px 15px;
	}
}

table.table-3.-border-bottom tbody > tr {
	border-top: none;
	border-bottom: 1px dashed var(--color-border);
}

table.table-4 th {
	font-weight: 500;
	padding: 20px 30px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-4 th {
		padding: 15px 15px;
		min-width: 100px;
	}
}

table.table-4 th:first-child {
	border-radius: 8px 0 0 8px;
}

table.table-4 th:last-child {
	border-radius: 0 8px 8px 0;
}

table.table-4 tbody tr {
	vertical-align: top;
}

table.table-4 tbody > tr + tr {
	border-top: 1px dashed var(--color-border);
}

table.table-4 td {
	padding: 20px 30px;
	font-size: 15px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-4 td {
		padding: 15px 15px;
	}
}

table.table-4.-border-bottom tbody > tr {
	border-top: none;
	border-bottom: 1px dashed var(--color-border);
}

table.table-5 {
	width: 100%;
}

table.table-5 th {
	font-weight: 500;
	padding: 20px 15px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-5 th {
		padding: 15px 15px;
		min-width: 100px;
	}
}

table.table-5 th:first-child {
	border-radius: 8px 0 0 8px;
}

table.table-5 th:last-child {
	border-radius: 0 8px 8px 0;
}

table.table-5 tbody tr {
	vertical-align: top;
}

table.table-5 tbody > tr {
	border-bottom: 1px solid var(--color-border);
}

table.table-5 td {
	padding: 20px 15px;
	font-size: 15px;
	line-height: 1.2;
	min-width: 130px;
}

@media (max-width: 1199px) {
	table.table-5 td {
		padding: 15px 15px;
	}
}

.z--1 {
	z-index: -1;
}

.z-0 {
	z-index: 0;
}

.z-1 {
	z-index: 1;
}

.z-2 {
	z-index: 2;
}

.z-3 {
	z-index: 3;
}

.z-4 {
	z-index: 4;
}

.z-5 {
	z-index: 5;
}

.side-badge {
	position: absolute;
	top: -7px;
	left: -3px;
}

.side-badge > * {
	border: 3px solid white;
}

.map-500 {
	min-height: 500px;
	height: 500px;
}

@media (max-width: 575px) {
	.map-500 {
		min-height: 400px;
		height: 400px;
	}
}

.map-form {
	position: relative;
	margin-top: -680px;
}

@media (max-width: 991px) {
	.map-form {
		margin-top: 40px;
	}
}

.h-400 {
	height: 400px;
	min-height: 400px;
}

.table-calendar {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.table-calendar__header {
	font-size: 14px;
	font-weight: 600;
}

.table-calendar__grid {
	font-size: 15px;
}

.table-calendar__cell {
	cursor: pointer;
	position: relative;
	z-index: 0;
	transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.table-calendar__cell:hover {
	background-color: var(--color-dark-3);
	color: white;
}

.table-calendar__cell.-is-in-path {
	position: relative;
	z-index: 0;
	color: var(--color-dark-1) !important;
}

.table-calendar__cell.-is-in-path::before {
	content: "";
	background-color: var(--color-light-2);
	position: absolute;
	top: 0;
	left: -16px;
	right: -16px;
	z-index: -2;
	height: 100%;
}

.table-calendar__cell.-is-active {
	position: relative;
	z-index: 2;
	background-color: var(--color-dark-3);
	color: white;
}

.table-calendar__header,
.table-calendar__grid {
	display: grid;
	justify-content: center;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 8px;
}

.table-calendar__header > *,
.table-calendar__grid > * {
	justify-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 48px;
	height: 48px;
	border-radius: 100%;
}

@media (max-width: 767px) {
	.table-calendar__header > *,
	.table-calendar__grid > * {
		width: 32px;
		height: 32px;
	}
}

.desktopMenu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 450px;
	max-width: 100%;
	height: 100%;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
	pointer-events: none;
}

.desktopMenu .mobile-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-color: white;
}

.desktopMenu__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.desktopMenu-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -2;
	background-color: rgba(5, 16, 54, 0.5);
}

.desktopMenu.is-menu-active {
	opacity: 1;
	pointer-events: auto;
}

.desktopMenu.is-menu-active .-is-active {
	pointer-events: auto !important;
	overflow-x: hidden;
}

.desktopMenu .menu {
	overflow-y: hidden;
	overflow-x: hidden;
	position: relative;
	height: 100%;
}

.desktopMenu .menu ul {
	pointer-events: none;
}

.desktopMenu .menu li {
	overflow: hidden;
}

.desktopMenu .menu a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	padding: 0 20px;
	border-radius: 4px;
	font-weight: 500;
	color: var(--color-dark-1);
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.desktopMenu .menu a .icon {
	font-size: 8px;
	transform: rotate(-90deg);
}

.desktopMenu .menu a:hover {
	color: var(--color-blue-1);
}

.desktopMenu .menu__nav {
	display: flex;
	flex-direction: column;
}

.desktopMenu .menu__nav > li > a {
	font-size: 20px;
}

.desktopMenu .menu__nav > li > a:hover {
	background-color: rgba(53, 84, 209, 0.05) !important;
}

.desktopMenu .menu .subnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.desktopMenu .menu .subnav a {
	height: 40px;
	font-size: 18px;
	padding: 0 20px;
	transform: translateY(100%);
}

.desktopMenu .menu .subnav__backBtn {
	margin-bottom: 10px;
}

.desktopMenu .menu .subnav__backBtn li {
	padding: 0;
}

.desktopMenu .menu .subnav__backBtn a {
	justify-content: flex-start;
	height: 50px;
	font-size: 20px;
	color: var(--color-blue-1);
	background-color: rgba(53, 84, 209, 0.05) !important;
}

.desktopMenu .menu .subnav__backBtn a .icon {
	margin-right: 12px;
	transform: rotate(90deg);
}

.searchMenu {
	position: relative;
}

.searchMenu__field {
	position: absolute;
	padding-top: 30px;
	top: 100%;
	left: 0;
	z-index: 5;
	width: 500px;
	max-width: 100vw;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

.searchMenu__field.is-visible {
	pointer-events: auto;
	opacity: 1;
}

.searchMenu .-link:hover {
	background-color: rgba(53, 84, 209, 0.05) !important;
}

.h-34 {
	height: 34px;
}

.dropRating {
	position: absolute;
	top: calc(100% + 10px);
	z-index: 10;
	width: 340px;
	max-width: 100vw;
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	opacity: 0;
}

.dropRating.-is-active {
	pointer-events: auto;
	opacity: 1;
}

.quote {
	position: relative;
	padding: 20px 0;
	padding-left: 75px;
	width: 740px;
	max-width: 100%;
}

.quote__line {
	width: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.quote__icon {
	top: 12px;
	left: 22px;
	z-index: -1;
}

.hotelSingleGrid {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 360px;
}

@media (max-width: 767px) {
	.hotelSingleGrid {
		grid-template-columns: 1fr;
	}
}

.border-test {
	position: absolute;
	top: 0;
	bottom: 40px;
	left: 19px;
	z-index: -1;
	border-left: 2px dashed #e5f0fd;
}

.border-line-2 {
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 13px;
	z-index: -1;
	border-left: 1px solid var(--color-border);
}

@media (max-width: 575px) {
	.border-line-2 {
		display: none;
	}
}

.map {
	width: 100%;
	height: 100%;
	background-color: #a3a3a3;
}

.carsSlider {
	display: grid;
	gap: 10px;
	grid-template-columns: 120px calc(100% - 130px);
}

@media (max-width: 767px) {
	.carsSlider {
		grid-template-columns: 1fr;
	}
}

.carsSlider .carsSlider-slides {
	display: flex;
	flex-direction: column;
}

.carsSlider .carsSlider-slides > * + * {
	margin-top: 10px;
}

@media (max-width: 767px) {
	.carsSlider .carsSlider-slides {
		flex-direction: row;
		order: 2;
	}
	.carsSlider .carsSlider-slides > * + * {
		margin-top: 0;
		margin-left: 10px;
	}
}

.carsSlider .carsSlider-slides__item {
	border: 1px solid #dddddd;
}

.carsSlider .carsSlider-slides__item.-is-active {
	border: 1px solid #051036;
}

.carsSlider .carsSlider-slider {
	overflow: hidden;
	width: 100%;
}

@media (max-width: 767px) {
	.carsSlider .carsSlider-slider {
		order: 1;
	}
}

.carsSlider .carsSlider-slider img {
	border: 1px solid #dddddd;
	width: 100%;
	max-height: 510px;
}

.cruiseSlider .cruiseSlider-slides__item {
	border: 1px solid #dddddd;
}

.cruiseSlider .cruiseSlider-slides__item.-is-active {
	border: 1px solid #051036;
}

.cruiseSlider .cruiseSlider-slider {
	overflow: hidden;
	width: 100%;
}

@media (max-width: 767px) {
	.cruiseSlider .cruiseSlider-slider {
		order: 1;
	}
}

.cruiseSlider .cruiseSlider-slider img {
	border: 1px solid #dddddd;
	width: 100%;
	max-height: 510px;
}

.cruiseSlider__nav {
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
}

.cruiseSlider__nav.-prev {
	left: 20px;
}

.cruiseSlider__nav.-next {
	right: 20px;
}

@media (max-width: 767px) {
	.cruiseSlider__nav {
		top: unset;
		bottom: 30px;
		transform: none;
	}
	.cruiseSlider__nav.-prev {
		left: unset;
		right: calc(50% + 10px);
	}
	.cruiseSlider__nav.-next {
		right: unset;
		left: calc(50% + 10px);
	}
}

.w-max-120 {
	max-width: 120px;
}

.singleMenu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	top: 0;
	background-color: white;
	border-bottom: 1px solid #dddddd;
	display: flex;
	align-items: center;
	transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
	pointer-events: none;
}

.singleMenu.-is-active {
	opacity: 1;
	pointer-events: auto;
}

.singleMenu__content {
	width: 100%;
	min-height: 80px;
	padding: 15px 0;
}

.singleMenu__links a {
	font-size: 15px;
	font-weight: 500;
}

.overflow-x-hidden {
	overflow-x: clip;
}

.-is-dd-wrap-active .-dd-button {
	border-color: var(--color-dark-1) !important;
	outline: 1px solid var(--color-dark-1) !important;
}

.-is-dd-wrap-active .-dd-button .icon {
	transform: rotate(180deg);
}

.noUi-target {
	height: 4px;
	border: none;
	outline: 1px solid rgba(0, 0, 0, 0.08);
}

.noUi-connect {
	background-color: var(--color-blue-1) !important;
	box-shadow: 0 !important;
}

.noUi-handle {
	border-radius: 100%;
	width: 20px !important;
	height: 20px !important;
	top: 50% !important;
	transform: translateY(-50%);
	border: 2px solid var(--color-blue-1);
	box-shadow: 0 !important;
}

.noUi-handle::before {
	display: none;
}

.noUi-handle::after {
	display: none;
}

.filterPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1100;
	overflow-y: scroll;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
	pointer-events: none;
}

.filterPopup.-is-active {
	opacity: 1;
	pointer-events: auto;
}

.base-tr {
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.date-input {
	display: flex;
	flex-flow: row-reverse;
	width: 100%;
}

.date-input::-webkit-calendar-picker-indicator {
	cursor: pointer;
	background: none;
	z-index: 2;
	margin-right: 10px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.calendar-icon {
	position: absolute;
	top: 28px;
}

.calendar-icon.-left {
	left: 40px;
}

.calendar-icon.-right {
	right: 40px;
}

.gm-style-iw-t {
	right: unset !important;
	left: 25px;
	bottom: 20px !important;
}

.mapMarker {
	position: relative;
	z-index: 100;
}

.mapMarker:hover {
	background-color: var(--color-dark-1) !important;
	border-color: var(--color-dark-1) !important;
	color: white !important;
}

.gm-style .gm-style-iw-c {
	border-radius: 4px;
}

.mapItem__img {
	width: 100px !important;
	height: 100px !important;
	-o-object-fit: cover;
	object-fit: cover;
}

.mapItem__content {
	height: 100px;
}

.map-ratio {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 700px;
}

.bgGreyD {
	background-color: #252d35 !important;
}

.padding9090 {
	padding-top: 90px;
	padding-bottom: 90px;
	padding: 12px;
}
.container800 {
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
}
.white {
	color: #fff !important;
}

.padding0020 {
	padding-top: 0;
	padding-bottom: 20px;
	text-align: center;
}

.pg2 {
	font-size: 14px;
	line-height: 22px;
}
.grey {
	color: #66747c !important;
}
.width500 {
	max-width: 500px;
}
.autocenter {
	margin: 0 auto;
	text-align: center;
}
.frmBtm.inFrmBtm {
	-webkit-animation-name: frmBottom;
	animation-name: frmBottom;
	-webkit-animation-duration: .9s;
	animation-duration: .9s;
	bottom: 0;
	opacity: 1;
}

.frmBtm {
	position: relative;
	bottom: 0;
	opacity: 0;
}
.tActivity {
	position: relative;
	width: 100%;
	height: 500px;
	margin: 0 auto;
}
.tasItem {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0.3);
	transition: all .4s ease;
	opacity: 0;
	z-index: -1;
	border-radius: 4px;
	overflow: hidden;
}
.activityCard {
	display: block;
	position: relative;
	box-shadow: 0 10px 15px 3px rgba(0, 0, 0, .1);
	border-radius: 4px;
	max-width: 300px;
	width: 300px;
}

.section a {
	color: #036cbd;
}
.activityCard .acName {
	padding: 25px 15px;
	background-color: #fff;
}
.activityCard .acImg {
	display: block;
	height: 340px;
	width: 300px;
	object-fit: cover;
}
.activityCard .acDesc {
	position: absolute;
	bottom: 0;
	padding: 0 20px 0;
	width: 100%;
	height: 120px;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .47) 100%);
}
.activityCard .acDesc .acLink {
	position: relative;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .11px;
	top: 60px;
	display: block;
}
.activityCard .acDesc .acLink span {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .24px;
}
.activityCard .acDesc .acLink:after {
	content: '';
	position: absolute;
	background: url();
	width: 25px;
	height: 12px;
	right: 0;
	background-repeat: no-repeat;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .5s;
	-webkit-transition: .5s;
}
.tasItem.prev2 {
	left: 40%;
	transform: translateY(-50%) translateX(50%) scale(0.7);
	opacity: 1;
	z-index: 0;
}

.tasItem {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0.3);
	transition: all .4s ease;
	opacity: 0;
	z-index: -1;
	border-radius: 4px;
	overflow: hidden;
}
.tasItem.prev {
	left: 28%;
	transform: translateY(-49%) translateX(50%) scale(0.8);
	opacity: 1;
	z-index: 1;
}

.tasItem {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0.3);
	transition: all .4s ease;
	opacity: 0;
	z-index: -1;
	border-radius: 4px;
	overflow: hidden;
}

.tasItem.now {
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	opacity: 1;
	z-index: 5;
}
.tasItem.next {
	left: 73%;
	transform: translateY(-50%) translateX(-150%) scale(0.8);
	opacity: 1;
	z-index: 1;
	right: unset;
	background-position: unset;
}

.tasItem.next2 {
	left: 61%;
	transform: translateY(-50%) translateX(-150%) scale(0.7);
	opacity: 1;
	z-index: 0;
}
.tActivityArrowLeft {
	left: 0;
}

.tActivityArrow {
	display: inline-block;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 5;
}
.tActivityArrow img {
	width: 15px;
}

img {
	max-width: 100%;
	display: inline-block;
}
.tActivityArrowRight {
	right: 0;
}

.tActivityArrow {
	display: inline-block;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 5;
}
.frmCtr.inFrmCtr {
	-webkit-animation-name: frmCenter;
	animation-name: frmCenter;
	-webkit-animation-duration: .9s;
	animation-duration: .9s;
	top: 0;
	opacity: 1;
}

.txtLink {
	color: #0091ff;
	font-size: 14px;
	font-weight: 600;
	padding-bottom: 4px;
	padding-right: 10px;
	border: none;
	background-color: transparent;
	position: relative;
	display: inline-block;
	font-family: 'Source Sans Pro', sans-serif;
	background-color: transparent;
	cursor: pointer;
	transition: .3s;
	-webkit-transition: .3s;
}
.txtLink.white:before {
	background-color: #fff;
}
.txtLink:before {
	content: '';
	position: absolute;
	height: 2px;
	width: 20px;
	left: 0;
	bottom: 0;
	background-color: #0091ff;
	transition: .3s;
	-webkit-transition: .3s;
}
.txtLink:after {
	content: '\f054';
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	height: 11px;
	width: 6px;
	right: -2px;
	top: 3px;
	bottom: 0;
	margin: 0 auto;
	font-size: 12px;
	transition: .3s;
	-webkit-transition: .3s;
}

.container-1 {
	margin: 50px auto;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background-image: url("https://creativelayers.net/themes/gotrip-html/img/blog/3.png");
	background-size: cover;
	background-position: 43%;
	opacity: .8;
	position: relative;
}

/* .container-1:hover{
  opacity: 0.6;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* .center-div h2:hover{
  opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
} */

.center-div {
	position: absolute;
	top: 45%;
	margin-top: -30px;
	width: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.center-div h2 {
	font-weight: 800;
	font-size: 30px;
	color: #036cc3;
	text-align: center;
	margin-top: 100px;
}

.center-div p {
	margin-top: 30px;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #030000;
	line-height: 1.8;
}

.choices {
	display: flex;
}

.left-top,
.right-top,
.right-bottom,
.left-bottom {
	position: absolute;
	display: flex;
	transition: .6s;
	cursor: pointer;
	width: 100%;
	user-select: none;
}

.left-top:hover,
.right-top:hover,
.right-bottom:hover,
.left-bottom:hover {
	transform: scale(1.1);
}

.left-top {
	left: -70%;
	top: 3%;
}

.right-top {
	left: 70%;
	top: 3%;
}

.right-bottom {
	left: 70%;
	top: 80%;
}

.left-bottom {
	left: -70%;
	top: 80%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle {
	position: relative;
	background-color: #fff;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.left-top-circle {
	left: 81%;
}

.left-bottom-circle {
	left: 81%;
}

.left-top-circle img,
.right-top-circle img,
.right-bottom-circle img,
.left-bottom-circle img {
	width: 70%;
	display: block;
	position: absolute;
	top: 15%;
	left: 12%;
}

.left-top-text,
.right-top-text,
.right-bottom-text,
.left-bottom-text {
	position: relative;
	padding: 8px;
	width: 70%;
}

.left-top-text {
	left: -16%;
}

.right-top-text {
	left: 2.5%;
}

.right-bottom-text {
	/* left: 7.5%; */
	left: 2.5%;
	top: 70%;
}

.left-bottom-text {
	left: -16%;
}

.left-top-text h3,
.right-top-text h3,
.right-bottom-text h3,
.left-bottom-text h3 {
	text-align: right;
	color: #2877b3;
	opacity: .9;
	font-size: 22px;
}

.right-top-text h3,
.right-bottom-text h3 {
	text-align: left;
}

.left-top-text p,
.right-top-text p,
.right-bottom-text p,
.left-bottom-text p {
	margin-top: 30px;
	color: #061741;
	font-weight: bold;
	line-height: 1.4;
	text-align: justify;
	font-size: 14px;
}
.textaligncenter-1 {
	text-align: center;
}

.bgGreyD {
	background-color: #082c50 !important;
}

.container1280 {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}
.padding0020 {
	padding-top: 0;
	padding-bottom: 20px;
}

.textaligncenter {
	text-align: center !important;
}
.vistCard {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 30px;
}
.vistCard .bcItem {
	width: 100%;
	border-radius: 4px;
	transition: .3s;
	-webkit-transition: .3s;
	overflow: hidden;
}

.frmBtm.inFrmBtm {
	-webkit-animation-name: frmBottom;
	animation-name: frmBottom;
	-webkit-animation-duration: .9s;
	animation-duration: .9s;
	bottom: 0;
	opacity: 1;
}
.frmBtm {
	position: relative;
	bottom: 0;
	opacity: 0;
}

section a {
	color: #036cbd;
}

.vistCard .bcItem .bcImg {
	display: block;
	width: 100%;
	transition: 1s;
	-webkit-transition: 1s;
	height: 200px;
	object-fit: cover;
}
.vistCard .bcItem .bciOverview {
	padding: 5px 0 1px;
	background-color: #fff;
	text-align: center;
}
.bciOverview h5 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: calc(100% - 5px);
}

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

.bg-1 {
	position: absolute !important;
	width: 100%;
	/* height:100%; */
	top: 0;
	left: 0;
	/* background-image: url(https://images.unsplash.com/photo-1669989821467-86418b272b8d); */
	background-size: cover;
	background-position: center;
	filter: blur(60px);
	/* min-height:100vh; */
	opacity: 0.55;
}

.wrapper {
	display: flex;
	align-items: center;
	width: 100%;
}

.quote-row {
	margin: auto;
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
}
.quote-column {
	position: absolute;
	padding: 0 !important;
	overflow: hidden;
	transition-property: top, left, right, bottom;
	background: transparent;
	box-shadow: none;
	/*     transition: .4s; */
}
.col-active {
	width: 33.33% !important;
	transform: translate(-50%, -50%) !important;
	top: 50% !important;
	left: 50% !important;
	bottom: unset !important;
	background: rgba(255, 255, 255, 0.375);
	box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
	border-radius: 1.3rem;
	border: 1px solid rgba(255, 255, 255, 0.37);
	overflow: hidden;
	z-index: 1;
}

.col-inner {
	position: relative;
	width: 100%;
	max-width: 130px;
	align-items: stretch;
	justify-content: center;
	overflow: hidden;
}
.col-active .col-inner {
	max-width: 100%;
}

.author-meta {
	width: 100%;
	position: relative;
	border: none;
}
.col-active .author-meta {
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.432);
}

.image-cover {
	position: absolute;
	width: 100%;
	float: left;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 100%;
	z-index: 1;
	cursor: pointer;
}
.col-active .image-cover {
	position: relative;
	width: 30%;
	max-width: 140px;
	float: left;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 1.3rem 0rem 1.3rem 0rem;
	z-index: 1;
}

.author-info {
	width: 70%;
	float: left;
	padding: 10px;
	overflow: hidden;
	visibility: hidden;
}
.col-active .author-info {
	visibility: visible;
}

.author-info .author-name,
.author-info .person-title {
	transform: translate(-100%, 0%);
	transition: .4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.show .author-info .author-name {
	transform: translate(0%, 0%);
}
.show .author-info .person-title {
	transform: translate(0%, 0%);
	transition-delay: .2s;
}

.person-name {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 21.7px;
	color: #000;
	margin: 0;
	margin-bottom: 5px;
}

.person-title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #000;
	margin: 0;
}

.quote-wrapper {
	position: relative;
	width: 100%;
	margin: auto;
	color: #494949;
	padding: 20px 15px;
	text-align: center;
	overflow: hidden;
	visibility: hidden;
	z-index: 0;
}
.col-active .quote-wrapper {
	visibility: visible;
}

/* img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
} */

.box-text-inner {
	width: 400px;
	margin: auto;
	color: #000;
}

.quote-wrapper .quote-symbol {
	font-size: 14vw;
	line-height: 1em;
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(255, 255, 255);
	z-index: 1;
	transition: 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.quote-wrapper .quote-symbol:first-child {
	left: 0%;
	text-align: right;
}

.quote-wrapper .quote-symbol:last-child {
	right: 0%;
	text-align: left;
}

.show .quote-wrapper .quote-symbol:first-child {
	left: -50%;
}

.show .quote-wrapper .quote-symbol:last-child {
	right: -50%;
}

/*--Arrow--*/
.arrows-wrap {
	position: unset;
}

.arrow {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 80%;
	background-color: #494949;
	cursor: pointer;
}

.left-arrow {
	float: left;
	left: 30px;
	clip-path: polygon(40% 0%, 40% 20%, 100% 33%, 100% 67%, 40% 80%, 40% 100%, 0% 50%);
}

.right-arrow {
	float: right;
	right: 30px;
	clip-path: polygon(0 33%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0 67%);
}

@media (min-width: 640px) {
	.col-active {
		width: 75% !important;
		height: unset !important;
		transform: translate(-50%, -50%) !important;
		top: 50% !important;
		left: 50% !important;
	}
}

@media (min-width: 840px) {
	.col-active {
		width: 50% !important;
	}
}

@media (min-width: 1080px) {
	.col-active {
		width: 33.33% !important;
	}
}

@media (max-width: 640px) {
	.quote-column {
		width: 90% !important;
		top: 50%;
		position: absolute;
		opacity: 0;
		transform: translate(-50%, -50%) !important;
		left: 50%;
		height: auto !important;
		z-index: 0;
		transition: .5s all;
	}

	.col-active {
		opacity: 1;
		z-index: 1;
	}

	.col-inner {
		max-width: 100%;
	}
	.author-meta {
		width: 100%;
		display: flex;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.432);
	}
	.image-cover {
		position: relative;
		width: 30%;
		max-width: 140px;
		float: left;
		aspect-ratio: 1/1;
		overflow: hidden;
		border-radius: 1.3rem 0rem 1.3rem 0rem;
		z-index: 1;
	}
	.quote-wrapper {
		visibility: visible;
	}

	.quote-wrapper .quote-symbol {
		font-size: 34vh;
	}
}

.test-sec {
	text-align: center;
}

.custom-sec {
	text-align: center;
}

.page_title {
	font-weight: 300;
	line-height: 120%;
	margin: 20px 0;
	text-shadow: 0 1px 5px rgba(0, 0, 0, .8);
	text-transform: uppercase;
	text-align: center;
}

/* PEN STYLES ========== */
.row {
	margin: 0;
}
.container {
}

.test_box {
	padding: 0;
}
.test_box .inner {
	background: #333;
	display: block;
	margin: 10px;
	overflow: hidden;
}
.test_box .inner .test_click {
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .1);
	color: #fff;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	height: 300px;
	mix-blend-mode: normal;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.test_box .inner .test_click:hover {
	background-color: rgba(0, 100, 255, .5);
	mix-blend-mode: hard-light;
}
.flex_this {
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	display: inherit;
	flex-wrap: inherit;
	height: auto;
	margin: 0;
	padding: 10px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	width: 100%;
}
.test_box .inner .test_click:hover .flex_this {
	margin-top: -5px;
}

.test_title {
	display: block;
	font-weight: 700;
	margin: 0 0 20px;
	width: 100%;
}
.test_link {
	border: 2px solid #fff;
	display: inline-block;
	font-size: .8em;
	font-weight: 700;
	letter-spacing: .1em;
	margin: 0 auto;
	padding: 10px 30px;
	text-transform: uppercase;
}

.box-01 .inner {
	background-image: url('/img/place/best1.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-02 .inner {
	background-image: url('/img/place/best2.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-03 .inner {
	background-image: url('/img/place/best3.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-04 .inner {
	background-image: url('/img/place/best4.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-05 .inner {
	background-image: url('/img/place/best5.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.box-06 .inner {
	background-image: url('/img/place/best6.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.pg2 {
	color: #010d19 !important;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	font-weight: 600;
}

@media only screen and (max-width: 768px) {
	.padding9090 {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
@media only screen and (max-width: 680px) {
	.vistCard {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 30px;
		padding: 10px;
	}
}
@media only screen and (max-width: 768px) {
	h5 {
		font-size: 18px;
	}
}

.live_feed a {
	color: #000;
	position: relative;
	margin: 11px 0;
	display: block;
}

.heading1 {
	background-size: 220px;
	padding-bottom: 15px;
	font-weight: 500;
	text-align: center;
	font-size: 34px;
	line-height: normal;
	font-family: 'Ubuntu', sans-serif; /*font-family: 'Sansita Swashed', cursive;*/
	margin: 0 0 30px;
	color: #0077c1;
	position: relative;
}
/*.heading1:after {
  content: "";
  margin-top: 4px;
  width: 32px;
  border-bottom: 2px solid #f0562f;
  display: block;
}
*/
.way_book_outer {
	margin: 30px 0 15px;
	text-align: center;
}
.new_box_title_heading {
	padding-left: 10px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}
.new_box_title_heading span {
	font-size: 35px;
	line-height: 38px;
	font-weight: 700;
	display: block;
}
.test_main_heading {
	font-weight: 400;
	font-size: 25px;
	line-height: normal;
	margin: 0 0 20px;
	color: #222;
	position: relative;
	padding-bottom: 8px;
	text-align: center;
}
.test_main_heading_1 {
	font-weight: 400;
	font-size: 25px;
	line-height: normal;
	margin: 0 0 20px;
	color: #222;
	position: relative;
	padding-bottom: 8px;
	text-align: center;
}
.test_main_heading_1::before {
	content: "";
	position: absolute;
	border-bottom: 2px solid rgba(134, 134, 134, 0.3);
	left: 50%;
	width: 100px;
	bottom: 0;
	margin-left: -50px;
}
.socila_icon > ul > li {
	float: left;
	list-style: none;
	margin: 0 2px;
}
.socila_icon > ul > li > a {
	display: block;
	padding: 4px 10px;
	background: #f3f6f6;
	transition: 0.3s;
}
.socila_icon i {
	color: #fff;
}
.socila_icon > ul > li:nth-child(2) a {
	background: #3b5998;
}
.socila_icon > ul > li:nth-child(3) a {
	background: #32cdfd;
}
.socila_icon > ul > li:nth-child(4) a {
	background: #e8424e;
}
.top-section a:hover {
	color: #0077c1;
}
.socila_icon {
	margin-top: -30px;
}
.socila_icon > ul > li:first-child {
	font-size: 17px;
	font-weight: 400;
	padding: 2px 8px 0 0;
}
.hotel_accordion button.accordion {
	background: #5c5d68;
	border: none;
	color: #fff;
	cursor: pointer;
	width: 100%;
	text-align: left;
	font-size: 15px;
	transition: 0.4s;
	border-radius: 0;
	padding: 12px 28px;
}
.hotel_accordion button:hover {
	color: #fff;
}
.hotel_accordion button.accordion.active {
	background: #0077c1;
}
.page_template_default .detail_img img {
	width: 100%;
}
.hotel_accordion .panel {
	padding: 0 18px;
	background-color: #fff;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
.info_panel.hotel_accordion .panel {
	padding: 0px;
}
.info_panel .hotel_info {
	box-shadow: none;
}
.hotel_accordion {
	padding: 20px 0;
	margin: 0;
}
.panel {
	margin-bottom: 6px !important;
}
.twitter-share-button {
	background: #50aaed;
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	display: inline-block;
}
.twitter-share-button i {
	margin: 0 8px 0 0;
}
.fb-share-button {
	padding: 6px 12px;
	border-radius: 4px;
	margin-bottom: 2px;
	display: inline-block;
	background: #4267b2;
}
.twitter-share-button:hover,
.whatsapp-share-button:hover {
	color: #fff;
}
.whatsapp-share-button {
	background: #25d366;
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	display: inline-block;
}
.whatsapp-share-button i {
	margin: 0 8px 0 0;
}
.subhead {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 30px;
	position: relative;
}
.subhead:after {
	content: "";
	width: 50px;
	display: block;
	height: 2px;
	margin: 0 auto;
	background: rgba(220, 220, 220, 0.7);
	margin-top: 10px;
}

@media (min-width: 1150px) {
	.page_home .container {
		width: 1110px;
	}
}
.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative;
}
.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1;
}
.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	margin-left: auto;
	margin-right: auto;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}
.owl-carousel.owl-hidden {
	opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}
.owl-carousel.owl-rtl {
	direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
	float: right;
}
.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
	z-index: 0;
}
.owl-carousel .owl-animated-out {
	z-index: 1;
}
.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.owl-height {
	transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 0.4s ease;
}
.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}
.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: -webkit-transform 0.1s ease;
	transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}
.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}
.owl-dots {
	margin-top: 30px;
}
.owl-dots > div {
	display: inline-block;
}
.owl-dots > div > span {
	display: block;
	width: 12px;
	height: 12px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	margin: 5px;
}
.owl-dots > div.active > span {
	background: #f0562f;
}
.owl-nav > div {
	position: absolute;
	top: 48%;
	padding: 10px;
	transition: 0.3s;
	background: 0 0;
	color: #666;
}
.activtiy_list .owl-buttons > div::before,
.owl-nav > div::before,
.testimonial_slider .owl-buttons > div::before,
.testimonial_slider .owl-nav > div:before {
	font-size: 0;
	border-radius: 50%;
	line-height: 34px;
	width: 36px;
	height: 36px;
	color: #000;
	border: 1px solid #d1cdcb;
	content: "";
	background-image: url(../images/arrows.png);
	background-position: 9px -29px;
	display: inline-block;
	background-repeat: no-repeat;
	vertical-align: middle;
	background-color: #fff;
}

.owl-nav > .owl-next {
	right: 0px;
}
.owl-nav > .owl-prev {
	transform: rotate(180deg);
	left: 0px;
}
.owl-nav > .owl-prev:before {
}
.owl-nav > div.disabled:before {
	background-position: 9px 10px;
}
.owl-next.disabled,
.owl-prev.disabled {
	opacity: 0.5;
}
.singleBanner .owl-nav > div {
	top: 50%;
}
.singleBanner .owl-nav > div:before {
	background: rgba(0, 0, 0, 0.5);
}
.activtiy_list.owl-theme .owl-controls .owl-buttons div {
	background: 0 0;
	margin: 0;
	color: #000;
}
.activtiy_list.owl-theme .owl-controls .owl-buttons > .owl-next {
	right: -20px;
}
.activtiy_list.owl-theme .owl-controls .owl-buttons > .owl-prev {
	left: -20px;
}
.relatedpack .owl-theme .owl-controls .owl-buttons div,
.testimonial_slider.owl-theme .owl-controls .owl-buttons div {
	background: 0 0;
	color: #000;
}
.relatedpack .owl-theme .owl-controls .owl-buttons > div,
.relatedpack .owl-theme .owl-controls .owl-buttons > div:before,
.testimonial_slider.owl-theme .owl-controls .owl-buttons > div,
.testimonial_slider.owl-theme .owl-controls .owl-buttons > div:before {
	position: static;
}
.relatedpack .owl-theme .owl-controls .owl-buttons > div::before,
.testimonial_slider.owl-theme .owl-controls .owl-buttons > div::before {
	border: 2px solid #ccc;
	width: 38px;
	height: 38px;
	line-height: 34px;
	border-radius: 50%;
	font-size: 20px;
}
.testimonial_slider.owl-theme .owl-controls .owl-buttons {
	float: right;
	position: absolute;
	bottom: 30px;
	right: 10px;
}
.testimonial_slider.owl-theme .owl-controls .owl-buttons > .owl-next {
	right: 20px;
}
.testimonial_slider.owl-theme .owl-controls .owl-buttons > .owl-prev {
	right: 60px;
}
.testimonial_slider .item {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	width: 100%;
	float: left;
}

.live_feed {
	font-weight: 600;
	font-size: 14px;
}
.leave-btn {
	margin: 30px 0 0;
}
.submit_btn_form {
	color: #f0562f !important;
	border-color: #f0562f;
	background: #fff;
	border: 1px solid;
	margin-top: 20px;
	padding: 6px 26px;
}
.submit_btn_form:hover {
	color: #fff !important;
	border-color: #f0562f;
	background: #f0562f;
}
.top-section {
	display: none;
	height: 40px;
	background: #f2f2f2;
	overflow: hidden;
	color: #3e3e3e;
	transition: 0.3s;
}
.top-section a {
	color: #3e3e3e;
	display: block;
}
.top-section > .container {
	padding-left: 40px;
	padding-right: 40px;
	width: auto;
}
.navbar-fixed-top {
	min-width: 320px;
	background: 0 0;
}
.contact_info,
.phone_email_links,
.social_links {
	margin: 0;
	padding: 0;
}
.phone_email_links,
.social_links {
	float: left;
}
.phone_email_links {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 15px;
}
.contact_info {
	float: right;
}
.phone_email_links > li,
.social_links > li {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	line-height: 40px;
}
.social_links > li > a {
	padding: 0 15px;
	display: block;
	transition: 0.3s;
}
.contact_info > li {
	padding: 0 10px;
	margin: 0;
	float: left;
	list-style: none;
	line-height: 40px;
	font-size: 15px;
	font-weight: 500;
}
.phone_email_links > li:not(:first-child) {
	padding-left: 15px;
}

.top-section .btn {
	color: #fff;
	text-transform: uppercase;
	padding: 4px 15px;
	margin-top: -6px;
	font-weight: 500;
}
.pay_online a {
	background: #f0562f;
	padding: 0 15px;
}
.customize_tour a {
	padding: 0 10px;
}
.pay_online {
	padding: 0 !important;
}
.customize_tour {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0 !important;
}
.navbar-header {
	height: 100%;
	max-height: 100%;
	overflow: hidden;
}
.top_right {
	float: right;
}
.head_right {
	float: right;
}
.navbar-custom {
	margin-bottom: 0;
	padding: 0;
	height: inherit;
	border-radius: 0;
	border: none;
	background: none;
	/*background: rgba(255, 255, 255, 0.7);*/

	/*background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );*/

	/*border-bottom: 1px solid #f1f1f1;*/
}
.navbar-custom:before {
	position: absolute;
	content: '';
	background: linear-gradient(
		to bottom,
		rgb(255 255 255 / 64%) 0%,
		rgb(255 255 255 / 64%) 51%,
		rgba(0, 0, 0, 0) 100%
	);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.navbar-custom > .container {
	width: 98%;
	height: 100%;
	/*max-width: none;
  width: auto;*/
	padding-left: 20px;
	padding-right: 20px;
}
.navbar-brand {
	height: 100%;
	padding: 0;
	margin: 0 !important;
	display: block;
	width: auto;
	float: left;
}
.navbar-brand img {
	max-height: 100%;
	width: auto;
	max-width: none;
	float: left;
}
.navbar-collapse {
	float: left;
}
.navbar-main-collapse .nav > li {
	font-size: 15px;
	font-weight: 400;
	padding-left: 5px;
}
.navbar-main-collapse .nav > li > a {
	transition: 0.3s;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #3e3e3e;
	position: relative;
	height: 80px;
	line-height: 60px;
}
.navbar-main-collapse .nav > li > a:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 2px;
	background: #f0562f;
	transition: 0.3s;
}
.navbar-main-collapse .nav > li:hover > a:before {
	left: 0;
	right: 0;
}
.navbar-main-collapse .nav > li > a:hover {
	color: #000;
}
.topmenu {
	float: right;
}
.topmenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.topmenu .menulist > li {
	font-size: 17px;
	font-weight: 400;
	float: left;
	position: relative;
}
.topmenu .menulist > li > a {
	transition: 0.3s;
	padding: 10px 15px;
	color: #111113;
	position: relative;
	line-height: 60px;
	display: block;
}
.topmenu .menulist > li > a:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 2px;
	background: #f0562f;
	transition: 0.3s;
}
.topmenu .menulist > li:hover > a:before {
	left: 0;
	right: 0;
}
.topmenu .menulist > li > a:hover {
	color: #000;
}
.topmenu .menulist > li > ul {
	position: absolute;
	right: 0;
	top: 100%;
	background: #fff;
	width: 285px;
	display: none;
	border: 1px solid #f2f2f2;
	border-radius: 0 0 3px 3px;
	max-height: 400px;
}
.topmenu .menulist > li > ul > li {
	display: block;
}
.topmenu .menulist > li > ul > li > a {
	white-space: normal;
	padding: 7px 15px;
	font-size: 14px;
	display: block;
	color: #3e3e3e;
}
.topmenu .menulist > li > ul > li > a:hover {
	background: #f2f2f2;
}
.topmenu .menulist > li:hover > ul {
	display: block;
}
.other_nav {
	margin-left: 10px;
}
.other_nav li {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 5px;
}
.other_nav li a {
	background: #999;
	border-radius: 3px;
	transition: 0.3s;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fff;
	position: relative;
}
.other_nav li a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(255, 255, 255, 0.7);
	transition: 0.3s;
	opacity: 0;
	border-radius: 3px;
}
.other_nav li a:hover:before {
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	opacity: 1;
}
.other_nav li a:hover {
	color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.other_nav li:first-child a {
	background: #f0562f;
}
.dropdown-menu {
	width: 200px;
	background: #fff;
}
.dropdown-menu > li > a {
	white-space: normal;
	padding: 7px 15px;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
	background: #eee;
	color: #000;
}
.dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
}
.navbar-custom .nav > li .dropdown-menu .dropdown-menu {
	left: auto;
	right: 100%;
}
.navbar-custom .nav > li .dropdown-menu li {
	text-transform: none;
}
.top_search .form-control {
	background: 0 0;
	border: none;
	width: 200px;
	color: #fff;
}
.top_search .form-control:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
.top-nav-collapse {
	height: 60px;
	background: #fff;
	padding: 0;
	box-shadow: 0 0px 5px #ccc;
	border: none;
}
.top-nav-collapse .topmenu .menulist > li > a {
	line-height: 40px;
}
.top-nav-collapse .top-section {
	height: 0;
}
.navbar-brand img {
	height: 140px;
}
.page_home {
	background: #f6f8fb;
}
body:not(.page_home) .navbar-brand img {
	height: 100px;
}
body:not(.page_home) .slider_heading {
	/*display: none;*/
}
.navbar-custom {
	height: inherit;
}
.navbar-main-collapse .nav > li > a {
	height: 80px;
	line-height: 60px;
}
.divider {
	height: 35px;
	margin: 0 15px 0 0 !important;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.banner_full {
	position: relative;
	min-height: 200px;
}
.slider_container {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	right: 0;
	z-index: 12;
}
.slider_overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 119, 193, 0.8);
	z-index: 11;
	display: none;
}
.slider_inner {
	text-align: center;
	/*height:calc(100vh - 100px);*/
}
.banner_title {
	color: #fff;
	margin-top: 10%;
	text-align: center;
}
.slider-caption {
	max-width: 600px;
	font-size: 44px; /* font-weight:600;*/
	line-height: 1.1;
	text-shadow: 0 3px 7px rgba(0, 0, 0, 0.56);
	margin-bottom: 30px;
	color: #fff;
}
.slider_subhead {
	display: block;
	font-size: 17px;
	line-height: 1.3;
	color: #fff;
	font-weight: 300;
	margin-top: 0;
	padding-left: 6px;
	text-transform: none;
	text-align: left;
}
.slider_heading {
	text-align: left;
	font-family: 'SF Pro Display';
	font-weight: 300;
	margin-bottom: 10px;
}
.search_area label {
	display: block;
	font-weight: 400;
	color: #fff;
}
.search_box_inner {
	position: relative;
	height: 60px;
	padding-right: 70px;
}
.search_area .form-control {
	height: 35px;
	border-radius: 0;
	color: #222;
	font-size: 14px;
	background: #fff;
}
.search_area .btn-primary {
	height: 35px;
}
.btn-search {
	position: absolute;
	right: 0;
	width: 70px;
	height: 35px;
	top: 3px;
	background: #3c3ea4;
	border: none;
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.search_tabs {
	margin: 0;
	padding: 0;
}
.search_tabs li {
	list-style: none;
	float: left;
	margin: 0;
	font-size: 14px;
	background: #ddd;
}
.search_tabs a {
	display: block;
	padding: 15px 25px;
	text-transform: uppercase;
	color: #777;
	font-weight: 600;
	text-decoration: none !important;
	float: left;
}
.search_tabs li.active {
	background: #363785;
}
.search_tabs li.active a {
	color: #fff;
}
.search_tabdata {
	display: none;
	background: rgba(255, 255, 255, 1);
	padding: 20px;
}
.search_tabdata.active {
	display: block;
}
.radio {
	display: inline-block;
}
.radio input[type="radio"] {
	display: none;
}
.radio > span {
	display: block;
	padding: 6px 10px;
	background: 0 0;
	border: 1px solid rgba(255, 255, 255, 1);
	color: #fff;
	opacity: 0.5;
	border-radius: 2px;
	font-size: 13px;
	cursor: pointer;
	height: 32px;
}
.radio input[type="radio"]:checked + span {
	background: #f0562f;
	color: #fff;
	border-color: #f0562f;
	opacity: 1;
}
.checkbox input[type="checkbox"],
.radiobtn input[type="radio"] {
	display: none;
}
.checkbox,
.radiobtn {
	font-weight: 400;
}
.checkbox > span,
.radiobtn > span {
	position: relative;
	padding-left: 24px;
	cursor: pointer;
	font-size: 13px;
}
.checkbox > span > label {
	padding-left: 0;
	position: relative;
	top: 1px;
}
.checkbox > span:after,
.checkbox > span:before,
.radiobtn > span:after,
.radiobtn > span:before {
	font-family: FontAwesome;
	font-size: 13px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 1px;
	line-height: 23px;
	transition: all 0.3s ease-in-out;
}
.checkbox > span:before {
	color: #333;
	width: 18px;
	height: 18px;
	border: 1px solid #ccc;
	content: "";
}
.checkbox > span:after {
	content: "\f00c";
	margin: -3px 0 0;
	max-width: 0;
	overflow: hidden;
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
}
.radiobtn > span:before {
	width: 18px;
	height: 18px;
	border: 1px solid #ccc;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	color: #333;
	content: "";
	transition: all 0.3s ease-in-out;
}
.radiobtn > span:after {
	content: "";
	margin: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	width: 16px;
	height: 16px;
	border: 1px solid #f0562f;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.checkbox input[disabled] + span {
	cursor: not-allowed;
}
.checkbox input[type="checkbox"]:checked + span:after {
	max-width: 40px;
	opacity: 1;
	color: #f0562f;
}
.checkbox input[type="checkbox"]:checked + span:before {
	border-color: #f0562f;
}
.radiobtn input[type="radio"]:checked + span:after {
	max-width: 40px;
	opacity: 1;
	color: #000;
}
.radiobtn input[type="radio"]:checked + span:before {
	opacity: 1;
	width: 8px;
	height: 8px;
	background: #f0562f;
	top: 4px;
	left: 4px;
	z-index: 2;
	border: none;
}
.radioOuter {
	margin-top: 26px;
}
.data_category_box {
	margin-bottom: 10px;
}
.radioOuter .radiobtn {
	margin-bottom: 0;
}
.radioOuter .customRadio {
	display: inline-block;
	margin-left: 15px;
	margin-bottom: 10px;
}
.booking_box .radioOuter {
	background: 0 0;
	padding-left: 0;
	padding-right: 0;
	padding-top: 10px;
}
.price_calc {
	font-weight: 500;
	color: #000;
	float: right;
}
.search_action {
	width: 100px;
	float: right;
	margin-top: -35px;
}
.search_area .btn-primary {
	font-size: 13px;
}
.search_fields {
	margin-right: 100px;
}
.search_fields > .row {
	margin: 0 -5px;
	float: left;
	width: 100%;
}
.search_fields > .row + .row {
	margin-top: 10px;
}
.search_fields > .row > [class*="col-md"],
.search_fields > .row > [class*="col-sm"] {
	padding: 0 5px;
}
.fligth_option {
	float: left;
	margin: 10px 10px 0 0;
	padding-left: 20px;
	position: relative;
	display: none;
}
.active > .fligth_option {
	display: block;
}
.fligth_option:before {
	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 3px;
	font-size: 25px;
	line-height: 25px;
	color: rgba(255, 255, 255, 0.4);
}
.fligth_option > span {
	display: inline-block;
}
.fligth_option .radio {
	margin: 0;
}
.date_input_outer {
	position: relative;
}
.date_input_outer .date_icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	color: rgba(0, 0, 0, 0.4);
	padding: 10px;
	text-align: center;
}
.search_area .datepicker {
	padding-left: 12px;
}
.btn {
	position: relative;
}
.btn,
.btn * {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.btn-default {
	height: auto;
	border-radius: 3px;
	background: 0 0;
	font-weight: 500;
	/* text-transform: uppercase; */
	color: #f0562f !important;
	border-color: #f0562f;
	font-size: 14px;
	border-radius: 25px;
	padding: 7px 25px;
}
.btn-default:active,
.btn-default:focus,
.btn-default:hover {
	background: #f0562f;
	color: #fff !important;
	border-color: #f0562f;
}
.btn-common {
	height: 40px;
	border: 1px solid #f0562f;
	font-size: 16px;
	text-transform: uppercase;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	padding: 8px 40px;
	color: #f0562f;
	background: #fff;
	border-radius: 30px;
}
.btn-common .fa {
	font-size: 80%;
}
.btn-common:hover {
	background: #0077c1;
	color: #fff;
}
.home_search_container {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 999;
	top: 20%;
}
.slides-control .slider_container {
	top: 30%;
	z-index: 999;
}
.banner_slider_box {
	width: 380px;
	height: 380px;
	float: right;
}
.banner_slider_box img {
	max-width: 100%;
}
.banner_slider_box + .banner_title {
	margin-right: 400px;
	text-align: left;
}
.home_search_outer {
	padding: 25px 0;
}
.banner_full + .home_search_outer {
	width: 100%;
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 99;
	padding: 0;
}
.banner_slider_inner {
	width: 380px;
	height: 380px;
	overflow: hidden;
	position: relative;
}
.banner_captions {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 99%, rgba(0, 0, 0, 0.9) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 99%, rgba(0, 0, 0, 0.9) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 99%, rgba(0, 0, 0, 0.9) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 100px 20px 15px;
	color: #fff;
	font-size: 30px;
}
.ad_slider_panel {
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	z-index: 99;
}
.ad_slider_panel + #HomeSlider .slides-control .slider-caption {
	text-align: left;
	max-width: 70%;
}
.search_area .btn-primary {
	display: block;
	width: 100%;
	background: #f0562f;
	color: #fff;
	padding-top: 8px;
}
#HomeSlider {
	padding-bottom: 40px;
	display: none;
}
.slider_outer {
	position: relative;
	width: 100%;
	height: 100%;
}
.slider_loader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #333 url(../images/spin.gif) center center no-repeat;
	background-size: 60px 60px;
}
.slides-pagination {
	display: none;
}
.page_arrow {
	width: 100%;
	height: 40px;
	display: block;
	position: absolute;
	z-index: 13;
	bottom: -35px;
	left: 0;
	font-size: 28px;
	color: #999;
	background: 0 0 !important;
	text-align: center;
	line-height: 64px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page_arrow:active,
.page_arrow:focus,
.page_arrow:hover {
	color: #333;
}
.input_icon {
	width: 20px;
	display: inline-block;
	position: absolute;
	top: 18px;
	left: 0;
	font-size: 25px !important;
	text-align: center;
	color: #3c3ea4;
}
.content-section,
section {
	/* padding: 40px 0 40px; */
	overflow: hidden;
}
.page_home .content-section,
.page_home section {
	padding: 70px 0;
	margin-top: 0;
}
.slides_main:not(.slides-container) img {
	min-height: 100%;
	max-height: 120%;
	min-width: 102%;
	max-width: none;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.main_slider_panel:not(.main_slider) .slider_inner {
	height: auto;
	max-height: 500px;
	overflow: hidden;
	position: relative;
}
.main_slider_panel:not(.main_slider) .slider_img {
	width: 100%;
	height: auto;
}
.inner_page .banner_full {
	background: #ccc url(../images/innerbanner.jpg) center center no-repeat;
	background-size: cover;
	min-height: 320px;
}
.header_search_outer {
	position: relative;
	background: #b3b3ca;
	padding: 0;
	max-height: 500px;
}
.page_home section.top_packages_section,
.content-section.category_section {
	padding: 20px 0;
}
/*.page_home section.top_packages_section.luxurypackages{padding:20px 0px 50px;}*/
.page_home .content-section.andmanfaqs {
	padding: 30px 0;
}
.top_packages_section .heading2,
.category_section .heading2,
.activitisec .heading2,
.homeresort .heading2 {
	margin-bottom: 10px;
}
body:not(.page_home) .headsearch {
	padding: 0;
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 100%;
	/*max-width: 920px;*/
	z-index: 99;
	/*background: #f7f7f7;
  border: 1px solid #dcdcdc;*/
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	-ms-border-radius: 4px;
}
.page_home .headsearch {
	position: absolute;
	bottom: 100px;
	width: 100%;
	z-index: 20;
	max-width: 100%;
	/*background: #fff;*/
	padding: 0;
	/*border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;*/
}
.headsearch .container {
	/*max-width: 920px;*/
}
.headsearchbg {
	width: 530px;
	float: left;
}
.selectoption {
	width: 38%;
	float: left;
	/*padding-right: 4px;*/
	position: relative;
	margin-bottom: 3px;
}
.selectoption select {
	background: #fff url(../images/dropdown-arrow.png) right center no-repeat;
	/*background: #fff url(../images/selectbg.png) 96% center no-repeat;*/
	width: 100%;
	padding-left: 18px;
	padding-right: 28px;
	border: none;
	height: 46px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.headsearchbg .selectoption:first-child select {
	border-radius: 4px 0px 0px 4px;
	-moz-border-radius: 4px 0px 0px 4px;
	-webkit-border-radius: 4px 0px 0px 4px;
	-khtml-border-radius: 4px;
	-ms-border-radius: 4px 0px 0px 4px;
	border-right: 1px solid #cecfd5;
}
.headsearchbg .selectoption:nth-child(2) select {
	border-radius: 0px 4px 4px 0px;
	-moz-border-radius: 0px 4px 4px 0px;
	-webkit-border-radius: 0px 4px 4px 0px;
	-khtml-border-radius: 4px;
	-ms-border-radius: 0px 4px 4px 0px;
}

.selectoption i {
	display: none;
	position: absolute;
	left: 15px;
	top: 11px;
}
.searchbtn {
	width: 23%;
	float: right;
	/*padding-right: 4px;*/
}
.searchbtn .btn {
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	/*text-transform: uppercase;*/
	height: 46px;
	background: #ffd800;
}
.searchbtn .btn:hover {
	background: #0077c1;
}
.activisec {
	padding: 40px 0;
}
.activisec ul {
	margin: 0 -10px;
	list-style: none;
	padding: 0;
}
.activisec ul li {
	width: 20%;
	float: left;
	padding: 10px;
}
.actimg img {
	width: 100%;
	max-width: 100%;
}
.activisec .acthead {
	font-size: 15px;
	line-height: 18px;
	font-weight: 700;
	color: #3e3e3e;
	padding-top: 10px;
}
.activisec .btn {
	display: block;
	background: #f0562f;
	color: #fff;
	font-weight: 500;
	width: 180px;
	line-height: 22px;
	text-align: center;
	margin: 20px auto 0;
	border-radius: 25px;
}
.ventures {
	padding-top: 0 !important;
}
.goog-te-gadget .goog-te-combo {
	margin: 4px 0;
	background: #fff;
}
.payonline {
	display: none;
	float: right;
	margin-top: 25px;
}
.payonline a {
	padding: 5px 25px 6px;
	background: #0077c1;
	color: #fff;
	border-radius: 20px;
	display: block;
}
.payonline a:hover {
	background: #f0562f;
}
.page_package_listing .slider_img {
	max-height: auto;
}
.ladakhpackage {
	background: #f2f2f2;
}
.category_list_outer,
.package_list_outer,
.home_top_packages {
	position: relative;
}
.all_btn_box {
	position: absolute;
	right: 80px;
	top: -4px;
}
.all_btn_box .btn {
	/* box-shadow: 0px 0px 11px inset #004e98;
  background:#0077c1; min-width: 130px;
  color: #fff;
  padding:9px 30px;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;*/
}
.all_btn_box .viewalltext,
.all_btn_box .btn_enquire {
	color: #f26122;
	background: #fff;
	border: 1px solid #cfcbc9;
	padding: 7px 25px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 25px;
}
.all_btn_box .btn:hover {
	background: #fff;
}
.package_list_outer .all_btn_box {
	top: 22px;
}
.inner_page .package_list_outer .all_btn_box {
	top: -8px;
}
.product_scoller .owl-nav,
.category_section .owl-nav,
.activitisec .owl-nav,
.packagedtscroll .owl-nav,
.testimonial_slider .owl-nav,
.blogslider .owl-nav,
.destination_packages_panel .package-slider .owl-nav,
.hotelslider .owl-nav,
.blog_cat_slider .owl-nav,
.blog_cat_slider_1 .owl-nav {
	position: absolute;
	right: 0;
	top: -26px;
	width: 74px;
}
.blogsec .blogslider .owl-nav {
	top: -25px;
}
.blogsec .heading2 {
	margin-bottom: 10px;
}
.page_destination_detail .blogsec .all_btn_box {
	right: 95px;
}
.packages_page.package1 {
	padding-bottom: 30px;
}
.destination_packages_panel {
	padding-top: 10px;
}
.destinationdetails .heading2,
.padkdest .heading2 {
	margin-bottom: 10px;
}
.padkdest {
	position: relative;
}
.iframeform .formActionBox .btn:hover,
.package_list_outer .btn:hover,
.btn.viewalltext:focus {
	background: #fef7d3;
}

.testisec .all_btn_box {
	right: 95px;
	top: -5px;
}
.package_list {
	margin: 0 -10px;
	padding: 0;
}
.package_list * {
	transition: all 0.3s ease-in-out;
}
.package_list > li {
	list-style: none;
	margin: 0 0 20px;
	width: 25%;
	float: left;
	padding: 0 10px;
	position: relative;
}
.package_inner {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	/*background: #fafafa;*/
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.package_img {
	position: relative;
	/* padding: 0 3px 5px;*/
}
.content-section.homeresort {
	padding: 20px 0;
}
.page_home .category_list_box,
.hotelslider .package_img {
	padding: 8px;
}
.slider_package_box .package_img > a {
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.pack_img_box {
	overflow: hidden;
	position: relative;
}
.pack_img_box img {
	min-height: 100%;
}
.package_info {
	text-align: left;
	padding: 15px;
}
.package_title {
	font-size: 13px;
	font-weight: 700;
	position: relative;
	top: 2px;
	color: #000;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.detail_btn_box {
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9;
	opacity: 0;
	transition: 0.3s;
}
.detail_btn_box .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background: #fff;
	color: #000 !important;
	font-size: 14px;
	font-weight: 300;
	border-radius: 0;
	border: none;
}
.pack_day_night {
	font-size: 14px;
	color: #59595b;
	font-weight: 600;
	/*width: 36px;
  height: 36px;
  float: left;
  background: #3e3e3e;
  color: #000;
  margin-top: -2px;
  font-size: 11px;
  
  border-radius: 50%;
  line-height: 12px;
  white-space: nowrap;
  padding: 5px;
  text-align: center;*/
}
.pack_day_night > span {
	display: inline-block;
}
.package_price {
	position: static;
	font-size: 15px;
	color: #f0562f;
	font-weight: 700;
	background: 0 0;
	padding: 0;
	text-align: left;
}
.package_price > span {
	font-size: 16px;
	font-weight: 600;
	/* line-height: 12px;*/
}
.package_price .fa {
	font-size: 90%;
}
.package_inner:hover .detail_btn_box {
	opacity: 1;
}
.pack_day_night .pack_day_only {
	padding-top: 6px;
}
.page_blog_detail .package_inner,
.page_home .package_inner {
	box-shadow: none;
	background: 0 0;
}
.page_blog_detail .package_info,
.package_info {
	/*padding: 0;*/
	position: relative;
}
.page_blog_detail .flighticon,
.page_home .flighticon {
	float: right;
	position: absolute;
	right: 5px;
	top: 5px;
	display: none;
}
.package_info .package_info:after {
	content: "";
}
.activisec .acthead,
.page_blog_detail .package_title,
.package_title {
	padding: 0;
	line-height: 1.3;
	min-height: auto;
	position: static;
	margin: 0 0 5px;
	height: 38px;
	overflow: hidden;
	font-size: 15px;
	font-weight: 800;
}
.page_blog_detail .package_title {
	margin-top: 7px;
}
.package_price {
	position: static;
	font-size: 20px;
	color: #f0562f;
	font-weight: 600;
	background: 0 0;
	padding: 0;
	text-align: left;
}

.package_price > span.pricediv,
.relatedpack .package_price > span.pricediv,
.page_blog_detail .package_price > span.pricediv {
	color: #f26122;
	opacity: 1;
	font-weight: 600;
	padding-top: 6px;
}
.new_box_heading {
	font-size: 15px;
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	font-weight: 600;
	/* position: absolute;
  bottom: 0; 
  */
}
.package_info .pack_day_night {
	display: none;
}
.new_box_heading span {
	display: block;
	white-space: nowrap;
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}
.new_box_heading span:before {
	content: "";
	vertical-align: middle;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrows.png);
	background-position: 0 0;
	display: inline-block;
	background-repeat: no-repeat;
	vertical-align: middle;
	position: absolute;
	right: 0;
	top: 4px;
}
.destinationdetails {
	position: relative;
}
.relatedpack .package_inner {
	box-shadow: none;
}
.relatedpack .package_info {
	padding: 20px;
	position: relative; /*background:#f7f0c8;*/
	min-height: 50px;
}
.relatedpack .package_title {
	min-height: auto;
	margin: 0;
}
.page_home .content-section.enquiresec {
	padding: 50px 0 10px;
	border-top: 1px solid #ebebeb;
}
.enquiresec .heading1:after {
	margin-left: 48%;
}
.enquiresec iframe {
	height: 315px;
}
.enqform {
	width: 100%;
	float: left;
}
.enqform .customeFormOuter .form-group:first-child,
.enqform .customeFormOuter .form-group:nth-child(2),
.enqform .customeFormOuter .form-group:nth-child(3),
.enqform .customeFormOuter .form-group:nth-child(4) {
	width: 50%;
	float: left;
}
.enqright {
	margin-top: 30px;
	width: 44%;
	float: left;
	text-align: center;
	border-left: 1px solid #d6d6d6;
	position: relative;
}
.enqright:after,
.enqright:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.enqright:after {
	border-color: transparent;
	border-right-color: #ffff;
	border-width: 10px;
	margin-top: -10px;
}
.enqright:before {
	border-color: rgba(214, 214, 214, 0);
	border-right-color: #d6d6d6;
	border-width: 11px;
	margin-top: -11px;
}
.enqright p {
	color: #3e3e3e;
	font-size: 23px;
	font-weight: 700;
	line-height: 25px;
	padding-top: 10px;
}
.iframeform {
	padding: 0;
}
.iframeform .content-section {
	padding: 0;
}
.iframeform .container_inner {
	margin: 0 -25px;
}
.iframe-enquire-us .container {
	width: 100%;
}
.iframe-enquire-us .customeFormOuter .form-group {
	width: 33.33%;
	float: left;
	padding: 0 10px;
}
.iframe-enquire-us label[for="captcha"] {
	display: none;
}
.iframe-enquire-us .customeFormOuter .form-group:nth-child(5),
.iframe-enquire-us .customeFormOuter .form-group:nth-child(6),
.iframe-enquire-us .customeFormOuter .form-group:nth-child(7),
.iframe-enquire-us .customeFormOuter .form-group:nth-child(8) {
	width: 16.66%;
}
.iframe-enquire-us .customeFormOuter .form-group textarea.form-control {
	max-height: 34px;
}
.page_home .content-section.testi_blog_section {
	padding: 20px 0 0;
	border: 0;
}

.offertag {
	position: absolute;
	left: 0;
	top: 15px;
	z-index: 3;
	background-image: linear-gradient(to left, #5b109b, #ff0058);
	height: 25px;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1rem;
	padding: 0.8rem 2rem 0.8rem 0.8rem;
	border-radius: 5px;
	clip-path: polygon(0 0, 0 100%, 100% 100%, 90% 50%, 100% 0);
	text-transform: uppercase;
}
/*.offertag:after {top: 100%; left:0; border: solid transparent;  content: "";  height: 0;  width: 0;  position: absolute;  pointer-events: none;
  border-color: rgba(182, 75, 28, 0);  border-right-color: #f26122;  border-width: 9px;  margin-left: -10px; margin-top: -10px;}*/
.content-section.homeblog {
	padding: 20px 0;
}
.blogdate {
	font-size: 14px;
	color: #3c3c41;
	font-weight: 600;
	padding-bottom: 5px;
}
.blogdate:before {
	content: "";
	width: 18px;
	height: 16px;
	background: url(../images/dateicons.png) center center no-repeat;
	display: inline-block;
	margin-right: 5px;
	margin-top: -3px;
	vertical-align: middle;
}
.testisec {
}
.testisec .owl-carousel .owl-stage-outer {
	min-height: auto;
}
.tbox {
	height: 150px;
}
.timg {
	width: 95px;
	height: 95px;
	background: #f1f1f1;
	margin: 0 auto;
	border-radius: 50%;
	display: block;
	line-height: 95px;
	overflow: hidden;
}
.timg img {
	display: inline-block !important;
}
.tname {
	display: inline-block;
	font-size: 22px;
	color: #3e3e3e;
	font-weight: 700;
}
.tname:hover {
	color: #f0562f;
}
.testi_cont {
	font-size: 15px;
	color: #3c3c41;
	/* line-height: 24px;font-weight: 300;*/
}
.testisec .owl-carousel .owl-dots {
	margin: 0;
	position: absolute;
	left: 640px;
	bottom: 45px;
}
/*.testisec .owl-carousel .owl-nav > div,
.testisec .owl-carousel .owl-nav > div::before {
  position: static;
  margin: 0 !important;
  border-radius: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  background: #f0562f;
  color: #fff;
  border-color: #f0562f;
}
.testisec .owl-carousel .owl-nav > div:first-child,
.testisec .owl-carousel .owl-nav > div:first-child:before {
  background: #3e3e3e;
  border-color: #3e3e3e;
}*/
.testisec .owl-dots > div > span {
	background: rgba(255, 255, 255, 0.2);
}
.testisec .owl-dots > div.active > span {
	background: #fff;
}
.testisec .viewbtn {
	margin-top: 0;
	position: absolute;
	bottom: 0;
	left: 660px;
	z-index: 9;
}
.testimg {
	width: 320px;
	float: left;
	position: relative;
}
.testimg a {
	display: block;
	color: #fff;
}
.owl-carousel .owl-item .testimg img {
	display: block;
}
.testcont {
	text-align: left;
	width: calc(100% - 110px);
	float: right;
	position: relative;
	/*background: #fff;*/
	padding: 15px;
	border-radius: 15px;
}
.testcont:after {
	display: none;
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 20px;
	margin-top: -20px;
}
.info_panel .testisec {
	overflow: hidden;
	position: relative;
}
.info_panel .testisec .all_btn_box {
	top: 0px;
}
.testimage {
	width: 110px;
	float: left;
	/*position: absolute;
  left: 0;
  bottom: 0;
  line-height: 250px;*/
}
.testimage > div {
	width: 90px;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
	height: 90px;
	float: left;
	/*margin-right: 15px;*/
}
.testimonial_slider .owl-dots {
	width: calc(100% -640px);
	float: right;
	text-align: left;
}
.testisec .owl-carousel .owl-stage-outer {
	overflow: visible;
}
.page_home .testisec .owl-carousel .owl-stage-outer {
	overflow: hidden;
}
.disctest {
	margin-bottom: 20px;
}
.testisec .owl-carousel .owl-item img {
	/*max-height: 220px;*/
	display: inline-block;
	width: auto;
	max-width: 100%;
	line-height: 220px;
}
.testisec .owl-dots > div > span {
	background: rgba(0, 119, 193, 0.2);
}
.testisec .owl-dots > div.active > span {
	background: #0077c1;
}
.package_list.offer_listing * {
	transition: none;
}
.package_list.offer_listing > li .detail_btn_box {
	transition: 0.3s;
}
.package_list.offer_listing > li {
	width: 100%;
	float: none;
	margin: 0;
}
.package_list.offer_listing > li:not(.active):first-child > div {
	border-top: 1px solid #ddd;
}
.package_list.offer_listing > li:not(.active) > div {
	border-bottom: 1px solid #ddd;
}
.package_list.offer_listing > li:not(.active) .img_package {
	opacity: 0;
}
.package_list.offer_listing > li:not(.active) .package_inner {
	height: 84px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.package_list.offer_listing > li:not(.active) .detail_btn_box {
	display: none;
}
.package_list.offer_listing > li:not(.active) .package_inner:hover {
	background: #eee;
}
.package_list.offer_listing > li:not(.active) .package_info {
	background: 0 0;
	color: #333;
	padding: 0;
	float: left;
	position: static;
	width: 66%;
	padding-left: 20px;
}
.package_list.offer_listing > li:not(.active) .package_price {
	position: static;
	width: auto;
	float: right;
	margin-right: 10px;
	margin-top: 5px;
	width: 30%;
	font-size: 16px;
	border-radius: 20px;
	padding: 7px 12px;
	text-align: center;
	background: #444;
}
.package_list.offer_listing > li:not(.active) .pack_day_night {
	margin-top: 2px;
}
.package_list.offer_listing > li:not(.active) .package_title {
	font-size: 18px;
	line-height: 22px;
	height: 44px;
	margin-top: 0;
}
.package_list.offer_listing > li:not(.active) .package_title > span {
	display: table;
	width: 100%;
	height: 100%;
}
.package_list.offer_listing > li:not(.active) .package_title > span > span {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

.heading2 {
	color: #111113;
	font-size: 22px;
	font-family: 'SF Pro Display';
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 20px;
}
.traveltab {
	background: #fef7d3;
	border: 1px solid #ffd800;
	border-radius: 30px;
	overflow: hidden;
	padding: 0 35px;
}
/*.traveltab .owl-stage{display:flex;}*/
.traveltab > div {
	display: inline-block;
}
/*.tabscroll.owl-carousel > div{float: left;}*/
.tabscroll.owl-carousel .owl-buttons > div::before,
.tabscroll.owl-carousel .owl-nav > div::before {
	border: none;
	background-color: inherit;
}
.tabscroll .owl-nav > .owl-prev {
	left: -35px;
}
.tabscroll .owl-nav > .owl-next {
	right: -35px;
}
.showtab {
	display: inline-block;
	padding: 5px 25px;
	font-size: 16px;
	font-weight: 500;
	color: #111113;
	border-radius: 30px;
	cursor: pointer;
	flex-basis: content;
	text-align: center;
}
.showtab span {
	display: table-cell;
	height: 36px;
	vertical-align: middle;
}
.showtab:hover {
	background: #fff4b9;
	color: #111113;
}
.showtab.active {
	background: #ffd800;
}
.tabslide {
	width: 100%;
	float: left;
}
.displaysec {
	display: flex;
	align-items: center;
	justify-content: center;
}
.displaysec a {
	width: 100%;
	height: 46px;
	line-height: 1;
	text-align: center;
}

.fullwidth {
	width: 100%;
	float: left;
}
.tabcontents {
	margin: 30px 0;
}
.logfile {
	display: none;
	width: 100%;
	float: left;
	color: #232327;
	font-size: 16px;
}
.logfile ul li {
	margin-bottom: 5px;
}
.logfile p {
	color: #232327;
	font-size: 16px;
}
.readmorebtn {
	color: #f26122;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
}
.readmorebtn::after {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url(../images/arrows.png);
	background-position: 0 -38px;
	display: inline-block;
	margin-left: 10px;
	transform: rotate(90deg);
	background-repeat: no-repeat;
	vertical-align: middle;
}

.banner_full:after {
	content: "";
	background: url(../images/bannershadow.png) bottom center;
	height: 134px;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
}
.page_home section.latestinfotravel {
	padding: 10px 0px;
}
.page_home .top_destination_section {
	padding: 20px 0px 26px;
}
.team-designation {
	opacity: 0.65;
	color: #3e3e3e;
}

.product_scoller .pack_day_night {
	/*position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #f7f0c8;*/
}
.product_scoller .package_title {
	/* font-size: 13px;*/
}
.product_scoller .package_price span {
	/*font-size:20px;*/
}
.top_destination_section .destination_view {
	width: 100%;
	float: left;
	padding: 0px;
}
/*.top_destination_section .destination_view + .destination_view + .destination_view {
  margin-top: 10px;
}
.top_destination_section .destination_view:nth-child(2),
.top_destination_section .destination_view:nth-child(3) {
  width: 57%;
}
.top_destination_section .destination_view:nth-child(2) .destination_inner,
.top_destination_section .destination_view:nth-child(3) .destination_inner {
  background: #5b8c16;
}*/
.destination_inner {
	display: block;
	width: 100%;
	height: 220px;
	position: relative;
	overflow: hidden;
	background: #0077c1;
}
.destination_inner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 102%;
	min-height: 100%;
	max-width: 200%;
	max-height: 150%;
	width: auto;
	height: auto;
	transition: 0.3s;
	opacity: 0.75;
}
.destination_inner:hover img {
	opacity: 1;
}
.destination_info {
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	z-index: 3;
	color: #fff;
}
.destination_info h3 {
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	position: relative;
	bottom: 0px;
	transition: 0.3s;
}
.destination_info h3:after {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url(../images/arrows.png);
	background-position: 0 -123px;
	display: inline-block;
	margin-left: 10px;
	background-repeat: no-repeat;
	vertical-align: middle;
}

/*.destination_inner:hover .destination_info h3:after {
  width: 150px;
}*/
.destination_info p {
	color: #fff;
	font-size: 16px;
	max-width: 300px;
	margin: 0 auto 20px;
	position: relative;
	top: 20px;
	transition: 0.3s;
}
.destination_inner .btn-default {
	background: #ffd800 !important;
	position: relative;
	font-weight: 600;
	top: 10px;
	opacity: 0;
	border: none;
	color: #444 !important;
}
.destination_inner:hover .destination_info p {
	top: 0;
}
.destination_inner:hover .destination_info h3 {
	top: 0;
}
.destination_inner:hover .btn-default {
	top: 0;
	opacity: 1;
}
.destination_list_outer .all_btn_box {
	position: relative;
	/*top: 25px;
  height: 10px;*/
}
.home_top_packages .all_btn_box {
	/* margin-top: 10px;*/
}
.container_inner .destination_view {
	width: 33.333%;
	margin-bottom: 30px;
}
.container_inner .destination_view .dest_img {
	height: 300px;
	overflow: hidden;
	background: #eee;
}
.container_inner .destination_view .dest_img img {
	max-width: 100%;
	min-width: 100%;
}
.container_inner .destination_view .dest_info {
	background: #fff;
	border: 1px solid #ddd;
	padding: 20px;
	height: 210px;
	border-top: none;
}
.container_inner .destination_view:hover .btn {
	background: #f0562f !important;
	border-color: #f0562f !important;
	color: #fff !important;
}
.page_destination_listing .container_inner .destination_view .dest_img img {
	max-width: 100%;
	min-width: inherit;
	max-height: 300px;
}
.booking_box .radioOuter {
	padding-top: 0;
	margin-top: 15px;
}
.booking_box .radioOuter .customRadio {
	margin-left: 0;
	margin-right: 15px;
}
.booking_box .list_row label {
	font-size: 13px;
	font-weight: 700;
	margin-right: 15px;
}
.morebox {
	padding: 2px;
}
.viewallbtn {
	border: 1px dashed #ccc;
	width: 100%;
	float: left;
	position: relative;
	height: 100%;
}
.viewallbtn > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	min-width: 60%;
}
.viewallbtn > div p.exptext {
	margin-bottom: 5px;
	font-size: 13px;
	color: #c6c6c6;
	line-height: 16px;
}
.viewallbtn > div p {
	margin: 0;
}
.viewallbtn small {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px dashed #ccc;
	line-height: 48px;
	font-size: 30px;
	font-weight: 300;
	display: inline-block;
	color: #ccc;
	margin-bottom: 10px;
}
.viewallbtn:hover,
.viewallbtn:hover small {
	border-color: #f0562f;
}
.viewallbtn .btn {
	background: #0077c1;
	color: #fff;
	border-radius: 25px;
	padding: 3px 20px;
}
.distimg {
	position: relative;
	margin-bottom: 30px;
}
.distimg img {
	width: 100%;
}
.distimg .dest_info {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	z-index: 2;
	width: 80%;
}
.distimg:after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
.distimg .dest_info p {
	color: #fff;
	font-size: 21px;
	line-height: 26px;
	font-weight: 300;
}
.distimg .heading1 {
	padding-bottom: 5px;
	color: #fff;
	display: block;
}
.distimg .heading1:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -16px;
}
.distimg .dest_info .btn {
	background: #f0562f;
	color: #fff;
	font-weight: 500;
	width: 180px;
	line-height: 22px;
	text-align: center;
	margin: 20px auto 0;
	border-radius: 25px;
}
.distimg .dest_info .btn:hover {
	background: #0077c1;
}
.testimonial_section {
	padding: 0;
	background: #e15656;
	height: 450px;
}
.testimonial_section > .container {
	padding: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}
.testimonial_section .full_left {
	background: rgba(255, 255, 255, 0.1);
}
.testimonial_section .full_left .btn:hover {
	background: #333;
	border-color: #333;
}
.page_home section {
	padding-top: 60px;
}
.testi_blog_section {
	margin-bottom: 0;
	position: relative;
}
/*.testi_blog_section:after {
  width: 100%;
  background:#f1f1f1;
  content: "";
  position: absolute;
  top: 0;
  bottom:0px;
  left: 0;
}*/
.testi_blog_section .container {
	position: relative;
	z-index: 2;
}
.testisec {
	float: left;
	width: 100%;
}
.blogsec {
	width: 100%;
	float: left;
}
.blogsec ul {
	list-style: none;
	padding: 0;
	margin: 0 -10px;
}
.blogsec ul li {
	width: 25%;
	float: left;
	padding: 10px;
}
.blogsec ul li img {
	width: 100%;
}
.blogbox,
.package_img,
.category_list_box,
.activiti {
	-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.package_img:hover,
.category_list_box:hover,
.activiti:hover {
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}
.blogbox {
	position: relative;
	width: 100%;
	display: block;
	padding: 6px;
}
.blogbox:hover {
	margin-top: -5px;
}
.blogtitle {
	background: #1b1c45;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	padding: 10px 60px 10px 10px;
	height: 46px;
	position: static;
	left: 0;
	bottom: 0;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blogtitle:after {
	content: "\f105";
	text-align: center;
	line-height: 46px;
	font-size: 22px;
	font-family: FontAwesome;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 46px;
	width: 40px;
	display: block;
	background: #f0562f;
}
.blog_panel_outer,
.testi_panel_outer {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	height: 550px;
}
.blog_panel_outer {
	padding-left: 60px;
}
.testi_panel_outer {
	padding-right: 60px;
}
.testi_blog_section .owl-carousel {
	padding-top: 5px;
	height: auto;
}
.testi_blog_section .heading2 {
	margin-bottom: 10px;
}
.page_home .testi_cont,
.page_home .tname {
	color: #3e3e3e;
}
.test-title {
	line-height: 1.3;
	font-size: 20px;
	font-weight: 500;
	color: #111113;
}
.test-title a {
	color: #111113;
}
.page_home .tname {
	font-size: 16px;
}
.blog_listing a {
	/* display: block;
  margin-bottom: 30px;*/
}
.bcont {
	background: #f1f1f1;
	padding: 5px 10px;
	text-align: center;
}
.bcont p {
	line-height: 20px;
}
.blogimg {
	border-radius: 10px 10px 0 0;
	display: block;
}
.blog_listing a:hover .title {
	color: #f0562f;
}
.blog_listing img {
	width: 100%;
}
.blog_listing {
	margin: 0 -10px;
	padding: 0;
	list-style: none;
	/*-webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-columns: 200px 3;
  -moz-columns: 200px 3;
  columns: 200px 3;*/
}
.blog_listing li {
	width: 33.33%;
	float: left;
	padding: 10px;
}
.colbox {
	page-break-inside: avoid;
}
.colbox a {
	width: 100%;
}
.viewbtn {
	margin-top: 15px;
}
.viewbtn .btn-default {
	padding: 8px 25px 6px;
	border-radius: 20px;
	background: #f0562f;
	color: #fff !important;
}
.viewbtn .btn-default:hover {
	background: #0077c1;
}
.price_booking_outer {
	margin-bottom: 0;
}
.detail_prices {
	display: inline-block;
	margin-right: 15px;
	margin-top: 1px;
	margin-bottom: 5px;
}
.detail_prices .price {
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	color: #000;
	line-height: 22px;
}
.booking_price_view .price {
	font-size: 22px;
	font-weight: 500;
	color: #f0562f;
	display: block;
	padding-left: 2px;
}
.destination_view:hover .dest_info {
	color: #fff;
}
.price_box {
	display: inline-block;
	width: 48%;
	font-size: 15px;
	font-weight: 400;
	text-align: center;
}
.price_box .price {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}
.destination_view:hover .btn {
	background: #ffd800;
	border-color: #ffd800;
	border-radius: 5px 5px 0 0;
	padding: 10px 15px;
}
.inner_page .slider_inner {
	max-height: 320px !important;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	background-color: #0077c1;
	border-color: #0077c1;
}
.detailpage iframe {
	height: 470px;
}
.detail_page .main_panel {
	width: 100%;
	float: left;
}
.dtquickform {
	border: 1px solid #f05632;
	padding: 30px;
	width: 440px;
	float: right;
	background: #fbf6e2;
}

.wcu {
	margin-top: 30px;
	width: 440px;
	float: right;
	background: #fff;
}
.wcu .title {
	background: #fff;
	margin: 0;
	font-size: 24px;
	text-align: left;
	color: #333;
	padding: 10px 15px;
	border-bottom: 1px solid #ddd;
	display: block;
}
.wcu ul {
	list-style: none;
	padding: 0px;
}
.wcu ul li {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #ddd;
	padding: 10px 15px;
}
.wcu ul li:last-child {
	border-bottom: 0px;
}
.wcu ul li .wcu-img {
	width: 18%;
	margin-right: 6px;
}
.wcu ul li .wcu-para {
	width: 82%;
}
.wcu ul li .wcu-para span {
	font-size: 18px;
	font-weight: 600;
}
.wcu ul li .wcu-para p {
	font-size: 14px;
}
.raiting-holder {
	color: #505050;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
}
.raiting-list {
	display: flex;
	padding: 0px;
	margin-bottom: 0px;
}
.raiting-list li {
	color: #ffb100;
	font-size: 1.3rem;
	margin-right: 3px;
}
.raiting-holder .counter {
	font-size: 1.1rem;
}
.pbook {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 5px;
}
.pbook div {
	flex-grow: 1;
}
.pbook div.bookNow {
	text-align: right;
}
.pbook div.bookNow a {
	display: inline-block;
	color: #fff;
	background: #f26122;
	border: 1px solid #f26122;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 30px;
}
.pbook div.bookNow a:hover {
	background: #fef7d3;
	color: #f26122 !important;
}

.dtquickform body {
	background: transparent !important;
}
.iframeform {
	background-color: transparent !important;
}
.iframe-blog .validation_error,
.iframe-quick-enquiry .validation_error,
.iframeform .validation_error {
	position: absolute;
	font-size: 12px;
	line-height: 13px;
}
.iframe-quick-enquiry.iframeform .customeFormOuter .form-group {
	width: 100%;
	padding: 0 10px;
}
.iframe-quick-enquiry.iframeform .customeFormOuter .form-group:nth-child(6),
.iframe-quick-enquiry.iframeform .customeFormOuter .form-group:nth-child(7),
.iframe-quick-enquiry.iframeform .customeFormOuter .form-group:nth-child(8),
.iframe-quick-enquiry.iframeform .customeFormOuter .form-group:nth-child(9) {
	width: 50%;
	float: left;
	padding: 0 10px;
}
.iframe-quick-enquiry.iframeform .customeFormOuter .form-control {
	height: 46px !important;
}
.iframe-quick-enquiry.iframeform .formActionBox {
	text-align: left;
}
.iframe-quick-enquiry.iframeform .formActionBox .btn {
	background: #f0562f;
	border-color: #f0562f;
	color: #fff;
	border-radius: 30px;
	margin-left: 13px;
}
.sidebarsec .heading1 {
	font-size: 18px;
}
.page_blog_detail .enqform {
	padding-top: 15px;
}
.breadcrumb_full {
	position: relative;
	z-index: 1;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff !important;
	background: #007fff !important;
	font-weight: normal;
	color: #ffffff;
}
.destinationhead {
	position: absolute;
	bottom: 75px;
	width: 100%;
}
.detailpage .price_total_booking {
	margin-bottom: 10px;
}
.destinationhead,
.destinationhead .breadcrumb,
.destinationhead .breadcrumb li a {
	text-align: center;
	color: #fff;
}
.destinationhead .breadcrumb {
	padding: 0;
}
.destinationhead h1 {
	margin: 0;
	font-family: bebas_neueregular;
	color: #fff;
	font-weight: 400;
	font-size: 40px;
}
.detail_page .price_total_booking {
	clear: both;
}
.detail_page .booking_price_view .price {
	vertical-align: middle;
}
.total_price_view {
	float: left;
	background: 0 0;
	color: #333;
	padding: 0;
	white-space: nowrap;
	width: auto;
	min-width: 160px;
	text-align: left;
	margin: -1px 0;
	height: auto;
	line-height: 30px;
	margin-left: 0 !important;
	border: 0 !important;
}
.total_price_input input {
	background: 0 0;
	border: none;
	font-size: 22px;
	padding: 0;
	margin-top: -2px;
	font-family: Ubuntu, Helvetica, Arial, sans-serif;
	font-weight: 500;
	color: #f0562f;
	text-align: left;
	width: 100px;
	display: inline-block;
}
.total_price_input {
	display: block;
	padding-left: 2px;
	vertical-align: middle;
	color: #f0562f;
}
.total_price_input .fa {
	font-size: 17px;
}
.booking_price_view {
	background: 0 0;
	color: #333;
}
.activity_time_div {
	margin-bottom: 15px;
}
.activity_time_div .btn_time {
	background: transparent;
	padding: 6px 12px;
	border-radius: 3px;
	margin-right: 10px;
	border: 1px solid #737373;
	color: #737373;
	transition: .3s;
}
.activity_time_div .btn_time:hover,
.activity_time_div .btn_time.active {
	border: 1px solid #f0562f;
	color: #fff;
	background: #f0562f;
}
.activity_time_div .btn_time:focus {
	outline: none;
	box-shadow: none;
}
.detail_page .total_prices_width.price_total_booking {
	display: inline-block;
}
.detail_page .total_prices_width.price_total_booking .total_price_view {
	width: 100%;
}
.data_category_box .departuretitle {
	display: inline-block;
}
.data_category_box .form-control {
	display: inline-block;
	max-width: 150px;
}
.price_total_booking + .price_list_box {
	margin-right: 262px;
	margin-bottom: 0;
	padding: 0;
	min-height: 60px;
}
.price_total_booking:after {
	content: "";
	display: block;
	clear: both;
}
.price_list_inner {
	display: table;
	width: 100%;
	height: 100%;
}
.price_list_box .price_booking {
	padding: 12px 0;
	margin: 0;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	width: 100%;
}
.way_book_section {
	position: relative;
	background: #444 url(../images/trustbg.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.way_book_section > .container {
	position: relative;
}
.way_book_section .overlay {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(45, 45, 110, 0.8);
}
.way_book_section .heading1 {
	/* position: relative;
  padding-bottom: 10px;
  font-size: 25px;*/
}
.way_book_section .heading1::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -16px;
}
.way_book {
	margin: 0;
	padding: 0;
}
.way_book > li {
	list-style: none;
	width: 20%;
	float: left;
	padding: 0;
}
.way_book > li > div {
	padding: 0 15px;
}
.box_icon {
	width: 45px;
	height: 45px;
	display: inline-block;
	vertical-align: middle;
}
.box_icon img {
	max-width: 100%;
	max-height: 100%;
}
.way_book > li p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 20px;
	font-size: 15px;
}
.way_book h4 {
	color: #fff;
	font-size: 30px;
	font-weight: 300;
}
.way_book .btn-default {
	color: #fff !important;
	border-color: #fff;
}
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
	overflow: hidden;
}
.owl-controls .owl-buttons div,
.owl-controls .owl-page {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
.owl-theme .owl-controls {
	text-align: center;
	margin-top: 10px;
}
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 10px;
	height: 10px;
	margin: 4px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: rgba(107, 107, 107, 0.2);
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	opacity: 1;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #fff;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.owl-item.loading {
	min-height: 150px;
}
.owl-theme.banner_slider .owl-controls .owl-page span {
	background: rgba(255, 255, 255, 0.8);
}
.testi_text {
	font-size: 17px;
	line-height: 28px;
	margin-bottom: 25px;
	font-weight: 300;
	text-align: left;
}
.header_search_outer .owl-theme .owl-controls {
	margin: 0;
}
.detail_page .testi_text {
	background: #fff;
	border: 1px solid #dadada;
	padding: 30px;
	position: relative;
	border-radius: 3px;
	min-height: 190px;
}
.detail_page .testi_text:after,
.detail_page .testi_text:before {
	top: 100%;
	left: 10%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.detail_page .testi_text:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}
.detail_page .testi_text:before {
	border-color: rgba(218, 218, 218, 0);
	border-top-color: #dadada;
	border-width: 11px;
	margin-left: -11px;
}
.customer_img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	overflow: hidden;
	margin: 10px 20px 0 60px;
	float: left;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.page_testimonial_detail .customer_img {
	margin-left: 0;
	float: left;
}
.page_testimonial_detail .leftsec {
	width: 77%;
}
.page_testimonial_detail .sidebarsec {
	width: 23%;
}
.customer_img img {
	min-width: 100%;
	max-width: 100%;
}
.customer_name {
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	padding-top: 30px;
}
.customer_name span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #777;
}
.btn_more {
	width: 40px;
	height: 40px;
	margin: 0 auto 50px;
	border: 1px solid #aaa;
	display: block;
	border-radius: 50%;
	font-size: 20px;
	padding: 8px;
	line-height: 20px;
	color: #666;
	transition: 0.3s;
}
.btn_more .fa {
	margin-right: -2px;
}
.btn_more:hover {
	background: #f0562f;
	border-color: #f0562f;
	color: #fff;
}
.activity_listing {
	width: 33.333%;
	float: left;
	padding: 15px;
}
.activity_inner {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
}
.acti_img {
	height: 300px;
	position: relative;
	overflow: hidden;
}
.acti_img img {
	position: relative;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	max-width: none;
}
.acti_info {
	padding: 15px 15px 25px;
	background: #f7f7f7;
}
.acti_info h3,
.acti_info h3 a {
	color: #222;
}
.acti_info h3 {
	font-size: 21px;
}
.activity_inner:hover {
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.text_lg.showcfile4 {
	max-height: 42px;
}
.about_text {
	width: 100%;
	float: left;
}
.about_text .text_lg {
	max-height: auto;

	overflow: hidden;
	margin-bottom: 15px;
}
.share_panel a {
	color: #fff;
}
.detail_page .customer_img {
	width: 80px;
	height: 80px;
	line-height: 80px;
	background: #f1f1f1;
}
.detail_page .owl-carousel .owl-item img {
	display: inline-block;
}
.detail_page .customer_name {
	padding-top: 20px;
}
.detail_page .customer_name a {
	color: #f0562f;
}
.viewtest .btn {
	background: #0077c1;
	color: #fff;
	padding: 4px 25px 5px;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
}
.blog_section {
	background: #eee url(../images/bg.jpg) center center no-repeat fixed;
	background-size: cover;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) inset;
	padding: 0;
	height: 500px;
}
.blog_section > .container {
	padding: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}
.blog_section .full_left {
	background: rgba(0, 0, 0, 0.05);
	color: #666;
}
.blog_section .full_left .btn {
	border-color: #888;
	color: #888 !important;
}
.blog_section .full_left .btn:hover {
	border-color: transparent;
	color: #fff !important;
}
.blog_section .full_left .heading1 {
	color: #000;
}
.blog_section .full_right {
	padding: 50px;
}
.blog-item {
	padding: 0 20px;
}
.blog-item * {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.blog-item + .blog-item {
	margin-top: 30px;
}
.img_thumb {
	width: 100%;
	height: 140px;
	overflow: hidden;
	margin-bottom: 10px;
}
.img_thumb img {
	width: 100%;
}
.blog_text {
	color: #888;
}
.blog_text h6 a {
	color: #000;
}
.blog_text h6 a:hover {
	text-decoration: none;
}
.bot_section {
	margin-top: 15px;
}
.more_link {
	color: #000;
	font-size: 13px;
	padding: 6px 20px;
	background: #ffd800;
	display: inline-block;
	border-radius: 25px;
}
.more_link:hover {
	text-decoration: none;
	color: #000;
	border-color: #000;
}
.blog_box {
	padding-left: 20px;
	padding-right: 20px;
}
.teamsec {
	background: #f2f2f2;
}
.teamsec ul {
	padding: 0;
	margin: 0 -15px;
	list-style: none;
}
.teamsec ul li {
	width: 25%;
	float: left;
	padding: 15px;
}
.teamimg {
	margin-bottom: 10px;
}
.teamimg img {
	width: 100%;
}
.teamtitle {
	font-weight: 700;
	font-size: 13px;
	color: #3e3e3e;
	line-height: normal;
	margin: 0 0 5px;
}
.team-designation {
	font-size: 13px;
}

.flogo {
	width: 100px;
	display: inline-block;
}
.flogo img {
	max-width: 100%;
	/* -webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
}

.social_foot {
	margin: 0;
	padding: 0;
}
.social_foot > li {
	border: none;
	margin-right: 10px;
	list-style: none;
	display: inline-block;
}
.social_foot > li a {
	padding: 0;
	width: 44px;
	height: 30px;
	display: block;
	text-align: center;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	transition: 0.3s;
}
.social_foot > li a:hover {
	color: #fff;
	background: 0 0;
}
.foot_block {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.foot_block:first-child {
	border: none;
}
.foot_nav {
	margin: 0;
	padding: 0;
}
.foot_nav > li {
	list-style: none;
	font-size: 14px;
}
.foot_nav > li + li {
	margin-top: 6px;
}
.foot_nav > li > a {
	color: #fff;
	position: relative;
	left: 0;
	display: block;
}
.foot_nav > li:hover a {
	left: 5px;
}
.foot_nav > li > a:hover {
	text-decoration: none;
	color: #f0562f;
}
.foot_bottom {
	background: rgba(0, 0, 0, 0.2);
	margin-top: 20px;
	padding: 10px 0;
	text-align: center;
	color: #777;
}
.foot_bottom a {
	color: #aaa;
}
.foot_bottom a:hover {
	color: #666;
}

.fsocial span {
	color: #fff;
	font-size: 15px;
	opacity: 0.5;
	display: inline-block;
}
.fsocial a {
	display: inline-block;
	margin-left: 5px;
}
.fsocial a i {
	color: #fff;
	display: inline-block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	text-align: center;
	line-height: 28px;
	background: #3a559f;
}
.fsocial a i.fa-twitter {
	background: #2aaae0;
}
.fsocial a i.fa-instagram {
	background: #cc2493;
}
.faddress ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.faddress ul li {
	position: relative;
	padding-left: 30px;
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 18px;
	color: #fff;
}
.faddress ul li * {
	color: #fff !important;
}
.faddress ul li i {
	position: absolute;
	left: 0;
	top: 3px;
}
.copyr a {
	color: #fff;
	opacity: 0.5;
}
.btn:active,
.btn:focus {
	background-color: #fef7d3;
}
.btn-primary:hover {
	color: #fff;
	background-color: #f37239;
	/*border-color: #0077c1;*/
}
.newsletter_inner {
	padding: 0;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.newsletter_inner h4 {
	color: rgba(255, 255, 255, 1);
	font-size: 20px;
	margin: 0 10px 0 0;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
}
.newsletter_input {
	position: relative;
	padding-right: 150px;
	display: inline-block;
	vertical-align: middle;
}
.newsletter_input .form-control {
	height: 44px;
	font-size: 14px;
	width: 420px;
	border-color: rgba(255, 255, 255, 0.5);
	background: #fff;
	color: #000;
	margin-right: 10px;
}
.newsletter_input .form-control::placeholder {
	opacity: 1;
}
.newsletter_input .btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	padding: 5px;
	font-size: 15px;
	font-weight: 700;
	height: 44px;
}
.newsletter_input .btn:hover {
	background: #fff;
	color: #0077c1;
}
.contact_detail_foot {
	float: right;
	font-size: 18px;
	color: #fff;
}
.contact_detail_foot > span {
	display: inline-block;
}
.email a {
	display: block;
	padding: 4px 15px 6px;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 13px;
	border-radius: 15px;
	margin-left: 10px;
}
.phone {
	padding-top: 3px;
}
.page_arrow {
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
.page_arrow i.fa {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
}
.select_stars {
	float: left;
	width: 16%;
}
.star_box_hotel {
	margin-left: 50px;
	text-align: left;
}
.star_box_hotel i {
	color: #f0562f;
}
.hotel_facilities {
	margin-right: 0;
}
.discription_para {
	padding: 20px 20px;
	max-height: 220px;
	overflow-y: scroll;
}
.discription_para .hotel_facilities {
	position: relative;
	height: 35px;
	width: 100%;
	margin-bottom: 5px;
	font-size: 16px;
	color: #999;
}
.discription_para .hotel_facilities img {
	margin-right: 10px;
}
.galleryimage_area {
	width: 100%;
	float: none;
}
#big_img.owl-carousel .owl-item img {
	max-width: none;
	width: 100%;
	height: 515px;
}
.galleryimage_area {
	border: 1px solid #ddd;
	background: 0 0;
}

.detail_info {
	background: #fff;
	width: 100%;
	padding: 20px 20px;
	margin-bottom: 0px;
	border: 1px solid #ddd;
}
.banner_heading_top {
	padding: 20px 20px 20px 20px;
}
.detail_title i {
	font-size: 22px;
	color: #eca213;
}
.hotel_destination .fa {
	font-size: 22px;
	color: #999;
	margin-right: 2px;
}
.hotel_destination {
	color: #000;
	margin: 5px 0;
	font-size: 17px;
}
.hotelslider img {
	max-height: 280px;
}
.hotel_details .table-bordered > thead > tr > th {
	border-color: #f0562f;
}
.toggle_slider p {
	text-align: justify;
	color: #999;
}
.toggle_slider {
	display: none;
	padding: 20px 17px;
}
.packdetail_image img {
	width: 100%;
}
.package_button_section {
	text-align: right;
	margin: 24px 0;
}
.hotel_room_detail {
	padding: 30px 20px;
	margin-top: 20px;
	border: 1px solid #cdcdcd;
	background: #fff;
}
.hotel_room_detail > ul > li {
	list-style: none;
	float: left;
	width: 33.33%;
	color: #757575;
	padding: 5px 0;
	font-weight: 100;
	position: relative;
}
.hotel_room_detail > ul > li::after {
	content: "";
	display: block;
	background: #f0562f;
	width: 17px;
	height: 2px;
	position: absolute;
	left: -22px;
	transform: rotate(-42deg);
	bottom: 13px;
}
.hotel_room_detail > ul > li::before {
	content: "";
	display: block;
	background: #f0562f;
	width: 8px;
	height: 2px;
	position: absolute;
	transform: rotate(54deg);
	left: -26px;
	bottom: 12px;
}
.hotel_room_detail > ul {
	border-top: 1px solid #cdcdcd;
	padding-top: 25px;
}
.border_bottom {
	margin-bottom: 20px;
}
.pricenight {
	margin: 6px 0 0 0;
	font-size: 16px;
	font-weight: 100;
	float: left;
	width: 48%;
}
.pricenight span {
	color: #000;
	margin-left: 10px;
	font-size: 16px;
	font-weight: 100;
	border-bottom: 1px solid #292929;
}
.new_related_hotel {
	padding: 50px 0;
}
.matter img {
	width: 100%;
	transition: 0.3s;
}
.matter {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	margin-bottom: 30px;
	max-height: 210px;
}
.hotel_amount {
	position: absolute;
	right: 20px;
	top: 20px;
	background: rgba(0, 0, 0, 0.2);
	padding: 10px 10px;
	border-radius: 5px;
	color: #fff;
	transition: 0.3s;
}
.matter:hover .hotel_amount {
	background: rgba(234, 116, 0, 1);
}
.name_hoel {
	position: absolute;
	bottom: -100px;
	left: 0;
	font-size: 20px;
	right: 0;
	padding: 0 20px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
	transition: 0.3s;
	padding-bottom: 15px;
}
.name_hoel h5,
.name_hoel1 h5 {
	min-height: 56px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
.name_hoel p,
.name_hoel1 p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}
.name_hoel1 {
	color: #fff;
}
.name_hoel1 h5 {
	margin-bottom: 10px !important;
}
.matter:hover .name_hoel {
	bottom: 0;
}
.rbox {
	margin-bottom: 5px;
	float: left;
	width: 100%;
}
.relatedlink {
	position: relative;
	width: 100%;
	float: left;
}
.relatedlink .package_info {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
}
.relatedlink .package_title {
	color: #fff;
	margin-left: 0;
	min-height: auto;
}
.relatedlink .package_info {
	color: #fff;
}
.relatedlink .package_info h5 {
	margin-bottom: 10px;
	font-size: 18px;
	color: #fff;
	padding: 0;
}
.relatedlink .package_info p {
	margin-bottom: 5px;
	color: #fff;
}
@-webkit-keyframes pulse {
	0 {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-moz-keyframes pulse {
	0 {
		-moz-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-moz-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

.videoSec iframe {
	width: 100%;
	height: 400px;
}

.banner_inner > .container {
	position: relative;
}
.search_inner {
	margin-top: -85px;
	position: relative;
	z-index: 2;
}
.search_inner .search_area {
	background: url(../images/bg_search.jpg) 0 0 repeat;
	position: relative;
}
.search_inner .search_area:before {
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	border: 1px dashed rgba(255, 255, 255, 0.5);
}
.breadcrumb_full {
	background: #f6f8fb;
}
.breadcrumb {
	padding: 10px 0;
	background: 0 0;
	text-align: center;
	color: #888;
	margin: 0 0 0;
}
.breadcrumb li a {
	color: #222;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.breadcrumb li a:hover {
	text-decoration: none;
}
.slider_package_box {
	margin: 0 10px;
	background: #fff;
	padding-bottom: 10px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	margin-bottom: 10px;
}
.slider_package_box * {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.slider_package_box h4 {
	padding-top: 5px;
	min-height: 55px;
	margin-bottom: 0;
}
.slider_package_box h4 a {
	color: #000;
}
.slider_package_box h4 a:hover {
	text-decoration: none;
}
.slider_package_box .package_img {
	height: 180px;
	margin-bottom: 5px;
}
.owl-buttons > div {
	position: absolute;
	top: 50%;
	font-size: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.grey_box_full {
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.grey_box_full:before {
	position: absolute;
	left: -5000px;
	right: -5000px;
	content: "";
	background: #f5f5f5;
	top: 0;
	bottom: 0;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}
.grey_box_full .btn_enquire {
	background: #fcd204;
	color: #000;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -20px;
	border-radius: 30px;
	padding: 7px 20px;
	height: 40px;
	min-width: 120px;
}
.slider_package_box .package_img {
	position: relative;
	padding: 0;
	background: #eee;
}
.slider_package_box .package_btn {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
}
.slider_package_box .package_btn .btn {
	background: #fff;
	color: #333 !important;
	border: none;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}
.slider_package_box h4 {
	font-size: 17px;
}
.slider_package_box .package_price {
	top: 10px;
}
.slider_package_box:hover .package_btn {
	opacity: 1;
}
.main_slider .owl-prev {
	left: 20px;
	font-size: 0;
	color: #fff;
	opacity: 0.3;
}
.main_slider .owl-next {
	right: 20px;
	font-size: 0;
	color: #fff;
	opacity: 0.3;
}
.main_slider .owl-prev:hover {
	opacity: 0.8;
}
.main_slider .owl-next:hover {
	opacity: 0.8;
}
.main_slider .owl-pagination {
	display: none !important;
}
.box_title {
	width: 250px;
	margin: 0 auto;
	background: #fff;
	text-align: center;
	margin-top: -50px;
}
.box_title h5 img {
	width: 45px;
}
.box_title h5:before {
	border: none;
}
.box_btn_outer {
	margin-top: 30px;
	padding-bottom: 10px;
	text-align: center;
}
.more_btn {
	box-shadow: none !important;
	color: #2b63c8;
}
.nav-tabs {
	margin-bottom: 10px;
}
.nav-tabs > li {
	font-size: 15px;
	text-transform: uppercase;
}
.nav-tabs > li > a {
	color: #0077c1;
	padding: 10px 20px;
	border: none;
	border-bottom: 1px solid transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
	border: none;
	/*background: 0 0;*/
	background: #fcd204 !important;
	border-bottom: 1px solid transparent;
	color: #000;
	border-bottom: 1px solid #000;
}
#loading {
	text-align: center;
	display: none;
}
.tab-content {
	margin-bottom: 20px;
}
.tab-content > .tab-pane {
	font-size: 14px;
	text-align: justify;
}
.tab-content > .tab-pane ul li {
	padding-bottom: 5px;
}
.accordion_panel {
	padding: 0;
	margin: 0;
}
.accordion_panel > li:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	border-bottom: 1px solid #ddd;
}
.accordion_panel > li:last-child:after {
	display: none;
}
.accordion_head {
	color: #222;
}
.itenerary_panel .accordion_panel > li {
	list-style: none;
	padding-left: 20px;
	margin-bottom: 0;
}
.day_circle {
	width: 50px;
	height: 50px;
	background: #fff;
	display: block;
	position: absolute;
	left: -45px;
	border: 1px solid #fee65d;
	top: 0;
	color: #f0562f;
	text-align: center;
	word-spacing: 100px;
	font-weight: 600;
	font-size: 13px;
	line-height: 13px;
	text-transform: uppercase;
	padding: 12px 0;
	border-radius: 50%;
}
#s_more {
	color: #f0562f;
	font-weight: 600;
}
.package_top .price_booking_outer {
	padding-left: 0px;
}
.itinerary_tab {
	margin-left: 25px;
	position: relative;
}
.itinerary_tab:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 20px;
	bottom: 20px;
	border-left: 1px solid #fee65d;
}
.detail_page .tags {
	min-width: auto;
}
.accordion_head {
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding-right: 40px;
	border-bottom: none;
}
.accordion_head .title {
	margin-top: -5px;
}
.accordion_head .theme_tags {
	margin-bottom: 10px;
}
.itenery_info {
	margin-top: 15px;
}
.title2 {
	font-size: 15px;
	font-weight: 400;
	color: #222;
	margin-bottom: 5px;
}
.accordion_head .fa-angle-down {
	position: absolute;
	right: 0;
	top: -2px;
	color: #999;
	font-size: 30px;
	padding: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.accordion_head p {
	font-size: 14px;
	color: #333;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-top: 10px;
}
.accordion_head:hover,
.accordion_panel > li.active .accordion_head {
	background: 0 0;
}
.accordion_head:hover p,
.accordion_panel > li.active .accordion_head p {
	color: #666;
}
.accordion_body {
	display: none;
	padding-bottom: 20px;
}
.accordion_panel > li.active .accordion_body {
	display: block;
}
.accordion_panel > li.active .accordion_head .fa-angle-down {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}
.places_img {
	width: 180px;
	margin-right: 15px;
	float: left;
	max-height: 150px;
	overflow: hidden;
}
.places_img img {
	width: 100%;
}
.places_list {
	margin: 0;
}
.places_info h5 {
	text-align: left;
	margin-bottom: 10px;
	font-size: 15px;
	color: #000;
}
.places_info h5::before {
	left: 0;
	margin-left: 0;
}
.table_style td {
	border-top: 1px solid #e1e1e1;
	padding: 10px;
}
.table_style th {
	padding: 10px;
}
.hotel_info {
	width: auto;
	float: none;
}
.star_box {
	font-size: 16px;
	color: #eca213;
}
.pagination > li {
	font-size: 15px;
	text-transform: uppercase;
}
.pagination > li > a {
	color: #000;
}
.pagination > li > span {
	color: #aaa;
}
.hotel_destination {
	color: #000;
	margin: 5px 0;
}
.dest_title {
	color: #333;
}
.hotel_info .dest_title,
.hotel_info .hotel_destination,
.hotel_info .star_box {
	display: inline-block;
}
.hotel_info .dest_title {
	width: 20%;
}
.hotel_info .star_box {
	width: 140px;
}
.hotel_info .hotel_destination {
	padding-left: 10px;
	border-left: 1px solid #666;
}
.hotel_destination .fa {
	font-size: 120%;
	color: #999;
	margin-right: 2px;
}
.info_panel:not(.itenerary_panel) {
	border: 1px solid #ddd !important;
	background: #fff;
	padding: 15px 20px !important;
	margin-bottom: 20px !important;
}
.itenerary_panel {
	margin-bottom: 20px;
}
.detail_page h5,
.itenerary_panel h5 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}
.day_night_box {
	margin-bottom: 20px;
	display: inline-block;
	color: #666;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
.paging_outer {
	position: relative;
}
.sidebar {
	border: 1px solid #ccc;
	margin-bottom: 15px;
}
.sidebar > h4 {
	padding: 12px 20px;
	margin-bottom: 0;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
.sidebar > h4 .fa-angle-down {
	float: right;
	margin-top: 4px;
	color: #888;
}
.filter_box {
	padding: 15px 20px;
}
.filter_box + .filter_box {
	border-top: 1px solid #ccc;
}
.filter_box h6 {
	margin-bottom: 10px;
	color: #000;
	position: relative;
	cursor: pointer;
}
.icon_filter {
	width: 14px;
	height: 14px;
	background: #888;
	position: absolute;
	right: 0;
	top: 3px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.icon_filter:before {
	content: "";
	width: 8px;
	border-bottom: 2px solid #fff;
	position: absolute;
	top: 6px;
	left: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: rgba(0, 0, 0, 0.2);
}
.icon_filter:after {
	content: "";
	height: 8px;
	border-left: 2px solid #fff;
	position: absolute;
	left: 6px;
	top: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: rgba(0, 0, 0, 0.2);
}
.filter_box.active .icon_filter:after {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
}
.fancy_popup {
	color: #777;
	text-decoration: underline;
}
.check_list {
	margin: 0;
	padding: 0;
}
.check_list > li {
	list-style: none;
	margin: 0 0 10px;
}
.check_list > li label {
	display: block;
	font-weight: 400;
	font-size: 15px;
}
span.jqTransformCheckboxWrapper {
	display: block;
	float: left;
	margin-top: 4px;
	margin-right: 5px;
}
a.jqTransformCheckbox {
	background: transparent url(../images/checkbox.png) 0 0 no-repeat;
	vertical-align: middle;
	height: 14px;
	width: 14px;
	display: block;
}
a.jqTransformChecked {
	background-position: 0 -19px;
}
.jqTransformHidden {
	display: none;
}
.radio_outer {
	clear: both;
	padding: 10px 0;
}
.radio_outer + .radio_outer {
	border-top: 1px solid #e1e1e1;
}
.jqTransformRadioWrapper {
	float: left;
	display: block;
	margin: 0 4px;
	margin-top: 0;
}
.jqTransformRadio {
	background: transparent url(../images/radio_btn.png) no-repeat left top;
	vertical-align: middle;
	height: 22px;
	width: 22px;
	display: block;
	margin-right: 5px;
}
.radioBtns a.jqTransformChecked {
	background-position: left -27px;
}
.nav > li > a:focus,
.nav > li > a:hover {
	background: 0 0 !important;
}
.booking_box .inclusions_box {
	margin-bottom: 10px;
	width: 100%;
	text-align: left;
}
.sidebar_menu.sidebar {
	border: none;
}
.sidebar > h4 {
	border-bottom: 1px solid #ccc;
}
.activtiy_list {
	margin: 0;
	padding: 0;
}
.activtiy_list * {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.activtiy_list > li {
	list-style: none;
	width: 33.33%;
	padding: 0;
	float: left;
}
.activtiy_list > li > div {
	border: 1px solid #ccc;
	padding: 0 15px 15px;
	position: relative;
	margin-bottom: 60px;
}
.activtiy_list > li > div:hover {
	border-color: #aaa;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.activtiy_list > li > div .activtiy_img {
	margin: -1px -16px 10px;
	overflow: hidden;
}
.activtiy_list > li > div:hover .activtiy_img img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}
.act_info {
	margin: 0;
	padding: 0;
}
.act_info > li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}
.act_info > li > .fa {
	width: 16px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 4px;
}
.activtiy_list > li > div h4 {
	margin-bottom: 5px;
	min-height: 55px;
	text-align: left;
}
.activtiy_list > li > div h4 a {
	color: #000;
}
.activtiy_list > li > div h4 a:hover {
	text-decoration: none;
}
.price_box {
	margin: 15px -15px 0;
	padding: 15px;
	border-top: 1px solid #ccc;
	text-align: center;
}
.price {
	font-size: 26px;
}
.price .fa-inr {
	font-size: 76%;
}
.activtiy_list > li > div .book_btn {
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -75px;
	width: 150px;
}
.btn.refine_search,
.refine_search {
	background: 0 0;
	border: 1px solid #ccc;
	padding-left: 18px;
	padding-right: 18px;
}
.refine_search:active,
.refine_search:focus,
.refine_search:hover {
	background: 0 0;
	color: #fff !important;
}
.search_onpage {
	margin-top: 0;
	margin-bottom: 20px;
}
.search_onpage .search_area {
	background: #f5f5f5;
	color: #333;
}
.search_onpage .search_area label {
	color: #333;
}
.search_onpage .search_area .form-control {
	color: #000;
}
.search_onpage .input_icon {
	color: #666;
}
.search_onpage.search_inner .search_area::before {
	border-color: rgba(0, 0, 0, 0.3);
}
.form-group {
	margin-bottom: 10px;
}

.detailpage {
	padding-top: 50px;
}
.detail_page h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 0;
}
.detail_title small {
	display: block;
}
.comment_box {
	background: #f6f6f6;
}
.galleryimage_area {
	width: 44%;
	margin-left: 0;
	float: left;
	/*height: 600px;*/
	background: rgba(0, 0, 0, 0.05);
	margin-bottom: 0;
}
.booking_box:not(.booking_inner) {
	width: 56%;
	float: left;
	padding: 0 0 0 50px;
	position: relative;
}
.booking_box.info_panel {
	width: 100%;
}
.detail_package_box {
	margin-bottom: 20px;
}
.booking_box .title {
	margin-bottom: 10px;
}
.price_booking_outer {
	padding: 0;
	border: 1px solid #aaa;
	background: #fff;
	padding-left: 15px;
}
.booking_box_inner [class^="col-"] {
	position: relative;
}
.booking_box_inner label.error {
	position: absolute;
	font-size: 13px;
	left: 15px;
	top: 100%;
}
.booking_box .act_info > li {
	font-size: 15px;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}
.booking_box .act_info > li > .fa {
	width: 20px;
	position: absolute;
	left: 0;
	top: 4px;
	color: #666;
}
.booking_box .act_info > li strong {
	font-weight: 400;
	color: #000;
}
.booking_box label {
	display: block;
	font-weight: 400;
	font-size: 11px;
}
.booking_inner {
	margin: 0;
}
.spacer {
	height: 30px;
	clear: both;
}
.booking_box .action_btn {
	position: static;
	left: 80px;
	bottom: 20px;
	right: 20px;
	padding-bottom: 0;
}
.booking_box .action_btn .btn {
	min-width: 200px;
	margin: 0 2px;
	width: 49%;
	float: left;
}
.booking_box .action_btn .btn + .btn {
	float: right;
}
.detail_info {
	font-size: 16px;
}
.accordion_default {
	margin-top: 40px;
}
.accordion_default .accordion_head {
	font-size: 16px;
	font-weight: 600;
	border: 1px solid #ccc;
}
.accordion_default .accordion_body {
	border: 1px solid #e1e1e1;
	padding: 15px;
	border-top: none;
}
.accordion_default .accordion_head .fa-angle-down {
	top: 0;
	padding-top: 14px;
	padding-bottom: 14px;
}
.accordion_default.accordion_panel > li.active .accordion_head {
	background: #fff;
}
.list_view_small > li {
	width: auto !important;
	float: none;
}
.list_view_small > li > div .activtiy_img {
	width: 80px;
	float: left;
	margin: 0;
	height: 60px;
	margin-bottom: 5px;
	margin-right: 10px;
}
.list_view_small > li > div .activtiy_img img {
	height: 100%;
	width: auto;
	max-width: none;
}
.list_view_small > li > div h4 {
	margin-left: 90px;
	font-size: 14px;
	min-height: 1px;
	min-height: 60px;
}
.list_view_small > li > div .act_info {
	margin-bottom: 10px;
}
.list_view_small > li > div {
	padding: 15px;
	margin: 0;
	border: none;
}
.list_view_small > li > div:after {
	content: "";
	display: block;
	clear: both;
}
.list_view_small > li > div:hover {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
.list_view_small .price_box {
	border: none;
	padding: 0;
	margin: 0 0 10px;
	float: none;
	line-height: 15px;
	width: auto;
	display: block;
	text-align: left;
}
.list_view_small > li > div .book_btn {
	position: static;
	font-size: 12px;
	height: 30px;
	padding: 4px 18px;
	width: 100%;
	display: block;
	border: 1px solid transparent;
	margin-top: 2px;
	margin-left: 0;
}
.list_view_small .price {
	display: inline-block;
	font-size: 20px;
	color: #000;
	font-weight: 600;
}
.testimonials_inner {
	margin-bottom: 40px;
}
.festival_dates {
	overflow: auto;
}
.owl-carousel#thumb_img .owl-item {
	cursor: pointer;
	position: relative;
	padding-left: 10px;
}
.owl-carousel#thumb_img .owl-item.synced:before {
	position: absolute;
	content: "";
	left: 10px;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	border: 2px solid transparent;
}
.owl-carousel#thumb_img .owl-item img {
	max-width: 100%;
	height: 90px !important;
}
.owl-carousel#big_img .owl-item img {
	max-width: none;
	/*max-height:600px;*/
}
.owl-carousel#big_img .owl-buttons .owl-prev {
	left: 10px;
	margin-left: 1px;
}
.owl-carousel#big_img .owl-buttons .owl-next {
	right: 5px;
}
#big_img {
	padding-left: 0;
	margin: 0;
}
.list_view_small .book_btn {
	background: #eee;
	color: #222;
}
.list_view_small .book_btn:hover {
	background: #333;
	color: #fff;
}
.theme_selector {
	position: fixed;
	top: 40%;
	left: -48px;
	z-index: 10025;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.theme_selector > span {
	background: #e44545;
	color: #fff;
	padding: 5px 10px;
	text-transform: uppercase;
	transform: rotate(-90deg);
	letter-spacing: 3px;
	display: block;
	font-size: 14px;
	width: 174px;
	height: 30px;
	text-align: center;
	position: absolute;
	left: -25px;
	cursor: pointer;
}
.theme_selector > span .fa {
	float: left;
	margin-top: 2px;
}
.theme_selector > span .fa-close {
	display: none;
}
.theme_selector.active {
	left: 0;
}
.theme_selector.active > span .fa-close {
	display: inline-block;
}
.theme_selector.active > span .fa-gear {
	display: none;
}
.theme_option {
	position: absolute;
	left: 0;
	margin: 0;
	padding: 0;
	top: -72px;
	background: #fff;
	border: 1px solid #e44545;
	border-left: none;
	padding: 4px;
}
.theme_option > li {
	list-style: none;
	margin: 0;
	padding: 0;
	clear: both;
}
.theme_option > li + li {
	padding-top: 4px;
}
.theme_option > li button {
	border: none;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	float: left;
}
.orange_color {
	background: #ff7e28;
}
.red_color {
	background: #ff2b2b;
}
.blue_color {
	background: #258af0;
}
.green_color {
	background: #469715;
}
.icon_blog,
.icon_testimonial {
	display: block;
	margin: 0 auto;
	width: 90px;
	height: 90px;
}
.icon_testimonial {
	background: url(../images/testi.png) center center no-repeat;
}
.icon_blog {
	background: url(../images/blog.png) center center no-repeat;
}
.icon_sm {
	width: 45px;
	height: 45px;
	display: none;
	background-size: 100% 100%;
	float: left;
	margin-left: 10px;
	position: relative;
	left: 5px;
	top: -5px;
}
.clear {
	clear: both;
}
.packagelist {
	margin: 0;
	padding: 0;
}
.packagelist li {
	list-style: none;
	text-align: left;
}
.packageimg {
	width: 40%;
	height: 300px;
	float: left;
	overflow: hidden;
	position: relative;
}
.packageimg img {
	position: absolute;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	min-width: 100%;
	min-height: 100%;
	max-height: 100%;
	width: auto;
	max-width: none;
}
.packageinfo {
	float: left;
	width: 60%;
	text-align: left;
	padding-left: 35px;
}
.package_right {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 180px;
	padding: 30px;
	background: #f6f6f6;
}
.package_detail {
	padding: 20px;
	position: relative;
}
.packagelist_inner {
	border: 1px solid #ccc;
	margin-bottom: 20px;
}
.package_offer {
	padding: 10px 20px;
	background: #eaeaea;
}
.packagestype {
	text-align: left;
	margin: 15px 0;
}
.packagestype h4 {
	text-align: left;
}
.packtype_head {
	padding-top: 15px;
}
.packtype_details:after,
.packtype_head:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}
.packtype_detail > span,
.packtype_head > span {
	display: block;
	float: left;
	width: auto;
	padding: 3px 10px 3px 0;
}
.packagestype .packtype_head span {
	width: 50%;
}
.packtype_detail {
	display: none;
	border-top: 1px solid #ddd;
	margin-bottom: 15px;
}
.pricebox {
	font-size: 25px;
	margin-bottom: 10px;
}
.pricebox .fa-inr {
	font-size: 80%;
}
.oldprice {
	margin-right: 15px;
	padding-right: 18px;
	border-right: 1px solid #e1e1e1;
	text-decoration: line-through;
}
.packageprice {
	color: #000;
	font-weight: 700;
	margin-bottom: 10px;
}
.packageprice > span {
	color: #999;
	font-size: 15px;
	padding-left: 5px;
	font-weight: 400;
}
.oldprice,
.packageprice {
	display: inline-block;
}
.btn-outline {
	border: 2px solid #aaa;
	color: #333;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	height: 45px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 30px;
}
.btn-outline:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}
.btns_box .btn {
	padding-left: 20px;
	padding-right: 20px;
	margin-right: 10px;
}
.package_right_inner {
	display: table;
	height: 100%;
	width: 100%;
}
.package_right_inner > div {
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: middle;
	text-align: center;
}
.inlcudes {
	margin: 0;
	padding: 0;
	text-align: center;
}
.inlcudes > li {
	list-style: none;
	display: block;
	margin: 10px 0;
}
.inlcudes > li > span {
	display: block;
	background: #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	text-align: center;
	padding: 5px 10px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
.inlcudes > li.open > span {
	background: #fafafa;
}
.inludes_list {
	width: 300px;
	left: auto;
	right: 0;
	padding: 15px 20px;
}
.inludes_list > span {
	padding: 5px 0;
	display: block;
}
.inludes_list > span + span {
	border-top: 1px solid #e1e1e1;
}
.cat_img {
	position: relative;
	overflow: hidden;
	/*margin-bottom: 10px;*/
	background: #e6e6e6;
}
/*.cat_img:after{ content:""; width: 100%; height: 10px; background: url(../images/line.png) center center no-repeat; position: absolute;bottom: 0; left: 0;}*/
.cat_img img {
	max-width: 100%;
	transition: 0.3s;
	min-width: 100%;
}
.short_desc {
	height: 37px;
	overflow: hidden;
	line-height: 18px;
	font-size: 13px;
}
.category_inner {
	width: 100%;
	float: left;
	background: #fff;
	padding: 0;
	box-shadow: 0 0px 6px #d9d9d9;
}
.category_inner:hover .cat_img img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.category_inner:hover .btn-default {
	background: #f0562f;
	color: #fff !important;
	border-color: #f0562f;
}
.packages_list {
	padding: 0;
	margin: 0;
	text-align: left;
}
.packages_list > li {
	list-style: none;
	display: inline-block;
}
.package_list_inner .package_img {
	width: 250px;
	height: auto;
	float: left;
	padding: 0;
	margin-bottom: 15px;
}
.package_list_inner .package_img img {
	max-width: 100%;
	height: auto;
	display: block;
}
.package_list_info {
	margin-left: 270px;
}
.title {
	display: inline-block;
	font-size: 18px;
	color: #3e3e3e;
	font-weight: 700;
	margin-bottom: 5px;
	padding-right: 10px;
}
.hotel_detail_popup .star_box {
	display: inline-block;
}
.package_list_inner {
	padding: 15px;
	color: #222;
	background: #fff;
	margin-bottom: 20px;
	border: 1px solid #e7e7e7;
	transition: 0.2s;
}
.package_top {
	width: 100%;
	float: left;
}
.package_list_inner p {
	color: #222;
	margin: 0;
}
.text_sm {
	font-size: 13px;
	color: #3e3e3e;
}
.price_package {
	font-size: 16px;
	color: #999;
	display: inline-block;
}
.starting_from {
	display: block;
	font-size: 13px;
	color: rgba(62, 62, 62, 0.5);
}
.starting_from span {
	display: block;
}
.price_package strong {
	font-size: 24px;
	color: #f0562f;
	display: block;
}
.price_package .fa {
	font-size: 84%;
}
.package_list_inner .packagestype {
	float: left;
	margin: 10px 0;
	width: 48%;
	text-align: left;
}
.package_info_inner {
	float: left;
	width: 100%;
}
.tags {
	padding: 3px 15px 5px;
	margin: 4px 0;
	text-align: center;
	min-width: 48%;
	border: 1px solid transparent;
	display: inline-block;
	font-size: 12px;
	border: 1px solid #c8c8c8;
	border-radius: 20px;
	transition: 0.2s;
}
.page_package_listing .price_package {
	display: block;
	padding-bottom: 10px;
}
.page_package_listing .price_package strong,
.page_package_listing .starting_from {
	display: inline-block;
	vertical-align: middle;
}
.page_package_listing .text_sm {
	display: block;
	margin-bottom: 10px;
}
.itinerary_tab > li:not(.active) .tags {
	background: #fff;
	border-color: #ccc;
	color: #666;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.hote_detail_box {
	height: 340px;
	overflow: auto;
}
.hotel_facilities {
	display: inline-block;
	font-size: 11px;
	margin-right: 20px;
}
.hotel_facilities i.fa {
	display: block;
	width: 30px;
	height: 30px;
	background: #ad94d3;
	color: #fff;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	margin: 0 auto 5px;
	font-size: 14px;
}
.hotel_facilities i.fa:before {
	content: "\f00c";
}
.hotel_facilities[data-value*="reakfast"] i.fa:before {
	content: "\f0f5";
}
.hotel_facilities[data-value*="reakfast"] i.fa:before {
	content: "\f0f5";
}
.facility_title {
	font-weight: 600;
	font-size: 16px;
	color: #000;
	margin-bottom: 5px;
}
.hote_detail_box .facilities {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.package_brief {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 15px;
}
.packagestype .package_brief {
	white-space: inherit;
	text-overflow: inherit;
	text-align: right;
}
.package_themes {
	margin-bottom: 5px;
}
.package_bot {
	margin: 5px -15px -15px;
	padding: 10px 15px;
	background: #f7f0c8;
	border-top: 1px solid #f7f0c8;
}
.bot_left {
	float: left;
}
.bot_right {
	float: right;
}
.inclusions_box {
	text-align: center;
	float: left;
	overflow: hidden;
}
.inclusions {
	padding: 0;
	margin: 0;
}
.inclusions > li {
	text-align: center;
	list-style: none;
	display: inline-block;
	font-size: 11px;

	margin-bottom: 10px;
	padding-left: 0px !important;
	padding-right: 15px;
}
.inclusions > li:before {
	display: none !important;
}
.page_package_listing .inclusions > li {
	float: left;
}
.inclusions > li:first-child {
	padding-left: 0;
}
.inclusions > li:last-child {
	padding-right: 0;
}
.inclusions > li .fa {
	width: 36px;
	height: 42px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
	color: #0077c1;
	font-size: 18px;
	padding: 5px 0;
	text-align: center;
}
.inclusions > li.disabled {
	opacity: 0.3;
}
.detailpage .main_panel_inner > .inclusions_box {
	text-align: left;
	width: 100%;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 15px;
	padding: 0 0 10px;
}
/*.detailpage .inclusions > li {
  text-align: center;
}*/

/*.detailpage .inclusions > li {
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 50%; background:#fff;
  border: 1px solid #f1f1f1;
  line-height: 1.1;
  vertical-align: middle;
  padding: 0 5px;
  margin-right: 1px;
  box-shadow: 0 0 10px inset #dfb800;
}*/
.inclusions > li .fa:before {
	content: "";
	background: url(../images/iconsimg.png) no-repeat;
	display: inline-block;
	background-position: -357px -58px;
	min-width: 35px;
	min-height: 35px;
}
.inclusions > li[data-text="AC Cab"] .fa:before {
	background-position: -5px -7px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="AC Rooms"] .fa:before {
	background-position: -56px -8px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Airport Pick up"] .fa:before,
.inclusions > li[data-text="Flight"] .fa:before,
.inclusions > li[data-text="Airport Pickup and Drop"] .fa:before {
	background-position: -106px -8px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Bar"] .fa:before {
	background-position: -157px -8px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Beach Party With DJ"] .fa:before {
	background-position: -207px -8px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Breakfast"] .fa:before,
.inclusions > li[data-text="Dinner"] .fa:before,
.inclusions > li[data-text="Breakfast and Dinner"] .fa:before,
.inclusions > li[data-text="Breakfast Lunch Dinner"] .fa:before {
	background-position: -257px -9px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Buffet Meals"] .fa:before {
	background-position: -309px -6px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="DJ Night"] .fa:before {
	background-position: -7px -59px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Entry Ticket"] .fa:before {
	background-position: -57px -59px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Ferry"] .fa:before {
	background-position: -106px -56px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Ferry Ticket"] .fa:before {
	background-position: -159px -59px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Game Fishing"] .fa:before {
	background-position: -209px -60px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Hotel"] .fa:before {
	background-position: -257px -58px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Jetski"] .fa:before {
	background-position: -307px -57px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Kayaking"] .fa:before,
.inclusions > li[data-text="Night Kayaking"] .fa:before {
	background-position: -9px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Parasailing"] .fa:before {
	background-position: -57px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Permit"] .fa:before {
	background-position: -107px -109px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Scuba Dive"] .fa:before {
	background-position: -156px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Sightseeing"] .fa:before {
	background-position: -207px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Snorkeling"] .fa:before {
	background-position: -256px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Tempo Traveller"] .fa:before {
	background-position: -308px -108px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Traveller or Coach"] .fa:before {
	background-position: -357px -8px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Trekking"] .fa:before {
	background-position: -357px -58px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="WiFi"] .fa:before {
	background-position: -359px -110px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Travel Desk"] .fa:before {
	background-position: -10px -159px;
	width: 35px;
	height: 35px;
}
.inclusions > li[data-text="Candle light Dinner"] .fa:before {
	background-position: -59px -159px;
	width: 35px;
	height: 35px;
}

.inclusions > li[data-text="Swim Suite"] .fa:before {
	background-position: -158px -157px;
	width: 35px;
	height: 35px;
}
/*
.inclusions > li[data-text="Hotel"] .fa:before {content: ""; background-position: -2px -56px; width: 35px; height: 35px;}
.inclusions > li[data-text="Helper"] .fa:before {content: ""; background-position: -154px -55px; width: 35px; height: 35px;}
.inclusions > li[data-text="Climbing Equipment"] .fa:before {content: ""; background-position: -53px 0; width: 35px; height: 35px;}
.inclusions > li[data-text="Horses"] .fa:before {content: ""; background-position: -53px -56px; width: 35px; height: 35px;}
.inclusions > li[data-text="Monasteries"] .fa:before {content: ""; background-position: -450px -54px; width: 35px; height: 35px;}
.inclusions > li[data-text="Temples"] .fa:before {content: ""; background-position: -450px -106px; width: 35px; height: 35px;}
.inclusions > li[data-text="River Rafting"] .fa:before {content: "";background-position: -202px -106px; width: 35px; height: 35px;}
.inclusions > li[data-text="Rock Climbing"] .fa:before {content: ""; background-position: -53px 0; width: 35px; height: 35px;}
.inclusions > li[data-text="Hiking"] .fa:before {content: ""; background-position: -103px -55px; width: 35px; height: 35px;}
.inclusions > li[data-text="Rappeling"] .fa:before { content: ""; background-position: -152px -105px; width: 35px; height: 35px;}
.inclusions > li[data-text="Sleeping Bags"] .fa:before {content: ""; background-position: -551px -106px; width: 35px; height: 35px;}
.inclusions > li[data-text="Wet Suites"] .fa:before {content: "";background-position: -603px -57px; width: 35px; height: 35px;}
.inclusions > li[data-text="English Speaking Guide"] .fa:before {content: "";background-position: -452px 0; width: 35px; height: 35px;}
.inclusions > li[data-text="Hard Tail Mountain Bikes"] .fa:before {content: "";background-position:-202px -56px; width:35px;height:35px;}
.inclusions > li[data-text="Safety Helmet"] .fa:before {content: ""; background-position: -51px -106px; width: 35px; height: 35px;}
.inclusions > li[data-text="Munchies (chocolates and nuts)"] .fa:before {content: ""; background-position: -352px -53px; width: 35px;
  height: 35px;}
.inclusions > li[data-text="Mtb Technician"] .fa:before {
  content: "";
}
.inclusions > li[data-text="Backup Vehicles"] .fa:before {
  content: "";
  background-position: -250px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Kitchen Equipment"] .fa:before {
  content: "";
  background-position: -553px -55px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Wildlife Fees"] .fa:before {
  content: "";
  background-position: -604px -2px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Flight"] .fa:before {
  content: "";
  background-position: -351px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Activity"] .fa:before {
  content: "";
  background-position: -501px -106px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="backup vehicle"] .fa:before {
  content: "";
  background-position: -247px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Backup Vehicle"] .fa:before {
  content: "";
  background-position: -247px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Transfers"] .fa:before {
  content: "";
}
.inclusions > li[data-text="Safari"] .fa:before {
  content: "";
}
.inclusions > li[data-text="Guide"] .fa:before {
  content: "";
  background-position: -253px -54px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Sports Activities"] .fa:before {
  content: "";
  background-position: -501px -106px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Sightseeing"] .fa:before {
  content: "";
  background-position: 0 -108px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Lunch"] .fa:before {
  content: "";
  background-position: -502px -54px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Porter"] .fa:before {
  content: "";
  background-position: -252px -106px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Breakfast"] .fa:before {
  content: "";
  background-position: -151px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Dinner"] .fa:before {
  content: "";
  background-position: -502px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Camel Ride"] .fa:before {
  content: "";
  background-position: -102px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Bike Mechanic"] .fa:before {
  content: "";
  background-position: -201px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Bike"] .fa:before {
  content: "";
  background-position: -404px -53px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Cook"] .fa:before {
  content: "";
  background-position: -1px 0;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Meals"] .fa:before {
  content: "";
  background-position: -502px -1px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Permit"] .fa:before {
  content: "";
  background-position: -162px -153px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Ponies"] .fa:before {
  content: "";
  background-position: -151px 0;
  width: 18px;
  height: 18px;
}
.inclusions > li[data-text="Transport"] .fa:before {
  content: "";
  background-position: -228px -153px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Oxygen Cylinder"] .fa:before {
  content: "";
  background-position: -104px -153px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Monument Entrances"] .fa:before {
  content: "";
  background-position: -55px -154px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Kayaking"] .fa:before {
  content: "";
  background-position: -5px -154px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Transportation"] .fa:before {
  content: "";
  background-position: -300px -155px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Shikara Ride"] .fa:before {
  content: "";
  background-position: -368px -155px;
  width: 35px;
  height: 35px;
}
.inclusions > li[data-text="Gondola Ride"] .fa:before {
  content: "";
  background-position: -426px -156px;
  width: 35px;
  height: 35px;
}*/
.inc_text {
	display: inline-block;
	padding: 0 10px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 11px;
	position: relative;
}
.inc_text:after,
.inc_text:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-top: 1px solid #e1e1e1;
	width: 500%;
}
.inc_text:before {
	left: -500%;
}
.inc_text:after {
	right: -500%;
}
.book_btn,
.btn_detail {
	background: #f0562f;
	border-radius: 0;
	color: #fff;
	height: 44px;
	padding: 10px 20px;
	font-size: 15px;
	border: 1px solid transparent;
	width: auto;
}
/*.btn_enquire {
  background: #fff;
  border: 1px solid #f0562f;
  color: #f0562f;
  border-radius: 0;
  height: 44px;
  padding: 10px 20px;
  font-size: 15px;
  margin-left: 5px;
  width: auto;
}*/
.book_btn:hover,
.btn_detail:hover,
.btn_enquire:hover {
	/*background: #0077c1;
  color: #fff;
  border-color: transparent;*/
}
.bot_right .btn_groups {
	margin-bottom: 10px;
	margin-top: 10px;
}
.action_btn .btn_detail,
.action_btn .btn_enquire,
.btn_groups .btn_detail,
.btn_groups .btn_enquire {
	font-size: 16px;
	font-weight: 500;
	padding: 6px 20px;
	height: 36px;
	min-width: 140px;
	border-radius: 30px;
	border: 1px solid #f0562f;
	color: #fff;
	background: #f0562f;
}
.action_btn .btn_detail,
.btn_groups .btn_detail {
	border: 1px solid #0077c1;
	background: #0077c1;
	color: #fff;
}
.action_btn .btn_detail:hover,
.btn_groups .btn_detail:hover {
	background: #fff;
	color: #0077c1;
}
.action_btn .btn_enquire:hover,
.btn_groups .btn_enquire:hover {
	background: #f0562f;
	color: #fff;
}
.package_top .package_duration {
	display: block;
	font-size: 13px;
	color: #f0562f;
	font-weight: 400;
	position: relative;
	border: none;
}
.package_top .cities {
	padding-top: 15px;
	padding-left: 50px;
	display: block;
	font-size: 13px;
	color: #838383;
	font-weight: 400;
	position: relative;
	border: none;
}
.package_top .cities strong {
	color: #3e3e3e;
	position: absolute;
	left: 0;
}
.package_top .cities i {
	color: #0077c1;
}
.booking_box label.departuretitle {
	font-size: 14px;
	font-weight: 500;
}
.booking_box .checkbox > span,
.booking_box .radiobtn > span {
	font-weight: 700;
}
.detail_package_box {
	margin-bottom: 30px;
	display: flex;
}
.package_top .package_duration .fa {
	font-size: 14px;
}
.booking_box .traveller_pricing_inner .traveller_price {
	width: 100%;
	display: block;
}
.left_panel {
	width: 270px;
	float: left;
}
.left_panel > .sidebar {
	border: 1px solid #ddd;
}
.left_panel + .main_panel {
	margin-left: 310px;
}
.main_panel_inner {
	float: left;
	width: 100%;
}
.old_price {
	text-decoration: line-through;
	font-size: 23px;
	font-weight: 400;
}
.booking_fields {
	border-radius: 3px;
	padding: 10px 10px 0;
}
.booking_fields legend {
	border: none;
	background: url(../images/select-travel.png) 5px center no-repeat;
	margin-bottom: 5px;
	width: auto;
	padding: 6px 10px 6px 30px;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 700;
}
.booking_fields .row {
	margin: 0 -5px;
}
.booking_fields .row > div {
	padding-left: 5px;
	padding-right: 5px;
}
.list_row {
	margin-bottom: 15px;
}
.list_row:after {
	content: "";
	display: block;
	clear: both;
}
.list_row > label {
	display: block;
	float: left;
	width: 100px;
	color: #222;
	padding-top: 2px;
}
.list_row_right {
	margin-left: 100px;
}
.activ_list {
	margin: 0;
	padding: 0;
}
.activ_list > li {
	list-style: none;
	display: inline-block;
	padding: 3px 15px 4px;
	margin: 0 3px 3px 0;
	background: #5073b3;
	border-radius: 15px;
	font-size: 13px;
	color: #fff;
}
.cities_list {
	padding-top: 2px;
}
.detail_page .activ_list > li {
	background: #fff;
	border: 1px solid #c8c8c8;
	color: #3e3e3e;
}
.secbox {
	text-align: left;
	margin-bottom: 25px;
}
.sidetitle {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
	border-bottom: 1px solid #ffd800;
	padding-bottom: 5px;
}
.secbox ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.secbox ul li label {
	display: block;
	font-weight: 400;
	font-size: 13px;
	position: relative;
}
.secbox ul li label span {
	display: block;
	padding: 4px 5px 4px 25px;
	line-height: 18px;
}
.secbox ul li label span:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1px solid #c8c8c8;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	position: absolute;
	left: 0;
	top: 6px;
}
.secbox ul li label input {
	opacity: 0;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}
.secbox ul li label input[type="checkbox"]:checked + span:before {
	border: 1px solid #f0562f;
}
.secbox ul li label input[type="checkbox"]:checked + span:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 10px;
	border-right: 2px solid #f0562f;
	border-bottom: 2px solid #f0562f;
	position: absolute;
	left: 5px;
	top: 8px;
	transform: rotate(35deg);
}
.btncenter {
	text-align: center;
}
.clearbtn {
	border-radius: 25px;
	color: #fff;
	background: #0077c1;
	border: 1px solid #0077c1;
	width: 100px;
	line-height: 28px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
}
.clearbtn:hover {
	background: #fff;
	color: #0077c1;
}
.applybtn {
	border-radius: 25px;
	color: #fff;
	background: #f0562f;
	border: 1px solid #f0562f;
	width: 100px;
	line-height: 28px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
}
.applybtn:hover {
	background: #fff;
	color: #f0562f;
}
.leftsec {
	width: 64%;
	padding-right: 20px;
	border-right: 1px solid #ddd;
	float: left;
}
.sidebarsec {
	padding-left: 20px;
	width: 36%;
	float: right;
}
.blog-detail-img {
	width: 100%;
	max-width: 100%;
	margin: 0 0 15px;
}
.blog-detail-img img {
	width: 100%;
}
.datename {
	opacity: 0.5;
	margin-bottom: 5px;
}
.iframe-blog {
	padding: 0;
	width: 100%;
}
.blog_detail_container iframe {
	width: 100%;
}
.iframe-blog .container {
	margin: 0;
	padding: 0;
}
.iframe-blog .content-section {
	padding: 0;
}
.iframe-blog .customeFormOuter .form-group:nth-child(12) {
	width: 42%;
	float: left;
	padding-right: 5px;
}
.iframe-blog .customeFormOuter .form-group:nth-child(13) {
	width: 58%;
	float: left;
}
.iframe-blog .customeFormOuter .form-group:nth-child(4),
.iframe-blog .customeFormOuter .form-group:nth-child(5),
.iframe-blog .customeFormOuter .form-group:nth-child(7),
.iframe-blog .customeFormOuter .form-group:nth-child(8) {
	width: 50%;
	float: left;
}
.iframe-blog .customeFormOuter .form-group:nth-child(5),
.iframe-blog .customeFormOuter .form-group:nth-child(8) {
	padding-left: 5px;
}
.relatedblog {
	margin-top: 25px;
}
.page_home .header_search_outer {
	max-height: inherit;
}
::-moz-selection {
	text-shadow: none;
	background: #fcfcfc;
	background: rgba(255, 126, 40, 0.2);
}
::selection {
	text-shadow: none;
	background: #fcfcfc;
	background: rgba(255, 126, 40, 0.2);
}
img::selection {
	background: 0 0;
}
img::-moz-selection {
	background: 0 0;
}
body {
	webkit-tap-highlight-color: rgba(255, 126, 40, 0.2);
}
.suggestionOuter {
	position: relative;
}
#suggestionList {
	position: absolute;
	top: 100%;
	left: 15px;
	right: 15px;
}
#suggestionList > select {
	background: #fff;
	color: #333;
	width: 100%;
	font-size: 14px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	overflow: auto;
}
#suggestionList > select option {
	padding-left: 10px;
	padding-right: 10px;
}
.itn_img {
	/*margin-right: 20px;*/
	margin-bottom: 10px;
	float: left;
	width: 100%;
}
.itn_img img {
	/* min-width: 100%;*/
	/* max-width: 80%;*/
	/*height: 250px;*/
}
.fancybox-skin {
	background: #fff !important;
}
.fancybox-skin body,
.fancybox-skin html {
	height: auto !important;
}
.title_package {
	font-size: 20px;
	color: #222;
	margin-bottom: 5px;
	font-weight: 600;
}
.booking_preview .list_view_small .price {
	display: inline-block;
	font-size: 24px;
	margin-left: 4px;
}
.preview_img {
	margin-bottom: 5px;
}
.booking_preview {
	margin-top: 43px;
}
.booking_box_inner .price_box {
	margin: 0;
	padding: 0;
	border: none;
	text-align: left;
	width: auto;
	float: none;
	display: block;
}
.incexctab .nav li a {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}
.booking_box:not(.booking_inner) {
	min-height: 515px;
	margin-bottom: 0;
	background: 0 0;
	border: none;
}
.required {
	color: red;
	font-size: 12px;
}
.successMsg {
	color: green;
	line-height: 32px;
	background: #d9ead3;
	border-radius: 8px;
	border: 1px solid #d0e2c9;
	text-align: center;
	margin-bottom: 15px;
	box-sizing: border-box;
	overflow: hidden;
	clear: initial;
	width: 100%;
}
.errorMsg {
	color: #ff324b;
	line-height: 44px;
	background: #efbcc2;
	border-radius: 8px;
	border: 1px solid #ff324b;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
	box-sizing: border-box;
}
.validation_error {
	color: #c00;
}
.scuccess-msg {
	color: #fff;
}
.newsletter_input .scuccess-msg {
	color: #b3d968 !important;
}
.goog-te-combo option {
	background: #fff;
}
.flight_list {
	margin: 0;
	padding: 0;
}
.flight_list > li {
	list-style: none;
	padding: 5px 0;
	display: inline-block;
	width: 48%;
}
.hote_category {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	padding: 5px 15px;
	background: #5073b3;
	color: #fff;
	display: inline-block;
}
.booking_preview .price_box {
	width: auto;
}
.packages_page {
	padding-top: 110px;
}
.contact_form {
	padding-top: 0;
	text-align: left;
}
.lang-converter {
	height: 40px;
	position: relative;
	overflow: hidden;
}
.skiptranslate {
	position: relative;
}
.skiptranslate:after {
	content: "";
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	top: 14px;
	right: 5px;
	border-right: 1px solid #3e3e3e;
	border-bottom: 1px solid #3e3e3e;
	transform: rotate(45deg);
	z-index: 9;
}
.translated-ltr {
	margin-top: 40px;
}
.translated-ltr .navbar-fixed-top {
	top: 40px;
}
.packages_page {
	padding-top: 0;
}
.packlist {
	padding-top: 50px;
}
.content_view:after {
	content: "";
	display: block;
	clear: both;
}
.content_view {
	margin: 0;
	padding: 0;
	text-align: left;
}
.grid_views {
	margin: 0;
	padding: 0;
}
.grid_views > li {
	list-style: none;
	border-top: 1px solid #ddd;
	padding: 30px 0;
}
.grid_views > li:first-child {
	border-top: none;
}
.grid_views > li:after {
	content: "";
	display: block;
	clear: both;
}
.grid_views .grid_img {
	width: 200px;
	float: left;
}
.grid_views .grid_img img {
	max-width: 100%;
	max-height: 100%;
}
.grid_img + .grid_info {
	margin-left: 220px;
}
.grid_views * {
	text-align: left;
}
.grid_views h4 {
	font-size: 25px;
}
.rent_price {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	display: inline-block;
	border: 1px solid #aaa;
	background: #fff;
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	padding: 5px 15px;
}
.grid_views .btn-outline {
	border-width: 1px;
	font-size: 16px;
	font-weight: 600;
	text-transform: none;
	padding: 5px 15px;
	height: auto;
}
.content_view.template_2 .grid_img {
	width: 400px;
	border: 1px solid #ddd;
	padding: 15px;
}
.content_view.template_2 .grid_views > li {
	border: none;
}
.content_view.template_2 .grid_img + .grid_info {
	margin-left: 430px;
}
.content_view.template_2 .grid_info p {
	font-size: 18px;
}
.content_view.template_2 .grid_info .rent_price {
	background: #777;
	color: #fff;
	box-shadow: none;
	border: none;
}
.content_view.template_2 .grid_info h4 {
	font-size: 30px;
}
.content_view.template_3 .grid_img {
	width: 400px;
	border: 1px solid #ddd;
	float: right;
}
.content_view.template_3 .grid_img + .grid_info {
	margin-right: 430px;
	margin-left: 0;
}
.content_view.template_3 .grid_info p {
	font-size: 18px;
}
.content_view.template_3 .grid_info .rent_price {
	background: #777;
	color: #fff;
	box-shadow: none;
	border: none;
}
.content_view.template_3 .grid_info h4 {
	font-size: 30px;
}
.content_view.template_4 .grid_img {
	width: auto;
	float: none;
	height: 240px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	padding: 15px;
	text-align: center;
}
.content_view.template_4 .grid_img + .grid_info {
	margin-left: 0;
}
.content_view.template_4 .grid_views {
	margin: 0 -15px;
}
.content_view.template_4 .grid_views > li {
	width: 33.333%;
	float: left;
	padding: 15px;
	border: none;
}
.content_view.template_4 .grid_views > li:nth-child(3n + 4) {
	clear: left;
}
.content_view.template_4 .grid_views .btn-outline {
	background: #444;
	border: none;
	color: #fff;
}
.content_view.template_5 .grid_img {
	width: 130px;
	float: left;
	height: 140px;
	overflow: hidden;
	text-align: center;
}
.content_view.template_5 .grid_img img {
	max-height: none;
}
.content_view.template_5 .grid_img + .grid_info {
	margin-left: 145px;
}
.content_view.template_5 .grid_views h4 {
	font-size: 16px;
	margin-bottom: 10px;
}
.content_view.template_5 .grid_views {
	margin: 0 -15px;
}
.content_view.template_5 .grid_views > li {
	width: 33.333%;
	float: left;
	padding: 15px;
	border: none;
}
.content_view.template_5 .grid_views > li:nth-child(3n + 4) {
	clear: left;
}
.content_view.template_5 .grid_views .btn-outline {
	background: 0 0;
	border: none;
	color: #f0562f;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	box-shadow: none !important;
}
.grid_views > li > div {
	border: 1px solid #ddd;
	padding: 15px;
}
.grid_views > li > div:after {
	content: "";
	display: block;
	clear: both;
}
.detail_img {
	width: 50%;
	float: left;
}
.detail_img img {
	max-width: 100%;
}
.list_detail_view * {
	text-align: left;
}
.detail_info {
	width: 100%;
	float: left;
	padding-left: 20px;
}
.detail_info h2 {
	margin-bottom: 15px;
	padding: 0;
	font-size: 30px;
}
.detail_info .rent_price {
	display: block;
	border-left: none;
	border-right: none;
	box-shadow: none;
	border-color: #ddd;
	padding: 10px 0;
}
.detail_tmp_2 .detail_img {
	border: 1px solid #aaa;
}
.detail_tmp_2 .detail_info .rent_price {
	display: inline-block;
	border: none;
	background: #4f97f0;
	color: #fff;
	padding: 10px 20px;
	font-size: 20px;
}
.detail_tmp_3 .detail_img {
	width: auto;
	float: none;
	text-align: center;
}
.detail_tmp_3 .detail_info h2 {
	display: inline-block;
	margin: 0 15px 0 0;
}
.detail_tmp_3 .detail_info {
	width: auto;
	padding: 20px;
}
.detail_tmp_3 .detail_info .rent_price {
	display: inline-block;
	padding: 8px 20px;
	font-size: 19px;
	margin: -10px 0 0;
	float: right;
	border: none;
	background: #4f97f0;
	color: #fff;
}
.detail_tmp_5 .detail_img {
	width: 200px;
}
.detail_tmp_5 .detail_info h2 {
	display: inline-block;
	margin: 0 15px 0 0;
}
.detail_tmp_5 .detail_info {
	width: auto;
	padding: 0;
	float: none;
	margin-left: 220px;
}
.detail_tmp_5 .detail_info .rent_price {
	display: inline-block;
	padding: 8px 20px;
	font-size: 19px;
	margin: -10px 0 0;
	float: right;
	border: none;
	background: #4f97f0;
	color: #fff;
}
#CDSWIDSSP {
	width: 100% !important;
}
.detail_info .rent_price {
	display: block;
	border-left: none;
	border-right: none;
	box-shadow: none;
	border-color: #ddd;
	padding: 10px 0;
}
.container_inner .customer_img {
	float: left;
	margin-top: -10px;
	margin-bottom: 10px;
}
.testimonial_text {
	margin-left: 130px;
}
.testimonial_listing {
	padding: 25px 0;
	border-top: 1px solid #ddd;
}
.testimonial_listing:first-child {
	border-top: none;
}
.testimonial_listing .customer_img {
	margin-left: 0;
}
.cust_name_box {
	height: 100%;
	width: 100%;
	background: #8283cc;
	color: #fff;
	line-height: 80px;
	font-size: 30px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
}
.testimonial_list_outer .customer_img .cust_name_box {
	line-height: 88px;
}
.formarea #captcha_image img {
	max-height: 34px;
}
.error {
	color: red;
}
.itenery_info.it_fo {
	margin-right: 0;
}
.destination_packages_panel > h2 {
	position: relative;
	text-align: center;
	color: #000;
	padding-top: 20px;
	font-size: 26px;
}
.destinationdetails .all_btn_box {
	top: 5px;
}
.all_btn_box .btn:hover {
	background: #fef7d3;
	color: #f26122 !important;
}
.btn::focus {
	background: #fef7d3 !important;
	color: #f26122 !important;
}

.testimonial_detail_view .cust_name_box {
	line-height: 190px;
	font-size: 40px;
}
.testimonial_detail_view {
	margin-top: 0;
}
.testimonials_box {
	width: 900px;
	margin: 50px auto 0;
	color: #fff;
}
.testimonials_box p {
	color: #fff;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPInformation {
	padding: 0;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPBranding {
	margin-bottom: 5px;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPH11 {
	padding: 3px 0;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPBranding dt.widSSPTagline {
	margin-bottom: 3px;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPLegal {
	margin: 0 2px;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPAll {
	margin-bottom: 3px;
}
.testimonials_box #CDSWIDSSP .widSSPData {
	border: none !important;
	padding: 0;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPBranding dt {
	margin: 0;
}
.testimonials_box #CDSWIDSSP .widSSPData .widSSPTrvlRtng .widSSPOverall {
	margin-bottom: 5px;
}
#CDSWIDEXC {
	margin: 10px 0 0 !important;
	width: 100% !important;
}
.bank_detail_box {
	font-size: 17px;
}
.price_table_box {
	width: 350px;
	float: right;
	border-top: 1px solid #ccc;
	margin-left: 10px;
	margin-bottom: 5px;
}
.price_table_box td,
.price_table_box th {
	padding: 6px;
	border-bottom: 1px solid #ccc;
}
.aboutsec {
	/*background:#fff;*/
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.about_img {
	border-radius: 15px;
	float: left;
	width: 50%;
	max-width: 100%;
	position: relative;
	overflow: hidden;
	/* padding-right: 20px;*/
}
.about_img img {
	width: 100%;
}
.textab {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 28px;
	color: #fff;
	/* mix-blend-mode: lighten; */
	width: 100%;
	padding: 30px 30%;
	line-height: 1.3;
}
.about_text {
}
.about_img + .about_text {
	margin-left: 50%;
	/*padding-left: 20px;*/
}
.accept {
	text-align: center;
	width: 100%;
	float: left;
	padding: 10px 0;
}
.accept img {
	display: inline-block;
	max-height: 40px;
}
.members {
	width: 16%;
	float: right;
}
.goog-te-combo option {
	background: #fff !important;
}
.accept_members {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 0;
	margin-top: 10px;
}
.accept_members p {
	color: #999;
	font-weight: 600;
	text-transform: uppercase;
}
.mobile_search_area .search_tabs a {
	color: #666;
}
.detail_title {
	font-size: 30px;
	font-weight: 400;
}
.detail_title > span {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: #777;
}
.detail_title span:not(.package_subtitle) {
	margin-top: 5px;
	color: #f0562f;
	display: block;
}
.heading,
.info_panel .no_line {
	font-size: 20px;
	color: #f0562f;
	font-weight: 500;
	margin-bottom: 10px;
}
.goog-te-gadget .goog-te-combo {
	background: 0 0;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 22px;
	padding: 0 5px;
	font-size: 14px;
	color: #3e3e3e;
	line-height: 20px;
	font-weight: 400;
	font-family: lato;
}
.goog-te-gadget .goog-te-combo option {
	color: #3e3e3e;
}
.desti_tab_img {
	width: 50%;
	max-width: inherit;
	float: right;
	margin: 0 0 10px 40px;
}
.desti_tab_img img {
	width: 100%;
}
.thumb_img {
	width: 70px;
	height: 70px;
	background: #ccc;
	float: left;
	overflow: hidden;
}
.book_pack_info {
	margin-left: 90px;
}
.booking_top_left {
	float: left;
}
.booking_top_right {
	float: right;
}
.booking_top {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.label_tag {
	font-size: 12px;
	padding: 5px 10px;
	display: inline-block;
	background: #555;
	color: #fff;
	border-radius: 3px;
}
.hotel_tag {
	background: #f0562f;
}
.booking_top_right .price {
	font-weight: 500;
	color: #222;
	font-size: 30px;
	margin-top: 15px;
	float: right;
}
.fnav_title {
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}
.accomodation_text {
	background: #f6f6f6;
	padding: 20px 25px;
	margin-bottom: 20px;
}
.accomodation_text .heading {
	font-size: 15px;
	margin-bottom: 5px;
}
.accomodation_text p {
	margin-bottom: 0;
	font-size: 14px;
	color: #3b96cf;
}
.price_enquire {
	font-size: 20px;
	font-weight: 500;
	color: #222;
	padding-top: 3px;
}
.page_paynow,
.page_thankyou {
	padding-top: 0;
}
.page_paynow .banner_inner,
.page_thankyou .banner_inner {
	display: none;
}
.testimonial_list_outer .customer_name {
	padding-top: 15px;
}
.price_selector {
	width: auto;
}
.price_selector label {
	margin-bottom: 0;
}
.booking_pricing table td {
	background: #fff;
	padding: 7px 15px;
	border-top: 1px solid #ddd;
}
.booking_pricing table th {
	text-transform: uppercase;
	font-size: 13px;
	padding: 7px 15px;
}
.booking_pricing table th:nth-child(2) {
	background: #444;
	color: #fff;
}
.booking_pricing table th:nth-child(3) {
	background: #555;
	color: #fff;
}
.booking_pricing table th:nth-child(4) {
	background: #666;
	color: #fff;
}
.booking_pricing table tr td:first-child {
	border-left: 1px solid #ddd;
	background: #f1f1f1;
}
.booking_pricing table tr td:last-child {
	border-right: 1px solid #ddd;
}
.booking_pricing table tr td:nth-child(2):not(.table_total_amnt) {
	background: #f9f9f9;
}
.booking_pricing table td.table_total_amnt {
	background: #4864b6;
	border-color: #4864b6 !important;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}
.booking_pricing table td.table_booking_amnt {
	background: #eaeef8 !important;
	border-color: #c1cae4 !important;
	border-bottom: 1px solid #c1cae4;
	text-align: center;
	color: #000;
}
.table_total_amnt .price {
	margin-left: 10px;
}
.re_captcha {
	cursor: pointer;
	height: 30px;
	padding: 5px;
}
.datepicker .disabled.day {
	background: #fafafa;
	color: #999;
	cursor: not-allowed !important;
}
.traveller_pricing {
	margin-bottom: 15px;
}
.price_table.traveller_pricing {
	border: none;
	width: 100%;
}
.price_table .traveller_pricing_inner {
	float: left;
	width: 25%;
	vertical-align: top;
}
.price_table .traveller_pricing_inner > div {
	padding: 0 5px;
	background: #fff;
	border-bottom: 0;
}
.price_table .traveller_label {
	width: 50%;
	float: left;
	font-weight: 500;
	color: #000;
}
.price_table .traveller_label_price {
	width: 50%;
	float: left;
}
.price_table .price_selector {
	width: 100%;
	float: left;
	position: relative;
}
.price_table .price_selector:after {
	content: "\f105";
	display: block;
	position: absolute;
	top: -2px;
	right: -25px;
	font-size: 20px;
	color: #aaa;
	font-family: FontAwesome;
}
.price_table .price_selector::after {
	display: none;
}
.price_table .price_view {
	width: 40%;
	float: left;
}
.price_table .custom_select,
.price_table input.form-control {
	width: 25%;
	float: right;
	position: relative;
	display: inline-block;
}
.price_table .custom_select:after {
	content: "\f107";
	position: absolute;
	top: 1px;
	right: 1px;
	font-family: FontAwesome;
	background: #f1f1f1;
	width: 17px;
	line-height: 30px;
	text-align: center;
	border-radius: 0 3px 3px 0;
}
.price_table .custom_select select,
.price_table input.form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 32px;
	padding: 4px;
	border-radius: 3px;
	font-size: 13px;
	text-align: center;
}
.price_table .custom_select select option {
	text-align: center;
}
.price_table .custom_select select::-ms-expand {
	display: none;
}
.price_table .price_selector {
	text-align: right;
}
.price_table .price_selector label {
	float: left;
	font-weight: 500;
	text-align: center;
	width: 100%;
	padding: 0;
}
.price_table .price_view {
	text-align: right;
	padding-top: 3px;
}
.booking_box .price_table .custom_select {
	width: 100%;
	clear: both;
}
.booking_box .price_table .custom_select select {
	width: 100%;
	border: 1px solid #c8c8c8;
	box-shadow: none;
	background: 0 0;
	position: relative;
	z-index: 2;
}
.booking_box .price_table .price_view {
	text-align: center;
	padding-top: 3px;
	width: 100%;
	display: block;
	font-weight: 700;
}
.booking_box .data_category_box .form-control {
	box-shadow: none;
	background: #fff url(../images/calendericon.png) 10px center no-repeat;
	padding-left: 40px;
}
.defaultprice {
	min-width: 50%;
}
.traveller_pricing:not(.price_table) {
	margin-left: -5px;
	margin-right: -5px;
}
.traveller_pricing:not(.price_table):after {
	content: "";
	display: block;
	clear: both;
}
.traveller_pricing:not(.price_table) .traveller_pricing_inner {
	width: 33.333%;
	float: left;
	padding: 0 5px;
}
.traveller_pricing:not(.price_table) .traveller_pricing_inner > div:not(.traveller_price) {
	display: none;
}
.traveller_pricing:not(.price_table) .traveller_price .price_view {
	display: none;
}
.google_translator {
	position: relative;
}
.destination_img {
	position: relative;
}
.starting_price_info {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 50px 0 0;
	background: -moz-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0) 16%,
		rgba(0, 0, 0, 0.2) 42%,
		rgba(0, 0, 0, 0.29) 54%,
		rgba(0, 0, 0, 0.65) 100%
	);
	background: -webkit-linear-gradient(
		top,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0) 16%,
		rgba(0, 0, 0, 0.2) 42%,
		rgba(0, 0, 0, 0.29) 54%,
		rgba(0, 0, 0, 0.65) 100%
	);
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0) 16%,
		rgba(0, 0, 0, 0.2) 42%,
		rgba(0, 0, 0, 0.29) 54%,
		rgba(0, 0, 0, 0.65) 100%
	);
	color: #fff;
	font-size: 18px;
}
.starting_price {
	float: left;
	padding: 10px 15px;
	white-space: nowrap;
	text-align: left;
	font-weight: 500;
}
.starting_price > strong {
	display: block;
	font-size: 12px;
	font-weight: 400;
}
.starting_price .fa {
	font-size: 83%;
}
.browse_btn {
	float: right;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 15px;
	background: #363785;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: 0.2s;
}
.browse_btn:hover {
	background: #f0562f;
	color: #fff;
}
.paging-custom li {
	display: inline-block;
	padding: 0 2px;
	vertical-align: top;
	font-size: 13px;
}
.paging-custom li * {
	background: 0 0;
}
.paging-custom li div,
.paging-custom li input,
.paging-custom li span {
	display: block;
	padding: 3px 10px;
	background: #fff;
	border: 1px solid #ccc;
	height: 30px;
	line-height: 22px;
	transition: 0.2s;
}
.paging-custom li div:hover,
.paging-custom li input:hover,
.paging-custom li span:hover {
	border-color: #999;
}
.paging-custom li div {
	position: relative;
}
.paging-custom li div > input {
	position: absolute;
	left: 0;
	top: 0;
	height: 30px;
	width: 100%;
	display: block;
	border: none;
	background: 0 0;
	font-size: 0;
	opacity: 0;
}
.paging-custom li span,
.paging-custom li span:hover {
	background: #f0562f;
	color: #fff;
	border-color: #f0562f;
}
div#page-top {
	top: 90px !important;
}
.destination_view .starting_price_info {
	display: block;
}
.popup_inner {
	padding: 20px 30px;
}
.popup_slider #big_img.owl-carousel .owl-item img {
	height: 340px;
}
.hotel_detail_popup {
	height: 390px;
}
.note_text {
	text-align: right;
	margin-bottom: 10px;
	margin-top: -10px;
	color: #000;
	font-weight: 500;
}
.note_text strong {
	font-weight: 500;
}
.share_panel {
	padding: 15px 20px;
	margin-top: 30px;
	background: #f2f2f2;
}
.share_panel > span {
	display: block;
	float: left;
	padding-top: 4px;
	padding-right: 10px;
	font-weight: 500;
	color: #222;
	font-size: 17px;
}
.office_address {
	width: 35%;
	float: left;
	padding: 30px;
}
.office_address p {
	margin-bottom: 10px;
	color: #222;
}
.office_address strong {
	font-weight: 500;
	color: #000;
	display: inline-block;
	min-width: 60px;
	min-height: 1px;
}
.office_map {
	width: 65%;
	float: left;
}
.office_map iframe {
	width: 100%;
	height: 300px;
	display: block;
}
.contact_box {
	background: #f2f2f2;
	margin-bottom: 20px;
	padding: 5px;
}
.contact_box:after {
	content: "";
	display: block;
	clear: both;
}
.office_title {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
	color: #f0562f;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.office_name {
	font-size: 18px;
	color: #0077c1;
	font-weight: 700;
	margin-bottom: 10px;
}
.custom_tabs.incexctab .nav li.active a,
.custom_tabs.incexctab .nav li.active a:hover {
	background: #363785 !important;
	color: #fff;
}
.custom_tabs.incexctab .nav li a {
	font-size: 15px;
	padding-left: 12px;
	padding-right: 12px;
}
.custom_tabs .nav-tabs {
	border-bottom: none;
	margin-bottom: 0;
}
.detail_testimonials_panel {
	margin: 50px 0 0;
}
.detail_testimonials_panel .testimonial-item {
	background: 0 0;
	border: none;
}
.detail_testimonials_panel .heading {
	margin-bottom: 30px;
}
.testimonial_slider .owl-page.active span {
	background: #363785;
}
.relatedpack {
	background: #f2f2f2;
	padding: 40px 0;
}
.actlist .activtiy_img {
	width: 100%;
	height: 200px;
	position: relative;
}
.actheading {
	position: absolute;
	bottom: 0;
	padding: 30px 15px 15px;
	width: 100%;
	color: #fff;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
}
.actheading span {
	font-size: 18px;
	display: inline-block;
	font-weight: 700;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: calc(100% - 110px);
}
.actheading small {
	padding-top: 5px;
	font-size: 13px;
}
.smbox {
	background: #fff;
	padding: 15px;
	clear: both;
	width: 100%;
	float: left;
	min-height: 115px;
}
.relatedpack .inclusions li {
	position: relative;
}
.relatedpack .inclusions li:before {
	content: "";
	height: 20px;
	display: inline-block;
	border-left: 1px solid #aeaeae;
	position: absolute;
	left: 0;
	top: 12px;
}
.relatedpack .inclusions li:first-child:before {
	display: none;
}
.page_destination_detail .grey_box_full {
	margin-bottom: 0;
	padding-bottom: 0;
	/*padding-top: 20px;*/
}
.page_destination_listing .container_inner .destination_view .dest_info h3 a {
	color: #3e3e3e;
	font-size: 23px;
}
.page_destination_listing .dest_info .btn {
	padding: 8px 20px 6px;
	border-radius: 25px;
}
.yellow_bg {
	background: #f0562f;
	color: #fff;
}
.red_bg {
	background: #0077c1;
	color: #fff;
}
.red_bg {
	border-color: #f0562f;
}
.filterlink {
	margin-top: 15px;
	background: #0077c1;
	color: #fff;
	cursor: pointer;
	padding: 10px;
	border-radius: 3px;
	display: none;
}
.teamlistview .li-team {
	margin-bottom: 30px;
}
.tcont {
	padding: 15px 10px;
}
.tcont p {
	margin: 0;
}
.teamflip {
	-webkit-transition: -webkit-transform 1s;
	-moz-transition: -moz-transform 1s;
	-o-transition: -o-transform 1s;
	transition: transform 1s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50%;
}
.teamflip div {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}
.teamflip .front {
	background: #f1f1f1;
	text-align: center;
}
.front .teamimg {
	margin-bottom: 0;
}
.teamflip .back {
	padding: 30px 20px;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #f1f1f1;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.teamflip.flipped {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.teamflip .teamtitle {
	font-size: 18px;
}
.tab-content.tablists {
	padding: 0;
	border: 0;
}
.tablists .tab-pane {
	display: block;
	margin-bottom: 15px;
}
.tablists .heading1 {
	font-size: 18px;
	margin-bottom: 10px;
}
.tablists .heading1:before {
	top: 100%;
	left: 28px;
	margin-top: -2px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(240, 86, 47, 0);
	border-top-color: #f0562f;
	border-width: 5px;
	margin-left: -5px;
}
.tablists .tab-pane iframe {
	width: 100%;
}
.tablediv iframe {
	width: 100%;
}
.testimonial-item {
	background: #f1f1f1;
	border: 1px solid #f1f1f1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 30px;
}
.tcontent {
	padding: 10px 15px;
}
.testimonial-item .title {
	display: block;
	padding: 0;
}
.testimonial-item p {
	min-height: 45px;
}
.testimonial-item .tcontent p {
	min-height: 94px;
	margin: 0;
}
.limglist {
	width: 100%;
}
.limglist img {
	width: 100%;
}
.leave-btn {
	border-radius: 25px;
	font-size: 14px;
	padding: 10px 25px 9px;
}
.testimonial-item:hover {
	border-color: #383978;
}
.page_package_detail #viewFullCalModal .modal-body {
	padding-top: 0;
}
.page_package_detail #viewFullCalModal .modal-header {
	padding: 10px 15px;
}
.modal-header .sub_title_pop {
	font-size: 13px;
	font-style: italic;
	display: block;
}
.modal-header .heading {
	font-size: 16px;
	font-style: normal;
}
.fc-toolbar.fc-header-toolbar {
	margin-bottom: 5px;
}
.fc-ltr .fc-toolbar h2 {
	font-size: 1.3em;
}
.fc-content-skeleton .fc-event,
.fc-content-skeleton .fc-event-dot {
	background: 0 0;
	border: none;
	color: #0e8d45;
	text-align: right;
	font-weight: 700;
}
.fc-content-skeleton .fc-event:hover {
	color: #0077c1;
}
.fc-ltr .fc-toolbar.fc-header-toolbar {
	margin-bottom: 0;
}
.fc-ltr .fc-button-group > .fc-button {
	background: 0 0;
	border: none;
	color: #0077c1;
	padding: 0 5px;
}
.fc-ltr .fc-button-group > .fc-button:focus {
	box-shadow: none !important;
}
.fc-ltr .fc-button-primary:not(:disabled).fc-button-active,
.fc-ltr .fc-button-primary:not(:disabled):active,
.fc-ltr .fc-toolbar > * > :not(:first-child) {
	color: #1a252f;
	background: 0 0;
	border: none;
	text-transform: capitalize;
}
.booking_problem {
	background: #0077c1;
}
/********************************************/
.pc-list-cat {
	width: 100%;
	margin-bottom: 30px;
}
.pc-list-cat ul {
	padding: 0px;
	text-align: center;
}
.pc-list-cat ul li {
	display: inline-block;
	padding-right: 15px;
	background: #f1f1f1;
	border-radius: 4px;
	padding: 8px 15px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin-right: 10px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin-bottom: 10px;
}
.pc-list-cat ul li.active,
.pc-list-cat ul li:hover {
	background-color: #f26122;
	color: #ffffff;
}
.pc-list-cat ul li:hover {
	cursor: pointer;
}

.formActionBox {
	width: 100%;
	float: left;
}

.pc-list .template_2 .customeFormInput {
	text-align: left;
}

/* 30 april 2021 */
.home-faq .panel-heading {
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
}
.home-faq .panel-body {
	border: none !important;
}
.home-faq .panel-body p {
	font-size: 17px;
}
.home-faq .panel-body > * {
	font-size: 17px;
	line-height: 28px;
	color: #666;
}
.home-faq .panel {
	border-radius: 0;
	border: none;
	box-shadow: none;
	margin-bottom: 11px !important;
}
.home-faq .panel-title a {
	display: block;
	border: 1px solid #0077c1;
	color: #0077c1;
	padding: 15px 30px 15px 15px;
	font-size: 17px;
	font-weight: 400;
	cursor: pointer;
	position: relative;
	text-align: left;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.home-faq .panel-title a:focus {
	text-decoration: none;
}
.home-faq .panel-title a.collapsed {
	border-color: #dadbde;
	color: #333333;
}
.home-faq .panel-title a:before {
	content: "-";
	line-height: 16px;
	color: #0077c1;
	display: block;
	position: absolute;
	right: 15px;
	top: 14px;
	font-size: 40px;
	font-weight: 500;
}
.home-faq .panel-title a.collapsed:before {
	content: "+";
	line-height: 20px;
	font-size: 30px;
	font-weight: 600;
}

.faqlist {
	background: #fff;
	padding: 15px;
}
.faqlist > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.faqlist > ul > li:first-child .ftitle {
	border-top: 0;
}
.ftitle {
	display: block;
	border-top: 1px solid #e5e6e9;
	color: #5c5c61;
	padding: 15px 30px 15px 35px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	text-align: left;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin-bottom: 5px;
}
.active .ftitle {
	/*border-color: #0077c1; color: #0077c1;*/
}
/*.ftitle:before { content: "Q."; line-height: 20px; color: #f36a2e; display: block; position: absolute; left: 0; top: 14px;  font-size:16px; font-weight: 500;}*/
.ftitle span {
	line-height: 20px;
	color: #f36a2e;
	display: block;
	position: absolute;
	left: 0;
	top: 14px;
	font-size: 16px;
	font-weight: 500;
}
.ftitle:after {
	content: "+";
	line-height: 20px;
	color: #f36a2e;
	display: block;
	position: absolute;
	right: 15px;
	top: 14px;
	font-size: 30px;
	font-weight: 500;
}
.active .ftitle:after {
	content: "-";
	line-height: 16px;
	font-size: 40px;
	font-weight: 500;
}
.fqcont > * {
	font-size: 16px;
	line-height: 1.4;
	color: #666;
	text-align: left;
}
.fqcont {
	padding: 20px;
	padding-top: 0;
}
/* 30 april 2021 end */

.blist ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
}
.blist ul li {
	flex-basis: 25%;
	display: flex;
	align-items: center;
}
.blist ul li .bimg {
	margin-right: 1px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
}
.blist ul li .bimg img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
}
.blist ul li span {
	color: #333;
	font-size: 22px;
	font-weight: 600;
	display: block;
}
.blist ul li p {
	margin-bottom: 0px;
}
.aslider {
	position: relative;
	padding: 150px 0px;
	background: url('../images/asbg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	z-index: 0;
}
.aslider:after {
	content: "";
	background: url(../images/rbg-down.png) bottom center;
	height: 100px;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}
.aslider:before {
	content: "";
	background: url(../images/rbg-up.png) top center;
	height: 100px;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}
.abt-slider .item {
	display: flex;
	align-items: flex-start;
}
.abt-slider .item .num {
	width: 30%;
}
@font-face {
	font-family: "SF Pro Display Heavy";
	src: url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.eot"); /* IE9*/
	src: url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.eot?#iefix") format("embedded-opentype"),
		url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.woff2") format("woff2"),
		url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.woff") format("woff"),
		url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.ttf") format("truetype"),
		url("../fonts/9695ecad8bb007115bd8ae8c4c1aadec.svg#SF Pro Display Heavy") format("svg"); /* iOS 4.1- */
}
.abt-slider .item .num span {
	font-family: "SF Pro Display Heavy";
	font-size: 18em;
	color: #000;
	opacity: .4;
	line-height: .8;
}
.abt-slider .item .astext {
	width: 70%;
}
.abt-slider .item .astext .title {
	font-size: 44px;
	font-weight: 800;
}
.abt-slider .item .astext p {
}
.abt-slider .owl-nav {
	width: 80px;
	position: absolute;
	left: 30%;
}
.abt-slider .owl-nav > div {
	bottom: 0px;
	top: unset;
}

.map {
	position: relative;
}
.mapActivity {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
}
.mapActivity .blist ul {
	display: inline-block;
	width: 100%;
}
.mapActivity .blist ul li {
	margin-bottom: 15px;
}
.partner-list {
	width: 60%;
	margin: 0 auto;
	margin-top: 20px;
}
.partner-list ul {
	padding: 0px;
	list-style: none;
}
.partner-list ul li {
	display: inline-block;
	height: 100px;
	overflow: hidden;
	background: #fff;
	width: 100%;
	padding: 10px;
}
.partner-list ul li img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}
.partner-list .owl-nav > .owl-next {
	right: -50px;
}
.partner-list .owl-nav > .owl-prev {
	left: -50px;
}
.banner {
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
	background-blend-mode: saturation;
	z-index: 0;
	padding: 0px;
}
.banner:before {
	position: absolute;
	height: 100px;
	width: 100%;
	left: 0;
	top: 0;
	content: "";
	z-index: 2;
	background-image: linear-gradient(to bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
}
.banner__images-wrap {
	height: calc(100vh - 250px);
	min-height: 500px;
	margin-bottom: 30px;
	display: flex;
	flex-flow: row nowrap;
	overflow: hidden;
}
.limgsec {
	flex: 1 1;
}
.limgsec img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
.rimgsec {
	flex: 0 0 39.5%;
}
.rimgsec ul {
	list-style: none;
	padding: 0px;
	display: flex;
	grid-gap: 5px;
	margin-left: 5px;
	flex-wrap: wrap;
	height: 100%;
}

.rimgsec ul li {
	flex-basis: 49%;
	flex-grow: 1;
	overflow: hidden;
}
.rimgsec ul li img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

/*****************************************/

@media screen and (max-width: 1440px) {
	.slider-caption {
		font-size: 40px;
	}
}

@media screen and (max-width: 1300px) {
	.sidebarsec {
		padding-left: 20px;
	}
}
@media screen and (min-width: 992px) {
	.sidemobile {
		background: #fff;
		padding: 10px;
		width: 100%;
		clear: both;
		display: block !important;
	}
	.page_package_listing .packages_list {
		min-height: 800px;
	}
}
@media screen and (max-width: 1399px) {
	.title {
		/*font-size: 16px;*/
	}
	.container_inner .destination_view .dest_img {
		height: 190px;
	}
	.bot_left {
		width: 60%;
	}
	.contactleft {
		width: 660px;
	}
	.template_3 .customeFormInput > label {
		width: 150px;
	}
	.template_3 .customeFormInput > label + .customeFormField,
	.template_3 .formActionBox {
		margin-left: 150px;
	}
	.new_box_title_heading {
		font-size: 22px;
	}
	.new_box_title_heading {
		font-size: 16px;
	}
	.new_box_title_heading span {
		font-size: 26px;
	}
	.action_btn .btn_detail,
	.action_btn .btn_enquire,
	.btn_groups .btn_detail,
	.btn_groups .btn_enquire {
		min-width: 150px;
	}
}
@media screen and (max-width: 1199px) {
	.abt-slider .item {
		align-items: center;
	}
	.abt-slider .item .num span {
		font-size: 15em;
		line-height: 1;
	}
	.testimage {
		position: static;
	}
	.left_panel {
		width: 230px;
	}
	.left_panel + .main_panel {
		margin-left: 260px;
	}
	.navbar-custom .nav li a {
		letter-spacing: 0;
	}
	.home_search_container {
		bottom: 20px;
	}
	#HomeSlider {
		padding-bottom: 20px;
	}
	.page_arrow {
		display: none;
	}
	#HomeSlider {
		padding-bottom: 0;
	}
	.slider-caption {
		font-size: 34px;
	}
	.slider-caption span {
		font-size: 30px;
		margin-top: 0;
	}
	.slides-control .slider_container {
		top: 40%;
	}
	.banner_full {
		min-height: 200px;
	}
	.top-section > .container {
		padding: 0;
	}
	.navbar-custom > .container {
		padding: 0 15px;
	}
	.container_inner .destination_view {
		width: 50%;
	}
	.book_package_right {
		width: auto;
		float: none;
		margin-bottom: 20px;
	}
	.paynow_inner {
		margin-right: 0;
	}
	.phone_email_links {
		margin-left: 15px;
	}
	.bot_left {
		width: 100%;
		float: none;
	}
	.package_bot .inclusions_box {
		float: none;
	}
	.bot_right {
		float: none;
	}
	.bot_right .btn_groups .btn {
		width: 49%;
		float: left;
	}
	.bot_right .btn_groups .btn + .btn {
		margin-left: 2%;
	}
	.package_list_inner .package_img {
		width: 200px;
	}
	.package_list_info {
		margin-left: 220px;
	}
	.price_total_booking + .price_list_box {
		margin-right: 135px;
	}
	.contactleft {
		width: 550px;
	}
	.page_home .content-section,
	.page_home section {
		margin-top: 0 !important;
	}
	.testisec .owl-carousel .owl-stage-outer {
		/*min-height: 400px;*/
	}
	.testi_blog_section .owl-carousel {
		height: auto;
	}
	.blogsec {
		padding-left: 20px;
	}
	.dtquickform {
		width: 400px;
		padding: 15px 20px;
	}
	.wcu {
		width: 400px;
	}
	.banner__images-wrap {
		height: 450px;
	}
	.rimgsec {
		flex: 0 0 45%;
	}
	.detail_page .main_panel {
		width: calc(100% - 420px);
	}
	.detailpage .booking_box {
		padding-left: 30px;
	}
	.booking_box .action_btn {
		left: 30px;
	}
	.detail_page h1 {
		margin-top: 0;
	}
}
@media screen and (max-width: 991px) {
	.detail_package_box {
		display: block;
	}

	.booking_paynow {
		padding-top: 0;
	}
	.enqpackagesform iframe {
		height: 560px;
	}
	.testisec .viewbtn {
		position: static;
	}

	/*.testcont {
      width: 100%;
      padding: 15px 0 0;
  }*/

	.testisec .owl-carousel .owl-dots {
		text-align: center;
		width: 100%;
		left: 0;
		position: static;
	}
	.testi_blog_section::after {
		bottom: 0;
	}
	.leftsec,
	.page_testimonial_detail .leftsec {
		width: 100%;
		padding-right: 0;
		border: 0;
	}
	.page_testimonial_detail .sidebarsec,
	.sidebarsec {
		width: 100%;
		padding: 0;
		margin-top: 15px;
	}
	.blog_listing {
		/*-webkit-columns: 200px 3;
      -moz-columns: 200px 3;
      columns: 200px 3;*/
	}
	.topmenu .menulist > li > a {
		padding: 10px 9px;
		font-size: 14px;
	}
	.testimg {
		width: 200px;
		margin-left: 30px;
	}
	.testimg span {
		width: 200px;
		height: 200px;
		line-height: 200px;
	}
	.testimg a {
		display: block;
		color: #fff;
	}
	.owl-carousel .owl-item .testimg span img {
		max-height: 214px;
		max-width: 214px;
	}
	/*.testcont {
      text-align: left;
      width: 100%;
  }*/

	.disctest {
		margin-bottom: 15px;
	}
	.testi_cont {
		font-size: 16px;
		line-height: 24px;
	}
	.page_destination_listing .container_inner .destination_view .dest_img {
		width: 100%;
	}
	.page_destination_listing .container_inner .destination_view .dest_info {
		width: 100%;
	}
	.topmenu .menulist > li > a {
		line-height: 30px;
		padding: 8px;
	}
	.navbar-brand {
		/*padding: 20px 0;*/
	}
	.detailpage .booking_box {
		padding-left: 0;
	}
	.dtquickform {
		width: 100%;
		margin-top: 15px;
		padding: 15px !important;
	}
	.banner__images-wrap {
		height: 400px;
		min-height: 400px;
	}
	.wcu {
		width: 100%;
	}
	.wcu ul li .wcu-img {
		width: 20%;
	}
	.detail_page .main_panel {
		width: 100%;
	}
	.filterlink {
		display: block;
		position: relative;
		margin-bottom: -3px;
		z-index: 2;
	}
	.sidemobile {
		width: 100%;
		clear: both;
		border: 1px solid #ccc;
		padding: 15px;
		display: none;
	}
	.ui-slider-horizontal {
		width: 98%;
		margin-left: 1%;
	}
	.secbox {
		margin-bottom: 15px;
	}
	.secbox ul li {
		width: 48%;
		display: inline-block;
	}
	.secbox ul li label {
		font-size: 13px;
	}
	body:not(.page_home) .headsearch {
		max-width: 750px;
	}
	.distimg .dest_info p {
		font-size: 18px;
		line-height: 22px;
	}
	/* footer .col-sm-3 {
      width: 50%;
      margin-bottom: 15px;
  } */
	/* footer .foot_blocks:nth-child(2),
  footer .foot_blocks:nth-child(3) {
      padding-left: 15px;
  } */
	.teamsec ul li {
		width: 50%;
	}
	.testisec .owl-carousel .owl-stage-outer {
		min-height: auto;
	}
	.testisec {
		width: 100%;
	}
	.blogsec {
		padding: 25px 0 0;
		width: 100%;
	}
	.enqright p {
		font-size: 15px;
	}
	.activisec ul li {
		width: 33.33%;
	}
	.payonline {
		display: none;
	}
	.content-section.hotel_details .pack_detail {
		margin-top: 15px;
	}
	.content-section.hotel_details .pricenight {
		width: 50%;
		float: left;
		margin: 20px 0;
	}
	.content-section.hotel_details .package_button_section {
		float: left;
		margin: 0 0 10px 0;
		width: 50%;
	}
	.content-section.hotel_details .btn_enquire {
		width: 100%;
	}
	.book_btn,
	.content-section.hotel_details .btn_detail {
		width: 100%;
	}
	.newsletter_input .form-control {
		width: 340px;
	}
	.container_inner .destination_view {
		float: left;
	}
	.container_inner .destination_view .dest_info {
		height: 200px;
	}
	.testi_blog_section .owl-carousel {
		height: auto;
	}
	.tbox {
		height: auto;
	}
	.testi_blog_section .btn {
		/* margin-top: 20px;*/
	}
	.search_area .col-sm-12 {
		margin-bottom: 10px;
	}
	.navbar-custom .nav li a {
		text-transform: none;
		padding-left: 6px;
		padding-right: 6px;
	}
	.slider_container {
		top: 26%;
	}
	.search_area {
		padding: 15px 20px;
	}
	.package_list > li {
		width: 50%;
	}
	.way_book > li h4 > br {
		display: block;
	}
	.blog_box,
	.testimonials_box {
		height: auto;
		margin-bottom: 80px;
	}
	/* footer .col-sm-6 + .col-sm-6 + .col-sm-6 {
      margin-top: 30px;
  } */
	.foot_nav {
		border-left: none;
		padding: 0;
	}
	.package_list > li:nth-child(2n):after {
		display: block;
		clear: both;
		content: "";
		height: 25px;
	}
	.activtiy_list > li {
		width: 50%;
	}
	.booking_inner {
		padding-bottom: 0;
	}
	.newsletter_subs {
		margin-top: 15px;
	}
	.btns_box .btn {
		display: block;
		margin: 5px 0 0;
	}
	.packageinfo {
		padding-left: 15px;
	}
	.booking_preview .preview_img {
		width: 180px;
	}
	.activity_listing {
		width: 50%;
	}
	.slides-control .slider_container {
		top: auto;
		bottom: 20px;
	}
	.home_top_packages .package_list > li {
		width: 33.333%;
	}
	.way_book > li {
		width: 50%;
		margin-bottom: 30px;
		min-height: auto;
	}
	.content-section,
	section {
		padding: 10px 0;
	}
	.content_view.template_4 .grid_views > li {
		width: 100%;
		float: none;
	}
	.slides_main:not(.slides-container) {
		position: relative;
		height: 400px;
	}
	.slides_main:not(.slides-container) img {
		max-width: 102%;
		height: auto;
	}
	.singleBanner {
		position: relative;
	}
	.slider_container {
		top: auto;
		bottom: 0;
	}
	.mobile_space {
		margin-top: 10px;
	}
	.slider-caption {
		margin-bottom: 0;
	}
	.slider-caption {
		padding-bottom: 20px;
		font-size: 30px;
		line-height: 1.4;
	}
	.page_home .headsearch {
		bottom: 10px;
	}
	.about_img {
		float: none;
		width: auto;
		margin: 0 auto 10px;
	}
	.about_img + .about_text {
		margin-left: 0;
		text-align: center;
	}
	.testi_panel_outer {
		padding-right: 15px;
	}
	.blog_panel_outer {
		padding-left: 15px;
	}
	.blog_panel_outer,
	.testi_panel_outer {
		height: auto;
	}
	.blog_panel_outer::before,
	.testi_panel_outer::before {
		left: -1000%;
		right: -1000%;
	}
	.destination_info h3 {
		/* font-size: 30px;*/
	}
	.breadcrumb {
		text-align: left;
		margin-bottom: 20px;
	}
	.mobile_search_area .search_area {
		padding-bottom: 0;
	}
	.search_tabdata {
		background: #363785;
	}
	.contact_detail_foot {
		float: none;
		text-align: center;
		padding-top: 10px;
	}
	.accept,
	.members {
		width: auto;
		float: none;
	}
	.top-section .social_links {
		display: none;
	}
	.phone_email_links {
		padding-left: 0;
		border: none;
	}
	.accept {
		margin-bottom: 20px;
	}
	.about_img {
		padding-right: 0;
	}
	.left_panel {
		width: auto;
		float: none;
	}
	.left_panel + .main_panel {
		margin-left: 0;
	}
	.booking_box:not(.booking_inner),
	.galleryimage_area {
		width: 100%;
		float: none;
	}
	.detail_main_panel .left_panel {
		display: none;
	}
	.contactleft {
		width: 420px;
	}
	.template_2 .customeFormInput {
		width: 100%;
		float: none;
	}
	.hote_detail_box {
		margin-bottom: 15px;
	}
	.content_view.template_5 .grid_views > li {
		width: 50%;
	}
	.content_view.template_5 .grid_views > li:nth-child(3n + 4) {
		clear: none;
	}
	.content_view.template_5 .grid_views > li:nth-child(2n + 3) {
		clear: left;
	}
	.page_home .content-section,
	.page_home section {
		margin-top: 0 !important;
	}
	.aslider {
		padding: 100px 0px;
	}
	.abt-slider .item {
		flex-wrap: wrap;
	}
	.abt-slider .item .num,
	.abt-slider .item .astext {
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width: 790px) {
	.owl-next,
	.owl-next:hover {
		right: 0;
	}
	.owl-prev,
	.owl-prev:hover {
		left: 0;
	}
	.owl-theme .owl-controls {
		margin-top: 15px;
	}
	/*.owl-nav > div,
  .owl-nav > div:hover {
      position: relative;
      display: inline-block;
      left: 0 !important;
      right: 0 !important;
      top: 0;
  }*/
	.all_btn_box {
		top: -5px;
	}
}
@media screen and (max-width: 1199px) {
	.navbar-brand img {
		height: 100px;
	}
}
@media screen and (max-height: 767px) {
	.banner_slider_box,
	.banner_slider_inner {
		height: 300px;
		width: 300px;
	}
}
@media screen and (max-width: 767px) {
	.topmenu .menulist > li > ul > li > a {
		color: #fff;
	}
	.topmenu .menulist > li > ul {
		background: #0077c1;
	}
	ul.dropdown-menu1 {
		background: #0077c1 !important;
	}
	.sublinks ul.dropdown-menu1 {
		border: none !important;
		padding-left: 1rem;
	}
	.topmenu .menulist > li > ul {
		max-height: initial !important;
	}

	.abt-slider .item .num span {
		font-size: 13em;
	}
	.banner__images-wrap {
		height: unset;
		min-height: inherit;
		display: inline-block;
		width: 100%;
	}
	.rimgsec {
		width: 100%;
	}
	.rimgsec ul {
		margin-left: 0px;
		margin-top: 5px;
	}
	.blog_listing li {
		width: 50%;
	}
	.blog_listing {
		/*-webkit-columns: 100px 2;
      -moz-columns: 100px 2;
      columns: 100px 2;*/
	}
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(12),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(13),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(5),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(6),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(7),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(8) {
		width: 25%;
	}
	.enquiresec iframe {
		height: 330px;
	}
	.iframe-enquire-us .customeFormOuter .form-group .img_captcha img {
		width: 120px;
		height: 32px;
	}
	.testimg {
		float: none;
		margin: 0 auto 30px;
	}
	.testimg span:after,
	.testimg span:before {
		display: inline-block;
		margin-top: 0;
		top: 100%;
		left: 50%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}
	.testimg span:after {
		border-top-color: #f1f1f1;
		border-width: 15px;
		margin-left: -15px;
	}
	.testimg span:before {
		border-top-color: #fff;
		border-width: 22px;
		margin-left: -22px;
	}
	.testcont:after,
	.testcont:before {
		font-size: 30px;
	}
	.testcont {
		width: 100%;
	}
	.topmenu {
		width: 100%;
		background: #0077c1;
		display: none;
	}
	.topmenu.showmenu {
		display: block;
	}
	.topmenu > ul > li {
		width: 100%;
		border-top: 1px solid #404180;
	}
	.topmenu .menulist > li a {
		color: #fff;
		line-height: 24px;
	}
	.topmenu .menulist > li:hover a {
		/*color: #f0562f;*/
	}
	.topmenu .menulist > li ul,
	.topmenu .menulist > li:hover ul {
		position: static;
		width: 100%;
		display: none;
	}
	.plusicon {
		display: block;
		position: absolute;
		right: 0;
		top: 5px;
		cursor: pointer;
		z-index: 2;
	}
	.plusicon:after {
		content: "+";
		display: inline-block;
		width: 34px;
		height: 30px;
		text-align: center;
		line-height: 34px;
		font-size: 22px;
		color: #fff;
	}
	.iframe-enquire-us .customeFormOuter .form-group {
		width: 50%;
	}
	.plusicon.minus_icon:after {
		content: "-";
	}
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(11) {
		width: 100%;
	}
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(12),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(13),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(3),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(4),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(5),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(6),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(7),
	.iframe-enquire-us .customeFormOuter .form-group:nth-child(8) {
		width: 50%;
	}
	.enquiresec iframe {
		height: 550px;
	}
	.detail_page h1,
	h1 {
		font-size: 22px;
	}
	.hotel_info_box .itn_img {
		float: none;
	}
	#new_heading_for_inner {
		font-size: 20px;
	}
	.form-group label[for="captcha"] {
		display: none;
	}
	.clearbtn {
		width: 100px;
	}
	.navbar-brand {
		padding: 0;
	}
	.dtquickform {
		padding: 0;
		border: 0;
	}
	.inner_page .banner_full {
		min-height: 180px;
	}
	.page_package_listing .slider_img {
		max-height: 100px;
	}
	body:not(.page_home) .headsearch {
		max-width: 100%;
		border-radius: 0;
	}
	.ui-slider-horizontal {
		width: 96%;
		margin-left: 2%;
	}
	/* footer .col-sm-3 {
      width: 100%;
  } */
	.enqform {
		width: 100%;
		padding-right: 0;
	}
	.enqright {
		display: none;
	}
	.activisec ul li {
		width: 50%;
	}
	.newsletter_inner h4 {
		text-align: left;
		width: 96%;
		margin-bottom: 10px;
	}
	.newsletter_input {
		width: 96%;
		padding-right: 105px;
	}
	.newsletter_input .btn {
		width: 100px;
	}
	.detail_page .customer_img {
		margin-left: 15px;
	}
	.newsletter_input .form-control {
		width: 100%;
	}
	.searchbtn,
	.selectoption {
		/*width: 50%;
      margin-top: 5px;*/
	}
	.selectoption:nth-child(2) {
		padding-right: 0;
	}
	.navbar-toggle {
		padding: 15px 20px;
		margin-right: 10px;
		margin-top: 3px;
	}
	.navbar-toggle span {
		position: absolute;
		width: 60%;
		border-bottom: 2px solid #333;
		left: 5px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.navbar-toggle span:before {
		content: "";
		position: absolute;
		top: -8px;
		border-top: 2px solid #333;
		width: 100%;
		left: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.navbar-toggle span:after {
		content: "";
		position: absolute;
		top: 8px;
		border-top: 2px solid #333;
		width: 100%;
		left: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.navbar-collapse {
		border: none;
		box-shadow: none;
	}
	.nav_right {
		position: absolute;
		top: 10px;
		right: 60px;
	}
	.navbar-main-collapse {
		background: #333;
	}
	.navbar-custom .nav li {
		padding: 1px 15px;
	}
	.navbar-custom .nav li a {
		padding: 10px 16px;
	}
	.navbar-custom .nav {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.navbar-custom .nav li a:active,
	.navbar-custom .nav li a:focus,
	.navbar-custom .nav li a:hover {
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
	}
	.navbar-custom .nav li.active a,
	.navbar-custom .nav li.active a:active,
	.navbar-custom .nav li.active a:focus,
	.navbar-custom .nav li.active a:hover {
		border: none;
	}
	.top-nav-collapse .navbar-toggle {
		margin-top: 12px;
	}
	.navbar-toggle.active span {
		border: none;
	}
	.navbar-toggle.active span:before {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		top: 0;
	}
	.navbar-toggle.active span:after {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		top: 0;
	}
	.social_foot {
		text-align: center;
	}
	.social_foot > li {
		display: inline-block;
		float: none;
	}
	.foot_logo {
		margin: 0 auto 15px;
		display: block;
	}
	.foot_nav > li > a {
		display: block;
		padding: 8px 15px 8px 28px;
	}
	.foot_nav > li {
		position: relative;
		background: rgba(255, 255, 255, 0.05);
	}
	.foot_nav > li:hover {
		background: rgba(255, 255, 255, 0.1);
	}
	.foot_nav > li:before {
		position: absolute;
		left: 12px;
		top: 8px;
		color: #aaa;
	}
	.foot_nav > li + li {
		margin-top: 1px;
	}
	footer .col-sm-6 + .col-sm-6,
	footer .col-sm-6 + .col-sm-6 + .col-sm-6 {
		margin-top: 20px;
	}
	.sidebar {
		margin-bottom: 30px;
	}
	.activtiy_list > li {
		width: 33.33%;
	}
	.social_foot {
		float: none;
	}
	.package_right {
		position: static;
		width: 100%;
		margin-top: 10px;
		float: left;
		padding: 15px;
	}
	.package_detail {
		padding: 15px;
	}
	.search_inner .search_area::before {
		display: none;
	}
	.banner_inner {
		height: 160px;
	}
	.detail_page .blog_cat_nav {
		margin: 0;
	}
	.comment_box {
		margin-bottom: 20px;
	}
	.contactleft,
	.contactmap {
		width: 100%;
	}
	.contactmap {
		margin-top: 20px;
	}
	.social_links:not(.social_foot) {
		display: none !important;
	}
	.contact_info {
		border-top: none;
	}
	.contact_info > li + li {
		border: none;
	}
	.detail_title {
		font-size: 40px;
		line-height: normal;
	}
	.navbar-main-collapse .dropdown-menu {
		position: static;
		width: auto;
		float: none;
		background: 0 0;
		box-shadow: none;
		border: none;
		padding: 0;
	}
	.navbar-nav .dropdown {
		background: 0 0;
		box-shadow: none;
		position: relative;
		left: 0;
		top: 0;
		padding-right: 30px;
	}
	.navbar-nav .dropdown:before {
		content: "\f067";
		font-family: FontAwesome;
		position: absolute;
		right: 10px;
		top: 16px;
		color: #ccc;
	}
	.navbar-nav .dropdown:hover:before {
		content: "\f068";
	}
	.navbar-collapse,
	.navbar-custom .nav li {
		padding: 0;
	}
	.navbar-custom .nav {
		margin: 0;
	}
	.navbar-nav > li .dropdown-menu {
		background: rgba(0, 0, 0, 0.3);
	}
	.navbar-nav li .dropdown-menu li a:before {
		content: "- ";
		display: inline-block;
		padding-right: 5px;
	}
	.navbar-nav li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.navbar-nav li .dropdown-menu .dropdown-menu li a:before {
		content: "- - ";
		display: inline-block;
		padding-right: 5px;
	}
	.navbar-nav li a {
		padding: 15px 20px !important;
		height: auto !important;
	}
	.navbar-nav li a:focus,
	.navbar-nav li a:hover {
		background: rgba(0, 0, 0, 0.2) !important;
		color: #fff !important;
	}
	.content_view.template_2 .grid_img {
		width: 300px;
	}
	.content_view.template_2 .grid_img + .grid_info {
		margin-left: 330px;
	}
	.content_view.template_3 .grid_img {
		width: 300px;
	}
	.content_view.template_3 .grid_img + .grid_info {
		margin-right: 330px;
	}
	.search_fields {
		margin-right: 0;
	}
	.search_action {
		width: 100%;
		float: none;
		margin-top: 10px;
	}
	.search_fields > .row {
		width: auto;
		float: none;
	}
	.flight_from {
		margin-bottom: 10px;
	}
	.search_area,
	.search_tabs a {
		padding-left: 15px;
		padding-right: 15px;
	}
	.search_tabdata {
		padding: 15px;
	}
	.navbar-toggle {
		margin-top: 22px;
	}
	.navbar-brand {
		margin-left: 15px !important;
	}
	.navbar-custom .nav li a {
		color: #fff;
	}
	.category_list_outer .col-sm-6 {
		height: auto;
		margin-bottom: 20px;
	}
	.short_desc {
		min-height: 10px;
	}
	.top_destination_section .destination_view,
	.top_destination_section .destination_view:nth-child(2),
	.top_destination_section .destination_view:nth-child(3) {
		width: 100%;
		padding-left: 0;
	}
	.top_destination_section .destination_view:nth-child(1) {
		padding-bottom: 10px;
	}
	.blog-item,
	.testimonial-item {
		height: auto;
	}
	.top_destination_section > .container {
		padding: 20px;
	}
	.navbar-collapse {
		width: auto;
		float: none;
	}
	.navbar-collapse .nav > li > a {
		line-height: normal !important;
	}
	.navbar-collapse .dropdown-menu > li > a {
		color: #999;
	}
	.navbar-collapse.in .dropdown-menu:before {
		display: none;
	}
	.container_inner .destination_view .dest_img {
		height: 150px;
	}
	.container_inner .destination_view .dest_info {
		height: 240px;
	}
	.top-section {
		height: 35px;
	}
	.foot_bottom .text-left,
	.foot_bottom .text-right {
		text-align: center;
	}
	.fnav_title {
		margin-bottom: 5px;
	}
	.foot_blocks:not(:first-child) {
		margin-top: 15px;
	}
	.destination_list_outer .all_btn_box {
		top: 40px;
	}
	.top_destination_section > .container {
		/*margin-bottom: 75px;*/
	}
	.banner_inner {
		height: 95px;
	}
	.page_template_contactus .contactleft {
		width: 100%;
		float: none;
	}
	.cat_img {
		height: auto;
	}
}
@media screen and (max-width: 719px) {
	h5 {
		font-size: 20px;
	}
	.content-section.hotel_details .pricenight {
		width: 100%;
		float: left;
		margin: 10px 0 20px;
	}
	.content-section.hotel_details .package_button_section {
		float: left;
		margin: 0 0 10px 0;
		width: 100%;
	}
	.content-section.hotel_details .btn_enquire {
		margin-left: 0;
	}
	.page_arrow {
		bottom: 15px;
		background: 0 0;
		border-width: 2px;
		height: 50px;
		width: 50px;
		line-height: 50px;
		margin-left: -25px;
	}
	#contener_start {
		padding-top: 0;
	}
	.mobile_search_area {
		margin-bottom: 30px;
	}
	.detail_img {
		float: none;
		width: 100%;
	}
	.detail_info {
		width: 100%;
		
		float: none;
	}
	.slides_main:not(.slides-container) {
		height: 300px;
	}
	.page_package_detail .mobile_search_area {
		margin-bottom: 0;
	}
	.page_home .content-section,
	.page_home section {
		margin-top: 0;
	}
	.page_home .content-section,
	.page_home section {
		padding: 15px 0;
	}
	.ladakhpackage {
		padding-top: 20px !important;
	}
	.page_home .content-section.enquiresec {
		padding: 20px 0 10px;
	}
}
@media screen and (max-width: 679px) {
	.home_top_packages .package_list > li {
		width: 100%;
	}
	.home_top_packages .package_list > li .package_inner {
		height: 300px;
	}
	.content_view.template_2 .grid_img {
		width: auto;
		float: none;
		margin-bottom: 15px;
	}
	.content_view.template_2 .grid_img + .grid_info {
		margin-left: 0;
	}
	.content_view.template_3 .grid_img {
		width: auto;
		float: none;
		margin-bottom: 15px;
	}
	.content_view.template_3 .grid_img + .grid_info {
		margin-left: 0;
	}
	.package_list_inner .package_img {
		width: auto;
		float: none;
	}
	.package_list_info {
		margin-left: 0;
	}
	.flight_list > li {
		display: block;
		width: auto;
	}
	.itn_img {
		width: 160px;
	}
	.itenerary_panel .accordion_panel > li {
		padding-left: 30px;
	}
	.day_circle {
		left: -55px;
	}
}
@media screen and (max-width: 639px) {
	.activtiy_list > li {
		width: 50%;
	}
	.activtiy_img img {
		width: 100%;
	}
	.banner_full {
		min-height: 50px;
	}
	.slider_subhead {
		display: none;
	}
	.newsletter_inner h4 {
		display: block;
		margin: 0 0 10px;
	}
	.newsletter_subs {
		margin-top: 0;
	}
	.newsletter_input {
		display: block;
	}
	.inclusions > li .fa {
		font-size: 12px;
		padding: 7px 0;
	}
	.inclusions > li {
		font-size: 10px;
		padding: 0 6px;
		margin-bottom: 5px;
	}
	.template_3 .customeFormInput > label {
		width: auto;
		float: none;
	}
	.template_3 .customeFormInput > label + .customeFormField {
		margin-left: 0;
	}
	.content_view.template_5 .grid_views > li {
		width: 100%;
		min-height: auto;
	}
}
@media screen and (max-width: 619px) {
	.package_btn {
		display: none;
	}
	.way_book_section h1 {
		font-size: 30px;
	}
	.way_book > li {
		/*float: none;*/
		width: 50%;
		min-height: 10px;
	}
	.way_book > li h4 > br {
		display: none;
	}
	.search_area .col-xs-4 {
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}
	.search_onpage {
		margin-top: 0;
	}
	.payNow p strong {
		display: block;
	}
	.submit-payonline {
		width: 100%;
	}
	.slider-caption {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 0;
	}
	.slider-caption span {
		letter-spacing: 0;
		font-size: 15px;
		line-height: normal;
	}
	.itenery_info {
		margin-right: 0;
	}
	.activity_listing {
		width: 100%;
		float: none;
	}
	.slides-control .slider_container h1 {
		margin-bottom: 0;
	}
	.detail_title {
		font-size: 25px;
	}
	.slides_main:not(.slides-container) {
		height: 250px;
	}
	.container_inner .destination_view {
		float: none;
		width: 100%;
		margin-bottom: 15px;
	}
	.container_inner .destination_view .dest_img {
		height: auto;
		max-height: 250px;
	}
	.container_inner .destination_view .dest_info {
		height: auto;
	}
	.booking_info,
	.payment_types {
		width: auto;
		float: none;
		padding: 0;
		border: none;
	}
	.radioOuter .customRadio + .customRadio {
		margin-left: 0;
	}
	.radioOuter .customRadio {
		margin: 5px 0;
	}
	#big_img.owl-carousel .owl-item img,
	.galleryimage_area {
		height: 300px;
	}
	.testimonial_list_outer .testi_text {
		padding-left: 0;
		padding-top: 35px;
	}
	.testimonial_list_outer .customer_img {
		margin-left: 0;
		width: 40px;
		height: 40px;
		margin-top: 0;
	}
	.testimonial_list_outer .customer_img .cust_name_box {
		line-height: 40px;
		font-size: 15px;
	}
	.testimonial_list_outer .customer_name {
		margin-left: 50px;
		padding-top: 0;
	}
	.price_table .traveller_label,
	.price_table .traveller_label_price {
		width: auto;
		float: none;
	}
	.price_table .price_selector label {
		width: auto;
		float: none;
		padding: 0;
		text-align: left;
	}
	.price_table .custom_select {
		width: auto;
		float: none;
		display: block;
	}
	.price_table .price_selector {
		text-align: left;
	}
	.price_table .price_selector::after {
		display: none;
	}
	.price_table .price_selector,
	.price_table .price_view {
		width: auto;
		float: none;
		display: block;
		text-align: left;
	}
	.contact_info {
		float: none;
		width: 100%;
	}
	.contact_info > li {
		width: 50%;
		text-align: center;
	}
	.goog-te-combo {
		width: 100%;
	}
	.customize_tour > a {
		background: rgba(255, 255, 255, 0.1);
	}
	.phone_email_links {
		display: none;
	}
}
@media screen and (max-width: 539px) {
	.hotel_info .dest_title {
		width: 100%;
	}
	.list_row > label {
		width: 100%;
	}
	h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.places_img {
		float: none;
		margin: 0 0 15px;
	}
	.places_info {
		margin-left: 0;
	}
	.suggestionOuter {
		padding-right: 0;
	}
	.suggestionOuter + .col-xs-3 {
		padding-left: 4px;
	}
	.search_area .btn {
		font-size: 13px;
		font-weight: 400;
		padding: 6px;
	}
	.search_area label {
		font-size: 14px;
	}
	.packageimg {
		float: none;
		width: auto;
		margin-bottom: 10px;
		height: 200px;
	}
	.packageinfo {
		padding: 0;
		float: none;
		width: auto;
	}
	.comment_box .btn {
		width: 100%;
	}
	.comment_box {
		padding: 15px;
	}
	.grid_views .grid_img {
		float: none;
		width: auto;
		margin-bottom: 15px;
	}
	.grid_img + .grid_info {
		margin-left: 0;
	}
	.main_slider .owl-nav {
		display: none !important;
	}
	.booking_price_view .price {
		font-size: 20px;
	}
	.bot_right .btn_groups .btn {
		width: 100%;
		margin: 0;
		float: none;
	}
	.bot_right .btn_groups .btn + .btn {
		margin-left: 0;
		margin-top: 5px;
	}
	.page_package_listing .package_top {
		width: 100%;
	}
	.page_package_listing .package_list_inner .packagestype {
		width: 100%;
		text-align: left;
	}
	.page_package_listing .package_list_inner .packagestype .tags {
		width: auto;
	}
	.tlist {
		width: 100%;
	}
}
@media screen and (max-width: 479px) {
	.slider-caption {
		padding-bottom: 0;
	}
	.page_paynow,
	.page_thankyou {
		padding-top: 80px;
	}
	.detail_package_box {
		margin-bottom: 0;
	}
	.list_row_right {
		margin-left: 0;
	}
	.iframe-enquire-us .customeFormOuter .form-group {
		width: 100%;
	}
	.enquiresec iframe {
		height: 580px;
	}
	.teamlistview .li-team {
		width: 100%;
		margin-bottom: 15px;
	}
	body {
		padding-top: 60px;
	}
	.secbox ul li label span {
		padding: 5px 5px 5px 22px;
	}
	.secbox ul li label span::before {
		width: 18px;
		height: 18px;
	}
	.secbox ul li label input[type="checkbox"]:checked + span::after {
		left: 6px;
		top: 9px;
	}
	.header_search_outer {
		/*margin-bottom: 20px;*/
	}
	.page_home .header_search_outer,
	.page_package_listing .header_search_outer {
		margin-bottom: 0;
	}
	.heading1 {
		font-size: 20px;
	}
	.blogsec ul li {
		width: 100%;
	}
	.teamsec ul {
		margin: 0 -10px;
	}
	.teamsec ul li {
		padding: 10px;
	}
	.searchbtn,
	.selectoption {
		width: 100%;
		margin-top: 5px;
	}
	.selectoption {
		padding-right: 0;
	}
	.package_list > li {
		float: none;
		width: auto;
	}
	.user-icon {
		height: 30px;
		width: 30px;
		background-size: 50% 50%;
	}
	.navbar-toggle {
		margin-right: 0;
		margin-top: 10px;
	}
	.navbar-custom {
		height: 60px;
	}
	.nav_right {
		right: 50px;
	}
	.nav_right > li {
		line-height: 30px;
	}
	.navbar-brand img {
		height: 60px;
	}
	.top-nav-collapse .navbar-brand img {
		height: 50px;
	}
	.top-nav-collapse {
		height: 55px;
	}
	.top-nav-collapse .navbar-brand img {
		margin-top: 2px;
	}
	.dest_img,
	.dest_info {
		width: auto;
		float: none;
	}
	.dest_info:before {
		border-bottom: 20px solid #2d2d2d;
		border-left: 290px solid transparent;
		border-top: none;
		border-right: none;
		left: 0;
		bottom: auto;
		top: -20px;
	}
	.dest_img {
		padding-left: 0;
	}
	.dest_img img {
		left: 0;
	}
	.dest_info {
		height: auto;
		padding: 30px;
	}
	.box_style {
		padding: 20px;
	}
	.box_title {
		margin-top: -44px;
	}
	.destination_view {
		width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	.nav-tabs > li {
		float: none;
		width: auto;
		text-align: center;
	}
	.activtiy_list > li {
		width: auto;
		float: none;
	}
	.activity_top > div {
		float: none !important;
	}
	.refine_search {
		width: 100%;
		margin: 15px 0;
	}
	.action_btn {
		position: static;
		padding: 0 20px 20px;
	}
	.action_btn .btn {
		display: block;
		width: 100%;
		margin-top: 5px;
	}
	.booking_box .booking_box_inner {
		padding-bottom: 10px;
	}
	.booking_preview .preview_img {
		width: auto;
	}
	.booking_preview .preview_img {
		width: 100%;
		height: auto;
	}
	.blog-image {
		margin: 0;
		width: auto;
		float: none;
	}
	.blog_info {
		margin-left: 0;
		padding-top: 10px;
	}
	.home_top_packages .package_list > li {
		float: left;
		height: 200px;
	}
	.slides_main:not(.slides-container) {
		height: 180px;
	}
	.slider-caption {
		font-size: 25px;
		line-height: 30px;
	}
	.date_input_outer {
		width: 100%;
	}
	.search_tabs li {
		width: 50%;
		text-align: center;
	}
	.search_tabs a {
		float: none;
	}
	.fligth_option {
		position: absolute;
		left: 30px;
		top: 70px;
		padding: 0;
	}
	.search_area {
		position: relative;
	}
	#searchFlight {
		padding-top: 60px;
	}
	.fligth_option::before {
		display: none;
	}
	.booking_info {
		font-size: 17px;
	}
	.booking_info .radiobtn span {
		font-size: 13px;
	}
	.contact_info > li {
		width: auto;
		font-size: 13px;
	}
	.price_package {
		display: block;
	}
	.starting_from {
		margin-left: 0;
		padding-left: 0;
		border: none;
		display: block;
		margin-bottom: 10px;
	}
	.booking_box .action_btn {
		padding: 0;
	}
	.booking_box .action_btn .btn {
		min-width: 100px;
		float: left;
		width: 48%;
	}
	#big_img.owl-carousel .owl-item img,
	.galleryimage_area {
		height: 240px;
	}
	.booking_box .action_btn {
		position: static;
	}
	.booking_box .action_btn .btn {
		width: 100%;
		margin: 0 0 5px;
	}
	.booking_box:not(.booking_inner) {
		padding-bottom: 20px;
	}
	.sidemobile {
		padding: 10px;
	}
	.price_total_booking .detail_prices {
		text-align: left;
		line-height: 24px;
		margin: 0;
	}
	.total_price_view {
		height: auto;
	}
	.detail_prices .price,
	.total_price_input {
		display: block;
		padding-left: 3px;
	}
	.data_category_box .validation_error {
		position: absolute;
		left: 150px;
		bottom: -18px;
	}
}
.content-section.packages_page.hote_section .btn.btn-success {
	background: #f0562f;
	border: none;
}
.content-section.packages_page.hote_section .form-inline {
	font-size: 18px;
	font-weight: 700;
}
.content-section.packages_page.hote_section select {
	margin-left: 0;
}
.content-section.hotel_details .galleryimage_area {
	width: 74%;
	float: none;
}
.content-section.hotel_details .detail_info {
	width: 100%;
	margin-top: 0;
}
.content-section.hotel_details .side_hotel_bar {
	margin-bottom: 15px;
}
.detail_page .side_hotel_bar .search_hotel,
.hotellist .side_hotel_bar .search_hotel {
	background: url(../images/search-hotel.jpg);
	width: 100%;
	float: left;
	margin-bottom: 20px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.search_hotel .left_form {
	margin-top: 190px;
	float: left;
	background: #fff;
	padding: 0px 15px 15px;
	border: 1px solid #ffd800;
}
.search_hotel .left_form .form-inline .form-control {
	width: 100%;
	margin-bottom: 15px;
	height: 38px;
	border: 1px solid #ccc;
	font-weight: 400;
	box-shadow: none;
}
.search_hotel .left_form .title {
	color: #000;
	/* width: 100%; */
	font-size: 17px;
	position: relative;
	text-align: center;
	margin: 0 -15px 15px;
	padding: 10px;
	background: #ffd800;
	display: block;
}
.search_hotel .left_form .btn {
	background: #0077c1;
	border: none;
}
.content-section.hotel_details .detail_info {
	border-bottom: 1px solid#ddd;
	border-left: 1px solid#ddd;
	border-right: 1px solid#ddd;
	border-top: 0 solid#ddd;
}
.teammain {
	position: relative;
}
.iframe-hotel-enquiry .container_inner {
	margin: 0;
}
.search_hotel .left_form .title:before {
	background: url(../images/searchicon.png);
	display: inline-block;
	vertical-align: middle;
	content: "";
	height: 18px;
	width: 20px;
	margin-right: 5px;
	/*position: absolute;
  left: 0;
  top: 0;*/
}
.iframe-hotel-enquiry .width94 {
	width: 94%;
	margin: 0 auto;
}
.border_right {
	border-right: 1px solid #ddd;
}
.detail_page .hotel_name {
	position: relative;
}
.detail_page .hotel_name span {
	background: #fff;
	position: relative;
	z-index: 9;
	padding-right: 15px;
	color: #333;
}
.detail_page .hotel_name:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #dcdcdc;
	position: absolute;
	top: 17px;
	left: 0;
}
.detail_page .hotel_destination .rating {
	float: right;
}
.detail_page .hotel_destination .rating i {
	font-size: 22px;
	color: #eca213;
}
.detail_page .hotel_destination .fa-map-marker {
	color: #0077c1;
}
.detail_page .hotel_destination .hotel_name2 {
	font-size: 18px;
	padding-left: 21px;
}
.detail_page .hotel_destination {
	margin-bottom: 15px;
	width: 100%;
	float: left;
}
.detail_page .hotel_destination .hotel_location {
	font-size: 18px;
	float: left;
	position: relative;
}
.detail_page .hotel_destination .hotel_location:after {
	content: "\f041";
	font-family: fontAwesome;
	position: absolute;
	top: -4px;
	left: 0;
	color: #0077c1;
	font-size: 24px;
}
.detail_page .description_box {
	margin-top: 30px;
}
.description_box {
	margin-top: 15px;
	width: 100%;
	float: left;
}
.description_box .des_heading {
	font-size: 20px;
	color: #1f1f24;
	border-left: solid 4px #f0562f;
	padding-left: 8px;
	font-weight: 500;
	margin-bottom: 15px;
}
.imgs {
	float: right;
	margin-left: 15px;
	width: 400px;
}
.imgs img {
	max-width: 100%;
}
.tablediv {
	margin-top: 15px;
}
.dtquickform.hotel_last_form iframe {
	height: 500px;
}
.dtquickform.hotel_last_form {
	padding: 20px 15px 0;
	width: 100%;
}
.dtquickform.hotel_last_form .heading1 {
	padding: 0 15px;
}
#amount {
	margin-top: 5px;
	display: block;
}
.ui-slider-horizontal {
	height: 0.9em;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #f0562f;
	background: #f0562f;
	border-radius: 50%;
	font-weight: 400;
	color: #555;
}
.ui-state-default {
}
.ui-widget-content a {
	line-height: 20px;
	text-align: center !important;
}
.ui-slider .ui-slider-handle {
	width: 1.4em;
	height: 1.4em;
}
.page_hotel_detail .new_related_hotel {
	clear: both;
	padding: 0;
}
.side_hotel_bar .search_hotel .left_form {
	width: 100%;
}
.sb-container {
	position: relative;
	overflow: hidden;
	padding-right: 10px;
}
.sb-content {
	height: 100%;
	width: 120%;
	padding-right: 20%;
	overflow-y: scroll;
	box-sizing: border-box;
}
.sb-scrollbar-container {
	position: absolute;
	right: 5px;
	bottom: 5px;
	top: 5px;
	width: 10px;
	background: #f1f1f1;
	border-radius: 10px;
}
.sb-container-noscroll .sb-scrollbar-container {
	right: -20px;
}
.sb-scrollbar {
	position: absolute;
	right: 0;
	height: 30px;
	width: 10px;
	border-radius: 10px;
	background: rgba(0, 119, 193, 0.8);
}
.sb-scrollbar:hover {
	background: rgba(0, 119, 193, 0.9);
}
.container-example1 {
	height: 100%;
	width: 100%;
	max-width: 100%;
}
.main_container {
	position: relative;
}
.sidemobile.scroll-fixed {
	position: fixed;
	top: 90px;
	height: calc(100vh - 170px);
	overflow: auto;
	width: 270px;
}
.sidemobile.scroll-fixed.showfooter {
	position: absolute;
	bottom: 0;
	top: auto;
}
.map-detail {
	margin: 0;
}
.map-detail iframe {
	height: 415px;
}
.iframe-hotel-enquiry .formActionBox {
	padding-top: 0;
}
.daynight {
	display: block;
	font-size: 14px;
	color: #f0562f;
	padding-top: 5px;
}
.info_panel .daynight {
	padding-top: 15px;
}
.info_panel .testisec .tname {
	font-size: 15px;
	margin-top: 5px;
}
.info_panel .testisec .test-title {
	font-size: 16px;
	margin-bottom: 5px;
}
.borderbox .package_bot {
	background: 0 0;
	border: none;
	padding: 10px 0;
	margin: 0;
}
.borderbox .bot_right {
	float: left;
	min-width: 50%;
}
.borderbox .btn_groups .btn_enquire {
	width: 100%;
}
.enqpackagesform {
	padding: 0;
	background: #f1f1f1;
}
.enqpackagesform iframe {
	margin-top: 10px;
	height: 390px;
}
.enqpackagesform .label_tag {
	background: #0077c1;
}
.formrightsec {
	width: 53%;
	padding: 15px 15px 15px 20px;
	float: right;
	background: #fff;
	min-height: 550px;
}
.formrightsec .thumb_img {
	height: 70px;
}
.iframe-package_enquiry .form-group {
	margin-bottom: 15px;
}
.formleftenq {
	width: 47%;
	float: left;
	padding: 15px 30px;
	height: 100%;
}
.iframe-package_enquiry {
	padding: 0;
}
.whyleft {
	text-align: center;
}
.whyleft .way_book > li {
	width: 50%;
}
.whyleft .new_box_title_heading {
	font-size: 14px;
}
.whyleft .new_box_title_heading span {
	text-align: center;
	font-size: 18px;
	line-height: 22px;
	padding-top: 10px;
}
.whyleft .box_icon {
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto;
}
.whyleft .way_book > li > div {
	padding: 10px;
}
.whyleft .heading1 {
	padding-bottom: 5px;
}
.whyleft .heading1:after {
	left: 50%;
	bottom: 0;
	margin-left: -18px;
	position: absolute;
}
.bestenq {
	padding: 0 0 0 15px;
}
.bestenq li {
	display: block;
	text-align: left;
	padding: 8px 30px;
	position: relative;
}
.bestenq li:before {
	content: "";
	background: #0077c1;
	color: #fff;
	line-height: 22px;
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
}
.bestenq li:first-child:before {
	content: "1";
}
.bestenq li:nth-child(2):before {
	content: "2";
}
.bestenq li:nth-child(3):before {
	content: "3";
}
.iframe-package_enquiry .formActionBox {
	padding: 0;
}
.contactnum {
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding: 15px;
}
.contactnum p span {
	font-size: 22px;
	color: #0077c1;
	font-weight: 700;
}
.borderbox .package_top {
	width: 100%;
}
.borderbox .packagestype {
	width: 100%;
	float: left;
}
.borderbox .package_themes {
	margin: 0;
}
.customer_img_detail {
	width: 100%;
	border-radius: 0;
	height: auto;
	max-height: 450px;
}
.testimonial_detail_right {
	margin-left: 0;
	margin-top: 15px;
	width: 100%;
	float: left;
	clear: both;
}
.testi_detail_text {
	background: 0 0;
	border: 0;
	padding: 0;
}
.writereview {
	margin-top: 15px;
}
.writereview .btn {
	width: 100%;
	padding: 40px 20px 20px;
	border: 0 solid #f1f1f1;
	background: url(../images/writereview.jpg) center center no-repeat;
	position: relative;
}
.writereview .btn:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
.writereview .btn:after {
	content: "";
	width: 100%;
	height: 100%;
	border: 10px solid rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.writereview .btn span {
	position: relative;
	float: left;
	width: 130px;
	white-space: normal;
	font-size: 16px;
	text-align: left;
	color: #000;
}
.writereview .btn:hover span {
	color: #f0562f;
}
.writereview .btn:hover:after {
	opacity: 1;
}
.writereview .btn span strong {
	font-size: 22px;
	display: block;
	font-weight: 900;
	color: #0077c1;
	line-height: 22px;
}
.sidepackage {
	padding: 15px;
	background: #f1f1f1;
}
.sidepackage .package_inner {
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
}
.sidepackage .package_img:last-child a {
	padding-bottom: 0;
	margin-bottom: 0;
	border: none;
}
body {
	overflow-x: hidden;
}
.newsletter_input .validation_error {
	position: absolute;
	left: 0;
	line-height: 16px;
}
.fc-list-heading {
	float: left;
	width: 65%;
	padding: 5px 10px;
	border-top: 1px solid #ccc;
	box-sizing: border-box !important;
}
.fc-list-item-title {
	float: left;
	width: 35%;
	padding: 5px 10px;
	text-align: right;
	border-top: 1px solid #ccc;
	box-sizing: border-box !important;
}
.fc-button-primary:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus,
.fc-button-primary:not(:disabled):active:focus {
	box-shadow: none !important;
}
.wysihtml5-toolbar a,
.wysihtml5-toolbar a.btn-default {
	color: #3e3e3e !important;
	border-color: #3e3e3e;
}
.days_activity ul {
	padding-left: 0;
}
.days_activity li {
	display: inline-block;
	padding-right: 15px;
}
.iframe-activity-enquiry.iframeform .container_inner {
	margin: 0 -25px;
}
.iframe-activity-enquiry.iframeform .customeFormOuter .form-group {
	width: 50%;
	float: left;
	padding: 0 10px;
}
.iframe-activity-enquiry.iframeform .customeFormInput:nth-child(8) {
	width: 100%;
}

.listSec {
	background: #fff;
}
.listSec ul {
	margin-bottom: 0px;
	list-style: none;
	padding: 0px;
}
.listSec ul li {
	display: inline-block;
	background: #fff;
}
.listSec ul li a {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	transition: .3s;
	padding: 12px 20px;
	display: inline-block;
}
.listSec ul li:hover a {
	color: #f0562f;
	text-decoration: none;
}
.listSec ul li.active a {
	color: #f0562f;
	text-decoration: none;
	border-bottom: 2px solid #f0562f;
}

@media screen and (min-width: 992px) {
	.secbox {
		padding-right: 5px;
	}
	/*.topmenu .menulist > li:last-child {
      display: none;
  }*/
}
@media screen and (max-width: 1199px) {
	.dtquickform.hotel_last_form {
		padding: 15px 5px;
	}
	.sidemobile.scroll-fixed {
		width: 230px;
	}
	.destination_inner {
		/*height: 290px;*/
	}
}
@media screen and (max-width: 991px) {
	.hotellist .col-md-3.pull-right {
		width: 100%;
	}
	.borderbox {
		padding-top: 15px;
	}
	.booking_box {
		min-height: auto !important;
	}
	.formleftenq {
		display: none;
	}
	.enqpackagesform {
		background: #fff;
	}
	.formrightsec {
		width: 100%;
	}
	.detail_page .galleryimage_area {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px) {
	.dtquickform.hotel_last_form {
		padding: 0;
	}
	.content-section.packages_page.hote_section select {
		margin: 0;
	}
	.content-section.packages_page.hote_section #search_text {
		margin: 10px 0;
	}
	.imgs {
		width: 225px;
	}
	.formrightsec iframe {
		height: 100%;
	}
	.testimage {
		float: none;
		margin: 0 auto;
	}
	.testimage > div {
		/* width: 47%;
      height: auto;
      margin-right: 3%;
      line-height: 150px;*/
	}
	.testisec .owl-carousel .owl-item img {
		/* max-height: 150px;
      line-height: 150px;*/
	}
	.hotellist .col-md-3.pull-right {
		width: 100%;
	}
	.price_table .traveller_pricing_inner {
		width: 50%;
		min-height: 80px;
	}
	.main_slider.owl-carousel .owl-item img {
		min-height: 180px;
	}
	#testimonial_add_form label {
		margin-top: 10px;
	}
}
@media screen and (max-width: 479px) {
	.viewallbtn > div {
		min-width: 75%;
	}
	.viewallbtn small {
		width: 30px;
		height: 30px;
		line-height: 28px;
		font-size: 24px;
		margin-bottom: 5px;
	}
	.imgs {
		width: 100%;
		margin-left: 0;
		margin-bottom: 10px;
	}
	.blog_listing .col-xs-6 {
		width: 100%;
	}
	.blog_listing a {
		margin-bottom: 15px;
	}
	.borderbox .bot_right {
		width: 100%;
	}
	.testimage > div {
		/* line-height: 110px;*/
	}
	.testisec .owl-carousel .owl-item img {
		/*max-height: 110px;
      line-height: 110px;*/
	}
	.test-title {
		font-size: 16px;
	}
	.iframe-enquire-us .form-control {
		padding: 6px;
		font-size: 13px;
	}
	.accordion_panel .itn_img {
		width: 100%;
	}
	.paynow_inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.datepicker.datepicker-dropdown {
	top: 0 !important;
}

.category_list_box {
	padding: 5px;
	width: 100%;
	float: left; /* overflow: hidden;*/
}
/*.category_list_outer .heading1{text-align: center; font-size: 32px; padding-bottom: 15px;}
.category_list_outer .heading1::after {
content: "";
margin-top: 4px;
width: 40px;
border-bottom:3px solid #f0562f;
display: block;
left: 50%;
position: absolute;
bottom: 0;
margin-left: -20px;
}*/

.content-section.category_section {
	/*padding-top: 100px; padding-bottom: 30px;  
background: rgb(202,221,229); 
background: -moz-linear-gradient(top, rgba(202,221,229,1) 0%, rgba(255,255,255,1) 100%); 
background: -webkit-linear-gradient(top, rgba(202,221,229,1) 0%,rgba(255,255,255,1) 100%); 
background: linear-gradient(to bottom, rgba(202,221,229,1) 0%,rgba(255,255,255,1) 100%);  
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cadde5', endColorstr='#ffffff',GradientType=0 );*/
	position: relative;
}
.content-section.category_section:before {
	content: "";
	background: url(../images/sectionshadow.png) top center;
	height: 92px;
	width: 100%;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
}
.content-section.category_section .container {
	position: relative;
}
.content-section.category_section .heading1 {
	color: #fff;
}

.scontent {
	padding: 15px 20px;
	border-radius: 0 0 10px 10px;
	background: #fff; /* min-height:142px;*/
}
.blogshadow {
	box-shadow: 0 0px 6px #d9d9d9;
	border-radius: 10px;
}
.date {
	font-size: 14px;
	font-style: italic;
	color: #b1b1b1;
}
.btitle {
	font-size: 15px;
	margin-bottom: 5px;
	font-weight: 600;
	min-height: 38px;
	line-height: 1.3;
	color: #111113;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.btitle a {
	color: #111113;
}
.blogbox:hover .scontent {
}
.package_img .package_inner {
	box-shadow: 0 0px 6px #d9d9d9;
	background: #fff;
}
.product_scoller .package_img {
	padding: 8px;
}
.packagedtscroll .package_price span {
	opacity: 0.65;
	float: left;
	font-weight: 600;
	color: #3e3e3e;
	font-size: 16px;
}
.packagedtscroll .package_price span.pricediv {
	color: #e94a22;
	opacity: 1; /* float: right;*/
}

.package_price .pricediv br {
	display: none;
}
/*.package_price .pricediv #show_cut_price{display: inline-block;}*/
.package_info,
.packagedtscroll .package_info {
	padding: 15px 20px;
	min-height: 103px;
	background: #fff;
	width: 100%;
	float: left;
}
.product_scoller .package_title,
.packagedtscroll .package_title,
.activiti .package_title {
	color: #000;
	min-height: 38px;
	font-weight: 800;
}
.page_home section.about_section {
	padding: 10px 0;
}
.about_section .heading1 {
	/*max-width: 250px;*/
	font-size: 40px;
	text-align: left;
	background-position: 0 bottom;
}
.about_section .about_text {
	text-align: left;
	padding: 20px;
	background: #fff;
}
.about_section .about_text p {
}

.hotel_info {
	box-shadow: 0 0px 6px #d9d9d9;
}
.h_title {
	color: #444;
	font-size: 18px;
}

/*.traveltab .owl-stage{min-width: 130%!important;}*/

.activitisec {
}
.activiti {
	padding: 8px;
	position: relative;
}
.activiti .package_inner {
	box-shadow: 0 0 6px #ccc;
}
.activiti .package_title {
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.activiti .package_price {
}

.attrac {
	list-style: none;
	padding: 0;
	margin: 0;
}
.attrac > li {
	width: 25%;
	float: left;
	padding: 8px;
}

.copyr {
	color: #79c9fa;
	padding-top: 40px;
}
.copyr .right {
	text-align: right;
}

.page_forms .header_search_outer {
	height: 320px;
	background: #ccc url(../images/innerbanner.jpg) center center no-repeat;
	background-size: cover;
}
.content-section.activitisec {
	padding: 10px 0;
}
.fform {
	width: 100%;
}
.fform input {
	width: 100%;
	padding: 8px 10px;
	background: #fff;
	margin-bottom: 5px;
	border: none;
	border-radius: 4px;
}
.fform button {
	background: #f26122;
	width: 100%;
	border: none;
	padding: 8px;
	border-radius: 4px;
	color: #fff;
}

.destilist ul {
	list-style: none;
	margin: 0 -15px;
	padding: 0;
}
.destilist ul li {
	width: 25%;
	float: left;
	padding: 15px;
}
.destilist ul li .destination_view {
	width: 100%;
}

.inner_page.page_package_detail .header_search_outer {
	min-height: 200px;
	background: #ccc url(../images/innerbanner.jpg) center center no-repeat;
	background-size: cover;
}

.page_destination_detail .grey_box_full::before {
	display: none;
}
.package2 {
	/*background: #f1f1f1;*/
}

h1.hotel_name1 {
	font-size: 26px;
	padding-bottom: 10px;
	margin: 15px 0;
	border-bottom: 1px solid #ffd800;
}
.room-facltes {
	padding-left: 0;
	list-style: none;
}
.room-facltes li {
	display: inline-block;
	min-width: 32%;
	background: #f7f0c8;
	margin: 0 1% 1% 0;
	padding: 7px 12px;
	border-radius: 4px;
}
.tablediv h2.heading2 {
	color: #0077c1;
	font-size: 20px;
	font-weight: 600;
	margin-top: 0;
}
.dtquickform h2.heading2 {
	padding: 0 15px;
}
.content-section.hotel_details {
	padding-top: 40px;
}

.hote_section.hotellist {
	padding-top: 40px;
}
.hotelslist {
	width: 100%;
	list-style: none;
}
.hotelslist .package_list_inner {
	width: 100%;
	float: left;
	padding: 0;
}
.hotelslist .hotel_info_box {
	float: right;
	width: 62%;
	padding: 20px 30px;
	margin-top: 0;
}
.hotelslist .itn_img {
	width: 38%;
	margin: 0;
	background: #f1f1f1;
}
.hotelslist .itn_img img {
	max-height: 220px;
	width: auto; /*height: 230px;*/
}
.hotelslist .package_bot {
	margin: 0;
	background: none;
	padding: 0px;
	border-top: 1px solid #ddd;
}
.hotelslist .package_bot .facility_title {
	margin-bottom: 2px;
	margin-top: 10px;
}
.hotelslist .star_box,
.hotelslist .hotel_destination {
	display: inline-block;
	margin-right: 10px;
	font-size: 15px;
}
.hotelslist .bot_left,
.hotelslist .bot_right {
	width: 100%;
}
.hotelslist .hotel_facilities p {
	font-size: 13px;
	line-height: 20px;
}
.hotelslist .hotel_facilities {
	display: inline-block;
	margin-right: 4px;
	margin-bottom: 4px;
	background: #f7f0c8;
	padding: 2px 8px;
	border-radius: 3px;
}
.hotelslist .bot_right .btn_groups {
	margin-bottom: 0;
}
.dtquickform .heading1 {
	background: none;
	margin: 0;
	font-size: 24px;
	text-align: left;
	color: #333;
}
.book_btn.btn_enquire {
	color: #fff;
}
.itenery_info ul,
.info_panel ul {
	list-style: none;
	padding-left: 0;
}
.itenery_info > ul > li,
.info_panel ul li {
	position: relative;
	padding-left: 13px;
	margin-bottom: 5px;
}
.itenery_info > ul > li:before,
.info_panel ul li:before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 7px;
	display: inline-block;
	transform: rotate(45deg);
	border-top: 2px solid #f0562f;
	border-right: 2px solid #f0562f;
}
.tablists .heading1::before {
	display: none;
}
.booking_box:not(.booking_inner) {
	background: #fff;
	padding: 35px;
}
.tablists .heading1 {
	text-align: left;
	background: none;
	padding-bottom: 0;
}
.incexctab .tab-pane ul {
	list-style: none;
	padding-left: 20px;
}
.incexctab .tab-pane li {
	position: relative;
}
.incexctab .tab-pane li:before {
	top: 7px;
	left: -10px;
	margin-top: -2px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(240, 86, 47, 0);
	border-top-color: #f0562f;
	border-width: 5px;
	margin-left: -5px;
	transform: rotate(-90deg);
}

.contactext {
	padding: 30px;
	background: #fff;
}
.gray_add_box.contactformspage {
	width: 100%;
	padding: 15px 0;
	float: left;
	margin-bottom: 30px;
	background: #fff;
}
.gray_add_box .contactext h4 {
	color: #0077c1;
}
.form_main_box .form-control {
	border-radius: 0;
	min-height: 40px;
	box-shadow: 0 0 7px inset #e0e0e0;
}
.contactleft.form_main_box {
	background: #fff;
	width: 70%;
	margin: 0 auto;
	/*border: 1px solid #ccc;*/
	padding: 40px;
	border-radius: 5px;
}
.breadcrumb_full + .content-section {
	padding-top: 40px;
}
.page_template_default .detail_info {
	border: none;
	padding-left: 40px;
}
.page_template_default p {
	font-size: 16px;
}

.blog_detail_container .leftsec ul li {
	padding-bottom: 5px;
	font-size: 15px;
}

.page_blog_detail .sidebarsec .package_info {
	padding: 15px;
	background: #f7f0c8;
}
#about {
	margin-top: 15px;
}
#about h3,
#FAQ h4 {
	font-size: 24px;
	color: #0077c1;
	margin-top: 20px;
	margin-bottom: 10px;
	position: relative;
}
#about h3:after,
#about h4:after,
#FAQ h4:after,
.info_head_left h3:after {
	content: "";
	display: block;
	width: 50px;
	border-bottom: 2px solid #facf08;
	margin-top: 5px;
}
#about h4 {
	font-size: 18px;
	color: #0077c1;
	margin-top: 20px;
	margin-bottom: 7px;
	font-weight: 600;
	text-align: left;
	position: relative;
}
#FAQ h4 {
	font-size: 20px;
	font-weight: 600;
	text-align: left;
}
/*#about > div:last-child{background:#f1f1f1; padding: 40px;}
#about > div:last-child h3{margin-top: 0}*/
.accordion_head p {
	font-size: 15px;
	font-family: Lato, sans-serif;
	color: #666;
}
.info_head_left h3 {
	position: relative;
	font-size: 24px;
	margin: 0 0 10px;
	color: #0077c1;
}
img {
	max-width: 100%;
}
.new_related_hotel .heading1,
.description_box .heading1 {
	font-size: 24px;
	margin: 0 0 15px;
}
.hotelimgslide {
	margin: 2px 0;
}
.activitisec .owl-nav > .owl-prev {
	left: 6px;
}
.activitisec .owl-nav > .owl-next {
	right: 6px;
}

.owl-carousel#big_img .owl-buttons > div::before,
.owl-carousel#big_img .owl-nav > div::before {
	line-height: 34px;
	color: #000;
}
.owl-carousel#big_img .owl-buttons .owl-next {
	right: 0px;
	border-radius: 4px 0px 0px 4px;
	margin: 0;
	background: #ffd800;
}
.owl-carousel#big_img .owl-buttons .owl-prev {
	left: 0px;
	border-radius: 0px 4px 4px 0px;
	margin: 0;
	background: #ffd800;
}

.package_top .title small,
.borderbox .title small {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #0077c1;
}

.borderbox .title small {
	margin-bottom: 10px;
}
#about ul {
	list-style: none;
	padding-left: 0;
}
#about ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 15px;
}
#about ul li strong,
#about p strong {
	color: #0077c1;
}
#about ul li:before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 7px;
	display: inline-block;
	transform: rotate(45deg);
	border-top: 2px solid #0077c1;
	border-right: 2px solid #0077c1;
}
#about ol {
	padding-left: 17px;
}
#about ol li {
	margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
	#FAQ h4 {
		font-size: 16px;
	}
	#about h3 {
		font-size: 18px;
	}
}
footer .foot_blocks:nth-child(1),
footer .foot_blocks:nth-child(2) {
	width: 50%;
	margin-bottom: 15px;
}

.testlistpage .testcont {
	padding: 0 15px 15px;
}
/*.simlarpacklist .package_img{padding-left: 20px;}*/
.simlarpacklist.product_scoller .package_title {
	min-height: 40px;
}

.testlistpage .heading1 {
	margin-bottom: 30px;
}

.home_top_packages .owl-carousel .owl-item img,
.page_destination_detail .packagedtscroll.owl-carousel .owl-item img {
	/*height: 280px;*/
}
.activitypage .package_list_inner .packagestype {
	width: 100%;
}

.homeblog .container {
	position: relative;
}

@media screen and (max-width: 767px) {
	.blist ul li {
		flex-basis: 50%;
	}
	.mapActivity {
		position: unset;
		width: 100%;
	}
	.mapActivity .blist ul {
		display: flex;
	}
}

@media screen and (max-width: 639px) {
	p {
		font-size: 12px;
	}
	.desti_tab_img {
		width: 100%;
		margin: 0 0 15px;
		position: relative;
	}

	#about > div:last-child {
		padding: 20px;
	}

	.new_box_title_heading,
	.way_book > li > div {
		text-align: center;
	}
	.box_icon {
		display: block;
		margin: 0 auto;
		width: 35px;
		height: 40px;
	}
}

@media screen and (max-width: 991px) {
	.tablediv iframe {
		width: 100%;
	}
	.detail_info {
		width: 100%;
	}
	body:not(.page_home) .headsearch {
		background: #f1f1f1;
		padding: 15px;
		position: static;
		left: 0%;
		max-width: 100%;
		transform: inherit;
		-ms-transform: inherit;
		-webkit-transform: inherit;
	}

	.inner_page .slider_inner {
		max-height: 150px !important;
	}
	.inner_page .banner_full {
		min-height: 150px;
	}
}
@media screen and (max-width: 479px) {
	.detail_info {
		font-size: 15px;
	}
	.blog_detail_container iframe {
		width: 99%;
		height: 650px;
	}
	.hotelslist .itn_img,
	.hotelslist .hotel_info_box {
		width: 100%;
	}
	.contactleft.form_main_box {
		width: 100%;
		padding: 15px;
	}
	.formActionBox .btn {
		min-width: 130px;
	}
	.page_template_default .detail_info {
		padding: 15px;
	}
	.heading1 {
		font-size: 24px;
	}
	.hotel_info .star_box {
		width: 130px;
	}
	.h_title {
	}
	.blog_listing {
		margin: 0 -5px;
	}
	.blog_listing li {
		padding: 5px;
	}
	.scontent {
		padding: 10px;
		min-height: 105px;
	}
	.blog_listing .scontent a.more_link {
		margin-bottom: 0;
	}
	.inner_page .banner_full {
		min-height: 80px;
	}
	.hotelslist .big .owl-nav {
		display: none;
	}
	.itn_img .big.owl-carousel {
		max-height: 230px;
		overflow: hidden;
	}
	/*.main_slider_panel:not(.main_slider) .slider_img {
  width: auto;
  height: 150px;
  max-width: inherit;
}*/
}
.page_package_detail .hotel_info .dest_title {
	width: 100%;
}
.page_hotel_detail .galleryimage_area {
	height: auto;
}

.page_package_listing .packages_list .packages {
	width: 100%;
}

.hoteldetailcont {
	height: 88px;
	overflow: hidden;
	margin-bottom: 0px;
}
.listbox {
	width: 100%;
	background: #fff;
	float: left;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	padding: 5px;
}
.imgboxs {
	width: 25%;
	float: left;
}
.imgboxs img {
}
.contentlist {
	width: 40%;
	float: left;
	padding: 10px 20px;
	line-height: 1.4;
}
.contentlist p {
	font-size: 14px;
}
.feath {
	float: left;
	width: 35%;
	padding: 10px;
	text-align: left;
}
.feath h4 {
	text-align: left;
}
.feath ul {
	width: 100%;
	float: left;
	list-style: none;
	padding: 0;
	margin: 0 0 5px;
	clear: both;
}
.feath ul li {
	padding: 3px 5px;
	background: #f1f1f1;
	font-size: 13px;
	margin: 0 2px 2px;
	float: left;
}
.roombtn {
	display: inline-block;
	background: #ffd800;
	color: #000;
}
.hoteltitle {
	font-size: 20px;
	font-weight: 600;
}
.feath h4 {
	margin-bottom: 10px;
}

.dtrightmargin,
.hotel_details .detail_page {
	position: relative;
}
.page_hotel_detail .galleryimage_area {
	margin-right: 26%;
}
.sidepanels {
	position: absolute;
	right: 0;
	top: 0;
}

.itn_img .big.owl-carousel {
	max-height: 220px;
}
.thumbs.hotelimgslide img {
	height: 54px;
}
.sectioncontent {
	padding: 0 0 15px;
	text-align: center;
	width: 100%;
	float: left;
}
.sectioncontent.whitecolor,
.sectioncontent.whitecolor p {
	color: #fff;
}
.detail_page .thumbs.owl-carousel {
	margin-top: 1px;
}
.detail_page .thumbs.owl-carousel .owl-item img {
	max-height: 88px;
}

.detailpage .price_package {
	margin-right: 15px;
	min-width: 21%;
}
.detailpage .price_package .starting_from {
	color: #000;
}
.page_hotel_detail .owl-carousel#big_img {
	text-align: center;
}
.page_hotel_detail .owl-carousel#big_img .owl-item img {
	max-height: 550px;
	width: inherit;
	max-width: 100%;
}

.infohead_img {
	position: relative;
	padding: 10px;
}
.infohead_img::before {
	content: "";
	width: 10px;
	height: 50%;
	position: absolute;
	left: 0px;
	top: 0px;
	background: #facf08;
	display: block;
}
.infohead_img::after {
	content: "";
	width: 50%;
	height: 10px;
	position: absolute;
	left: 0px;
	top: 0px;
	background: #facf08;
	display: block;
}
.package_price > span.pricediv {
	padding-top: 6px;
}
.startingf {
	max-width: 104px;
	display: inline-block;
	line-height: 1.3 !important;
	vertical-align: middle;
}
.startingf small {
	display: block;
	font-size: 12px;
}
#show_cut_price {
	display: block;
	line-height: 1.2;
	font-size: 13px;
}
.simlarpacklist.owl-carousel .owl-item img {
	height: 220px;
}

.titlemobile {
	display: none;
	text-align: left;
	font-family: Ubuntu;
	font-size: 24px;
	margin-bottom: 20px;
}

.mobileshow {
	display: none;
}

.page_blog_detail .iframe-blog .customeFormOuter .form-group:nth-child(7),
.page_blog_detail .iframe-blog .customeFormOuter .form-group:nth-child(8) {
	width: 100% !important;
}

.page_payment .header_search_outer {
	height: 320px;
	background: #ccc url(../images/innerbanner.jpg) center center no-repeat;
	background-size: cover;
}

.destination_tabs .nav-tabs > li > a {
	background: #f1f1f1;
}
.destibottom {
	padding: 60px 0;
}
.homeblog {
	position: relative;
}

@media screen and (max-width: 1199px) {
	.page_home .content-section.about_section {
		padding-top: 10px;
	}
	.about_section .heading1 {
		font-size: 30px;
	}
}

@media screen and (max-width: 991px) {
	.infohead_img {
		width: 300px;
	}
	.infohead_img + .info_head_left {
		margin-right: 320px;
	}
	.page_payment .header_search_outer {
		max-height: 150px !important;
		margin: 0 !important;
	}
	.page_blog_detail .product_scoller.owl-carousel .owl-item img {
		height: 230px;
	}
	.content-section.hotel_details .galleryimage_area {
		width: 100%;
	}
	.sidepanels {
		position: static;
	}
	.page_forms .header_search_outer {
		max-height: 150px !important;
	}

	.heading2 {
		font-size: 22px;
	}
	.attrac > li {
		width: 50%;
	}
	.all_btn_box .viewalltext {
		font-size: 15px;
	}
	.all_btn_box {
		top: -3px;
	}
}

@media screen and (max-width: 767px) {
	.headsearchbg {
		width: 100%;
	}
	/*.headsearchbg .selectoption:first-child select{border-right: 0; border-bottom:1px solid #cecfd5;}*/
	.selectoption {
		width: 44%;
	}
	.searchbtn {
		width: 12%;
	}
	.searchbtn .btn {
		background: #ffd800 url(../images/search.png) center center no-repeat;
		font-size: 0;
	}
	.all_btn_box {
		position: static;
	}
	.product_scoller .owl-nav,
	.category_section .owl-nav,
	.activitisec .owl-nav {
		top: inherit;
		bottom: -20px;
	}
	.infohead_img {
		width: 100%;
	}
	.infohead_img + .info_head_left {
		margin-right: 0;
	}
	.page_destination_detail .main_slider.owl-carousel .owl-item img {
		min-height: inherit;
	}
	.mobileshow {
		display: inline-block;
	}
	.showcfile,
	.showcfile1,
	.showcfile2,
	.showcfile3 {
		display: none;
	}

	.page_home .slider_heading,
	.page_home .slider_subhead {
		display: none;
	}
	.page_home .titlemobile {
		display: block;
	}
	.showcfile4 {
		max-height: 184px;
		overflow: hidden;
	}
	.about_section .about_text p {
		font-size: 15px;
	}
	.homeresort {
		padding-top: 30px !important;
	}

	.imgboxs,
	.feath,
	.contentlist {
		width: 100%;
	}
	.contentlist {
		padding: 15px 15px 0;
	}
	.feath {
		padding: 15px;
	}
	.breadcrumb {
		margin-bottom: 0;
	}
	.destination_inner img {
		opacity: 1;
	}
}

@media screen and (max-width: 479px) {
	.attrac > li {
		width: 100%;
	}
	.page_home .destination_inner {
		/*height: 240px;*/
	}
	.owl-nav > div {
		position: absolute;
		top: 48%;
		padding: 10px;
		transition: 0.3s;
		background: 0 0;
		color: #666;
	}
	.way_book > li > div {
		padding: 0 5px;
	}
	.new_box_title_heading {
		font-size: 14px;
	}

	.aboutsec .btn {
		display: none;
	}
}

@media screen and (max-width: 399px) {
	.page_home .destination_inner {
		height: 300px;
	}
}

.blog-list ul {
	list-style: none;
	padding: 0px;
}
.blog-list ul li {
	background: #fff;
	display: inline-block;
	min-height: 174px;
	max-height: 174px;
	border-radius: 3px;
	box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .08);
	cursor: pointer;
	margin-bottom: 20px;
}
.blog-list ul li .bimg {
	width: 30%;
	float: left;
}
.blog-list ul li .btext {
	width: 50%;
	float: left;
	padding: 20px;
	color: #333;
	min-height: 174px;
	max-height: 174px;
	/* background-color: rgba(242,242,242,.3);*/
	transition: all 300ms ease-in-out;
}
.blog-list ul li .btext .b-title {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	font-size: 20px;
	font-weight: 600;
	color: #0077c1;
	margin-bottom: 15px;
}
.blog-list ul li .btext .b-para {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	font-size: 16px;
}
.blog-list ul li .bbtn {
	width: 20%;
	float: left;
	max-height: 174px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 174px;
	/* background-color: rgba(242,242,242,.3);*/
}
.blog-list ul li .bbtn span {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 15px;
	background: #0077c1;
	color: #fff;
	box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .08);
	border-radius: 4px;
}
.blog-list ul li .bbtn span:hover {
	background: #ffd800;
	color: #333;
}
.blog-list ul li:hover .btext {
	background: #fff;
}
.bright .heading1 {
	font-size: 18px;
}
.rb-list {
	margin-bottom: 30px;
}
.rb-list ul {
	list-style: none;
	padding: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.rb-list ul li {
	flex-basis: 49%;
	color: #fff;
	margin-bottom: 10px;
}
.rb-list .b-img {
	height: 120px;
	overflow: hidden;
	margin-bottom: 5px;
}
.rb-list .b-text {
	padding: 5px 0px;
}
.rb-list .b-text .blog-title {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	font-size: 15px;
	font-weight: 600;
	color: #0077c1;
	margin-bottom: 5px;
}
.rb-list .b-text .b-tag {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	text-transform: capitalize;
}
.rb-list .b-text .b-tag a {
	color: #333;
}
@media screen and (max-width: 767px) {
	.blog-list ul li {
		min-height: max-content;
		max-height: max-content;
	}
	.blog-list ul li .bimg,
	.blog-list ul li .btext,
	.blog-list ul li .bbtn {
		width: 100%;
		min-height: max-content;
		max-height: max-content;
	}
	.blog-list ul li .bimg img {
		width: 100%;
	}
	.blog-list ul li .btext {
		padding: 15px;
	}
	.blog-list ul li .bbtn {
		min-height: 100px;
	}
}
.ferryheading {
	font-size: 20px;
}

.ferrysearch {
	width: 100%;
	float: left;
	background: #0077c1;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 30px;
}
.ferrysearch > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ferrysearch > ul > li {
	width: 20%;
	padding: 5px;
	float: left;
}
.ferrysearch > ul > li:nth-child(4),
.ferrysearch > ul > li:nth-child(5),
.ferrysearch > ul > li:nth-child(6) {
	width: 13%;
}
.inputs {
	width: 100%;
	float: left;
}
.inputs .adults {
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}
.inputs input,
.inputs select {
	width: 100%;
	font-weight: 600;
	padding: 10px 15px;
	background: #f1f1f1;
	height: 44px;
	border: none;
	float: left;
	border-radius: 4px;
}
.inputs select {
	background: #f1f1f1 url(../images/selectbg.png) 96% center no-repeat;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding: 10px 24px 10px 15px;
}
.inputs input::placeholder {
	opacity: 1;
	color: #000;
}
.inputs button {
	width: 100%;
	background: #fff;
	color: #000 !important;
	padding: 10px;
	height: 44px;
	border: none;
	border-radius: 4px;
}
.inputs .ferrysbtn {
	background: #ffd800;
	font-weight: 600;
}
.inputs .btn-default:active,
.inputs .btn-default:focus,
.inputs .btn-default:hover {
	background: #f1f1f1;
	color: #000 !important;
	border-color: #f1f1f1;
}
.inputs .btn-default.disabled:focus,
.inputs .btn-default:focus,
.inputs .btn-default.disabled:hover {
	background: #f1f1f1;
}
.inputs .input-group .form-control {
	font-weight: 600;
	text-align: center;
	font-size: 16px;
}
.inputs .btn-number {
	font-size: 12px;
}

.ferybgsec {
	background: #fff;
	width: 100%;
	float: left;
	padding: 30px;
}
.ferybgsec h3 {
	font-size: 20px;
}
.ferryresult {
	width: 100%;
	float: left;
	margin-bottom: 30px;
}
.ferryresult > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ferryresult > ul > li {
	width: 100%;
	padding: 5px;
	border: 1px solid #ddd;
	background: #fff;
	float: left;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 4px;
}
/*.ferryresult > ul > li:first-child{border: none;}*/
.ferryresult > ul > li > div {
	width: 14%;
	float: left;
	padding: 10px 15px 0 0;
}
.ferryresult > ul > li > div > small {
	display: block;
}
.ferryresult > ul > li > div > span {
	font-size: 16px;
	font-weight: 600;
	display: block;
	color: #0077c1;
}
.ferryresult > ul > li > div.pricefields {
	width: 30%;
}
.ferryresult > ul > li > div.proceedbtn {
	padding-top: 0;
}
.ferryresult > ul > li > div label {
	position: relative;
	line-height: 1.2;
	font-weight: 500;
	width: 32%;
	margin-right: 1%;
	float: left;
	cursor: pointer;
}
.ferryresult > ul > li > div label input {
	display: none;
}
.ferryresult > ul > li > div label span {
	display: block;
	padding: 5px;
	border: 1px solid #eae8e8;
	background: #fff;
	border-radius: 4px;
}
.ferryresult > ul > li > div label input:checked + span,
.ferryresult > ul > li > div label input[type="radio"]:checked + span {
	background: #ffffb5;
	border-color: #ffffb5; /*color:#fff; */
}
.ferryresult > ul > li > div label small {
	display: block;
}
.proceedbtn .btn-info {
	padding: 8px 30px;
}

.ferryresult > ul > li > div.makruzimg {
	text-align: center;
	float: left;
	font-size: 16px;
	padding: 0;
	position: relative;
}
.ferryresult > ul > li > div.durationtime {
	padding-top: 15px;
}

.makruzimg img {
	max-height: 80px;
}
.makruzimg span {
	display: block;
}
.ferryresult > ul > li > div.makruzimg span {
	display: block;
	font-size: 11px;
	text-shadow: 0 0 2px #444;
	color: #fff;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
}
.ferryresult > ul > li > div.durationtime span {
	font-size: 16px;
	line-height: 1.2;
}
.proceedbtn button {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	border: none;
	background: #f26122;
	color: #fff;
	padding: 10px;
	border-radius: 4px;
}
.proceedbtn button:hover {
	background: #0077c1;
}
.prictsec {
	font-size: 22px;
	font-weight: 600;
}
.ferryresult > ul > li:hover {
	background: #fff;
}
.fullsec {
	width: 100%;
	float: left;
}

.ferrypage .alert.alert-danger {
	clear: both;
}
.availabildate {
}
.availabildate label {
	font-size: 16px;
	font-weight: normal;
}
.availabildate input.form-control {
	height: 40px;
	box-shadow: none;
}

.totalaferryprice {
	margin-bottom: 15px;
	font-size: 16px;
	background: #f1f1f1;
	padding: 15px;
}
.totalaferryprice strong {
	display: block;
	font-size: 24px;
}
.numcounts {
}
.ferpop h4 {
	text-align: left;
	font-size: 24px;
	font-weight: 700;
}
.ferpop .close {
	position: absolute;
	right: 7px;
	top: 3px;
	font-size: 30px;
}
.numcounts {
	margin: 15px 0;
	display: inline-block;
	width: 100%;
}
.numcounts ul {
	list-style: none;
	padding: 0;
}
.numcounts ul li {
	width: 49%;
	float: left;
}
.numcounts ul li:first-child {
	margin-right: 2%;
}
.numcounts .inputs .adults {
	color: #000;
}
.numcounts .inputs .btn-number {
	background: #0077c1;
	color: #fff !important;
}
.popsubmit {
	width: 100%;
	clear: both;
}
.popsubmit button {
	width: 100%;
}

@media screen and (min-width: 600px) {
	.modal-sm {
		width: 350px;
	}
}

.resultsec {
	width: 100%;
	float: left;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	padding: 5px;
}
.resultsec ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.resultsec ul li {
	width: 33.33%;
	float: left;
	padding: 2px 0;
	font-weight: 600;
}
.resultsec ul li span {
	font-size: 14px;
	min-width: 140px;
	display: inline-block;
	background: #f1f1f1;
	padding: 10px 15px;
}
.resultsec ul li small {
	font-size: 14px;
	width: calc(100% - 145px);
	display: inline-block;
	padding: 0 5px;
}

.traveldteails {
	width: 100%;
	float: left;
}
.traveldteails h3 {
	font-size: 20px;
	margin-top: 30px;
}
.travelheading {
	background: #0077c1;
	color: #fff;
	border-radius: 4px 4px 0 0;
	padding: 10px 15px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.traveldteails .form-control {
	box-shadow: none;
	border: none;
	background: #f1f1f1;
	height: 40px;
}
.traveldteails select {
	background: #f1f1f1 url(../images/selectbg.png) 96% center no-repeat !important;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.traveldteails .textareasec {
	height: 80px;
}
.btn-info {
	font-weight: 600;
	font-size: 16px;
	border: none;
	background: #f26122;
	color: #fff;
	padding: 10px 30px;
	border-radius: 4px;
}

.ferrypage #ui-datepicker-div {
	z-index: 9991 !important;
	background: #fff;
	padding: 5px;
	border-radius: 4px;
}
/*.ferrypage #ui-datepicker-div {
  z-index: 9 !important;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
}*/
.ferrypage .ui-widget-content .ui-state-default {
	min-width: 30px;
	display: inline-block;
	background: none;
	border: none;
	border-radius: 0;
	min-height: 26px;
}

.blog-list ul li .btext .b-para {
	max-height: 66px;
}
.blog-list ul li .btext .b-title {
	margin-bottom: 10px;
}
.blog-list ul li .btext .b-para p {
	display: none;
}
.blog-list ul li .btext .b-para p:first-child {
	display: inline-block;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.desc_div {
	height: 77px;
	overflow: hidden;
}
.desc_div ul {
	padding-left: 15px;
}
.readfullbox.active .desc_div {
	height: auto;
}
.readfullbox {
	background: #fff;
	padding: 20px;
}

.readlesstext,
.readmoretext {
	display: none;
}
.readfullbox.active .readlesstext {
	display: inline-block;
}
.readfullbox .readmoretext {
	display: inline-block;
}
.readfullbox.active .readmoretext {
	display: none;
}
.package_list_outer .heading2 {
	margin-bottom: 5px;
}
.package_list_outer > p {
	margin-bottom: 10px;
	font-size: 16px;
}
h1 {
	font-size: 30px;
}
.titlepackage {
	text-align: left;
	margin-bottom: 25px;
	margin-top: 0;
}
.titlepackage h1 {
	margin-top: 0;
	margin-bottom: 10px;
}
.titlepackage p {
	/*white-space: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2;  -webkit-box-orient: vertical;*/
	font-size: 15px;
	margin-bottom: 10px;
}
.titlepackage.onlytitle {
	margin-bottom: 0;
}
.titlepackage.onlytitle .heading2 {
	margin-bottom: 10px;
}
.groupdisc {
	height: 110px;
	overflow: hidden;
	position: relative;
}
.groupdisc:after {
	content: "";
	width: 100%;
	height: 60px; /* background:linear-gradient(to bottom, transparent, rgba(246,246,251,0.8));*/
	position: absolute;
	left: 0;
	bottom: 0;
}
.groupdisc.fulltext {
	height: inherit;
	overflow: inherit;
}

.morecontent {
	color: #f26122;
	display: none;
	font-size: 15px;
	font-weight: 500;
}
.morecontent:after {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url(../images/arrows.png);
	background-position: 0 -38px;
	display: inline-block;
	margin-left: 10px;
	transform: rotate(90deg);
	background-repeat: no-repeat;
	vertical-align: middle;
}
.morecontent.moreclick {
	display: inline-block;
}
.groupdisc.fulltext:after {
	display: none;
}
.newslisting {
	list-style: none;
	padding: 0 !important;
	margin: 0;
}
.newslisting > li {
	width: 100%;
	border-top: 1px solid #ccc;
	float: left;
	margin: 0 !important;
}
.newslisting > li:first-child {
	border: 0;
}
.newstitls {
	width: 100%;
	float: left;
	padding: 7px 30px 7px 0px;
	position: relative;
	cursor: pointer;
}
.newstitls h3 {
	font-size: 16px;
	float: left;
	margin: 0;
	font-weight: 600;
	width: calc(100% - 150px);
}
.newstitls span {
	float: right;
	font-size: 14px;
	color: #636363;
}
.newsdisc {
	display: none;
}
.newstitls:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 5px;
	top: 9px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: rotate(45deg);
}
.newstitls.active:after {
	transform: rotate(-45deg);
}
.newsdisc.active {
	display: block;
}

.activitisec.blogact .owl-nav > .owl-prev {
	left: 0;
}
.activitisec.blogact .owl-nav > .owl-next {
	right: 0;
}

.showtab span {
	min-width: 125px;
}

.homeblog .all_btn_box {
	right: 95px;
}

.homeresort .all_btn_box {
	top: -8px;
}
.inner_page .slider_inner {
	max-height: 420px !important;
}
.inner_page .slider_subhead {
	display: none;
}
.inner_page .slider_container {
	top: inherit;
	bottom: 50px;
}

.page_home .content-section.cruise {
	padding-top: 30px;
}
.crubox {
	padding: 6px;
}
.crubox a {
	color: #111113;
}
.imgc {
	width: 100%;
	height: 180px;
	border-radius: 5px 5px 0px 0px;
	overflow: hidden;
}
.imgc img {
	object-position: center center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.crubox .scontent {
	font-weight: bold;
}

.aboutcontsec {
	border-bottom: 1px solid #ccc;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.aboutcontsec h4,
.termsec h4,
.videosec h4,
.otherferry h4 {
	text-align: left;
	margin-bottom: 5px;
}
.aboutcontsec p {
	font-size: 16px;
	font-weight: 300;
}

.inner_page.ferrypage .banner_full {
	display: none;
}
.termsec {
}
.termsec ul {
	padding-left: 15px;
}
.termsec ul li {
	margin-bottom: 10px;
	font-size: 16px;
}
.videosec {
}
.otherferry,
.videosec {
	padding-top: 40px;
}
.otherferry ul {
	list-style: none;
	padding: 0;
	margin: 0 -10px;
}
.otherferry ul li {
	width: 25%;
	float: left;
	padding: 10px;
}

.ferrybanner {
	padding: 0;
}
.ferrybanner ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ferrybanner ul li {
	width: 25%;
	float: left;
}
.ferrybanner ul li a {
	width: 100%;
	float: left;
	height: 250px;
}
.ferrybanner ul li a img {
	object-position: center center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.ferrybanner ul li:first-child {
	width: 50%;
}
.ferrybanner ul li:first-child a {
	height: 500px;
}

@media screen and (max-width: 1280px) {
	.slider-caption {
		font-size: 32px;
	}
}

@media screen and (max-width: 1199px) {
	.showtab span {
		min-width: 154px;
	}
	.attrac > li {
		padding: 8px 4px;
	}
	.testimonial_slider .testcont {
		padding: 5px 0;
	}
	.testimonial_slider .test-title {
		font-size: 18px;
	}
}

@media screen and (max-width: 991px) {
	.inner_page .slider_container {
		bottom: 0;
	}
}

@media screen and (max-width: 767px) {
	.ferrybanner ul li {
		width: 50%;
	}
	.ferrybanner ul li a {
		height: 100px;
	}
	.ferrybanner ul li:first-child {
		width: 100%;
	}
	.ferrybanner ul li:first-child a {
		height: 200px;
	}
	.ferybgsec h3 {
		font-size: 18px;
	}
	.otherferry ul li {
		width: 50%;
		padding: 5px;
	}

	.slider-caption {
		font-size: 26px;
		line-height: 1.2;
	}
	.slider_heading {
		margin-bottom: 0;
	}
	body:not(.page_home) .headsearch {
		padding: 15px 0;
	}

	/* footer .foot_blocks.faddress{margin-bottom: 30px;} */
	.destinationdetails .all_btn_box,
	.destination_packages_panel .all_btn_box {
		margin-top: 10px;
	}
	.left_panel {
		margin-bottom: 25px;
	}
	.about_text .heading2 {
		margin-bottom: 10px;
	}
	.tabcontents {
		margin: 20px 0;
	}
	.newstitls h3 {
		width: 100%;
	}
	.newstitls span {
		float: left;
		font-size: 13px;
	}
	.ferrysearch {
		padding: 15px;
	}
	.ferrysearch > ul > li {
		width: 100%;
	}
	.ferrysearch > ul > li:nth-child(4),
	.ferrysearch > ul > li:nth-child(5) {
		width: 50%;
	}
	.ferrysearch > ul > li:nth-child(6) {
		width: 100%;
	}
	.ferryresult > ul > li > div {
		width: 33.33%;
		text-align: center;
		padding: 10px 5px;
	}
	.ferryresult > ul > li > div.makruzimg {
		padding: 0;
	}
	.ferryresult > ul > li > div.makruzimg,
	.ferryresult > ul > li > div.pricefields,
	.ferryresult > ul > li > div.proceedbtn {
		width: 100%;
		text-align: center;
	}
	.makruzimg img {
		display: inline-block;
	}
	.banner_full:after {
		display: none;
	}
	.page_home .headsearch {
		bottom: 0;
		padding: 10px 0px 15px;
		background: #f1f1f1;
	}
	.page_home section.latestinfotravel {
		padding-top: 30px;
	}
	.all_btn_box {
		text-align: center;
		padding-top: 0px;
	}

	.text_lg.showcfile4 {
		max-height: 60px;
	}
	.page_home .destination_inner {
		height: 220px;
	}
	.testlistpage .tbox {
		float: left;
	}
	.testcont {
		border-radius: 5px;
	}
	.testcont::after {
		display: none;
	}

	.blogbox .scontent {
		min-height: auto;
		margin-bottom: 5px;
	}
	.hotel_info {
		margin-bottom: 0 !important;
	}
	.fqcont > * {
		font-size: 15px;
	}
	.page_home .testcont {
		padding: 0;
	}
	.singleBanner .main_slider_outer .slider_inner {
		height: 200px;
	}
	/*.main_slider_panel:not(.main_slider) .slider_inner {
  height: 160px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}*/
	.singleBanner .slider_img {
		max-height: 200px;
	}

	.singleBanner .main_slider_outer .slider_inner img {
		object-position: center center;
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.crubox .scontent {
		min-height: inherit;
	}
	/* .crack-img{
		transform: rotate(180deg);
		position: relative;
		top: 203px !important;
	} */
}

@media screen and (max-width: 479px) {
	.otherferry ul li {
		width: 100%;
	}
	.showtab {
		padding: 15px 30px;
	}
	.showtab span {
		display: block;
		height: auto;
	}
	.owl-nav {
		display: none;
	}
	.traveltab .owl-nav {
		display: block;
	}
	.all_btn_box {
		padding-top: 10px;
	}
	.all_btn_box .btn {
		min-width: 140px;
	}
	.testcont {
		margin-top: 10px;
	}
	/* .crack-img{
		transform: rotate(180deg);
		position: relative;
		top: 203px !important;
	} */
}

#ui-datepicker-div {
	z-index: 9999 !important;
}
.blogcategory {
	background: #fff;
	margin-bottom: 30px;
}
.blogcategory > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.blogcategory > ul > li {
	width: 100%;
	display: block;
	border-top: 1px solid #f1f1f1;
}
.blogcategory > ul > li a {
	display: block;
	padding: 10px 15px;
	font-size: 16px;
}
.blogcategory > ul > li:first-child {
	border: none;
}

.newsdisc.active table tbody tr:nth-child(1) {
	background: rgb(180, 198, 231);
}
.newsdisc.active table tbody tr:not(:first-child) td:not(:last-child) {
	background: #ffede5;
}
.newsdisc.active table tbody tr:not(:first-child):nth-child(even) td:last-child {
	background: rgb(244, 176, 132);
}
.newsdisc.active table tbody tr:not(:first-child):nth-child(odd) td:last-child {
	background: rgb(169, 208, 142);
}

/*Rakshit*/
.groupdisc h2 {
	font-size: 20px;
	color: #000;
}
.content-section.latestinfotravel {
	display: none !important;
}
.detail_page .main_panel {
	width: calc(100% - 480px);
	float: left;
}

.scuba_package_css img {
	height: 500px;
	object-fit: cover;
	width: 100%;
	margin-bottom: 15px;
}
.scuba_package_css table {
	width: 100%;
	margin-bottom: 15px;
}
.scuba_package_css table th {
	border: 1px solid #ccc;
	background-color: rgba(0, 119, 193, 0.8);
	border-color: #9b9b9b;
	color: #fff;
	font-weight: bold;
	text-align: center;
	vertical-align: top;
	padding: 10px 5px;
}
.scuba_package_css table tr td {
	border: 1px solid #ccc;
	font-weight: bold;
	text-align: center;
	vertical-align: top;
	padding: 10px 5px;
}
.scuba_package_css table tr:nth-child(even) td {
	background-color: #f9f9f9;
}
.videoimg {
	width: 100%;
	position: relative;
}

.videoimg img:nth-child(2) {
	position: absolute;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.videoimg img:nth-child(1) {
	width: 100%;
}
.scuba_package_css ul li {
	font-size: 15px;
	color: #232327;
	margin-bottom: 5px;
}
.scuba_package_css ul li img {
	margin-top: 10px;
}
.scuba_package_css h2 {
	margin-top: 0;
}

.scuba_package_css .owl-item img {
	height: 200px;
}
ul.dropdown-menu1 {
	position: absolute;
	right: -100%;
	top: 100%;
	background: #fff;
	width: 283px;
	display: none;
	border: 1px solid #f2f2f2;
	border-radius: 0 0 3px 3px;
	left: auto%;
	top: 0;
}
.topmenu .menulist > li > ul > li:hover ul {
	display: block;
}
.dropdown-menu1 li a {
	white-space: normal;
	padding: 7px 15px;
	font-size: 14px;
	display: block;
	color: #3e3e3e;
}

.packages_page .package_info_inner ul li {
	list-style: disc;
	color: #000;
}
.panel_main_inner {
	display: flex;
}
.content-section,
section {
	overflow: unset;
}
.page_blog_detail .enqform {
	position: sticky;
	top: 70px;
}
.package_design {
	background: #fff;
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
	padding: 2rem;
	margin-bottom: 3rem;
}

.package_design img {
	margin-bottom: 0;
}

.scuba_package_css h2 {
	margin-bottom: 1.5rem;
}

-webkit-.faddress ul li {
	color: #fff;
}

@supports (-webkit-touch-callout: none) {
	Â  Â  .faddress ul li {
		color: #fff;
	}
}

/*Rakshit*/

.blog_cat_info {
	padding: 15px 20px;
	background: #fff;
	width: 100%;
}
.blog_Cat_title {
	padding: 0;
	line-height: 1.3;
	min-height: auto;
	position: static;
	margin: 0 0 5px;
	height: 38px;
	overflow: hidden;
	font-size: 15px;
	font-weight: 800;
	color: #000;
}
.blog_cat_img_box {
	height: 200px;
}
.blog_cat_img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog_cat_slider {
	margin-top: 1rem;
}
.blog_cat_slider_1 {
	margin-top: 1rem;
}
.blog_cat_img {
	padding-right: 8px;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog_cat_img:hover {
	transform: scale(1.01);
}
.cost_price {
	font-size: 16px;
	color: #f0562f;
	font-weight: 600;
}
.cost_price span {
	font-size: 10px;
}
.btn_style a {
	display: inline-block;
	color: #fff;
	background: #f26122;
	border: 1px solid #f26122;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 30px;
}
.btn_style a:hover {
	background: #fef7d3;
	color: #f26122 !important;
}
.arrow-left-hover,
.arrow-right-hover {
   color: var(--color-blue-1);
   transform: translateX(-5px) scale(1.25);
}

.img1223 {
   margin-top: 20px;
   object-fit: cover;
   height: 600px;
   width: 100%;
}

.gallery {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1vh;
   margin-inline: auto;

   background: #141414;
   padding: 1vh;
}

.gallery>img {
   width: 100%;
   aspect-ratio: 1 / 1;
   object-fit: cover;
   transition: all 0.3s ease;
}

.gallery:has(img:hover) img:not(:hover) {
   scale: 0.8;
   opacity: 0.5;
   filter: grayscale(70%);
}

.accod {
   margin-bottom: 20px;
}

.nav-tabs .nav-link {
   background-color: #2f6e9f !important;
   color: white !important;
}

.nav-tabs .nav-link:hover {
   background-color: #2f6e9f !important;
   color: white !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
   background-color:#f26122 !important;
   color: white !important;
}

.reach {
   display: flex;
   column-gap: 10px;
   border: none;
}


@media (max-width: 900px) {
   .img1223 {
	  height: auto !important;
   }
}
@media screen and (max-width: 639px){
	.detail_info h2 {
		margin-bottom: 15px;
		padding: 0;
		font-size: 20px;
	}
}

.travel-blog{
	text-align: center;
	font-size: 20px;
	font-weight: 600;
    padding: 10px;
}
.tour_title h3{
	font-size: 20px !important;
    font-weight: 600 !important;
    padding: 10px !important;
}
.crack-img{
	transform: rotate(180deg);
	position: relative;
	bottom: 0;
}

/* @media screen and (max-width: 1320px){
.crack-img{
	transform: rotate(180deg);
	position: relative;
	top: 419px;
}
} */

footer a{
color: #fff !important;
}
.formlayout {
    padding: 14px;
    border: 1px solid lightgray;
    border-radius: 10px;
    margin-bottom: 20px;
}

.subnav{
	right: -110px;
}
  .Searchbtn {
        background-color: #036cbd;
        color: #fff;
    }

    .Searchbtn:hover {
        background-color: var(--color-dark-1);
        color: #fff;
    }
    .Bookbtn{
        width: 104px;
    font-size: 14px;
    height: 40px;
    }
    .booking{
        display: flex;
        justify-content: space-between;
		gap: 80px;
    }
    .waterimg
    {
      width: 100%;
      object-fit: cover;
      height: 250px;
      border-radius: 12px;
    }
	.subnav1{
		right: -158px !important;
	}
	.tabbtn:hover{
		color: #fff !important;
	}
	.btn:hover{
		border: none;
	}


	@media (max-width: 768px) {
		.reverscol{
			display: flex;
			flex-direction: column-reverse !important;  
		}
		.btn{
			width: 100%;
		}
		.btn:hover{
			border: none;
		}

		.preloader__title {
			font-size: 20px;
			font-weight: 600;
			line-height: 68px;
			letter-spacing: 0em;
			margin-top: 16px;
			color: #036cbd !important;
		}
		.comment{
			display: flex;
			justify-content: center;
		}
		.header .header-menu .menu .subnav a
		{
		  font-size: 14px;
		}
	  }

	  /* new css 21-05-2024 */
	  .waterimg{
		height: unset !important;
		max-height: 300px !important;
	  }


	  /* new css written on date 22-05-2024 */

	  @media (max-width: 1600px){
		.beach-pra{
			display: -webkit-box;
            -webkit-line-clamp: 8;
           -webkit-box-orient: vertical;  
            overflow: hidden;
			text-align: justify;
		}
	  }

	  @media (max-width: 425px){
		.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
			padding-left: unset  !important;
			padding-right: unset !important;
		  }
	  }

	  