/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&amp;display=swap");
:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme-color: #f27507;
	--theme-color-2: #fb5b32;
	--header: #151415;
	--base: #f27507;
	--text: #455151;
	--border: #e6efff;
	--ratting: #f8bc26;
	--bg: #efeefa;
	---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.theme-btn {
	display: inline-block;
	vertical-align: middle;
	background-color: var(--theme-color);
	color: var(--white);
	font-size: 17px;
	font-weight: 800;
	padding: 9px 15px 9px 30px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 72px;
	font-family: "Nunito", sans-serif;
	line-height: 1;
}

@media (max-width: 575px) {
	.theme-btn {
		padding: 5px 10px 5px 20px;
		font-size: 16px;
	}
}

.theme-btn.theme-btn-2 {
	background-color: var(--theme-color-2);
}

.theme-btn.theme-btn-2::before {
	background-color: var(--header);
}

.theme-btn.theme-btn-2::after {
	background-color: var(--header);
}

.theme-btn span {
	position: relative;
	color: var(--white);
	z-index: 999;
	margin-right: 25px;
}

@media (max-width: 575px) {
	.theme-btn span {
		margin-right: 15px;
	}
}

.theme-btn i {
	position: relative;
	color: var(--header);
	z-index: 999;
	width: 48px;
	height: 48px;
	line-height: 48px;
	background-color: var(--white);
	border-radius: 50%;
}

.theme-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 150%;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	background-color: var(--theme-color-2);
	-webkit-transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 150%;
	height: 150%;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
	background-color: var(--theme-color-2);
	-webkit-transition-duration: 700ms;
	transition-duration: 700ms;
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn:hover {
	background-color: var(--theme-color-2);
	color: var(--white);
}

.theme-btn:hover::before {
	top: 100%;
}

.theme-btn:hover::after {
	bottom: -50%;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
	font-family: "Nunito", sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	font-weight: 500;
}

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

button {
	border: none;
	background-color: transparent;
	padding: 0;
}

input:focus {
	color: var(--white);
	outline: none;
}

input {
	color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Prompt", sans-serif;
	margin: 0px;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: 400;
}

h1 {
	font-size: 94px;
	font-weight: 700;
}

h2 {
	font-size: 48px;
	font-weight: 700;
}

@media (max-width: 1199px) {
	h2 {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	h2 {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	h2 {
		font-size: 28px;
	}
}

h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 150%;
}

@media (max-width: 575px) {
	h3 {
		font-size: 20px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 500;
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--header);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

p {
	margin: 0px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.page-nav-wrap {
    margin-top: 30px;
}

.page-nav-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-nav-wrap ul a,
.page-nav-wrap ul strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #f27507;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-nav-wrap ul a {
    color: #f27507;
    background: #fff;
}

.page-nav-wrap ul a:hover {
    background: #f27507;
    color: #fff;
    border-color: #f27507;
}

.page-nav-wrap ul strong {
    background: #f27507;
    color: #fff;
    border-color: #f27507;
    cursor: default;
}

.preloader {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: default;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999999;
}

.preloader .animation-preloader {
	z-index: 1000;
}

.preloader .animation-preloader .spinner {
	-webkit-animation: spinner 1s infinite linear;
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--theme-color);
	height: 9em;
	margin: 0 auto 3.5em auto;
	width: 9em;
}

@media (max-width: 767px) {
	.preloader .animation-preloader .spinner {
		width: 7.5em;
		height: 7.5em;
		margin: 0 auto 1.5em auto;
	}
}

.preloader .animation-preloader .txt-loading {
	font: bold 5em "Prompt", sans-serif, "Nunito", sans-serif;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (max-width: 767px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 2.5em;
	}
}

.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--theme-color);
	position: relative;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(2):before {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(3):before {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(4):before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(5):before {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(6):before {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(7):before {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.preloader
	.animation-preloader
	.txt-loading
	.letters-loading:nth-child(8):before {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
	-webkit-animation: letters-loading 4s infinite;
	animation: letters-loading 4s infinite;
	color: var(--header);
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	font-family: "Prompt", sans-serif;
	position: absolute;
	top: -3px;
	-webkit-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}

.preloader p {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 8px;
	color: var(--theme-color);
}

.preloader .loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	z-index: 1;
	pointer-events: none;
}

.preloader .loader .row {
	height: 100%;
}

.preloader .loader .loader-section {
	padding: 0px;
}

.preloader .loader .loader-section .bg {
	background-color: var(--bg);
	height: 100%;
	left: 0;
	width: 100%;
	-webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
	opacity: 0;
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
	width: 0;
	-webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
	transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
	height: 270px;
	position: fixed;
	top: -200%;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header-search-bar.search-open {
	top: 0;
}

.contact-search-form-box {
	margin-top: 50px;
}

.contact-search-form-box form {
	position: relative;
}

.contact-search-form-box form button {
	position: absolute;
	right: 30px;
	top: 15px;
	font-size: 18px;
}

.search-close {
	position: absolute;
	right: 50px;
	top: 35px;
	font-size: 50px;
	color: var(--header);
	font-weight: 300;
	width: 45px;
	height: 45px;
}

.search-bar .contact-search-form-box input {
	border: none;
	width: 100%;
	outline: none;
	color: var(--header);
	border-bottom: 1px solid var(--border);
	font-size: 24px;
	padding-bottom: 30px;
	font-weight: 400;
	line-height: 1;
}

@media (max-width: 767px) {
	.search-bar .contact-search-form-box input {
		font-size: 22px;
	}
}

.search-bar .contact-search-form-box input::-webkit-input-placeholder {
	color: var(--header);
}

.search-bar .contact-search-form-box input:-ms-input-placeholder {
	color: var(--header);
}

.search-bar .contact-search-form-box input::-ms-input-placeholder {
	color: var(--header);
}

.search-bar .contact-search-form-box input::placeholder {
	color: var(--header);
}

.search-bar .contact-search-form-box i {
	color: var(--theme-color);
}

.search-bar .contact-search-form-box p {
	color: #666c78;
	padding-top: 15px;
}

.search-bar .search-bar-title {
	font-size: 25px;
}

.back-to-top {
	border-radius: 50%;
	background-color: var(--theme-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: var(--white);
	font-size: 18px;
	position: fixed;
	display: inline-block;
	z-index: 9999;
	right: 30px;
	bottom: 30px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}

.back-to-top:hover {
	background-color: var(--header);
	color: var(--white);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0);
	transform: translate(0);
}

.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -7px;
}

@media (max-width: 767px) {
	.section-title {
		text-align: center;
		margin-bottom: 0;
	}
}

.section-title span {
	font-size: 16px;
	color: var(--theme-color);
	font-weight: 600;
	line-height: 1;
	font-family: "Nunito", sans-serif;
	margin-bottom: 15px;
	display: inline-block;
}

.section-title-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.section-title-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		margin-bottom: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.section-title-area .section-title {
	margin-bottom: 0;
}

.center {
	text-align: center;
	margin: 0 auto;
}

.section-bg {
	background-color: var(--bg) !important;
}

.section-bg-2 {
	background-color: #ffeee3;
}

.sect-bg {
	background-color: #efeefa;
}

.footer-bg {
	background-color: var(--header);
}

.section-padding {
	padding: 80px 0;
}

.tour-details-section.section-padding {
	padding: 80px 0 !important;
	margin-bottom: 0 !important;
}

.tour-details-section.section-padding .container {
	padding-bottom: 0 !important;
}

@media (max-width: 1199px) {
	.section-padding {
		padding: 100px 0;
	}
	.tour-details-section.section-padding {
		padding: 70px 0 !important;
	}
}

@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
	.tour-details-section.section-padding {
		padding: 60px 0 !important;
	}
}

@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes arryUpDown {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

@keyframes arryUpDown {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

.animation__arryUpDown {
	-webkit-animation: arryUpDown 2s ease infinite alternate;
	animation: arryUpDown 2s ease infinite alternate;
}

@-webkit-keyframes arryLeftRight {
	0% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	100% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

@keyframes arryLeftRight {
	0% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	100% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

.animation__arryLeftRight {
	-webkit-animation: arryLeftRight 2s ease infinite alternate;
	animation: arryLeftRight 2s ease infinite alternate;
}

@-webkit-keyframes shine {
	from {
		-webkit-mask-position: 150%;
	}
	to {
		-webkit-mask-position: -50%;
	}
}

@keyframes shine {
	from {
		-webkit-mask-position: 150%;
	}
	to {
		-webkit-mask-position: -50%;
	}
}

@-webkit-keyframes cir36 {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes cir36 {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounce-x {
	-webkit-animation: bounce-x 7s infinite linear;
	animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
	-webkit-animation: slide 5s linear infinite;
	animation: slide 5s linear infinite;
}

.delay1 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.delay2 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.delay3 {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

.delay4 {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}

.delay5 {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-150);
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-90);
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		-webkit-transform: translateX(90);
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(150);
		transform: translateX(150);
	}
}

@keyframes slide {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-150);
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-90);
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		-webkit-transform: translateX(90);
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(150);
		transform: translateX(150);
	}
}

/*img-animation**********************/
.img-custom-anim-left {
	-webkit-animation: img-anim-left 1.3s forwards
		cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
		0.4s;
	opacity: 0;
}

@-webkit-keyframes img-anim-left {
	0% {
		-webkit-transform: translateX(-5%);
		transform: translateX(-5%);
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes img-anim-left {
	0% {
		-webkit-transform: translateX(-5%);
		transform: translateX(-5%);
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-right {
	-webkit-animation: img-anim-right 1.3s forwards
		cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
		0.4s;
	opacity: 0;
}

@-webkit-keyframes img-anim-right {
	0% {
		-webkit-transform: translateX(5%);
		transform: translateX(5%);
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes img-anim-right {
	0% {
		-webkit-transform: translateX(5%);
		transform: translateX(5%);
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-left {
	-webkit-animation: img-anim-left 1.3s forwards
		cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
		0.4s;
	opacity: 0;
}

@keyframes img-anim-left {
	0% {
		-webkit-transform: translateX(-5%);
		transform: translateX(-5%);
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-top {
	-webkit-animation: img-anim-top 1.3s forwards
		cubic-bezier(0.645, 0.045, 0.355, 1);
	animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@-webkit-keyframes img-anim-top {
	0% {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes img-anim-top {
	0% {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.img-custom-anim-bottom {
	-webkit-animation: img-anim-bottom 1.3s forwards
		cubic-bezier(0.645, 0.045, 0.355, 1);
	animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@-webkit-keyframes img-anim-bottom {
	0% {
		-webkit-transform: translateY(5%);
		transform: translateY(5%);
		-webkit-clip-path: inset(100% 0 0 0);
		clip-path: inset(100% 0 0 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes img-anim-bottom {
	0% {
		-webkit-transform: translateY(5%);
		transform: translateY(5%);
		-webkit-clip-path: inset(100% 0 0 0);
		clip-path: inset(100% 0 0 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@-webkit-keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes cir36 {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rounded {
	50% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
}

@keyframes rounded {
	50% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
}

@-webkit-keyframes up-down {
	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@-webkit-keyframes letters-loading {
	0%,
	75%,
	100% {
		opacity: 0;
		-webkit-transform: rotateY(-90deg);
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

@keyframes letters-loading {
	0%,
	75%,
	100% {
		opacity: 0;
		-webkit-transform: rotateY(-90deg);
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}
}

@keyframes loaderspin {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes loaderspin {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes loaderpulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes loaderpulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes rounded {
	50% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
}

@keyframes cir36 {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.float-bob-y {
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

.float-bob-x {
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounce-x {
	-webkit-animation: bounce-x 7s infinite linear;
	animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
	.menu-thumb {
		display: none !important;
	}
}

.header-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 0;
}

.header-main .main-menu ul {
	margin-bottom: 0;
}

.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	-webkit-margin-end: 20px;
	margin-inline-end: 20px;
}

@media (max-width: 1899px) {
	.header-main .main-menu ul li {
		-webkit-margin-end: 35px;
		margin-inline-end: 35px;
	}
}

@media (max-width: 1600px) {
	.header-main .main-menu ul li {
		-webkit-margin-end: 30px;
		margin-inline-end: 30px;
	}
}

@media (max-width: 1399px) {
	.header-main .main-menu ul li {
		-webkit-margin-end: 25px;
		margin-inline-end: 25px;
	}
}

.header-main .main-menu ul li:last-child {
	-webkit-margin-end: 0;
	margin-inline-end: 0;
}

.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: var(--header);
	padding: 20px 0;
	text-align: left;
	position: relative;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-family: "Nunito", sans-serif;
}

.header-main .main-menu ul li.active a {
	color: var(--theme-color);
}

.header-main .main-menu ul li a .head-icon {
	margin-left: 0;
	margin-right: 5px;
}

.header-main .main-menu ul li a i {
	margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
	color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 250px;
	background: var(--white);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	-webkit-transform-origin: top center;
	transform-origin: top center;
	color: var(--header);
	-webkit-box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
	box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 30px 30px;
	border-radius: 5px;
}

.header-main .main-menu ul li .submenu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
	padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 16px;
	font-weight: 700;
	color: var(--header);
	padding: 0 0;
	padding-bottom: 0;
	padding-top: 0;
	text-transform: capitalize;
	font-family: "Nunito", sans-serif;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
	color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
	border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
	inset-inline-start: 113%;
	top: 0;
	visibility: hidden;
	opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
	color: var(--theme-color) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
	color: var(--theme-color);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
	-webkit-transform: translateY(1);
	transform: translateY(1);
	visibility: visible;
	opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
	position: absolute;
	top: 50%;
	inset-inline-end: 25px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--theme-color);
}

.header-main .main-menu ul li .has-homemenu {
	width: 800px;
	padding: 30px 30px 10px 30px;
	opacity: 0;
	left: -250px;
	visibility: hidden;
	padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
	.header-main .main-menu ul li .has-homemenu .homemenu-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
	position: relative;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-thumb {
	position: relative;
	overflow: hidden;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-thumb
	img {
	width: 100%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-thumb
	img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-title
	a {
	color: var(--header);
}

.header-main
	.main-menu
	ul
	li
	.has-homemenu
	.homemenu-items
	.homemenu
	.homemenu-title
	a:hover {
	color: var(--theme-color) !important;
}

.header-main .main-menu ul li:hover > a {
	color: var(--theme-color);
}

.header-main .main-menu ul li:hover > a::after {
	color: var(--theme-color);
}

.header-main .main-menu ul li:hover > .submenu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.header-main .header-right {
	gap: 45px;
}

@media (max-width: 1399px) {
	.header-main .header-right {
		gap: 20px;
	}
}

.header-main .header-right .search-icon {
	color: var(--header);
	font-size: 18px;
}

.header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	color: var(--header);
}

.header-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: transparent;
}

.header-section .container-fluid {
	padding: 0 150px;
}

@media (max-width: 1899px) {
	.header-section .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.header-section .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.header-section .container-fluid {
		padding: 0 30px;
	}
}

.header-section.header-inner {
	position: static;
}

.header-top-section {
	background: #1d231f;
	padding: 12px 0;
}

@media (max-width: 991px) {
	.header-top-section {
		display: none;
	}
}

.header-top-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-top-wrapper .top-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.header-top-wrapper .top-left li {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.65);
	text-transform: capitalize;
}

.header-top-wrapper .top-left li a {
	color: rgba(255, 255, 255, 0.65);
}

.header-top-wrapper .top-left li i {
	margin-right: 8px;
}

.header-top-wrapper .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.header-top-wrapper .social-icon a {
	color: rgba(255, 255, 255, 0.65);
}

.header-top-wrapper .social-icon a:hover {
	color: var(--theme-color-2);
}

.header-1 .header-right .contact-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

@media (max-width: 1600px) {
	.header-1 .header-right .contact-items {
		display: none;
	}
}

.header-1 .header-right .contact-items .icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	background-color: var(--theme-color-2);
	text-align: center;
}

.header-1 .header-right .contact-items .content span {
	color: #6f7373;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 2px;
}

.header-1 .header-right .contact-items .content h6 {
	font-size: 16px;
	font-weight: 800;
	font-family: "Nunito", sans-serif;
}

.header-1 .search-toggle {
	color: var(--header);
	font-size: 16px;
}

.header-1 .sidebar__toggle {
	cursor: pointer;
}

.header-1 .sidebar__toggle .header-bar {
	position: relative;
	width: 31px;
	height: 18px;
}

.header-1 .sidebar__toggle .header-bar span {
	position: absolute;
	width: 100%;
	height: 2px;
	display: inline-block;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	left: 0;
	background: var(--header);
	overflow: hidden;
}

.header-1 .sidebar__toggle .header-bar span:first-child {
	top: 0;
	background: var(--header);
	left: 16px;
	width: 15px;
}

.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
	top: 44%;
	background: var(--header);
	width: 30px;
}

.header-1 .sidebar__toggle .header-bar span:last-child {
	bottom: 0;
	background: var(--header);
	width: 15px;
}

.header-1 .sidebar__toggle .header-bar.active span:first-child {
	-webkit-transform: rotate(45deg) translate(3px, 9px);
	transform: rotate(45deg) translate(3px, 9px);
}

.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
	opacity: 0;
}

.header-1 .sidebar__toggle .header-bar.active span:last-child {
	-webkit-transform: rotate(-45deg) translate(3px, -9px);
	transform: rotate(-45deg) translate(3px, -9px);
}

.header-1 .sidebar__toggle .header-bar:hover {
	cursor: pointer;
}

.header-1 .theme-btn {
	padding: 7px 10px 7px 25px;
}

@media (max-width: 1199px) {
	.header-1 .theme-btn {
		display: none;
	}
}

.header-1.header-2 .header-main .main-menu ul li a {
	color: var(--white);
}

.header-1.header-2 .header-main .main-menu ul li a:hover {
	color: var(--theme-color) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu {
	color: var(--header);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a {
	color: var(--header);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme-color) !important;
}

.header-1.header-2 .header-main .header-right .search-icon {
	color: var(--white);
}

.header-logo img,
.footer-logo img {
	width: 100%;
	height: 41px;
	object-fit: contain;
	object-position: left;
}

.header-1.header-2 .header-logo {
	display: none;
}

.header-1.header-2 .sidebar__toggle .header-bar span {
	background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:first-child {
	background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:nth-child(2) {
	background: var(--white);
}

.header-1.header-2 .sidebar__toggle .header-bar span:last-child {
	background: var(--white);
}

.header-1.header-2 .header-right .contact-items .content span {
	color: var(--white);
}

.header-1.header-2 .header-right .contact-items .content h6 {
	color: var(--white);
}

.header-1.header-2 .header-right .contact-items .content h6 a {
	color: var(--white);
}

.header-1.header-2 .header-right .search-toggle {
	color: var(--white);
}

.header-1.header-3 .mean__menu-wrapper {
	border-radius: 58px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	background: rgba(255, 255, 255, 0.06);
	padding-left: 35px;
	padding-right: 35px;
}

.header-1.header-4 .header-main {
	padding: 0;
}

@media (max-width: 1199px) {
	.header-1.header-4 .header-main {
		padding: 10px 0;
	}
}

.header-1.header-4 .theme-btn {
	border-radius: 0;
	padding: 15px 30px;
}

.header-1.header-4 .theme-btn i {
	border-radius: 0;
	width: initial;
	height: initial;
	background-color: transparent;
	color: var(--white);
}

.header-1.header-4 .theme-btn span {
	margin-right: 12px;
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 9999;
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
	background-color: var(--white);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: var(---box-shadow);
	box-shadow: var(---box-shadow);
}

.sticky.header-2 .header-main .main-menu ul li a {
	color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
	color: var(--theme-color) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu {
	color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
	color: var(--header);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme-color) !important;
}

.sticky.header-2 .header-main .header-right .search-icon {
	color: var(--header);
}

.sticky.header-2 .header-logo {
	display: block;
}

.sticky.header-2 .header-logo-2 {
	display: none;
}

.sticky.header-2 .header-right .contact-items .content span {
	color: var(--header);
}

.sticky.header-2 .header-right .contact-items .content h6 {
	color: var(--header);
}

.sticky.header-2 .header-right .contact-items .content h6 a {
	color: var(--header);
}

.sticky.header-2 .header-right .search-toggle {
	color: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span {
	background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:first-child {
	background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:nth-child(2) {
	background: var(--header);
}

.sticky.header-2 .sidebar__toggle .header-bar span:last-child {
	background: var(--header);
}

.sticky.header-3 .mean__menu-wrapper {
	border-radius: 0;
	border: none;
	background: transparent;
	padding-left: 0;
	padding-right: 0;
}

.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--theme-color);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-webkit-transition: opacity 0.45s ease-in-out,
		-webkit-transform 0.45s ease-in-out;
	transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out,
		-webkit-transform 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas__logo a img {
	width: 150px;
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
	font-size: 32px;
	margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
	color: var(--header);
	margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme-color);
	position: relative;
	z-index: 9;
	cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
	margin-top: 30px;
	gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
	width: 52px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: transparent;
	color: var(--text);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
	border: 1px solid rgba(21, 20, 21, 0.14);
	border-radius: 5px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border: 1px solid var(--theme-color);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
	font-size: 28px;
	margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt input,
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
	border: none;
	outline: none;
	border: 1px solid rgba(21, 20, 21, 0.14);
	border-radius: 5px;
	color: var(--text);
	font-weight: 500;
	padding: 14px 20px;
	line-height: 1;
	width: 100%;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
	padding-bottom: 100px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
	text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
	margin-top: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

@media (max-width: 1399px) {
	.offcanvas__wrapper .offcanvas__content .offcanvas-button {
		margin-top: 30px;
	}
}

@media (max-width: 575px) {
	.offcanvas__wrapper .offcanvas__content .offcanvas-button {
		margin-top: 20px;
		margin-bottom: 10px;
	}
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}

.offcanvas__overlay.overlay-open {
	opacity: 0.8;
	visibility: visible;
}

@media (max-width: 450px) {
	.offcanvas__info {
		width: 350px;
	}
}

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

.breadcrumb-wrapper {
	position: relative;
	overflow: hidden;
	z-index: 9;
}

.breadcrumb-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(
		266deg,
		rgba(0, 0, 0, 0) 38.52%,
		rgba(0, 0, 0, 0.82) 81.13%
	);
}

.breadcrumb-wrapper .container-fluid {
	padding: 0 150px;
}

@media (max-width: 1600px) {
	.breadcrumb-wrapper .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.breadcrumb-wrapper .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.breadcrumb-wrapper .container-fluid {
		padding: 0 30px;
	}
}

.breadcrumb-wrapper .page-heading {
	position: relative;
	z-index: 99;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading {
		text-align: center;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 9;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	font-size: 24px;
	color: var(--white);
	font-weight: 700;
	text-transform: capitalize;
	font-family: "Nunito", sans-serif;
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		font-size: 16px;
	}
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--theme-color-2);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: var(--theme-color);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
	font-size: 20px;
	color: var(--white);
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
		font-size: 16px;
	}
}

.breadcrumb-wrapper .page-heading h1 {
	font-size: 48px;
	font-weight: bold;
	color: var(--white);
}

.breadcrumb-wrapper .plane-shape {
	position: absolute;
	bottom: 0;
	right: 70px;
}

@media (max-width: 1199px) {
	.breadcrumb-wrapper .plane-shape {
		display: none;
	}
}

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

.error-items .error-image {
	max-width: 672px;
	margin: 0 auto 50px;
	text-align: center;
}

.error-items .error-image img {
	width: 100%;
	height: 100%;
}

.error-items h2 {
	margin-bottom: 15px;
	font-size: 32px;
	font-weight: 600;
}

.error-items p {
	font-weight: 500;
	margin-bottom: 30px;
}

.mean-container a.meanmenu-reveal {
	display: none;
}

.mean-container .mean-nav {
	background: none;
	margin-top: 0;
}

.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
}

.mean-container .mean-nav > ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}

.mean-container .mean-nav > ul .homemenu {
	position: relative;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
	position: relative;
	width: 280px;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 60%;
	gap: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.mean-container
	.mean-nav
	> ul
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn {
	padding: 10px 30px;
	color: var(--white) !important;
	width: initial;
	font-size: 14px;
	text-align: center;
}

.mean-container
	.mean-nav
	> ul
	.homemenu
	.homemenu-thumb
	.demo-button
	.theme-btn:hover {
	color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(99, 92, 92, 0)),
		to(#292930)
	);
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
	width: 100%;
}

.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
	margin-top: 15px;
	display: inline-block;
	font-size: 16px;
}

.mean-container a.meanmenu-reveal {
	display: none !important;
}

.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--header);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
}

.mean-container .mean-nav ul li a.border-none {
	border: none;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme-color);
}

.mean-container .mean-nav ul li a .head-icon {
	display: none;
}

.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
	display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

@media (max-width: 1199px) {
	.mean-container .mean-nav ul li.menu-thumb {
		display: none;
	}
}

.hero-1 {
	background: rgba(99, 171, 69, 0.12);
	padding: 200px 0 0;
	position: relative;
}

@media (max-width: 767px) {
	.hero-1 {
		padding-top: 150px;
	}
}

@media (max-width: 575px) {
	.hero-1 {
		padding-top: 120px;
	}
}

.hero-1 .plane-shape {
	position: absolute;
	top: 20%;
	left: 40%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}

@media (max-width: 1199px) {
	.hero-1 .plane-shape {
		display: none;
	}
}

.hero-1 .offer-shape {
	position: absolute;
	right: 10%;
	top: 20%;
	-webkit-animation: bounce-x 7s infinite linear;
	animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
	.hero-1 .offer-shape {
		display: none;
	}
}

.hero-1 .container-fluid {
	padding: 0 150px;
}

@media (max-width: 1600px) {
	.hero-1 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.hero-1 .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.hero-1 .container-fluid {
		padding: 0 30px;
	}
}

.hero-1 .hero-content {
	position: relative;
	z-index: 99;
}

@media (max-width: 767px) {
	.hero-1 .hero-content {
		margin: 0 auto;
		text-align: center;
	}
}

.hero-1 .hero-content h6 {
	font-size: 30px;
	font-weight: 600;
	color: var(--theme-color);
	font-family: "Nunito", sans-serif;
	display: inline-block;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.hero-1 .hero-content h1 {
		font-size: 70px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content h1 {
		font-size: 50px;
	}
}

.hero-1 .hero-content h1 span {
	font-weight: 500;
}

.hero-1 .hero-content p {
	font-size: 20px;
	max-width: 560px;
	margin-top: 10px;
}

@media (max-width: 767px) {
	.hero-1 .hero-content p {
		font-size: 18px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-content p {
		font-size: 16px;
	}
}

.hero-1 .booking-list-area {
	border-radius: 12px;
	background: var(--white);
	-webkit-box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	position: relative;
	z-index: 9;
	padding: 40px;
	width: 1320px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 50px;
	z-index: 99;
}

@media (max-width: 1399px) {
	.hero-1 .booking-list-area {
		width: 1130px;
	}
}

@media (max-width: 1199px) {
	.hero-1 .booking-list-area {
		width: initial;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 50px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
	}
}

.hero-1 .booking-list-area .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	max-width: 155px;
	width: 100%;
}

@media (max-width: 1199px) {
	.hero-1 .booking-list-area .booking-list {
		max-width: initial;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
	}
}

.hero-1 .booking-list-area .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	font-family: "Nunito", sans-serif;
}

.hero-1 .booking-list-area .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
}

.hero-1 .booking-list-area .form-clt .nice-select::after {
	right: -30px;
	border-bottom: 1px solid var(--header);
	border-right: 1px solid var(--header);
	width: 9px;
	height: 9px;
}

.hero-1 .booking-list-area .form-clt .nice-select .list {
	width: 100%;
	background-color: var(--bg);
	z-index: 9999;
}

.hero-1 .booking-list-area .form-clt .nice-select .focus {
	background-color: transparent;
	font-weight: 400;
	color: var(--text);
}

.hero-1 .booking-list-area .form-clt .nice-select .option {
	border: none;
}

.hero-1 .booking-list-area .form-clt .nice-select .option:hover {
	background-color: transparent;
}

.hero-1 .booking-list-area .theme-btn {
	padding: 18px 30px;
}

@media (max-width: 1199px) {
	.hero-1 .booking-list-area .theme-btn {
		width: 100%;
	}
}

.hero-1 .booking-list-area .theme-btn span {
	margin-right: 0;
}

.hero-1 .booking-list-area .theme-btn span i {
	width: initial;
	height: initial;
	line-height: initial;
	background-color: transparent;
	margin-left: 10px;
	color: var(--white);
}

.hero-1 .hero-image {
	width: 925px;
	height: 925px;
	margin-left: -100px;
	margin-bottom: -120px;
}

@media (max-width: 1600px) {
	.hero-1 .hero-image {
		width: 800px;
		height: 800px;
		margin-bottom: 0;
	}
}

@media (max-width: 1399px) {
	.hero-1 .hero-image {
		width: 700px;
		height: 700px;
	}
}

@media (max-width: 1199px) {
	.hero-1 .hero-image {
		margin-left: 0;
		margin-bottom: 0;
		margin: 0 auto;
		width: 800px;
		height: 800px;
	}
}

@media (max-width: 991px) {
	.hero-1 .hero-image {
		width: 650px;
		height: 650px;
	}
}

@media (max-width: 767px) {
	.hero-1 .hero-image {
		width: 550px;
		height: 550px;
	}
}

@media (max-width: 575px) {
	.hero-1 .hero-image {
		width: 450px;
		height: 450px;
	}
}

@media screen and (max-width: 500px) {
	.hero-1 .hero-image {
		width: 400px;
		height: 400px;
	}
}

@media (max-width: 470px) {
	.hero-1 .hero-image {
		width: 300px;
		height: 300px;
	}
}

.hero-1 .hero-image img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.hero-2 {
	position: relative;
	z-index: 9;
	padding: 250px 0 200px;
}

@media (max-width: 991px) {
	.hero-2 {
		padding: 200px 0 160px;
	}
}

@media (max-width: 767px) {
	.hero-2 {
		padding: 170px 0 140px;
	}
}

@media (max-width: 575px) {
	.hero-2 {
		padding: 150px 0 120px;
	}
}

.hero-2 .container-fluid {
	padding: 0 150px;
}

@media (max-width: 1899px) {
	.hero-2 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.hero-2 .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.hero-2 .container-fluid {
		padding: 0 30px;
	}
}

.hero-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(
		87deg,
		rgba(0, 0, 0, 0.6) 35.11%,
		rgba(0, 0, 0, 0) 97.49%
	);
	z-index: -1;
}

.hero-2 .hero-content {
	max-width: 870px;
	margin: 0 auto;
}

@media (max-width: 1199px) {
	.hero-2 .hero-content {
		text-align: center;
	}
}

.hero-2 .hero-content h1 {
	font-size: 104px;
	color: var(--white);
	line-height: 100%;
}

.hero-2 .hero-content h1 span {
	text-align: center;
	margin-left: 100px;
}

@media (max-width: 1199px) {
	.hero-2 .hero-content h1 span {
		margin-left: 0;
	}
}

@media (max-width: 1199px) {
	.hero-2 .hero-content h1 {
		font-size: 85px;
	}
}

@media (max-width: 767px) {
	.hero-2 .hero-content h1 {
		font-size: 75px;
		line-height: 110%;
	}
}

@media (max-width: 575px) {
	.hero-2 .hero-content h1 {
		font-size: 45px;
	}
}

.hero-2 .hero-content .client-info-items {
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

@media (max-width: 1899px) {
	.hero-2 .hero-content .client-info-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.hero-2 .hero-content .client-info-items .content {
	max-width: 495px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	border-right: 3px solid var(--white);
	padding-right: 40px;
}

@media (max-width: 1199px) {
	.hero-2 .hero-content .client-info-items .content {
		border-right: none;
		padding-right: 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.hero-2 .hero-content .client-info-items .content p {
	font-size: 18px;
	color: var(--white);
	font-weight: bold;
	text-align: left;
}

@media (max-width: 1199px) {
	.hero-2 .hero-content .client-info-items .content p {
		text-align: center;
	}
}

.hero-2 .hero-content .client-info-items .theme-btn {
	background-color: #ff5722;
}

.hero-3 {
	padding: 180px 0 110px;
}

@media (max-width: 767px) {
	.hero-3 {
		padding-top: 140px;
	}
	.hero-3 .row {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
}

.hero-3 .container-fluid {
	padding: 0 150px;
}

@media (max-width: 1600px) {
	.hero-3 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.hero-3 .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.hero-3 .container-fluid {
		padding: 0 30px;
	}
}

@media (max-width: 767px) {
	.hero-3 .hero-content {
		margin: 0 auto;
		text-align: center;
	}
}

.hero-3 .hero-content h1 {
	font-size: 104px;
	font-weight: 900;
	letter-spacing: 1.04px;
	text-transform: uppercase;
	line-height: 113%;
	color: var(--white);
}

@media (max-width: 1399px) {
	.hero-3 .hero-content h1 {
		font-size: 80px;
	}
}

@media (max-width: 1199px) {
	.hero-3 .hero-content h1 {
		font-size: 60px;
	}
}

@media (max-width: 767px) {
	.hero-3 .hero-content h1 {
		font-size: 60px;
		line-height: 110%;
	}
}

@media (max-width: 575px) {
	.hero-3 .hero-content h1 {
		font-size: 45px;
	}
}

.hero-3 .hero-content p {
	font-weight: 700;
	color: var(--white);
	max-width: 650px;
	margin-top: 20px;
}

.hero-3 .hero-content .button-items {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

@media (max-width: 1199px) {
	.hero-3 .hero-content .button-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.hero-3 .hero-content .button-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.hero-3 .hero-content .button-items .theme-btn.bg-2 {
	background-color: #ff5722;
}

.hero-3 .destination-box-items {
	padding: 50px;
	background-color: var(--white);
	border-radius: 12px;
	-webkit-box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
}

@media (max-width: 767px) {
	.hero-3 .destination-box-items {
		padding: 30px;
	}
}

.hero-3 .destination-box-items p {
	font-weight: 500;
	color: #455151;
	margin-top: 10px;
	margin-bottom: 30px;
}

.hero-3 .destination-box-items p b {
	color: var(--theme-color);
}

.hero-3 .destination-box-items .booking-list-area .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	padding: 20px 25px;
	margin-bottom: 15px;
	border-radius: 10px;
}

.hero-3 .destination-box-items .booking-list-area .booking-list .content {
	width: 100%;
}

.hero-3 .destination-box-items .booking-list-area .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	font-family: "Nunito", sans-serif;
	margin-bottom: 5px;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	padding-right: 20px;
	height: initial;
	line-height: initial;
}

.hero-3
	.destination-box-items
	.booking-list-area
	.form-clt
	.nice-select::after {
	right: 0;
	border-bottom: 1px solid var(--header);
	border-right: 1px solid var(--header);
	width: 9px;
	height: 9px;
	top: 28%;
	margin-top: 0;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .nice-select .list {
	width: 100%;
	z-index: 9999;
}

.hero-3 .destination-box-items .booking-list-area .form-clt input {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	height: initial;
}

.hero-3 .destination-box-items .booking-list-area .form-clt .input-group-addon {
	margin-left: -55px !important;
	color: var(--header);
}

.hero-3 .destination-box-items .theme-btn {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid var(--theme-color);
	padding: 20px 15px 20px 30px;
	margin-top: 30px;
}

.hero-3 .destination-box-items .theme-btn span {
	text-align: center;
	color: var(--theme-color);
	margin-right: 0;
}

.hero-3 .destination-box-items .theme-btn i {
	background-color: var(--theme-color);
	color: var(--white);
	position: absolute;
	right: 6px;
	top: 5px;
	bottom: 5px;
}

.hero-3 .destination-box-items .theme-btn::before,
.hero-3 .destination-box-items .theme-btn::after {
	background-color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover {
	background-color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover i {
	background-color: var(--white);
	color: var(--theme-color);
}

.hero-3 .destination-box-items .theme-btn:hover span {
	color: var(--white);
}

.hero-4 {
	position: relative;
}

.hero-4 .hero-items {
	padding: 200px 0 260px;
	position: relative;
}

.hero-4 .hero-items .plane-shape {
	position: absolute;
	top: 35%;
	left: 20%;
}

@media (max-width: 1399px) {
	.hero-4 .hero-items .plane-shape {
		display: none;
	}
}

.hero-4 .hero-items .plane-shape-2 {
	position: absolute;
	bottom: 19%;
	right: 15%;
}

@media (max-width: 1399px) {
	.hero-4 .hero-items .plane-shape-2 {
		display: none;
	}
}

.hero-4 .hero-items .hero-bg {
	overflow: hidden;
	position: absolute !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: -2;
	background-size: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 8s ease-out 0s;
	transition: all 8s ease-out 0s;
}

.hero-4 .hero-items .hero-bg::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(21, 20, 21, 0.69);
	z-index: -1;
}

.hero-4 .hero-items .hero-content {
	text-align: center;
}

.hero-4 .hero-items .hero-content h6 {
	color: #fb5b32;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1;
}

.hero-4 .hero-items .hero-content h1 {
	font-weight: 700;
	font-size: 94px;
	color: var(--white);
	text-transform: capitalize;
}

@media (max-width: 767px) {
	.hero-4 .hero-items .hero-content h1 {
		font-size: 70px;
	}
}

@media (max-width: 575px) {
	.hero-4 .hero-items .hero-content h1 {
		font-size: 50px;
	}
}

.hero-4 .hero-items .hero-content h1 span {
	font-weight: 500;
	text-transform: capitalize;
}

.hero-4 .hero-items .hero-content h1 .shape-text {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.hero-4 .hero-items .hero-content h1 .shape-text::before {
	position: absolute;
	bottom: -15px;
	left: 0;
	z-index: -1;
	right: 0;
	content: "";
	width: 100%;
	height: 32px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/hero/new/line-2.png);
	background-position: center;
}

@media (max-width: 1199px) {
	.hero-4 .hero-items .hero-content h1 .shape-text::before {
		display: none;
	}
}

.hero-4 .hero-items .hero-content p {
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	margin-top: 10px;
}

.hero-4 .booking-list-area-1 {
	background: var(--white);
	border-radius: 57.5px;
	-webkit-box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	position: relative;
	z-index: 9;
	padding: 35px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: -65px;
	z-index: 999;
}

@media (max-width: 1199px) {
	.hero-4 .booking-list-area-1 {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
	}
}

.hero-4 .booking-list-area-1 .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	line-height: 1;
	width: 100%;
}

@media (max-width: 1199px) {
	.hero-4 .booking-list-area-1 .booking-list {
		display: -ms-grid;
		display: grid;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}

.hero-4 .booking-list-area-1 .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	font-family: "Nunito", sans-serif;
}

.hero-4 .booking-list-area-1 .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	padding-right: 20px;
	height: initial;
}

.hero-4 .booking-list-area-1 .form-clt .nice-select::after {
	right: 0;
	border-bottom: 1px solid var(--header);
	border-right: 1px solid var(--header);
	width: 9px;
	height: 9px;
	top: 28%;
	margin-top: 0;
}

.hero-4 .booking-list-area-1 .form-clt input {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	height: initial;
}

.hero-4 .booking-list-area-1 .form-clt .input-group-addon {
	margin-left: -55px !important;
	color: var(--header);
}

.hero-4 .booking-list-area-1 .theme-btn {
	padding: 18px 30px;
	width: 100%;
	max-width: 170px;
}

@media (max-width: 1199px) {
	.hero-4 .booking-list-area-1 .theme-btn {
		width: 100%;
		max-width: initial;
	}
}

.hero-4 .booking-list-area-1 .theme-btn span {
	margin-right: 0;
}

.hero-4 .booking-list-area-1 .theme-btn span i {
	width: initial;
	height: initial;
	line-height: initial;
	background-color: transparent;
	margin-left: 10px;
	color: var(--white);
}

.hero-4 .booking-list-area-1 .form-control {
	margin-top: 5px;
}

.hero-4 .booking-list-area-1 .form-control::-webkit-input-placeholder {
	color: var(--header);
}

.hero-4 .booking-list-area-1 .form-control:-ms-input-placeholder {
	color: var(--header);
}

.hero-4 .booking-list-area-1 .form-control::-ms-input-placeholder {
	color: var(--header);
}

.hero-4 .booking-list-area-1 .form-control::placeholder {
	color: var(--header);
}

.hero-4 .swiper-slide-active .hero-bg {
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

.hero-4 .array-button {
	position: absolute;
	top: 47%;
	left: 50px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 50px;
	z-index: 99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 1199px) {
	.hero-4 .array-button {
		display: none;
	}
}

.hero-4 .array-button .array-prev,
.hero-4 .array-button .array-next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.hero-4 .array-button .array-prev:hover,
.hero-4 .array-button .array-next:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.hero-5 {
	padding: 100px 0 100px;
	background-color: #ffeee3;
	position: relative;
}

.hero-5 .light-shape {
	position: absolute;
	top: 45px;
	left: 7%;
}

@media (max-width: 1399px) {
	.hero-5 .light-shape {
		display: none;
	}
}

.hero-5 .frame-shape {
	position: absolute;
	top: 40%;
	left: 55%;
}

@media (max-width: 1399px) {
	.hero-5 .frame-shape {
		display: none;
	}
}

.hero-5 .container-fluid {
	padding: 0 90px;
}

@media (max-width: 1600px) {
	.hero-5 .container-fluid {
		padding: 0 50px;
	}
}

@media (max-width: 1399px) {
	.hero-5 .container-fluid {
		padding: 0 40px;
	}
}

@media (max-width: 1199px) {
	.hero-5 .container-fluid {
		padding: 0 30px;
	}
}

.hero-5 .hero-content {
	text-align: center;
}

.hero-5 .hero-content h6 {
	color: #fb5b32;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1;
}

.hero-5 .hero-content h1 {
	font-size: 94px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.hero-5 .hero-content h1 {
		font-size: 70px;
	}
}

@media (max-width: 575px) {
	.hero-5 .hero-content h1 {
		font-size: 50px;
	}
}

.hero-5 .hero-content h1 span {
	font-weight: 500;
}

.hero-5 .hero-content h1 .shape-text {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.hero-5 .hero-content h1 .shape-text::before {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	content: "";
	width: 100%;
	height: 32px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/hero/new/line.png);
	background-position: center;
}

@media (max-width: 1399px) {
	.hero-5 .hero-content h1 .shape-text::before {
		display: none;
	}
}

.hero-5 .hero-content p {
	font-size: 20px;
	font-weight: 500;
	max-width: 560px;
	text-align: center;
	margin: 20px auto 0;
}

.hero-5 .booking-list-area {
	background: var(--white);
	border-radius: 57.5px;
	-webkit-box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.11);
	position: relative;
	z-index: 9;
	padding: 35px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 50px;
	z-index: 99;
}

@media (max-width: 1600px) {
	.hero-5 .booking-list-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
	}
}

.hero-5 .booking-list-area .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	line-height: 1;
	width: 100%;
}

@media (max-width: 1199px) {
	.hero-5 .booking-list-area .booking-list {
		display: -ms-grid;
		display: grid;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}

.hero-5 .booking-list-area .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	font-family: "Nunito", sans-serif;
}

.hero-5 .booking-list-area .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	padding-right: 20px;
	height: initial;
}

.hero-5 .booking-list-area .form-clt .nice-select::after {
	right: 0;
	border-bottom: 1px solid var(--header);
	border-right: 1px solid var(--header);
	width: 9px;
	height: 9px;
	top: 28%;
	margin-top: 0;
}

.hero-5 .booking-list-area .form-clt input {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	height: initial;
}

.hero-5 .booking-list-area .form-clt .input-group-addon {
	margin-left: -55px !important;
	color: var(--header);
}

.hero-5 .booking-list-area .theme-btn {
	padding: 18px 30px;
	width: 100%;
	max-width: 170px;
}

@media (max-width: 1600px) {
	.hero-5 .booking-list-area .theme-btn {
		width: 100%;
		max-width: initial;
	}
}

.hero-5 .booking-list-area .theme-btn span {
	margin-right: 0;
}

.hero-5 .booking-list-area .theme-btn span i {
	width: initial;
	height: initial;
	line-height: initial;
	background-color: transparent;
	margin-left: 10px;
	color: var(--white);
}

.hero-5 .booking-list-area .form-control {
	margin-top: 5px;
}

.hero-5 .booking-list-area .form-control::-webkit-input-placeholder {
	color: var(--header);
}

.hero-5 .booking-list-area .form-control:-ms-input-placeholder {
	color: var(--header);
}

.hero-5 .booking-list-area .form-control::-ms-input-placeholder {
	color: var(--header);
}

.hero-5 .booking-list-area .form-control::placeholder {
	color: var(--header);
}

.hero-5 .plane-shape {
	position: absolute;
	top: -177%;
	left: 45px;
}

@media (max-width: 1399px) {
	.hero-5 .plane-shape {
		display: none;
	}
}

.hero-5 .hero-image-items {
	margin-left: -15%;
}

@media (max-width: 1199px) {
	.hero-5 .hero-image-items {
		margin-left: 0;
	}
}

.hero-5 .hero-image-items .hero-image img {
	width: 100%;
	height: 100%;
	border-radius: 200px 200px 0 200px;
}

.hero-5 .hero-image-items .hero-image.style-2 {
	margin-top: 24px;
}

.hero-5 .hero-image-items .hero-image.style-2 img {
	border-radius: 200px 0 200px 200px;
}

.hero-5 .hero-image-items .hero-image.style-3 {
	height: 645px;
}

.hero-5 .hero-image-items .hero-image.style-3 img {
	border-radius: 200px 200px 200px 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.work-process-items {
	margin-top: 30px;
}

.work-process-items .work-process-img {
	max-width: 290px;
	margin: 0 auto;
}

.work-process-items .work-process-img img {
	width: 100%;
	height: 100%;
}

.work-process-items .work-process-content {
	text-align: center;
	margin-top: 30px;
}

.work-process-items .work-process-content span {
	width: 56px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	background-color: var(--theme-color);
	display: inline-block;
	border-radius: 50%;
	color: var(--white);
	font-size: 22px;
	font-weight: 600;
}

.work-process-items .work-process-content h3 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.work-process-items .work-process-content p {
	margin: 0 auto;
	max-width: 290px;
}

@media (max-width: 767px) {
	.choose-us-wrapper {
		margin: 0 auto;
		text-align: center;
	}
}

.choose-us-wrapper .choose-us-left-content {
	max-width: 450px;
}

@media (max-width: 767px) {
	.choose-us-wrapper .choose-us-left-content {
		margin: 0 auto;
		text-align: center;
	}
}

.choose-us-wrapper .choose-us-left-content .list-items {
	margin-top: 30px;
}

.choose-us-wrapper .choose-us-left-content .list-items li {
	font-size: 18px;
	font-weight: 700;
}

.choose-us-wrapper .choose-us-left-content .list-items li svg {
	margin-right: 5px;
}

.choose-us-wrapper .choose-us-left-content .list-items li:not(:last-child) {
	margin-bottom: 10px;
}

.choose-us-wrapper .choose-us-img {
	margin-left: -50px;
}

@media (max-width: 1199px) {
	.choose-us-wrapper .choose-us-img {
		margin-left: 0;
	}
}

.choose-us-wrapper .choose-us-img img {
	width: 100%;
	height: 100%;
	border-radius: 205px;
}

.choose-us-wrapper .choose-us-right {
	margin-left: 40px;
}

@media (max-width: 1199px) {
	.choose-us-wrapper .choose-us-right {
		margin-left: 0;
	}
}

.choose-us-wrapper .choose-us-right h4 {
	margin-bottom: 20px;
}

.choose-us-wrapper .choose-us-right p {
	font-size: 16px;
	font-weight: 500;
}

.choose-us-wrapper .choose-us-right .client-img {
	margin-top: 40px;
	margin-bottom: 20px;
}

.special-features-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 18px;
	border: 1px solid rgba(35, 28, 37, 0.14);
	padding: 25px;
	border-radius: 10px;
	margin-top: 24px;
}

@media (max-width: 575px) {
	.special-features-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.special-features-box .icon {
	font-size: 45px;
	color: var(--theme-color);
}

@media (max-width: 575px) {
	.special-features-box .icon {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}

.chosse-us-wrapper-2 .chosse-us-content {
	margin-right: -50px;
}

@media (max-width: 1199px) {
	.chosse-us-wrapper-2 .chosse-us-content {
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.chosse-us-wrapper-2 .chosse-us-content {
		text-align: center;
	}
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list {
	margin-top: 25px;
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li:not(:last-child) {
	margin-bottom: 15px;
}

.chosse-us-wrapper-2 .chosse-us-content .chosse-us-list li i {
	color: #f7921e;
	margin-right: 5px;
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-top: 50px;
}

@media (max-width: 1399px) {
	.chosse-us-wrapper-2 .chosse-us-content .button-items-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.chosse-us-wrapper-2 .chosse-us-content .button-items-area {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

@media (max-width: 767px) {
	.chosse-us-wrapper-2 .chosse-us-content .button-items-area .content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.chosse-us-wrapper-2 .chosse-us-content .button-items-area .content h4 {
	font-size: 20px;
	color: var(--white);
	font-weight: 600;
	line-height: 155%;
}

.chosse-us-wrapper-2 .chosse-us-image-2 {
	position: relative;
	z-index: 9;
}

@media (max-width: 1399px) {
	.chosse-us-wrapper-2 .chosse-us-image-2 img {
		width: 100%;
		height: 100%;
	}
}

.work-process-section {
	position: relative;
}

.work-process-section .line-shape {
	position: absolute;
	bottom: 28%;
	left: 39%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 340px;
}

@media (max-width: 1199px) {
	.work-process-section .line-shape {
		display: none;
	}
}

.work-process-section .line-shape img {
	width: 100%;
	height: 100%;
}

.work-process-section .line-shape-2 {
	position: absolute;
	bottom: 28%;
	left: 61%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 340px;
}

@media (max-width: 1199px) {
	.work-process-section .line-shape-2 {
		display: none;
	}
}

.work-process-section .line-shape-2 img {
	width: 100%;
	height: 100%;
}

.chosse-us-section-2 {
	position: relative;
}

.chosse-us-section-2 .choose-us-image {
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 1399px) {
	.chosse-us-section-2 .choose-us-image {
		display: none;
	}
}

.chosse-us-section-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--bg);
	top: 80%;
	height: initial;
}

.marque-wrapper {
	background-color: #f7921e;
}

.marque-wrapper .marque-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
	padding: 15px 0;
}

.marque-wrapper .marque-text h3 {
	color: var(--white);
}

.marque-wrapper.style-2 {
	background-color: var(--theme-color);
}

.marque-wrapper.style-3 {
	background: #fb5b32;
}

.instagram-image {
	position: relative;
}

.instagram-image img {
	width: 100%;
	height: 100%;
}

.instagram-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(251, 91, 50, 0.74);
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
}

.instagram-image .icon {
	font-size: 45px;
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
}

.instagram-image:hover::before {
	opacity: 1;
	visibility: visible;
}

.instagram-image:hover .icon {
	opacity: 1;
	visibility: visible;
}

.about-wrapper .about-image {
	position: relative;
}

.about-wrapper .about-image img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.about-wrapper .about-image .about-box {
	position: absolute;
	left: 30px;
	bottom: 30px;
	background-color: var(--theme-color-2);
	padding: 30px;
	border-radius: 28px;
}

.about-wrapper .about-image .about-box h2 {
	font-size: 60px;
	color: var(--white);
}

.about-wrapper .about-image .about-box p {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.26px;
	color: var(--white);
}

.about-wrapper .about-content {
	margin-left: 60px;
}

@media (max-width: 1199px) {
	.about-wrapper .about-content {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.about-wrapper .about-content {
		text-align: center;
	}
}

.about-wrapper .about-content .about-sideber {
	padding: 30px 25px;
	background-color: var(--white);
	border-radius: 6px;
	border-left: 6px solid var(--theme-color);
	margin-top: 30px;
}

.about-wrapper .about-content .about-sideber h5 {
	font-weight: 600;
	line-height: 167%;
}

.about-wrapper .about-content .about-icon-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	margin-top: 35px;
}

@media (max-width: 1199px) {
	.about-wrapper .about-content .about-icon-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
	}
}

@media (max-width: 767px) {
	.about-wrapper .about-content .about-icon-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.about-wrapper .about-content .about-icon-items ul li {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.18px;
	color: var(--text);
}

@media (max-width: 767px) {
	.about-wrapper .about-content .about-icon-items ul li {
		display: -ms-grid;
		display: grid;
		gap: 10px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.about-wrapper .about-content .about-icon-items ul li:not(:last-child) {
	margin-bottom: 12px;
}

.about-wrapper .about-content .about-icon-items ul li svg {
	margin-right: 8px;
}

@media (max-width: 767px) {
	.about-wrapper .about-content .about-icon-items ul li svg {
		display: block;
		text-align: center;
		margin-right: 0;
		width: 100%;
	}
}

.about-wrapper .about-content .about-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
}

@media (max-width: 1199px) {
	.about-wrapper .about-content .about-btn {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.about-wrapper .about-content .about-btn {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.about-wrappper-2 .about-image {
	position: relative;
}

.about-wrappper-2 .about-image img {
	width: 100%;
	height: 100%;
}

.about-wrappper-2 .about-image .cricle-shape {
	position: absolute;
	top: 25%;
	left: 5%;
}

@media (max-width: 1199px) {
	.about-wrappper-2 .about-image .cricle-shape {
		display: none;
	}
}

.about-wrappper-2 .about-image .counter-box {
	padding: 30px;
	right: -4%;
	bottom: 14%;
	position: absolute;
	border-radius: 12px;
	background: var(--white);
	text-align: center;
	line-height: 1;
	-webkit-box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 4px 85.6px 17px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1199px) {
	.about-wrappper-2 .about-image .counter-box {
		display: none;
	}
}

.about-wrappper-2 .about-image .counter-box .content h2 {
	color: var(--theme-color-2);
	margin-bottom: 5px;
}

.about-wrappper-2 .about-image .counter-box .content p {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
}

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

.about-wrappper-2 .about-img-2 img {
	width: 100%;
	height: 100%;
	border-radius: 200px 200px 0 200px;
}

.about-wrappper-2 .about-img-2.style-2 img {
	border-radius: 200px 0 200px 200px;
	margin-top: 20px;
}

.about-wrappper-2 .about-image-2 {
	position: relative;
}

.about-wrappper-2 .about-image-2 .percent-shape {
	position: absolute;
	left: 3%;
	top: 40%;
	z-index: 9;
}

@media (max-width: 767px) {
	.about-wrappper-2 .about-img-3 {
		height: 500px;
	}
}

.about-wrappper-2 .about-img-3 img {
	width: 100%;
	height: 100%;
	border-radius: 200px 200px 200px 0;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-wrappper-2 .about-content {
	margin-left: 50px;
}

@media (max-width: 1199px) {
	.about-wrappper-2 .about-content {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.about-wrappper-2 .about-content {
		text-align: center;
	}
}

.about-wrappper-2 .about-content .about-area {
	margin-top: 50px;
}

@media (max-width: 767px) {
	.about-wrappper-2 .about-content .about-area {
		margin-top: 40px;
	}
}

@media (max-width: 575px) {
	.about-wrappper-2 .about-content .about-area {
		margin-top: 30px;
	}
}

.about-wrappper-2 .about-content .about-area .about-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	.about-wrappper-2 .about-content .about-area .about-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		text-align: center;
	}
}

.about-wrappper-2 .about-content .about-area .about-items .icon i {
	color: var(--theme-color);
	font-size: 53px;
}

.about-wrappper-2 .about-content .about-area .about-items .content h4 {
	margin-bottom: 20px;
}

.about-wrappper-2 .about-content .about-area .about-items .content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--text);
}

.about-wrappper-2 .author-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 22px;
}

@media (max-width: 1199px) {
	.about-wrappper-2 .author-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.about-wrappper-2 .author-items .author-contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.about-wrappper-2 .author-items .author-contact .icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	background-color: var(--theme-color-2);
	text-align: center;
}

.about-wrappper-2 .author-items .author-contact .content span {
	color: #6f7373;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 2px;
}

.about-wrappper-2 .author-items .author-contact .content h6 {
	font-size: 16px;
	font-weight: 800;
	font-family: "Nunito", sans-serif;
}

.about-section {
	position: relative;
}

.about-section .shape-1 {
	position: absolute;
	top: 20%;
	left: 14%;
}

@media (max-width: 1199px) {
	.about-section .shape-1 {
		display: none;
	}
}

.about-wrapper-3 .about-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.about-wrapper-3 .about-content {
	margin-left: 50px;
}

@media (max-width: 1199px) {
	.about-wrapper-3 .about-content {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.about-wrapper-3 .about-content {
		text-align: center;
	}
}

.about-wrapper-3 .about-content .about-icon-items {
	margin-left: -50%;
	margin-top: 40px;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.about-wrapper-3 .about-content .about-icon-items {
		margin-left: 0;
	}
}

.about-wrapper-3 .about-content .about-icon-items .icon-items {
	background-color: var(--white);
	border-radius: 10px;
	border: 1px solid rgba(35, 28, 37, 0.14);
	padding: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 18px;
}

@media (max-width: 767px) {
	.about-wrapper-3 .about-content .about-icon-items .icon-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.about-wrapper-3 .about-content .about-icon-items .icon-items i {
	font-size: 45px;
	color: var(--theme-color);
}

@media (max-width: 767px) {
	.about-wrapper-3 .about-content .about-icon-items .icon-items i {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}

.about-wrapper-3 .about-content .about-icon-items .icon-items h4 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.4px;
}

.trending-destinations-card-items {
	margin-top: 24px;
}

.trending-destinations-card-items .destinations-img {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
}

.trending-destinations-card-items .destinations-img::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: rgba(77, 64, 202, 0.71);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img img {
	border-radius: 28px;
	width: 100%;
	height: 370px;
	object-fit: cover;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img .icon {
	position: absolute;
	right: 20px;
	top: 20px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.trending-destinations-card-items .destinations-img .icon a {
	width: 59px;
	height: 59px;
	line-height: 59px;
	border-radius: 50%;
	background-color: var(--theme-color-2);
	color: var(--white);
	text-align: center;
	display: inline-block;
}

.trending-destinations-card-items .destinations-img .icon a i {
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
}

.trending-destinations-card-items .destinations-img .icon a:hover {
	background-color: var(--white);
	color: var(--header);
}

.trending-destinations-card-items .destinations-img .destinations-content {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
}

.trending-destinations-card-items
	.destinations-img
	.destinations-content
	.title
	a {
	font-size: 18px;
	font-size: 18px;
	font-weight: 500;
	padding: 12px 30px;
	background-color: var(--white);
	display: inline-block;
	border-radius: 72px;
	line-height: 1;
	font-weight: 500;
	color: var(--header);
}

.trending-destinations-card-items
	.destinations-img
	.destinations-content
	.title
	a:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.trending-destinations-card-items:hover .destinations-img::before {
	opacity: 1;
	visibility: visible;
}

.trending-destinations-card-items:hover .destinations-img .icon {
	opacity: 1;
	visibility: visible;
}

.trending-destinations {
	position: relative;
}

.trending-destinations .shape-1 {
	position: absolute;
	bottom: 0;
	left: 0;
}

.trending-destinations .shape-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.trending-destinations-box-items {
	margin-top: 30px;
	text-align: center;
}

.trending-destinations-box-items .destinations-img img {
	border-radius: 50%;
}

.trending-destinations-box-items .destinations-content {
	margin-top: 20px;
}

.trending-destinations-box-items .destinations-content h3 {
	font-size: 24px;
	font-weight: 500;
}

.trending-destinations-box-items .destinations-content h3 a:hover {
	color: var(--theme-color);
}

.trending-destinations-box-items .destinations-content p {
	font-size: 16px;
	font-weight: 700;
}

.trending-destinations-2 {
	position: relative;
	z-index: 9;
}

.trending-destinations-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--white);
	z-index: -1;
	top: 75%;
}

.destination-details-wrapper .details-post .details-image {
	margin-bottom: 30px;
}

.destination-details-wrapper .details-post .details-image img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.destination-details-wrapper .details-post .details-content h2 {
	font-weight: 600;
	margin-bottom: 15px;
}

.destination-details-wrapper
	.details-post
	.details-content
	.destination-list-item {
	margin-top: 40px;
}

.destination-details-wrapper
	.details-post
	.details-content
	.destination-list-item
	.destination-list {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px;
}

@media (max-width: 1399px) {
	.destination-details-wrapper
		.details-post
		.details-content
		.destination-list-item
		.destination-list {
		gap: 30px;
	}
}

@media (max-width: 1199px) {
	.destination-details-wrapper
		.details-post
		.details-content
		.destination-list-item
		.destination-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.destination-details-wrapper
	.details-post
	.details-content
	.destination-list-item
	.destination-list
	li {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
}

.destination-details-wrapper
	.details-post
	.details-content
	.destination-list-item
	.destination-list
	li:not(:last-child) {
	margin-bottom: 15px;
}

.destination-details-wrapper
	.details-post
	.details-content
	.destination-list-item
	.destination-list
	li
	i {
	margin-right: 6px;
	color: var(--theme-color);
}

.destination-details-wrapper .details-post .details-content .faq-items {
	margin-top: 70px;
}

@media (max-width: 767px) {
	.destination-details-wrapper .details-post .details-content .faq-items {
		margin-top: 40px;
	}
}

.destination-details-wrapper .details-post .details-content .faq-items h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item {
	border: 0;
	background-color: var(--white);
	border-radius: 10px;
	border: 1px solid rgba(35, 28, 37, 0.18);
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-header {
	border: none;
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button {
	font-size: 20px;
	font-weight: 500;
	color: var(--header);
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: var(--bg);
	border-radius: 0;
	padding: 22px 22px 0;
	text-transform: capitalize;
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button::after {
	content: "\f078";
	background: transparent;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	-webkit-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
	color: var(--header);
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button:not(.collapsed)::after {
	content: "\f077";
	background: transparent;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	color: var(--theme-color);
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button.collapsed {
	background-color: transparent;
	padding: 25px 30px;
	color: var(--header);
}

.destination-details-wrapper
	.details-post
	.details-content
	.faq-items
	.accordion-item
	.accordion-collapse
	.accordion-body {
	padding-left: 30px;
	padding-top: 15px;
	color: #504e4e;
	background: #efeefa;
}

.destination-details-wrapper .details-post .details-content .map-area {
	margin-top: 70px;
}

@media (max-width: 767px) {
	.destination-details-wrapper .details-post .details-content .map-area {
		margin-top: 40px;
	}
}

.destination-details-wrapper .details-post .details-content .map-area h2 {
	font-size: 32px;
	font-weight: 600;
}

.destination-details-wrapper
	.details-post
	.details-content
	.map-area
	.google-map
	iframe {
	border-radius: 28px;
	width: 100%;
	height: 346px;
}

.destination-details-wrapper .main-side-bar .destination-single-sideber-widget {
	border-radius: 28px;
	background-color: var(--bg);
	padding: 45px;
	margin-bottom: 35px;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.widget-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 30px;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card {
	margin-bottom: 30px;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card
	li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.16px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card
	li
	span {
	font-weight: 500;
	color: var(--text);
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card
	li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(21, 20, 21, 0.09);
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card
	li:hover {
	color: var(--theme-color);
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.destination-card
	li:hover
	span {
	color: var(--theme-color);
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.theme-btn {
	padding: 20px 15px 20px 30px;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.theme-btn
	span {
	margin-right: 0;
}

.destination-details-wrapper
	.main-side-bar
	.destination-single-sideber-widget
	.theme-btn
	i {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
}

.destination-details-wrapper .main-side-bar .offer-card {
	padding: 45px;
	border-radius: 28px;
	height: 420px;
}

.destination-details-wrapper .main-side-bar .offer-card h3 {
	font-size: 24px;
	color: var(--white);
	font-weight: 500;
	margin-bottom: 30px;
}

.tour-sidebar-area .booking-list-area {
	border-radius: 28px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	padding: 25px;
}

.tour-sidebar-area .booking-list-area .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	border-bottom: 1px solid rgba(21, 20, 21, 0.14);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.tour-sidebar-area .booking-list-area .booking-list.style-2 {
	margin-bottom: 40px;
	padding-bottom: 0;
	border-bottom: none;
}

.tour-sidebar-area .booking-list-area .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	font-family: "Nunito", sans-serif;
}

.tour-sidebar-area .booking-list-area .content {
	width: 100%;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	width: initial;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select::after {
	right: 0;
	border-bottom: 1px solid var(--header);
	border-right: 1px solid var(--header);
	width: 9px;
	height: 9px;
	margin-top: -15px;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .list {
	width: 100%;
	background-color: var(--bg);
	top: 100%;
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	max-height: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select.open .list {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	max-height: none !important;
	overflow: visible !important;
	pointer-events: auto !important;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .focus {
	background-color: transparent;
	font-weight: 400;
	color: var(--text);
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .option {
	border: none;
}

.tour-sidebar-area .booking-list-area .form-clt .nice-select .option:hover {
	background-color: transparent;
}

.tour-sidebar-area .booking-list-area .form-clt input {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--header);
	font-weight: 800;
	height: initial;
}

.tour-sidebar-area
	.booking-list-area
	.form-clt
	input::-webkit-input-placeholder {
	color: var(--header);
}

.tour-sidebar-area .booking-list-area .form-clt input:-ms-input-placeholder {
	color: var(--header);
}

.tour-sidebar-area .booking-list-area .form-clt input::-ms-input-placeholder {
	color: var(--header);
}

.tour-sidebar-area .booking-list-area .form-clt input::placeholder {
	color: var(--header);
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget {
	margin-bottom: 40px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .wid-title {
	margin-bottom: 20px;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .wid-title h3 {
	font-size: 18px;
	font-weight: 600;
}

.tour-sidebar-area .booking-list-area .tour-sidebar-widget .languages-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 18px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li:not(:last-child) {
	margin-bottom: 15px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single {
	position: relative;
	padding-left: 15px;
	cursor: pointer;
	display: block;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.checkbox-area
	.checkmark {
	position: absolute;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	background-color: var(--white);
	top: 5px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.checkbox-area
	.checkmark::after {
	content: "";
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark {
	background-color: var(--theme-color);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark::after {
	content: "\f00c";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	top: -5px;
	left: 5px;
	color: var(--theme-color);
	font-size: 11px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark:after {
	display: block;
	color: var(--white);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.text-color {
	font-weight: 600;
	color: #8e8f8f;
	font-size: 14px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.text-color
	.star {
	color: #fd8f21;
	margin-right: 5px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.text-color
	.star
	i.color-2 {
	color: var(--text);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.languages-list
	li
	.checkbox-single
	.text-color
	.ratting-text {
	font-size: 16px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single {
	position: relative;
	padding-left: 15px;
	cursor: pointer;
	display: block;
	margin-bottom: 10px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.checkbox-area
	.checkmark {
	position: absolute;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	background-color: var(--white);
	top: 5px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.checkbox-area
	.checkmark::after {
	content: "";
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark {
	background-color: var(--theme-color);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark::after {
	content: "\f00c";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	top: -5px;
	left: 5px;
	color: var(--theme-color);
	font-size: 11px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark:after {
	display: block;
	color: var(--white);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.text-color {
	font-weight: 600;
	color: #8e8f8f;
	font-size: 14px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.text-color
	.star {
	color: #fd8f21;
	margin-right: 5px;
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.text-color
	.star
	i.color-2 {
	color: var(--text);
}

.tour-sidebar-area
	.booking-list-area
	.tour-sidebar-widget
	.checkbox-items
	.checkbox-single
	.text-color
	.ratting-text {
	font-size: 16px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn {
	width: 100%;
	padding: 5px 15px 5px 30px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn span {
	margin-right: 15px;
}

.tour-sidebar-area .booking-list-area .search-widget .theme-btn i {
	width: initial;
	height: initial;
	background-color: initial;
	color: var(--white);
}

.tour-sidebar-area .booking-list-area .price-range-wrapper {
	/* Custom thumb styling */
	/* Remove the default appearance for sliders in Firefox */
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider-container {
	position: relative;
	width: 100%;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .price-text label {
	color: var(--text);
	font-size: 18px;
	font-weight: 500;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .price-text input {
	color: var(--text);
	font-size: 18px;
	font-weight: 500;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: #ddd;
	/* Default background */
	outline: none;
	position: absolute;
	top: 0;
	pointer-events: none;
}

.tour-sidebar-area
	.booking-list-area
	.price-range-wrapper
	.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: #f27507;
	cursor: pointer;
	border: 2px solid #fff;
	position: relative;
	z-index: 2;
	pointer-events: all;
}

.tour-sidebar-area
	.booking-list-area
	.price-range-wrapper
	.slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #f27507;
	cursor: pointer;
	border-radius: 4px;
	border: 2px solid #000;
	z-index: 2;
	position: relative;
}

.tour-sidebar-area .booking-list-area .price-range-wrapper .slider::-ms-thumb {
	width: 20px;
	height: 20px;
	background: #f27507;
	cursor: pointer;
	border-radius: 4px;
	border: 2px solid #000;
	z-index: 2;
	position: relative;
}

.tour-sidebar-area
	.booking-list-area
	.price-range-wrapper
	input[type="range"]::-moz-range-track {
	background: transparent;
}

.tour-sidebar-area .popular-posts {
	border-radius: 28px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	padding: 30px 25px;
	margin-top: 30px;
}

.tour-sidebar-area .single-post-item {
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #f2f2f2;
}

.tour-sidebar-area .single-post-item:last-child {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}

.tour-sidebar-area .single-post-item .thumb {
	width: 95px;
	height: 95px;
	background-color: #f2f2f2;
	float: left;
	overflow: hidden;
	margin-right: 20px;
	border-radius: 8px;
}

.tour-sidebar-area .single-post-item .post-content {
	overflow: hidden;
}

.tour-sidebar-area .single-post-item .post-content .star {
	color: #f7921e;
	font-size: 14px;
}

.tour-sidebar-area .single-post-item .post-content h5 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 0;
	text-transform: capitalize;
	font-family: "Nunito", sans-serif;
	margin-top: 5px;
}

.tour-sidebar-area .single-post-item .post-content h5 a:hover {
	color: var(--theme-color);
}

.tour-sidebar-area .single-post-item .post-content p {
	font-size: 14px;
	font-weight: 600;
	color: #8e8f8f;
	margin-top: 8px;
}

.tour-sidebar-area .single-post-item .post-content p b {
	font-weight: 700;
	color: var(--theme-color);
}

.tour-sidebar-area .single-post-item .post-content .post-date {
	margin-top: 10px;
	color: theme-color;
	font-weight: 600;
	font-size: 15px;
	text-transform: capitalize;
}

.tour-sidebar-area .single-post-item .post-content .post-date i {
	margin-right: 7px;
}

.destination-wrapper-22 .destination-items {
	text-align: center;
}

.destination-wrapper-22 .destination-items .destination-thumb {
	width: 183px;
	height: 183px;
	margin: 0 auto;
}

.destination-wrapper-22 .destination-items .destination-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.destination-wrapper-22 .destination-items .destination-thumb.style-2 img {
	border-radius: 50%;
}

.destination-wrapper-22 .destination-items .destination-content {
	margin-top: 25px;
}

.destination-wrapper-22 .destination-items .destination-content h3 {
	font-size: 24px;
}

.destination-wrapper-22 .destination-items .destination-content h3 a:hover {
	color: var(--theme-color);
}

.destination-wrapper-22 .destination-items .destination-content p {
	color: #455151;
	font-weight: 700;
}

.destination-wrapper-22.style-2 {
	margin-top: 70px;
}

.top-destination-section-4 {
	margin-left: 54px;
	margin-right: 54px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1399px) {
	.top-destination-section-4 {
		margin-left: 0;
		margin-right: 0;
	}
}

.top-destination-section-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #efeefa;
	z-index: -1;
	border-radius: 28px;
	height: 75%;
}

.destination-feature-box {
	margin-top: 24px;
	border-radius: 12px;
	background: #fff;
	-webkit-box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	padding: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 767px) {
	.destination-feature-box {
		display: -ms-grid;
		display: grid;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.destination-feature-box .icon {
	background-color: #f89a60;
	display: inline-block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	line-height: 56px;
	text-align: center;
}

@media (max-width: 575px) {
	.destination-feature-box .icon {
		margin: 0 auto;
	}
}

.destination-feature-box .icon.bg-2 {
	background-color: #fc80ff;
}

.destination-feature-box .icon.bg-3 {
	background-color: #21c9f3;
}

.destination-feature-box .icon.bg-4 {
	background-color: #6af3a8;
}

.destination-feature-box .icon.bg-5 {
	background-color: #ffcf32;
}

.destination-feature-box .icon.bg-6 {
	background-color: #9f98e2;
}

.destination-feature-box .icon.bg-7 {
	background-color: #91e25e;
}

.destination-feature-box .icon.bg-8 {
	background-color: #e25e60;
}

.destination-feature-box .content span {
	font-size: 14px;
	font-weight: 500;
	color: #818181;
}

.destination-feature-box .content span b {
	color: #f7921e;
	font-size: 14px;
	font-weight: 700;
}

.destination-wrapper-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 24px;
}

@media (max-width: 991px) {
	.destination-wrapper-4 {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 30px;
	}
}

.destination-wrapper-4 .destination-image-items-4 {
	margin-top: 30px;
	width: 200px;
	height: 480px;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
	.destination-wrapper-4 .destination-image-items-4 {
		margin-top: 0;
	}
}

.destination-wrapper-4 .destination-image-items-4.style-margin {
	margin-top: 50px;
	height: 430px;
}

@media (max-width: 1199px) {
	.destination-wrapper-4 .destination-image-items-4.style-margin {
		margin-top: initial;
		height: 480px;
	}
}

.destination-wrapper-4 .destination-image-items-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(21, 20, 21, 0)),
		to(rgba(21, 20, 21, 0.62))
	);
	background: linear-gradient(
		180deg,
		rgba(21, 20, 21, 0) 0%,
		rgba(21, 20, 21, 0.62) 100%
	);
}

.destination-wrapper-4 .destination-image-items-4 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 28px;
}

.destination-wrapper-4 .destination-image-items-4 .content {
	position: absolute;
	left: 5px;
	bottom: 110px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	z-index: 9;
}

.destination-wrapper-4 .destination-image-items-4 .content h4 {
	font-size: 22px;
}

.destination-wrapper-4 .destination-image-items-4 .content h4 a {
	color: var(--white);
}

.destination-wrapper-4 .destination-image-items-4 .content h4 a:hover {
	color: var(--theme-color);
}

.destination-wrapper-4 .destination-image-items-4 .content span {
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
}

.destination-wrapper-4 .destination-image-items-4 .content span b {
	color: var(--theme-color-2);
	font-weight: 800;
}

.destination-wrapper-4 .destination-image-items-4 .icon {
	width: 74px;
	height: 74px;
	line-height: 74px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	background-color: var(--theme-color-2);
	color: var(--white);
	position: absolute;
	top: 25px;
	right: 25px;
	opacity: 0;
	visibility: hidden;
}

.destination-wrapper-4 .destination-image-items-4 .icon i {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.destination-wrapper-4 .destination-image-items-4 .icon:hover {
	background-color: var(--header);
}

@media (max-width: 991px) {
	.destination-wrapper-4 .destination-image-items-4 {
		width: 424px !important;
	}
	.destination-wrapper-4 .destination-image-items-4 .content {
		left: 40px;
		bottom: 40px;
		-webkit-transform: none;
		transform: none;
		-webkit-transition: all 0.8s ease-in-out;
		transition: all 0.8s ease-in-out;
	}
	.destination-wrapper-4 .destination-image-items-4 .icon {
		opacity: 1;
		visibility: visible;
	}
}

.destination-wrapper-4 .destination-image-items-4.active {
	width: 424px !important;
}

.destination-wrapper-4 .destination-image-items-4.active .content {
	left: 40px;
	bottom: 40px;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}

.destination-wrapper-4 .destination-image-items-4.active .icon {
	opacity: 1;
	visibility: visible;
}

.tour-box-items {
	margin-top: 30px;
	border-bottom-left-radius: 28px;
	border-bottom-right-radius: 28px;
	background: var(--white);
	-webkit-box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	border-top-left-radius: 28px;
	border-top-right-radius: 28px;
}

.tour-box-items .thumb img {
	width: 100%;
	height: 100%;
	border-top-left-radius: 28px;
	border-top-right-radius: 28px;
}

.tour-box-items .content {
	padding: 24px;
}

.tour-box-items .content span {
	font-size: 13px;
	font-weight: 700;
	color: var(--theme-color);
}

.tour-box-items .content h4 {
	font-weight: 500;
	margin-bottom: 20px;
}

.tour-box-items .content h4 a:hover {
	color: var(--theme-color);
}

.tour-box-items .content h6 {
	color: #818181;
	border-bottom: 1px dashed rgba(21, 20, 21, 0.21);
	padding-bottom: 22px;
	margin-bottom: 22px;
	font-family: "Nunito", sans-serif;
}

.tour-box-items .content h6 span {
	font-size: 18px;
	font-weight: 900;
}

.tour-box-items .content h6 del {
	color: rgba(129, 129, 129, 0.72);
	font-weight: 500;
	font-family: "Nunito", sans-serif;
}

.tour-box-items .content .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

@media (max-width: 1399px) {
	.tour-box-items .content .list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.tour-box-items .content .list li {
	color: #818181;
	font-weight: 500;
	font-size: 14px;
}

.tour-box-items .content .list li i {
	color: var(--theme-color-2);
	margin: 5px;
}

.tour-box-items-2 {
	border-radius: 28px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	background: var(--white);
	padding: 15px;
	margin-top: 30px;
}

.tour-box-items-2 .tour-image {
	position: relative;
}

.tour-box-items-2 .tour-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(21, 20, 21, 0)),
		color-stop(86.91%, rgba(21, 20, 21, 0.78))
	);
	background: linear-gradient(
		180deg,
		rgba(21, 20, 21, 0) 0%,
		rgba(21, 20, 21, 0.78) 86.91%
	);
}

.tour-box-items-2 .tour-image img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.tour-box-items-2 .tour-image .post-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
}

.tour-box-items-2 .tour-image .post-bar.style-2 .post-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.tour-box-items-2 .tour-image .post-bar.style-2 .post-item .post.bg-color {
	background-color: var(--theme-color);
}

.tour-box-items-2 .tour-image .post-bar .post {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	background: var(--theme-color-2);
	padding: 11px 19px;
	border-radius: 72px;
	line-height: 1;
}

.tour-box-items-2 .tour-image .post-bar .icon {
	width: 39px;
	height: 39px;
	line-height: 45px;
	border-radius: 100px;
	text-align: center;
	background: rgba(255, 255, 255, 0.19);
	color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

.tour-box-items-2 .tour-image .post-bar .icon:hover {
	background-color: var(--theme-color);
}

.tour-box-items-2 .tour-content {
	padding: 25px 15px;
}

.tour-box-items-2 .tour-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.tour-box-items-2 .tour-content h3 a:hover {
	color: var(--theme-color);
	background-size: 100% 2px;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(var(--theme-color)),
		to(var(--theme-color))
	);
	background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.tour-box-items-2 .tour-content .meta {
	margin-top: 10px;
}

.tour-box-items-2 .tour-content .meta li {
	font-weight: 700;
	font-size: 14px;
}

.tour-box-items-2 .tour-content .rating-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px;
}

.tour-box-items-2 .tour-content .rating-bar .rating li {
	font-size: 14px;
	font-weight: 700;
}

.tour-box-items-2 .tour-content .rating-bar .rating li i {
	color: var(--theme-color);
	margin-right: 5px;
}

.tour-box-items-2 .tour-content .rating-bar .icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.tour-box-items-2 .tour-content .rating-bar .icon li i {
	color: var(--text);
}

.tour-box-items-2 .tour-content .tour-btn {
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 1399px) {
	.tour-box-items-2 .tour-content .tour-btn {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px;
	}
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn {
	padding: 5px 6px 5px 26px;
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn span {
	margin-right: 8px;
}

.tour-box-items-2 .tour-content .tour-btn .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
}

.tour-box-items-2 .tour-content .tour-btn h2 {
	font-size: 32px;
	font-weight: 500;
}

.tour-box-items-2 .tour-content .tour-btn h2 span {
	font-size: 14px;
	font-weight: 700;
	color: #818181;
	font-family: "Nunito", sans-serif;
}

.top-hotel-box-item {
	margin-top: 30px;
	border-radius: 28px;
	padding: 10px;
	padding-right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border: 1px solid rgba(21, 20, 21, 0.14);
}

@media (max-width: 1600px) {
	.top-hotel-box-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.top-hotel-box-item .hotel-img {
	max-width: 335px;
	position: relative;
}

.top-hotel-box-item .hotel-img .icon {
	width: 39px;
	height: 39px;
	line-height: 45px;
	border-radius: 100px;
	text-align: center;
	background: var(--white);
	color: var(--header);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	position: absolute;
	bottom: 25px;
	right: 25px;
}

.top-hotel-box-item .hotel-img .icon:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

@media (max-width: 1600px) {
	.top-hotel-box-item .hotel-img {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: initial;
	}
}

.top-hotel-box-item .hotel-img img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.top-hotel-box-item .hotel-content {
	padding: 0 35px 0;
	max-width: 380px;
	padding-left: 0;
}

@media (max-width: 1600px) {
	.top-hotel-box-item .hotel-content {
		max-width: initial;
		padding: 30px;
		padding-top: 0;
	}
}

.top-hotel-box-item .hotel-content .location-icon {
	font-size: 14px;
	font-weight: 700;
	color: #818181;
	margin-bottom: 10px;
	display: inline-block;
}

.top-hotel-box-item .hotel-content .location-icon i {
	color: var(--theme-color);
	margin-right: 10px;
}

.top-hotel-box-item .hotel-content h3 a:hover {
	color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .list-items {
	margin-top: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	border-bottom: 1px solid rgba(21, 20, 21, 0.14);
	padding-bottom: 25px;
}

@media (max-width: 1199px) {
	.top-hotel-box-item .hotel-content .list-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}
}

.top-hotel-box-item .hotel-content .list-items ul li {
	color: #818181;
	font-size: 14px;
	font-weight: 700;
}

.top-hotel-box-item .hotel-content .list-items ul li:not(:last-child) {
	margin-bottom: 15px;
}

.top-hotel-box-item .hotel-content .list-items ul li svg {
	margin-right: 8px;
}

.top-hotel-box-item .hotel-content .btn-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 25px;
	gap: 15px;
}

@media (max-width: 1199px) {
	.top-hotel-box-item .hotel-content .btn-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn {
	font-size: 16px;
	border: 1px solid var(--theme-color);
	background-color: transparent;
	padding: 9px 10px 9px 25px;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn span {
	color: var(--header);
	margin-right: 15px;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--theme-color);
	color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn::before {
	background-color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn::after {
	background-color: var(--theme-color);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn:hover span {
	color: var(--white);
}

.top-hotel-box-item .hotel-content .btn-area .theme-btn:hover i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--white);
	color: var(--header);
}

.top-hotel-box-item .hotel-content .btn-area .price-titile {
	font-size: 30px;
	font-weight: 500;
}

.top-hotel-box-item .hotel-content .btn-area .price-titile sub {
	font-size: 14px;
	font-weight: 700;
	color: #818181;
	font-family: "Nunito", sans-serif;
}

.top-hotel-box-item.style-2 .hotel-content {
	padding-right: 0;
	padding-left: 35px;
}

@media (max-width: 1600px) {
	.top-hotel-box-item.style-2 .hotel-content {
		max-width: initial;
		padding: 30px;
	}
}

.top-hotel-box-item:hover {
	background: #efeefa;
}

.amazing-tour-wrapper {
	margin-left: -5%;
	margin-right: -5%;
}

@media (max-width: 1199px) {
	.amazing-tour-wrapper {
		margin-left: 0;
		margin-right: 0;
	}
}

.amazing-tour-items {
	margin-top: 30px;
}

.amazing-tour-items .thumb {
	position: relative;
}

.amazing-tour-items .thumb .post-box {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 90px;
	height: 25px;
	border-radius: 10%;
	background-color: var(--theme-color);
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}



/*.amazing-tour-items .thumb .post-box-2 h4 {*/
/*	font-size: 20px;*/
/*	font-weight: 600;*/
/*	color: var(--white);*/
/*	line-height: 1;*/
/*	padding-top: 20px;*/
/*}*/

.amazing-tour-items .thumb .post-box span {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}

.amazing-tour-items .thumb::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 10px 10px 0 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(21, 20, 21, 0)),
		color-stop(86.91%, rgba(21, 20, 21, 0.78))
	);
	background: linear-gradient(
		180deg,
		rgba(21, 20, 21, 0) 0%,
		rgba(21, 20, 21, 0.78) 86.91%
	);
}

.amazing-tour-items .thumb img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.amazing-tour-items .thumb .list-items {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.amazing-tour-items .thumb .list-items h6 {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	border-radius: 72px;
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	padding: 11px 20px;
	line-height: 1;
}

.amazing-tour-items .thumb .list-items .popup-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 17px;
}

.amazing-tour-items .thumb .list-items .popup-icon li a {
	color: var(--white);
}

.amazing-tour-items .thumb .list-items .popup-icon li a:hover {
	color: var(--theme-color);
}

.amazing-tour-items .content {
	padding: 25px;
	border-radius: 0px 0px 10px 10px;
	background: #efeefa;
}

.amazing-tour-items .content h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 145%;
}

.amazing-tour-items .content h4 a:hover {
	color: var(--theme-color);
}

.amazing-tour-items .content .location-icon {
	font-size: 14px;
	font-weight: 700;
	color: #818181;
	display: block;
	margin-top: 15px;
}

.amazing-tour-items .content .location-icon i {
	color: var(--header);
	margin-right: 5px;
}

.amazing-tour-items .content .theme-btn {
	font-size: 16px;
	background-color: var(--white);
	padding: 7px 10px 7px 30px;
	margin-top: 15px;
}

.amazing-tour-items .content .theme-btn span {
	color: var(--theme-color);
	margin-right: 15px;
}

.amazing-tour-items .content .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--theme-color);
	color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.amazing-tour-items .content .theme-btn::before {
	background-color: var(--theme-color);
}

.amazing-tour-items .content .theme-btn::after {
	background-color: var(--theme-color);
}

.amazing-tour-items .content .theme-btn:hover span {
	color: var(--white);
}

.amazing-tour-items .content .theme-btn:hover i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--white);
	color: var(--header);
}

.tour-details-wrapper .tour-details-items .details-thumb {
	position: relative;
}

.tour-details-wrapper .tour-details-items .details-thumb::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(
		185deg,
		rgba(0, 0, 0, 0) 63.28%,
		rgba(0, 0, 0, 0.82) 96.13%
	);
	border-radius: 28px;
}

.tour-details-wrapper .tour-details-items .details-thumb img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.tour-details-wrapper .tour-details-items .details-content {
	margin-top: 35px;
}

.tour-details-wrapper .tour-details-items .details-content .location-icon {
	font-weight: 700;
	color: #818181;
	display: inline-block;
	margin-bottom: 20px;
}

.tour-details-wrapper .tour-details-items .details-content .location-icon i {
	color: var(--theme-color-2);
	margin-right: 5px;
}

.tour-details-wrapper .tour-details-items .details-content h2 {
	margin-bottom: 25px;
	font-size: 48px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.tour-details-wrapper .tour-details-items .details-content h2 {
		font-size: 44px;
	}
}

@media (max-width: 575px) {
	.tour-details-wrapper .tour-details-items .details-content h2 {
		font-size: 36px;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.destination-list-item {
	margin-top: 40px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.destination-list-item
	.destination-list {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px;
}

@media (max-width: 1399px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.destination-list-item
		.destination-list {
		gap: 30px;
	}
}

@media (max-width: 1199px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.destination-list-item
		.destination-list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.destination-list-item
	.destination-list
	li {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.destination-list-item
	.destination-list
	li:not(:last-child) {
	margin-bottom: 15px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.destination-list-item
	.destination-list
	li
	i {
	margin-right: 6px;
	color: var(--theme-color);
}

.tour-details-wrapper .tour-details-items .details-content .tour-details-icon {
	border-radius: 28px;
	border: 1px solid rgba(99, 171, 69, 0.16);
	background: rgba(239, 238, 250, 0.72);
	padding: 50px 35px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.tour-details-icon
	.icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.tour-details-icon
	.icon
	i {
	font-size: 45px;
	color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.tour-details-icon
	.icon
	h5 {
	font-size: 18px;
	font-weight: 500;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items {
	border-radius: 28px;
	border: 1px solid rgba(99, 171, 69, 0.16);
	background: rgba(239, 238, 250, 0.72);
	padding: 50px 35px;
}

.tour-details-wrapper .tour-details-items .details-content .faq-items h4 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.faq-items
	.accordion-item {
	background-color: transparent;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button {
	font-size: 18px;
	font-weight: 600;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.faq-items
	.accordion-item
	.accordion-header
	.accordion-button
	span {
	color: #f7921e;
}

.tour-details-wrapper .tour-details-items .details-content .map-area {
	margin-top: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .map-area h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-items .details-content .map-area iframe {
	height: 346px;
	border-radius: 28px;
	width: 100%;
}

.tour-details-wrapper .tour-details-items .details-content .review-area {
	margin-top: 50px;
}

.tour-details-wrapper .tour-details-items .details-content .review-area h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items {
	border-radius: 28px;
	background: #151415;
	padding: 45px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.courses-reviews-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
}

@media (max-width: 767px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.review-area
		.courses-reviews-box-items
		.courses-reviews-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box {
	padding: 50px 34px;
	text-align: center;
	min-width: 257px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.1);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box
	h2 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box
	.star {
	color: #f7921e;
	margin-bottom: 10px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box
	p {
	color: var(--white);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right {
	max-width: 460px;
	width: 100%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

@media (max-width: 767px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.review-area
		.courses-reviews-box-items
		.reviews-ratting-right
		.reviews-ratting-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item:not(:last-child) {
	margin-bottom: 15px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.star {
	color: #f7921e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.star
	i.color-2 {
	color: var(--text);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	span {
	font-weight: 500;
	color: var(--white);
	font-size: 16px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.progress {
	background: rgba(247, 146, 30, 0.15);
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-radius: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 5px;
	width: 100%;
	max-width: 244px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.progress-value {
	-webkit-animation: load 3s normal forwards;
	animation: load 3s normal forwards;
	border-radius: 0;
	background: #f7921e;
	height: 5px;
	width: 0;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-two {
	-webkit-animation: load2 3s normal forwards;
	animation: load2 3s normal forwards;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-three {
	-webkit-animation: load3 3s normal forwards;
	animation: load3 3s normal forwards;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-four {
	-webkit-animation: load4 3s normal forwards;
	animation: load4 3s normal forwards;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-area
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-five {
	-webkit-animation: load5 3s normal forwards;
	animation: load5 3s normal forwards;
}

@-webkit-keyframes load {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes load {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes load2 {
	0% {
		width: 0;
	}
	100% {
		width: 90%;
	}
}

@keyframes load2 {
	0% {
		width: 0;
	}
	100% {
		width: 90%;
	}
}

@-webkit-keyframes load3 {
	0% {
		width: 0;
	}
	100% {
		width: 80%;
	}
}

@keyframes load3 {
	0% {
		width: 0;
	}
	100% {
		width: 80%;
	}
}

@-webkit-keyframes load4 {
	0% {
		width: 0;
	}
	100% {
		width: 70%;
	}
}

@keyframes load4 {
	0% {
		width: 0;
	}
	100% {
		width: 70%;
	}
}

@-webkit-keyframes load5 {
	0% {
		width: 0;
	}
	100% {
		width: 60%;
	}
}

@keyframes load5 {
	0% {
		width: 0;
	}
	100% {
		width: 60%;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items {
	margin-top: 50px;
	margin-bottom: 50px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items {
	border-radius: 28px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	background: var(--white);
	padding: 45px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.star {
	color: #f7921e;
	margin-bottom: 20px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	h5 {
	font-size: 18px;
	letter-spacing: -0.36px;
	font-weight: 500;
	line-height: 178%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area {
	border-bottom: 1px solid rgba(21, 20, 21, 0.14);
	padding-bottom: 40px;
	margin-top: 40px;
}

@media (max-width: 991px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.client-review-items
		.clinet-box-items
		.clinet-box
		.review-wrap-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px !important;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-thumb {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-thumb
	img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content {
	width: 100%;
	-ms-flex-preferred-size: 90%;
	flex-basis: 90%;
}

@media (max-width: 991px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.client-review-items
		.clinet-box-items
		.clinet-box
		.review-wrap-area
		.review-content {
		-ms-flex-preferred-size: initial;
		flex-basis: initial;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content
	.head-area
	.cont {
	margin-bottom: 10px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content
	.head-area
	.cont
	h5 {
	font-size: 20px;
	font-weight: 600;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content
	.head-area
	.cont
	span {
	color: #455151;
	font-size: 16px;
	font-weight: 600;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content
	.head-area
	h6 {
	font-weight: 600;
	font-size: 20px;
	text-decoration: underline;
	color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box
	.review-wrap-area
	.review-content
	.head-area
	h6
	a {
	color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box.style-2 {
	padding-left: 100px;
	margin-top: 40px;
}

@media (max-width: 1199px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.client-review-items
		.clinet-box-items
		.clinet-box.style-2 {
		padding-left: 0;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-items
	.clinet-box.style-2
	.review-wrap-area {
	border-bottom: none;
	margin-top: 40px;
	padding-bottom: 0;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3 {
	border-radius: 28px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	background: var(--white);
	padding: 45px;
	margin-top: 25px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.star {
	color: #f7921e;
	margin-bottom: 20px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	h5 {
	font-size: 18px;
	letter-spacing: -0.36px;
	font-weight: 500;
	line-height: 178%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area {
	margin-top: 40px;
}

@media (max-width: 991px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.client-review-items
		.clinet-box-3
		.review-wrap-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px !important;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-thumb {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-thumb
	img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content {
	width: 100%;
	-ms-flex-preferred-size: 90%;
	flex-basis: 90%;
}

@media (max-width: 991px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.client-review-items
		.clinet-box-3
		.review-wrap-area
		.review-content {
		-ms-flex-preferred-size: initial;
		flex-basis: initial;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content
	.head-area
	.cont {
	margin-bottom: 10px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content
	.head-area
	.cont
	h5 {
	font-size: 20px;
	font-weight: 600;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content
	.head-area
	.cont
	span {
	color: #455151;
	font-size: 16px;
	font-weight: 600;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content
	.head-area
	h6 {
	font-weight: 600;
	font-size: 20px;
	text-decoration: underline;
	color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.client-review-items
	.clinet-box-3
	.review-wrap-area
	.review-content
	.head-area
	h6
	a {
	color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items {
	border-radius: 28px;
	border: 1px solid rgba(99, 171, 69, 0.16);
	background: rgba(239, 238, 250, 0.72);
	padding: 45px;
}

@media (max-width: 575px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.review-comment-items {
		padding: 30px;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	h3 {
	font-size: 32px;
	margin-bottom: 40px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px;
	margin-bottom: 10px;
}

@media (max-width: 1399px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.review-comment-items
		ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	ul
	li {
	font-size: 16px;
	font-weight: 600;
	color: var(--header);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
}

@media (max-width: 1399px) {
	.tour-details-wrapper
		.tour-details-items
		.details-content
		.review-comment-items
		ul
		li {
		-ms-flex-preferred-size: initial;
		flex-basis: initial;
	}
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	ul
	li
	.star {
	color: #f7921e;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 50px;
	margin-bottom: 25px;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	input,
.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea {
	border: none;
	outline: none;
	width: 100%;
	background-color: var(--white);
	padding: 20px 30px;
	line-height: 1;
	border-radius: 4px;
	color: #455151;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	input::-webkit-input-placeholder,
.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea::-webkit-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	input:-ms-input-placeholder,
.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea:-ms-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	input::-ms-input-placeholder,
.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea::-ms-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	input::placeholder,
.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea::placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-items
	.details-content
	.review-comment-items
	.form-clt
	textarea {
	padding-bottom: 152px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items {
	border-radius: 28px;
	background: #efeefa;
	padding: 45px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items h3 {
	font-size: 24px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list {
	position: relative;
	margin-top: 10px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .form-list li {
	color: #455151;
	font-weight: 800;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid rgba(21, 20, 21, 0.09);
	padding-bottom: 20px;
	padding-top: 15px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt {
	-ms-flex-preferred-size: 55%;
	flex-basis: 55%;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	input {
	width: 100%;
	outline: none;
	border: none;
	padding: 11px 16px;
	color: #455151;
	background-color: var(--white);
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 700;
	border-radius: 8px !important;
	border: 1px solid rgba(21, 20, 21, 0.15);
	color-scheme: dark;
	line-height: 1;
	font-size: 14px;
}

@media (max-width: 575px) {
	.tour-details-wrapper
		.tour-details-sidebar
		.tour-sidebar-items
		.form-list
		li
		.form-clt
		input {
		padding: 12px 20px;
		font-size: 14px;
	}
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	input::-webkit-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	input:-ms-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	input::-ms-input-placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	input::placeholder {
	color: #455151;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single {
	position: relative;
	padding-left: 18px;
	cursor: pointer;
	display: block;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.checkbox-area
	.checkmark {
	position: absolute;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	border: 1px solid rgba(21, 20, 21, 0.15);
	background-color: var(--white);
	top: 5px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.checkbox-area
	.checkmark::after {
	content: "";
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark {
	background-color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark::after {
	content: "\f00c";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	top: -5px;
	left: 5px;
	color: var(--theme-color);
	font-size: 11px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark:after {
	display: block;
	color: var(--white);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	li
	.form-clt
	.checkbox-single
	.text-color {
	color: #455151;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	.form-clt {
	position: relative;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.form-list
	.input-group-addon {
	position: absolute;
	right: 12px;
	top: 8px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .tickets-list {
	margin-top: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(21, 20, 21, 0.09);
	padding-bottom: 24px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	p {
	font-size: 16px;
	color: #455151;
	font-weight: 800;
	margin-bottom: 10px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li {
	color: #455151;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li:not(:last-child) {
	margin-bottom: 20px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	b {
	font-weight: 700;
	color: var(--theme-color);
	padding-left: 10px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt
	.single-select {
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(21, 20, 21, 0.15);
	background: var(--white);
	padding: 11px 16px;
	line-height: 1;
	font-size: 14px;
	color: #455151;
	font-weight: 700;
	height: initial;
	line-height: initial;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt
	.single-select::after {
	border-bottom: 1px solid #231c25;
	border-right: 1px solid #231c25;
	width: 8px;
	height: 8px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt
	.single-select
	.list {
	width: 100%;
	background-color: var(--white);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt
	.single-select
	.focus {
	background-color: var(--white);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.tickets-list
	ul
	li
	.form-clt
	.single-select
	.option {
	border: none;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items {
	border-bottom: 1px solid rgba(21, 20, 21, 0.09);
	padding-bottom: 24px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .extra-items p {
	color: #455151;
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 20px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single {
	position: relative;
	padding-left: 18px;
	cursor: pointer;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single:not(:last-child) {
	margin-bottom: 10px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.checkbox-area
	.checkmark {
	position: absolute;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	border: 1px solid rgba(21, 20, 21, 0.15);
	top: 5px;
	background-color: var(--white);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.checkbox-area
	.checkmark::after {
	content: "";
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark {
	background-color: var(--theme-color);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark::after {
	content: "\f00c";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	top: -5px;
	left: 5px;
	color: var(--theme-color);
	font-size: 11px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark:after {
	display: block;
	color: var(--white);
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.text-color {
	font-weight: 500;
	color: #455151;
	font-size: 16px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.extra-items
	.checkbox-single
	.text-color
	.star {
	color: #ffa41b;
	margin-right: 5px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .total-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 24px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .total-list li {
	font-size: 20px;
	font-weight: 800;
	color: #151415;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .theme-btn {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 6px 15px 6px 30px;
}

.tour-details-wrapper
	.tour-details-sidebar
	.tour-sidebar-items
	.theme-btn
	span {
	margin-right: 0;
}

.tour-details-wrapper .tour-details-sidebar .tour-sidebar-items .text {
	text-align: center;
	text-transform: capitalize;
	margin-top: 30px;
}

.tour-details-wrapper .tour-details-sidebar .offer-card {
	padding: 45px;
	border-radius: 28px;
	height: 420px;
	margin-top: 30px;
}

.tour-details-wrapper .tour-details-sidebar .offer-card h3 {
	font-size: 24px;
	color: var(--white);
	font-weight: 500;
	margin-bottom: 30px;
}

.tour-main-item {
	position: relative;
}

.tour-main-item .tour-box-items-3 {
	position: relative;
	border-radius: 10px;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tour-main-item .tour-box-items-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(255, 87, 34, 0.88);
	border-radius: 10px;
}

.tour-main-item .tour-box-items-3.style-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(77, 64, 202, 0.88);
}

.tour-main-item .tour-box-items-3.style-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(142, 64, 202, 0.91);
}

.tour-main-item .tour-box-items-3 .tour-content {
	position: relative;
}

@media (max-width: 1199px) {
	.tour-main-item .tour-box-items-3 .tour-content br {
		display: none !important;
	}
}

.tour-main-item .tour-box-items-3 .tour-content h3 {
	font-size: 30px;
	color: var(--white);
	margin-bottom: 35px;
}

@media (max-width: 1399px) {
	.tour-main-item .tour-box-items-3 .tour-content h3 {
		font-size: 24px;
	}
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn {
	padding: 5px 6px 5px 26px;
	background-color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn span {
	margin-right: 8px;
	color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--theme-color);
	color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn::before {
	background-color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn::after {
	background-color: var(--theme-color);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover span {
	color: var(--white);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover i {
	background-color: var(--white);
	color: var(--black);
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover::before {
	top: 100%;
}

.tour-main-item .tour-box-items-3 .tour-content .theme-btn:hover::after {
	bottom: -50%;
}

.tour-main-item .tour-box-items-3 .percent-image {
	position: relative;
}

.tour-main-item .shape {
	position: absolute;
	bottom: 20px;
	right: 0;
}

.tour-section2 {
	position: relative;
	padding-top: 100px;
}

.tour-section2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--white);
	top: 50%;
}

.tour-discover-wrapper .tour-card-item .tour-image img {
	width: 100%;
	height: 100%;
	border-top-left-radius: 28px;
	border-top-right-radius: 28px;
}

.tour-discover-wrapper .tour-card-item .tour-content {
	background-color: var(--white);
	border-radius: 28px;
	padding: 25px;
	margin-top: -50px;
	position: relative;
}

.tour-discover-wrapper .tour-card-item .tour-content h6 {
	color: #818181;
	border-bottom: 1px dashed rgba(21, 20, 21, 0.21);
	padding-bottom: 22px;
	margin-bottom: 22px;
}

.tour-discover-wrapper .tour-card-item .tour-content h6 span {
	font-size: 18px;
	font-weight: 900;
	color: var(--theme-color);
}

.tour-discover-wrapper .tour-card-item .tour-content h4 {
	margin-bottom: 15px;
	font-weight: 500;
}

.tour-discover-wrapper .tour-card-item .tour-content h4 a:hover {
	color: var(--theme-color);
}

.tour-discover-wrapper .tour-card-item .tour-content ul {
	margin-bottom: 10px;
}

.tour-discover-wrapper .tour-card-item .tour-content ul li {
	font-weight: 500;
	color: #818181;
}

.tour-discover-wrapper .tour-card-item .tour-content ul li i {
	color: #fb5b32;
	margin-right: 5px;
}

.tour-discover-wrapper .tour-card-item .tour-content .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tour-discover-wrapper .tour-card-item .tour-content .list ul li {
	color: #818181;
	font-weight: 500;
	font-size: 14px;
}

.tour-discover-wrapper .tour-card-item .tour-content .list ul li i {
	color: var(--theme-color-2);
	margin: 5px;
	font-size: 18px;
}

.tour-discover-wrapper .tour-card-item .tour-content .star {
	display: inline-block;
}

.tour-discover-wrapper .tour-card-item .tour-content .star i {
	color: #fb5b32;
}

.tour-discover-wrapper .tour-card-item .tour-content .star span {
	font-weight: 700;
	color: #818181;
	margin-left: 8px;
}

.tour-discover-wrapper .tour-slider {
	margin-right: -80%;
}

@media (max-width: 1199px) {
	.tour-discover-wrapper .tour-slider {
		margin-right: 0;
	}
}

.tour-places-wrapper-4 {
	margin-top: 30px;
	background-color: var(--white);
	border-radius: 28px;
	-webkit-box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	padding: 10px 40px;
	padding-right: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 1199px) {
	.tour-places-wrapper-4 {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		padding: 30px;
	}
}

.tour-places-wrapper-4 .content {
	max-width: 370px;
}

.tour-places-wrapper-4 .content span {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--theme-color);
	display: inline-block;
}

.tour-places-wrapper-4 .content h3 {
	margin-bottom: 10px;
}

.tour-places-wrapper-4 .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}

.tour-places-wrapper-4 .content h3 a:hover {
	color: var(--theme-color);
	background-size: 100% 2px;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(var(--theme-color)),
		to(var(--theme-color))
	);
	background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.tour-places-wrapper-4 .list {
	max-width: 300px;
}

.tour-places-wrapper-4 .list li {
	font-size: 14px;
	font-weight: 500;
}

.tour-places-wrapper-4 .list li i {
	color: var(--theme-color-2);
	margin-right: 10px;
}

.tour-places-wrapper-4 .list li:not(:last-child) {
	margin-bottom: 15px;
}

.tour-places-wrapper-4 .list li .star i {
	color: var(--theme-color-2);
	margin-right: 0;
}

.tour-places-wrapper-4 .list li .star span {
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	margin-left: 10px;
}

.tour-places-wrapper-4 .thumb {
	max-width: 415px;
	position: relative;
}

@media (max-width: 1199px) {
	.tour-places-wrapper-4 .thumb {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: initial;
	}
}

.tour-places-wrapper-4 .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.tour-places-wrapper-4 .thumb .price-list {
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 86px;
	border-radius: 50%;
	height: 86px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #f27507;
	text-align: center;
	position: absolute;
	bottom: 15px;
	left: 18px;
}

.tour-places-wrapper-4 .thumb .price-list.bg-2 {
	background-color: #ff5722;
}

.tour-places-wrapper-4 .thumb .price-list.bg-3 {
	background-color: #1ebdf7;
}

.tour-places-wrapper-4 .thumb .price-list .price {
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	font-family: "Prompt", sans-serif;
	margin-top: 5px;
}

.tour-places-wrapper-4 .thumb .price-list .person {
	color: var(--white);
	margin-top: -30px;
}

.tour-box-items-5 {
	margin-top: 30px;
	padding: 50px 35px;
	border-radius: 28px;
	position: relative;
}

.tour-box-items-5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(247, 146, 30, 0.88);
	border-radius: 28px;
}

.tour-box-items-5.bg-2::before {
	background: rgba(30, 189, 247, 0.88);
}

.tour-box-items-5 .tour-content {
	position: relative;
	z-index: 999;
}

.tour-box-items-5 .tour-content span {
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
}

.tour-box-items-5 .tour-content h3 {
	color: var(--white);
	font-size: 30px;
	font-weight: 600;
}

.tour-box-items-5 .tour-content p {
	max-width: 300px;
	font-weight: 500;
	font-size: 16px;
	color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn {
	padding: 5px 6px 5px 26px;
	background-color: var(--white);
	margin-top: 40px;
}

.tour-box-items-5 .tour-content .theme-btn span {
	margin-right: 8px;
	color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--theme-color);
	color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn::before {
	background-color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn::after {
	background-color: var(--theme-color);
}

.tour-box-items-5 .tour-content .theme-btn:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn:hover span {
	color: var(--white);
}

.tour-box-items-5 .tour-content .theme-btn:hover i {
	background-color: var(--white);
	color: var(--black);
}

.tour-box-items-5 .tour-content .theme-btn:hover::before {
	top: 100%;
}

.tour-box-items-5 .tour-content .theme-btn:hover::after {
	bottom: -50%;
}

.tour-box-items-5 .percent-image {
	position: absolute;
	bottom: 60px;
	left: 60%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 11;
}

@media (max-width: 1199px) {
	.tour-box-items-5 .percent-image {
		display: none;
	}
}

.tour-box-items-5 .shape-image {
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	z-index: 9;
	max-width: 280px;
}

@media (max-width: 1199px) {
	.tour-box-items-5 .shape-image {
		display: none;
	}
}

.tour-box-items-5 .shape-image img {
	width: 100%;
	height: 100%;
	border-radius: 0 28px 28px 0;
}

.tour-wrapper-5 {
	position: relative;
	border-radius: 28px;
	margin: 0 42px;
	overflow: hidden;
}

@media (max-width: 1399px) {
	.tour-wrapper-5 {
		margin: 0;
	}
}

.tour-wrapper-5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: rgba(21, 20, 21, 0.81);
}

.tour-wrapper-5 .tour-box-items-6 {
	background-color: var(--white);
	padding: 10px;
	border-radius: 28px;
	position: relative;
	margin-top: 30px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image {
	position: relative;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(21, 20, 21, 0)),
		color-stop(80.53%, rgba(21, 20, 21, 0.73))
	);
	background: linear-gradient(
		180deg,
		rgba(21, 20, 21, 0) 0%,
		rgba(21, 20, 21, 0.73) 80.53%
	);
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star {
	display: inline-block;
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star i {
	color: #fb5b32;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image .star span {
	font-weight: 700;
	font-size: 14px;
	color: var(--white);
	margin-left: 8px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-image img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content {
	padding: 30px 20px 20px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h6 {
	color: #818181;
	margin-bottom: 22px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h6 span {
	font-size: 18px;
	font-weight: 900;
	color: var(--theme-color);
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h5 {
	margin-bottom: 25px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content h5 a:hover {
	color: var(--theme-color);
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul {
	margin-bottom: 10px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li {
	font-weight: 500;
	color: #818181;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li:not(:last-child) {
	margin-bottom: 10px;
}

.tour-wrapper-5 .tour-box-items-6 .tour-content ul li i {
	color: #fb5b32;
	margin-right: 5px;
}

.tour-wrapper-5 .tour-slider-5 {
	margin-left: -10%;
	margin-right: -10%;
}

@media (max-width: 1399px) {
	.tour-wrapper-5 .tour-slider-5 {
		margin: 0;
	}
}

.tour-wrapper-5 .swiper-dot4 {
	position: relative;
	z-index: 9;
}

.tour-wrapper-5 .swiper-dot4 .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	background-color: white;
	opacity: 1;
	border-radius: 100%;
	position: relative;
}

.tour-wrapper-5
	.swiper-dot4
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme-color);
	-webkit-transition: 0.6s;
	transition: 0.6s;
	position: relative;
	width: 30px;
	border-radius: 30px;
}

::-webkit-scrollbar {
	width: 6px;
	height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px var(--theme-color);
	box-shadow: inset 0 0 5px var(--theme-color);
	border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--theme-color);
	border-radius: 10px;
}

.fix {
	overflow: hidden;
}

.ralt {
	position: relative;
}

.ripple {
	position: relative;
}

.ripple::before,
.ripple::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 80px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	-webkit-animation: rippleOne 3s infinite;
	animation: rippleOne 3s infinite;
}

.ripple::before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.ripple::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	background: var(--theme-color);
	opacity: 1;
	border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
	margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
	-webkit-transition: 0.6s;
	transition: 0.6s;
	position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	position: absolute;
	width: 22px;
	height: 22px;
	line-height: 22px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid var(--theme-color);
	content: "";
}

.array-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 18px;
}

.array-button .array-prev,
.array-button .array-next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.array-button.style-2 .array-prev {
	border: 1px solid var(--border);
}

.array-button.style-2 .array-next {
	border: 1px solid var(--theme-color);
	background-color: var(--theme-color);
	color: var(--white);
}

.array-button.style-2 .array-next:hover {
	background-color: var(--header);
}

@media (max-width: 575px) {
	br {
		display: none;
	}
}

/* background */
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}

.sticky-style {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
}

.box-shadow {
	-webkit-box-shadow: var(---box-shadow);
	box-shadow: var(---box-shadow);
}

.custom-container {
	max-width: 1560px;
	margin: 0 auto;
}

.custom-container-2 {
	max-width: 1568px;
	margin: 0 auto;
}

.box-shadow-none::before {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.slide-transtion {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.brand-slide-element {
	width: auto;
	display: inline-block;
}

@media (max-width: 991px) {
	.lg-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.swiper-dot4 .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	background-color: #818181;
	opacity: 1;
	border-radius: 100%;
	position: relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme-color);
	-webkit-transition: 0.6s;
	transition: 0.6s;
	position: relative;
	width: 30px;
	border-radius: 30px;
}

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

.team-box-items {
	margin-top: 30px;
}

.team-box-items .thumb {
	max-width: 282px;
	margin: 0 auto;
	text-align: center;
}

.team-box-items .thumb img {
	border-radius: 50%;
}

@media (max-width: 767px) {
	.team-box-items .thumb img {
		width: 100%;
		height: 100%;
	}
}

.team-box-items .content {
	border-radius: 10px;
	border: 1px solid rgba(35, 28, 37, 0.14);
	background: var(--white);
	padding: 25px 20px;
	text-align: center;
	margin-top: -30px;
	position: relative;
	z-index: 9;
}

.team-box-items .content p {
	font-weight: 600;
	color: #f7921e;
}

.team-box-items .content h3 a:hover {
	color: var(--theme-color);
}

.team-box-items .content .social-icon {
	gap: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 15px;
}

.team-box-items .content .social-icon a {
	display: inline-block;
	width: 43px;
	height: 43px;
	line-height: 43px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--text);
	border: 1px solid rgba(35, 28, 37, 0.14);
}

.team-box-items .content .social-icon a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border: 1px solid var(--theme-color);
}

.team-section {
	position: relative;
}

.team-section .plane-shape {
	position: absolute;
	left: 0;
	top: 10%;
}

@media (max-width: 1399px) {
	.team-section .plane-shape {
		display: none;
	}
}

.team-section .plane-shape-2 {
	position: absolute;
	bottom: 30px;
	right: 200px;
}

@media (max-width: 1399px) {
	.team-section .plane-shape-2 {
		display: none;
	}
}

.team-section .frame-shape {
	position: absolute;
	top: 15%;
	right: 5%;
}

@media (max-width: 1399px) {
	.team-section .frame-shape {
		display: none;
	}
}

.team-details-wrapper .team-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.team-details-wrapper .team-details-content {
	margin-left: 40px;
}

@media (max-width: 991px) {
	.team-details-wrapper .team-details-content {
		margin-left: 0;
	}
}

.team-details-wrapper .team-details-content .details-info {
	border-bottom: 1px solid var(--border);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.team-details-wrapper .team-details-content .details-info h3 {
	margin-bottom: 5px;
}

.team-details-wrapper .team-details-content .details-info span {
	color: var(--text);
}

.team-details-wrapper .team-details-content .progress-wrap .pro-items {
	width: 100%;
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items:not(:last-child) {
	margin-bottom: 30px;
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items
	.pro-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px;
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items
	.pro-head
	.title {
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items
	.pro-head
	.point {
	font-size: 16px;
	color: var(--black);
	font-weight: 600;
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items
	.progress {
	height: 12px;
}

.team-details-wrapper
	.team-details-content
	.progress-wrap
	.pro-items
	.progress
	.progress-bar {
	background-color: var(--theme-color);
}

.team-details-wrapper .team-details-content .social-icon {
	margin-top: 40px;
}

.team-details-wrapper .team-details-content .social-icon span {
	font-size: 16px;
	font-weight: 700;
	color: var(--header);
	margin-right: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border: 1px solid var(--border);
	display: inline-block;
	color: var(--text);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: 5px;
}

.team-details-wrapper .team-details-content .social-icon a:not(:last-child) {
	margin-right: 5px;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border: 1px solid transparent;
}

.team-details-wrapper .team-single-history .title {
	border-bottom: 1px solid var(--border);
	padding-bottom: 30px;
}

.team-details-wrapper .team-single-history h5 {
	font-weight: 500;
}

.team-details-wrapper .team-single-history h5 span {
	border: 1px solid var(--theme-color);
	color: var(--theme-color);
	font-size: 14px;
	font-weight: 400;
	padding: 6px 16px;
	border-radius: 16px;
	margin-left: 20px;
}

.team-card-items-4 {
	margin-top: 30px;
	position: relative;
	z-index: 9;
	padding-bottom: 25px;
}

.team-card-items-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: var(--white);
	-webkit-box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	z-index: -1;
	top: 25%;
	height: initial;
}

.team-card-items-4 .thumb {
	margin: 0 auto;
	width: 258px;
	height: 258px;
}

.team-card-items-4 .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.team-card-items-4 .content {
	text-align: center;
	padding: 20px 15px;
	border-radius: 28px;
	border: 1px dashed rgba(21, 20, 21, 0.21);
	margin-top: 30px;
	margin-left: 20px;
	margin-right: 20px;
}

.team-card-items-4 .content span {
	font-size: 16px;
	font-weight: 600;
	color: #fb5b32;
}

.team-card-items-4 .content h3 a:hover {
	color: var(--theme-color);
}

.team-card-items-4 .content .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.team-card-items-4 .content .social-icon a {
	width: 39px;
	line-height: 39px;
	display: inline-block;
	height: 39px;
	border: 1px solid rgba(35, 28, 37, 0.14);
	text-align: center;
	border-radius: 50%;
	color: var(--text);
}

.team-card-items-4 .content .social-icon a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border: 1px solid var(--theme-color);
}

.faq-items .accordion-item {
	border: 0;
	background-color: var(--white);
	border-radius: 10px;
	border: 1px solid rgba(35, 28, 37, 0.18);
}

.faq-items .accordion-item .accordion-header {
	border: none;
}

.faq-items .accordion-item .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	color: var(--header);
	border: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: var(--white);
	padding: 22px 22px 0;
	text-transform: capitalize;
}

.faq-items .accordion-item .accordion-header .accordion-button::after {
	content: "\f078";
	background: transparent;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	-webkit-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
	color: var(--header);
}

.faq-items
	.accordion-item
	.accordion-header
	.accordion-button:not(.collapsed)::after {
	content: "\f077";
	background: transparent;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	color: var(--theme-color);
}

.faq-items .accordion-item .accordion-header .accordion-button.collapsed {
	background-color: transparent;
	padding: 25px 22px;
	color: var(--header);
}

.faq-items .accordion-item .accordion-collapse .accordion-body {
	padding-left: 30px;
	padding-top: 15px;
	color: #504e4e;
	background: var(--white);
}

.faq-items.style-2 .accordion-item {
	border: 1px dashed rgba(21, 20, 21, 0.21);
	border-radius: 4px;
	margin-top: 30px;
}

.faq-items.style-2 .accordion-item .accordion-header .accordion-button {
	font-size: 22px;
	font-weight: 500;
	background-color: var(--white);
	padding: 19px 30px;
}

.faq-items.style-2 .accordion-item .accordion-body {
	background-color: var(--white) !important;
	padding-top: 15px;
	border-top: 1px dashed rgba(21, 20, 21, 0.21);
	font-size: 16px;
	font-weight: 500;
	color: #455151;
}

.faq-wrapper {
	position: relative;
}

.faq-wrapper .faq-content .faq-image {
	max-width: 400px;
	position: absolute;
	bottom: 0;
	left: 50px;
}

@media (max-width: 991px) {
	.faq-wrapper .faq-content .faq-image {
		display: none;
	}
}

.faq-wrapper .faq-content .faq-image img {
	width: 100%;
	height: 100%;
}

.faq-section {
	position: relative;
}

.faq-section .plane-shape {
	position: absolute;
	top: 15%;
	left: 5%;
}

@media (max-width: 1399px) {
	.faq-section .plane-shape {
		display: none;
	}
}

.faq-section .frame-shape {
	position: absolute;
	top: 15%;
	right: 15%;
}

@media (max-width: 1399px) {
	.faq-section .frame-shape {
		display: none;
	}
}

.faq-section .light-shape {
	position: absolute;
	right: 5%;
	bottom: 20%;
}

@media (max-width: 1399px) {
	.faq-section .light-shape {
		display: none;
	}
}

.cta-video-section {
	position: relative;
	z-index: 9;
	background-attachment: fixed;
}

.cta-video-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.8);
	z-index: -1;
}

.cta-video-section .plane-shape {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 991px) {
	.cta-video-section .plane-shape {
		display: none;
	}
}

.cta-img {
	position: relative;
}

@media (max-width: 991px) {
	.cta-img {
		text-align: center;
	}
}

.cta-img .offer-shape {
	position: absolute;
	bottom: -10px;
	left: -70px;
}

@media (max-width: 991px) {
	.cta-img .offer-shape {
		display: none;
	}
}

.cta-video-section-2 {
	height: 620px;
	background-attachment: fixed;
	position: relative;
}

@media (max-width: 767px) {
	.cta-video-section-2 {
		height: 500px;
	}
}

@media (max-width: 575px) {
	.cta-video-section-2 {
		height: 380px;
	}
}

.cta-video-section-2 .video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 162px;
	height: 162px;
	background-color: var(--white);
	text-align: center;
	line-height: 162px;
	border-radius: 50%;
	font-size: 20px;
	color: #f7921e;
}

@media (max-width: 767px) {
	.cta-video-section-2 .video-btn {
		width: 120px;
		height: 120px;
		line-height: 120px;
	}
}

@media (max-width: 575px) {
	.cta-video-section-2 .video-btn {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 18px;
	}
}

.cta-video-section-2 .video-btn.ripple::before,
.cta-video-section-2 .video-btn.ripple::after {
	width: 162px;
	height: 162px;
}

@media (max-width: 767px) {
	.cta-video-section-2 .video-btn.ripple::before,
	.cta-video-section-2 .video-btn.ripple::after {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 575px) {
	.cta-video-section-2 .video-btn.ripple::before,
	.cta-video-section-2 .video-btn.ripple::after {
		width: 80px;
		height: 80px;
	}
}

.cta-bg-section {
	position: relative;
}

.cta-bg-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--bg);
	top: 40%;
}

.cta-wrapper {
	border-radius: 10px;
	position: relative;
	padding: 80px 120px;
}

@media (max-width: 1199px) {
	.cta-wrapper {
		padding: 60px 60px;
		background-color: var(--theme-color-2) !important;
		background-image: none !important;
		margin: 0 auto;
		max-width: 700px;
		text-align: center;
	}
}

@media (max-width: 991px) {
	.cta-wrapper {
		padding: 50px 50px;
	}
}

@media (max-width: 767px) {
	.cta-wrapper {
		padding: 50px 40px;
	}
}

@media (max-width: 575px) {
	.cta-wrapper {
		padding: 40px 30px;
	}
}

.cta-wrapper .cta-content {
	margin-left: 50px;
	position: relative;
	z-index: 9;
}

@media (max-width: 1199px) {
	.cta-wrapper .cta-content {
		margin-left: 0;
	}
}

.cta-wrapper .cta-content p {
	font-size: 18px;
	color: var(--white);
	margin-top: 20px;
}

.cta-wrapper .cta-content .theme-btn {
	background-color: var(--header);
	margin-top: 30px;
}

.cta-wrapper .cta-content .theme-btn::before,
.cta-wrapper .cta-content .theme-btn::after {
	background-color: var(--white);
}

.cta-wrapper .cta-content .theme-btn:hover span {
	color: var(--header);
}

.cta-wrapper .cta-content .theme-btn:hover i {
	background-color: var(--theme-color-2);
	color: var(--white);
}

.cta-wrapper .cta-shape {
	position: absolute;
	bottom: 30px;
	right: 60px;
}

.cta-book-list-wrapper .booking-list-area {
	border-radius: 90px;
	background: var(--theme-color);
	position: relative;
	z-index: 9;
	padding: 45px 74px;
	max-width: 1388px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin: -75px auto 0;
}

@media (max-width: 1399px) {
	.cta-book-list-wrapper .booking-list-area {
		margin-left: 40px;
		width: 93%;
	}
}

@media (max-width: 1199px) {
	.cta-book-list-wrapper .booking-list-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 40px;
		border-radius: 20px;
		margin-left: 20px;
		width: 95%;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		padding: 40px 40px;
	}
}

@media (max-width: 575px) {
	.cta-book-list-wrapper .booking-list-area {
		width: 90%;
	}
}

.cta-book-list-wrapper .booking-list-area .booking-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	max-width: 155px;
	width: 100%;
}

@media (max-width: 1199px) {
	.cta-book-list-wrapper .booking-list-area .booking-list {
		max-width: initial;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
	}
}

.cta-book-list-wrapper .booking-list-area .booking-list .icon {
	-webkit-filter: grayscale(100%) brightness(300%);
	filter: grayscale(100%) brightness(300%);
}

.cta-book-list-wrapper .booking-list-area .booking-list .content h5 {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	font-family: "Nunito", sans-serif;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select {
	padding: 0;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
	color: var(--white);
	font-weight: 800;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select::after {
	right: -30px;
	border-bottom: 1px solid var(--white);
	border-right: 1px solid var(--white);
	width: 9px;
	height: 9px;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .list {
	width: 100%;
	background-color: var(--white);
	color: var(--text);
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .focus {
	background-color: transparent;
	font-weight: 400;
	color: var(--text);
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .option {
	border: none;
}

.cta-book-list-wrapper .booking-list-area .form-clt .nice-select .option:hover {
	background-color: transparent;
}

.cta-book-list-wrapper .booking-list-area .theme-btn {
	padding: 18px 30px;
	background-color: var(--white);
}

@media (max-width: 1199px) {
	.cta-book-list-wrapper .booking-list-area .theme-btn {
		width: 100%;
	}
}

.cta-book-list-wrapper .booking-list-area .theme-btn span {
	margin-right: 0;
	color: var(--header);
}

.cta-book-list-wrapper .booking-list-area .theme-btn span i {
	width: initial;
	height: initial;
	line-height: initial;
	background-color: transparent;
	margin-left: 10px;
	color: var(--header);
}

.cta-book-list-wrapper .booking-list-area .theme-btn:hover span {
	color: var(--white);
}

.cta-book-list-wrapper .booking-list-area .theme-btn:hover span i {
	color: var(--white);
}

.cta-wrapper-3 {
	padding: 100px 0 192px;
	border-radius: 20px;
	position: relative;
}

.cta-wrapper-3 .shape1 {
	position: absolute;
	left: 0;
	top: 30%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 1199px) {
	.cta-wrapper-3 .shape1 {
		display: none;
	}
}

.cta-wrapper-3 .shape2 {
	position: absolute;
	right: 0;
	top: 30%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 1199px) {
	.cta-wrapper-3 .shape2 {
		display: none;
	}
}

.cta-wrapper-3 .text-image {
	position: relative;
	z-index: 9;
	text-align: center;
}

@media (max-width: 991px) {
	.cta-wrapper-3 .text-image img {
		width: 100%;
		height: 100%;
	}
}

.counter-section {
	position: relative;
	padding-top: 140px;
}

@media (max-width: 1199px) {
	.counter-section {
		padding-top: 100px;
	}
}

@media (max-width: 991px) {
	.counter-section {
		padding-top: 80px;
	}
}

.counter-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--bg);
	height: 60%;
}

.counter-section.bg-2 {
	z-index: 9;
}

.counter-section.bg-2::before {
	display: none;
}

.cta-travel-wrapper {
	padding: 90px 100px;
	position: relative;
	z-index: 9;
	border-radius: 10px;
	margin-top: -8px;
	background-attachment: fixed;
	overflow: hidden;
}

@media (max-width: 991px) {
	.cta-travel-wrapper {
		padding: 60px 50px;
	}
}

@media (max-width: 767px) {
	.cta-travel-wrapper {
		padding: 50px 40px;
	}
}

.cta-travel-wrapper .plane-shape {
	position: absolute;
	top: 0;
	right: 50px;
}

.cta-travel-wrapper .cta-img {
	position: absolute;
	bottom: -45%;
	right: 100px;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

@media (max-width: 1399px) {
	.cta-travel-wrapper .cta-img {
		display: none;
	}
}

.cta-travel-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 10px;
	background: rgba(29, 35, 31, 0.96);
	z-index: -1;
}

.cta-travel-wrapper .travel-text {
	margin-bottom: 40px;
}

@media (max-width: 1399px) {
	.cta-travel-wrapper .travel-text img {
		width: 100%;
		height: 100%;
	}
}

.cta-travel-wrapper p {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.71);
	font-size: 20px;
	line-height: 150%;
}

.cta-travel-wrapper .list-items-area {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 70px;
}

@media (max-width: 1199px) {
	.cta-travel-wrapper .list-items-area {
		margin-top: 30px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
	}
}

.cta-travel-wrapper .list-items-area ul li {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
}

.cta-travel-wrapper .list-items-area ul li:not(:last-child) {
	margin-bottom: 20px;
}

.cta-travel-wrapper .list-items-area ul li svg {
	margin-right: 10px;
}

.cta-app-wrapper {
	padding: 100px;
	border-radius: 28px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 991px) {
	.cta-app-wrapper {
		padding: 60px;
	}
}

@media (max-width: 767px) {
	.cta-app-wrapper {
		padding: 60px 40px;
		text-align: center;
	}
}

@media (max-width: 575px) {
	.cta-app-wrapper {
		padding: 50px 30px;
	}
}

.cta-app-wrapper .app-image {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 991px) {
	.cta-app-wrapper .app-image {
		display: none;
	}
}

.cta-app-wrapper .cta-app-content {
	position: relative;
	z-index: 9;
}

.cta-app-wrapper .cta-app-content .app-text {
	font-size: 15px;
	font-weight: 500;
	margin-top: 27px;
	color: var(--white);
}

.cta-app-wrapper .cta-app-content .apps-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.cta-app-wrapper .cta-app-content .apps-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.cta-app-wrapper .cta-app-content .apps-items img {
	border-radius: 5px;
}

.cta-app-section {
	position: relative;
}

.cta-app-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--white);
	top: 45%;
}

.vedio-area {
	background-attachment: fixed;
	position: relative;
}

.vedio-area .shape {
	position: absolute;
	bottom: 0;
	right: 5%;
}

.play-btn {
	text-align: center;
	padding: 250px 0;
}

@media (max-width: 1199px) {
	.play-btn {
		padding: 100px 0;
	}
}

@media (max-width: 991px) {
	.play-btn {
		padding: 80px 0;
	}
}

.play-btn .video-btn {
	width: 124px;
	height: 124px;
	line-height: 124px;
	border-radius: 100px;
	text-align: center;
	background-color: var(--white);
	color: var(--theme-color);
	position: relative;
	font-size: 30px;
	display: inline-block;
}

@media (max-width: 767px) {
	.play-btn .video-btn {
		width: 120px;
		height: 120px;
		line-height: 120px;
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.play-btn .video-btn {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 20px;
	}
}

.cta-box-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 30px 50px;
	background-color: var(--theme-color);
	border-radius: 108px;
}

@media (max-width: 575px) {
	.cta-box-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		padding: 25px 30px;
		border-radius: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.cta-box-items.style-2 {
	background-color: var(--theme-color-2);
}

.cta-box-items .cta-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
}

@media (max-width: 575px) {
	.cta-box-items .cta-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.cta-box-items .cta-item .icon {
	font-size: 78px;
	color: var(--white);
}

.cta-box-items .cta-item .content h3 {
	color: var(--white);
}

.cta-box-items .box-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50px;
	background-color: var(--white);
	color: var(--header);
	display: inline-block;
}

.cta-box-items .box-icon i {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	font-size: 20px;
}

.cta-box-items .box-icon:hover {
	background-color: var(--white);
	color: var(--header);
}

.cta-footer-section {
	position: relative;
	z-index: 9;
}

.cta-footer-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #151415;
	z-index: -1;
	top: 65px;
}

.cta-footer-section.style-2 {
	margin-top: -65px;
}

@media (max-width: 991px) {
	.cta-video-content {
		text-align: center;
	}
}

.cta-video-content .cta-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-top: 50px;
}

@media (max-width: 991px) {
	.cta-video-content .cta-button {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.cta-video-content .cta-button {
		margin-top: 40px;
	}
}

@media (max-width: 575px) {
	.cta-video-content .cta-button {
		margin-top: 25px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.cta-video-content .cta-button .video-btn {
	background-color: var(--theme-color);
	color: var(--white);
	display: inline-block;
	font-size: 16px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	position: relative;
}

.cta-video-content .cta-button .video-btn::before {
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--theme-color);
	content: "";
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
	.cta-video-content .cta-button .button-text {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.cta-video-content .cta-button .button-text span {
	font-size: 16px;
	color: var(--white);
	font-weight: bold;
}

@media (max-width: 767px) {
	.cta-video-content .cta-button .button-text span {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		margin-left: initial !important;
	}
}

.cta-wrapper-4 {
	border-radius: 28px;
	position: relative;
	margin-top: 120px;
	text-align: center;
	background-attachment: fixed;
}

@media (max-width: 1199px) {
	.cta-wrapper-4 {
		margin-top: 100px;
	}
}

@media (max-width: 991px) {
	.cta-wrapper-4 {
		margin-top: 80px;
	}
}

.cta-wrapper-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 28px;
	background: rgba(21, 20, 21, 0.84);
}

.cta-wrapper-4 .discount-shape {
	position: absolute;
	left: 100px;
	top: 90px;
	z-index: 9;
}

@media (max-width: 1199px) {
	.cta-wrapper-4 .discount-shape {
		display: none;
	}
}

.cta-wrapper-4 .bag-shape {
	position: absolute;
	bottom: 0;
	right: 55px;
}

@media (max-width: 1199px) {
	.cta-wrapper-4 .bag-shape {
		display: none;
	}
}

.cta-wrapper-4 .plane-shape {
	position: absolute;
	bottom: 0;
	left: 30%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 1600px) {
	.cta-wrapper-4 .plane-shape {
		display: none;
	}
}

.cta-wrapper-4 .section-title {
	margin-bottom: 40px !important;
}

.cta-wrapper-4 .section-title span {
	color: #fb5b32;
}

.testimonial-box-items {
	position: relative;
	border-radius: 10px;
	background: #efeefa;
	padding: 35px;
	margin-top: 30px;
}

@media (max-width: 575px) {
	.testimonial-box-items {
		padding: 30px;
	}
}

.testimonial-box-items .icon {
	position: absolute;
	bottom: 48px;
	right: 35px;
}

.testimonial-box-items .star {
	color: #f7921e;
	margin-bottom: 20px;
}

.testimonial-box-items p {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	font-family: "Prompt", sans-serif;
}

@media (max-width: 575px) {
	.testimonial-box-items p {
		font-size: 18px;
	}
}

.testimonial-box-items .client-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.testimonial-box-items .client-info .client-content span {
	font-size: 14px;
	font-weight: 600;
}

.testimonial-wrapper .testimonial-image {
	position: relative;
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-image {
		text-align: center;
	}
}

.testimonial-wrapper .testimonial-image img {
	width: 100%;
	height: 100%;
}

.testimonial-wrapper .testimonial-image .rating {
	position: absolute;
	bottom: -7%;
	right: -26%;
}

@media (max-width: 1199px) {
	.testimonial-wrapper .testimonial-image .rating {
		display: none;
	}
}

.testimonial-wrapper .testimonial-content {
	margin-left: 60px;
	position: relative;
}

.testimonial-wrapper .testimonial-content .array-button {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 99;
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-content .array-button {
		display: none;
	}
}

@media (max-width: 1199px) {
	.testimonial-wrapper .testimonial-content {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-content {
		text-align: center;
	}
}

.testimonial-wrapper .testimonial-content .star {
	margin-bottom: 30px;
	border-top: 1px solid rgba(21, 20, 21, 0.12);
	padding-top: 30px;
}

.testimonial-wrapper .testimonial-content .star i {
	color: var(--theme-color-2);
}

.testimonial-wrapper .testimonial-content h3 {
	font-size: 32px;
	letter-spacing: -0.64px;
}

@media (max-width: 1199px) {
	.testimonial-wrapper .testimonial-content h3 {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-content h3 {
		font-size: 23px;
	}
}

@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-content h3 {
		font-size: 20px;
	}
}

.testimonial-wrapper .testimonial-content .client-info-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 70px;
}

@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-content .client-info-wrapper {
		margin-top: 35px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.testimonial-wrapper
	.testimonial-content
	.client-info-wrapper
	.client-info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
}

.testimonial-wrapper
	.testimonial-content
	.client-info-wrapper
	.client-info-item
	.client-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.testimonial-wrapper
	.testimonial-content
	.client-info-wrapper
	.client-info-item
	.client-info
	.content
	span {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.14px;
}

.testimonial-wrapper
	.testimonial-content
	.client-info-wrapper
	.client-info-item
	.icon
	i {
	font-size: 43px;
	color: var(--theme-color);
}

.testimonial-wrapper-1 {
	position: relative;
}

.testimonial-wrapper-1 .testimonial-image {
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 1199px) {
	.testimonial-wrapper-1 .testimonial-image {
		display: none;
	}
}

.testimonial-box-items2 {
	padding: 30px;
	border: 1px solid rgba(21, 20, 21, 0.14);
	border-radius: 28px;
	margin-top: 30px;
}

.testimonial-box-items2 .star {
	color: #f7921e;
	margin-bottom: 20px;
}

.testimonial-box-items2 .client-info-items {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.testimonial-box-items2 .client-info-items .client-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.testimonial-section-3 {
	position: relative;
}

.testimonial-section-3 .array-button {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	left: 10%;
	right: 10%;
}

@media (max-width: 1399px) {
	.testimonial-section-3 .array-button {
		display: none;
	}
}

.testimonial-box-items-4 {
	position: relative;
	padding: 35px;
	margin-top: 30px;
	padding-top: 0;
	z-index: 9;
}

.testimonial-box-items-4::before {
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	border-radius: 28px;
	background: var(--white);
	-webkit-box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	box-shadow: 10px 9px 106.6px 55px rgba(5, 6, 60, 0.04);
	z-index: -1;
	width: 100%;
	height: initial;
}

.testimonial-box-items-4 .star {
	color: var(--theme-color-2);
	margin-bottom: 15px;
	margin-top: 15px;
}

.testimonial-box-items-4 .icon {
	position: absolute;
	right: 40px;
	top: 80px;
}

.testimonial-box-items-4 h3 {
	font-size: 22px;
	font-weight: 500;
	margin-top: 15px;
}

.testimonial-box-items-4 .client-info {
	border-top: 1px dashed rgba(21, 20, 21, 0.21);
	padding-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}

.testimonial-box-items-4 .client-info span {
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.testimonial-section-5 .section-title-area {
		text-align: center;
	}
}

.testimonial-section-5 .section-title-area .test-left-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}

.testimonial-section-5 .section-title-area .test-left-top .content h4 {
	font-size: 20px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.testimonial-section-5 .section-title-area .test-left-top .content h4 {
		text-align: left;
	}
}

.testimonial-section-5 .section-title-area .test-left-top .content p {
	font-size: 14px;
}

.testimonail-image-5 {
	margin-top: 30px;
	margin-bottom: -120px;
}

@media (max-width: 991px) {
	.testimonail-image-5 {
		display: none;
	}
}

/* 
woocommerce shop - css
*/
.shop-box-items {
	text-align: center;
	margin-top: 30px;
	border: 1px solid rgba(30, 32, 35, 0.12);
	background: var(--white);
	padding: 55px 40px;
	border-radius: 10px;
}

@media (max-width: 1399px) {
	.shop-box-items {
		padding: 30px 10px;
	}
}

@media (max-width: 991px) {
	.shop-box-items {
		padding: 30px 20px;
	}
}

.shop-box-items .thumb {
	position: relative;
}

.shop-box-items .thumb .theme-btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	min-width: 260px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
	font-weight: 700;
	min-width: 215px;
	padding: 5px 15px 5px 30px;
	background-color: var(--theme-color);
}

.shop-box-items .thumb .theme-btn span {
	margin-right: 10px;
}

.shop-box-items .content {
	margin-top: 40px;
}

.shop-box-items .content .star {
	color: var(--theme-color);
	margin-bottom: 10px;
}

.shop-box-items .content h4 {
	font-size: 18px;
	font-weight: 600;
}

.shop-box-items .content h4 a:hover {
	color: var(--theme-color);
}

.shop-box-items .content .price-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.shop-box-items .content .price-list li {
	font-size: 18px;
	font-weight: 700;
	color: var(--theme-color);
}

.shop-box-items .content .price-list li del {
	font-weight: 500;
	color: rgba(100, 105, 112, 0.47);
}

.shop-box-items:hover .thumb .theme-btn {
	opacity: 1;
	visibility: visible;
}

.product-details-wrapper .shop-details-image {
	position: relative;
}

.product-details-wrapper .shop-details-image .nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.product-details-wrapper .shop-details-image .nav .nav-link {
	padding: 0;
	max-width: 115px;
}

.product-details-wrapper .shop-details-image .shop-thumb img {
	width: 100%;
	height: 100%;
}

.product-details-wrapper .product-details-content {
	margin-left: 60px;
}

@media (max-width: 1399px) {
	.product-details-wrapper .product-details-content {
		margin-left: 30px;
	}
}

@media (max-width: 991px) {
	.product-details-wrapper .product-details-content {
		margin-left: 0;
	}
}

.product-details-wrapper .product-details-content h2 {
	font-size: 49px;
}

@media (max-width: 767px) {
	.product-details-wrapper .product-details-content h2 {
		font-size: 42px;
	}
}

@media (max-width: 575px) {
	.product-details-wrapper .product-details-content h2 {
		font-size: 32px;
	}
}

.product-details-wrapper .product-details-content .star a {
	color: var(--theme-color);
	font-size: 16px;
	font-weight: 600;
}

.product-details-wrapper .product-details-content .star span {
	margin-left: 10px;
}

.product-details-wrapper .product-details-content .price-list {
	gap: 20px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 30px;
}

.product-details-wrapper .product-details-content .price-list h3 {
	font-size: 40px;
}

.product-details-wrapper .product-details-content .cart-quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	margin: 30px 0;
}

@media (max-width: 1199px) {
	.product-details-wrapper .product-details-content .cart-quantity {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.product-details-wrapper .product-details-content .cart-quantity .qty {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #e4e4e5;
	padding: 16px 24px;
	line-height: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.product-details-wrapper .product-details-content .cart-quantity .qty button,
.product-details-wrapper .product-details-content .cart-quantity .qty input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--header);
	font-weight: 400;
	font-size: 24px;
}

.product-details-wrapper .product-details-content .cart-quantity .qty input {
	background-color: transparent;
	text-align: center;
	border-radius: 0;
	border: unset;
	outline: none;
}

.product-details-wrapper .product-details-content .cart-quantity .shop-btn {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	background-color: var(--theme-color);
	color: var(--white);
	padding: 24px 20px;
	text-align: center;
	line-height: 1;
	display: inline-block;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	text-transform: capitalize;
}

.product-details-wrapper .product-details-content .cart-quantity .shop-btn i {
	margin-right: 10px;
}

.product-details-wrapper
	.product-details-content
	.cart-quantity
	.shop-btn:hover {
	background-color: var(--header);
}

.product-details-wrapper .product-details-content .cart-quantity .icon-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.product-details-wrapper
	.product-details-content
	.cart-quantity
	.icon-item
	.icon {
	border: 1px solid #e4e4e5;
	padding: 16px 24px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.product-details-wrapper
	.product-details-content
	.cart-quantity
	.icon-item
	.icon:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.product-details-wrapper .product-details-content .details-info {
	position: relative;
}

.product-details-wrapper
	.product-details-content
	.details-info:not(:last-child) {
	margin-bottom: 10px;
}

.product-details-wrapper .product-details-content .details-info span {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	position: absolute;
	left: 0;
	top: 2px;
}

.product-details-wrapper .product-details-content .details-info a {
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	margin-left: 150px;
	text-transform: capitalize;
}

.product-details-wrapper .single-tab {
	padding-top: 60px;
}

.product-details-wrapper .single-tab .nav {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid var(--border);
	padding-bottom: 20px;
}

.product-details-wrapper .single-tab .nav .nav-link.active {
	position: relative;
}

.product-details-wrapper .single-tab .nav .nav-link.active h6 {
	color: var(--theme-color);
}

.product-details-wrapper .single-tab .nav .nav-link.active::before {
	position: absolute;
	bottom: -21px;
	left: 0;
	height: 2px;
	width: 100%;
	content: "";
	background: var(--theme-color);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

@media (max-width: 470px) {
	.product-details-wrapper .single-tab .nav .nav-link.active::before {
		display: none;
	}
}

.product-details-wrapper .single-tab .nav .nav-link h6 {
	font-size: 18px;
}

.product-details-wrapper .single-tab .description-items .description-content {
	margin-right: 50px;
}

@media (max-width: 1399px) {
	.product-details-wrapper .single-tab .description-items .description-content {
		margin-right: 30px;
	}
}

@media (max-width: 991px) {
	.product-details-wrapper .single-tab .description-items .description-content {
		margin-right: 0;
	}
}

.product-details-wrapper
	.single-tab
	.description-items
	.description-content
	h3 {
	margin-bottom: 15px;
}

.product-details-wrapper
	.single-tab
	.description-items
	.description-content
	.description-list-items {
	margin-top: 30px;
}

@media (max-width: 575px) {
	.product-details-wrapper
		.single-tab
		.description-items
		.description-content
		.description-list-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
	}
}

.product-details-wrapper
	.single-tab
	.description-items
	.description-content
	.description-list-items
	.description-list
	li {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--header);
	font-weight: 600;
}

.product-details-wrapper
	.single-tab
	.description-items
	.description-content
	.description-list-items
	.description-list
	li
	span {
	color: var(--text);
	font-weight: 400;
}

@media (max-width: 767px) {
	.product-details-wrapper .single-tab .review-items .admin-items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 30px;
	}
}

.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
	width: 100px;
	height: 100px;
}

.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
	border-radius: 50%;
}

.product-details-wrapper .single-tab .review-items .admin-items .content {
	position: relative;
	border: 1px solid var(--border);
}

.product-details-wrapper
	.single-tab
	.review-items
	.admin-items
	.content::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: var(--white);
	border-left: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 40%;
	left: -16px;
}

@media (max-width: 575px) {
	.product-details-wrapper
		.single-tab
		.review-items
		.admin-items
		.content::before {
		display: none;
	}
}

.product-details-wrapper
	.single-tab
	.review-items
	.admin-items
	.content
	.head-content
	h5
	span {
	font-size: 14px;
	margin-left: 30px;
}

.product-details-wrapper
	.single-tab
	.review-items
	.admin-items
	.content
	.star
	i {
	font-size: 16px;
	color: var(--theme-color);
}

.product-details-wrapper .single-tab .review-title .rate-now {
	margin-top: 15px;
	gap: 15px;
}

.product-details-wrapper .single-tab .review-title .rate-now p {
	font-size: 16px;
	text-transform: capitalize;
}

.product-details-wrapper .single-tab .review-title .rate-now i {
	font-size: 16px;
	color: var(--theme-color);
}

.product-details-wrapper .single-tab .review-form {
	margin-top: 40px;
}

.product-details-wrapper .single-tab .review-form .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 18px 35px;
	color: var(--text);
	background-color: whitesmoke;
	font-size: 16px;
	text-transform: capitalize;
}

@media (max-width: 575px) {
	.product-details-wrapper .single-tab .review-form .form-clt input {
		padding: 15px 20px;
	}
}

.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
	padding: 18px 35px 170px;
	width: 100%;
	outline: none;
	color: var(--text);
	background-color: whitesmoke;
	font-size: 16px;
	border: none;
	text-transform: capitalize;
}

@media (max-width: 575px) {
	.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
		padding: 15px 20px;
	}
}

.product-details-wrapper .theme-btn {
	padding: 22px 50px;
}

.product-details-wrapper .theme-btn span {
	margin-right: 0;
}

@media (max-width: 1199px) {
	.shop-section .section-title-area .theme-btn {
		display: none;
	}
}

.cart-section .theme-btn span,
.cart-total-area .theme-btn span {
	margin-right: 0;
}

.common-table {
	min-width: -moz-max-content;
	min-width: -webkit-max-content;
	min-width: max-content;
	width: 100%;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.common-table .theme-btn span {
	margin-right: 0;
}

.common-table .cart-item-thumb {
	width: 86px;
}

@media (max-width: 1399px) {
	.common-table .cart-item-thumb {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.common-table .cart-item-thumb .head {
	color: #1b1f2a;
	font-size: 20px;
	text-transform: capitalize;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
}

.common-table .price-usd {
	font-size: 16px;
	font-weight: 500;
	color: #666c78;
}

.common-table tr {
	border-bottom: 1px solid #e4e4e5;
}

.common-table thead,
.common-table tbody {
	width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.common-table thead tr {
	color: #1b1f2a;
	border-bottom: unset;
	border-radius: 16px 16px 0 0;
	border-bottom: 1px solid #e4e4e5;
}

.common-table thead tr th {
	background: unset;
	color: unset;
	border: unset;
	font-size: 16px;
	padding-bottom: 16px;
}

.common-table tbody tr td {
	background: transparent;
	color: unset;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: unset;
}

.quantity button i {
	font-size: 16px;
}

.quantity .quantityValue {
	width: 40px;
	text-align: center;
	padding: 0;
	color: #000;
	border: unset;
}

@media (max-width: 767px) {
	.cart-list-area .table-responsive {
		overflow-x: scroll;
	}
}

@media (max-width: 991px) {
	.cart-list-area .table-responsive .table {
		width: 900px;
	}
}

.cart-list-area .coupon-items input {
	background: #f5f6fa;
	border: none;
	padding: 18px 30px;
	color: var(--text);
	line-height: 1;
}

.cart-list-area .theme-btn {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 18px 30px;
	line-height: 1;
}

.cart-total-area {
	margin-top: -10px;
}

.cart-total-area h3 {
	font-size: 40px;
	margin-bottom: 5px;
}

.cart-total-area ul {
	margin-bottom: 50px;
}

.cart-total-area ul li {
	font-size: 20px;
	font-weight: 600;
	color: var(--header);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 220px;
	border-bottom: 1px solid #e4e4e5;
	padding-bottom: 25px;
	padding-top: 25px;
}

.cart-total-area ul li .subtotal {
	color: #666c78;
	font-weight: 400;
	margin-left: -30px;
}

.cart-total-area ul li .price {
	font-weight: 700;
	font-size: 22px;
	-ms-flex-preferred-size: 30%;
	flex-basis: 30%;
}

.cart-total-area .theme-btn {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 22px 30px;
	line-height: 1;
}

.checkout-radio {
	-webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	padding: 24px;
}

.checkout-radio .primary-text {
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 16px;
	color: var(--header);
	text-transform: capitalize;
}

.checkout-radio h4 {
	color: var(--header);
	margin-bottom: 16px;
	font-weight: 600;
}

.checkout-radio
	.checkout-radio-wrapper
	.checkout-radio-single
	.form-check-input {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border: 1px solid var(--border);
	font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
	color: var(--header);
	text-transform: capitalize;
}

.checkout-radio
	.checkout-radio-wrapper
	.checkout-radio-single:not(:last-child) {
	margin-bottom: 12px;
}

@media (max-width: 500px) {
	.checkout-radio {
		padding: 10px;
	}
}

.checkout-single-wrapper .theme-btn span {
	margin-right: 0;
}

.checkout-single-wrapper .checkout-single h4 {
	color: var(--header);
	margin-bottom: 2rem;
	font-weight: 600;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	textarea,
.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.country-select,
.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	input {
	width: 100%;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid var(--border);
	padding: 12px 24px;
	color: var(--header);
	text-transform: capitalize;
	font-weight: 500;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	label {
	color: var(--header);
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: 500;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	::-webkit-input-placeholder {
	color: var(--header);
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	:-ms-input-placeholder {
	color: var(--header);
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	::-ms-input-placeholder {
	color: var(--header);
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	::placeholder {
	color: var(--header);
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.nice-select {
	background-color: var(--white);
	border: 1px solid var(--border);
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.nice-select
	span {
	font-size: 16px;
	color: var(--header);
	font-weight: 400;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.nice-select::after {
	border-right: 1px solid var(--header);
	border-bottom: 1px solid var(--header);
}

.checkout-single-wrapper
.checkout-single-wrapper
.checkout-single
.checkout-single-form
.input-single
.nice-select
.list {
width: 100%;
display: none;
position: absolute;
left: 0;
top: 100%;
z-index: 9999;
max-height: 320px;
overflow-y: auto;
visibility: hidden;
opacity: 0;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.nice-select.open
	.list {
display: block;
visibility: visible;
opacity: 1;
}

.checkout-single-wrapper
	.checkout-single
	.checkout-single-form
	.input-single
	.nice-select
	.option {
background-color: var(--bg);
border: none;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
	color: var(--header);
	margin-bottom: 12px;
	text-transform: capitalize;
}

/* Prevent hidden nice-select dropdowns from increasing page height */
.nice-select .list {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	width: 100% !important;
	max-height: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	z-index: 9999 !important;
}

.nice-select.open .list {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	max-height: 320px !important;
	overflow-y: auto !important;
}

.checkout-single-wrapper .boxshado-single {
	-webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	padding: 32px;
	margin-bottom: 24px;
}

@media (max-width: 575px) {
	.checkout-single-wrapper .boxshado-single {
		padding: 14px;
	}
}

.checkout-single-wrapper .checkout-single-bg {
	-webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	padding: 32px;
}

.checkout-single-wrapper
	.checkout-single-bg
	.checkout-single-form
	.input-single
	textarea,
.checkout-single-wrapper
	.checkout-single-bg
	.checkout-single-form
	.input-single
	.country-select,
.checkout-single-wrapper
	.checkout-single-bg
	.checkout-single-form
	.input-single
	input {
	border: 1px solid var(--border);
	background: transparent;
	text-transform: capitalize;
}

@media (max-width: 575px) {
	.checkout-single-wrapper .checkout-single-bg {
		padding: 14px;
	}
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save input {
	width: 24px;
	height: 24px;
	border: 1px solid var(--border);
	background-color: var(--theme-color);
	outline: none;
	color: var(--header);
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.checkout-single-wrapper .theme-btn {
	padding: 22px 40px;
}

/* 
End woocomerce css
*/
.brand-text {
	max-width: 660px;
	text-align: center;
	margin: -5px auto;
	font-size: 18px;
	margin-bottom: 50px;
}

.news-left-items {
	position: relative;
	margin-top: 30px;
}

.news-left-items .news-img {
	position: relative;
}

.news-left-items .news-img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	-o-object-fit: cover;
	object-fit: cover;
}

.news-left-items .news-img::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(21, 20, 21, 0)),
		color-stop(59.83%, rgba(21, 20, 21, 0.85))
	);
	background: linear-gradient(
		180deg,
		rgba(21, 20, 21, 0) 0%,
		rgba(21, 20, 21, 0.85) 59.83%
	);
	border-radius: 10px;
}

.news-left-items .news-content {
	position: absolute;
	bottom: 50px;
	left: 50px;
}

@media (max-width: 1199px) {
	.news-left-items .news-content {
		left: 30px;
		right: 30px;
		bottom: 30px;
	}
}

.news-left-items .news-content h3 {
	font-size: 32px;
	font-weight: 600;
}

@media (max-width: 1199px) {
	.news-left-items .news-content h3 {
		font-size: 25px;
	}
}

@media (max-width: 991px) {
	.news-left-items .news-content h3 {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.news-left-items .news-content h3 {
		font-size: 25px;
	}
}

@media (max-width: 575px) {
	.news-left-items .news-content h3 {
		font-size: 22px;
	}
}

.news-left-items .news-content h3 a {
	color: var(--white);
}

.news-left-items .news-content h3 a:hover {
	color: var(--theme-color);
}

.news-left-items .news-content .post-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.news-left-items .news-content .post-date li {
	color: #f7921e;
	font-size: 16px;
	font-weight: 600;
}

.news-left-items .news-content .post-date li i {
	margin-right: 5px;
}

.news-left-items .news-content .post-date li a {
	color: #f7921e;
}

.news-right-items {
	margin-top: 30px;
}

.news-right-items .news-right-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	margin-bottom: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 1199px) {
	.news-right-items .news-right-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
	}
}

.news-right-items .news-right-box .news-img {
	max-width: 166px;
}

@media (max-width: 470px) {
	.news-right-items .news-right-box .news-img {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: initial;
	}
}

.news-right-items .news-right-box .news-img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.news-right-items .news-right-box .news-content {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
}

@media (max-width: 1199px) {
	.news-right-items .news-right-box .news-content {
		-ms-flex-preferred-size: initial;
		flex-basis: initial;
	}
}

@media (max-width: 991px) {
	.news-right-items .news-right-box .news-content {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}
}

@media (max-width: 470px) {
	.news-right-items .news-right-box .news-content {
		-ms-flex-preferred-size: 145%;
		flex-basis: 145%;
	}
}

.news-right-items .news-right-box .news-content .post-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}

.news-right-items .news-right-box .news-content .post-date li {
	font-size: 16px;
	font-weight: 600;
}

.news-right-items .news-right-box .news-content .post-date li i {
	margin-right: 5px;
	color: #f7921e;
}

.news-right-items .news-right-box .news-content .post-date li a {
	color: var(--theme-color);
}

.news-right-items .news-right-box .news-content h3 {
	font-size: 20px;
}

.news-right-items .news-right-box .news-content h3 a:hover {
	color: var(--theme-color);
}

.news-right-items .news-right-box .news-content .link-btn {
	color: var(--theme-color);
	font-size: 16px;
	font-weight: 800;
	margin-top: 5px;
	display: inline-block;
}

.news-right-items .news-right-box .news-content .link-btn i {
	margin-left: 10px;
}

.news-right-items .news-right-box .news-content .link-btn:hover {
	color: var(--theme-color-2);
}

.news-box-items {
	margin-top: 30px;
}

.news-box-items .news-img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.news-box-items .news-content {
	margin-top: 20px;
}

.news-box-items .news-content .post-date {
	margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.news-box-items .news-content .post-date li {
	font-size: 16px;
	font-weight: 600;
}

.news-box-items .news-content .post-date li i {
	margin-right: 5px;
	color: #f7921e;
}

.news-box-items .news-content .post-date li a {
	color: var(--theme-color);
}

.news-box-items .news-content h3 {
	margin-bottom: 15px;
}

.news-box-items .news-content h3 a:hover {
	color: var(--theme-color);
}

.news-card-items {
	border-radius: 10px;
	border: 1px solid rgba(21, 20, 21, 0.12);
	background: var(--white);
	margin-top: 30px;
}

.news-card-items .news-image {
	position: relative;
	padding: 15px;
	padding-bottom: 0;
}

.news-card-items .news-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.news-card-items .news-image .post {
	border-radius: 22.5px;
	background: var(--white);
	padding: 10px 22px;
	line-height: 1;
	-webkit-box-shadow: -3px 2px 12.7px 7px rgba(6, 27, 48, 0.04);
	box-shadow: -3px 2px 12.7px 7px rgba(6, 27, 48, 0.04);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	position: absolute;
	left: 30px;
	bottom: -15px;
}

.news-card-items .news-image .post li:not(:last-child) {
	border-right: 1px solid rgba(21, 20, 21, 0.19);
	padding-right: 10px;
}

.news-card-items .news-image .post li i {
	margin-right: 5px;
	color: var(--theme-color);
}

.news-card-items .news-image .post li.style-2 {
	color: var(--theme-color);
}

.news-card-items .news-content {
	padding: 25px;
	padding-top: 35px;
}

.news-card-items .news-content h3 {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
}

.news-card-items .news-content h3 a:hover {
	color: var(--theme-color);
}

.news-card-items .news-content .theme-btn {
	font-size: 16px;
	border: 1px solid var(--theme-color);
	background-color: transparent;
	padding: 9px 10px 9px 25px;
	margin-top: 30px;
}

.news-card-items .news-content .theme-btn span {
	color: var(--header);
	margin-right: 15px;
}

.news-card-items .news-content .theme-btn i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--theme-color);
	color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.news-card-items .news-content .theme-btn::before {
	background-color: var(--theme-color);
}

.news-card-items .news-content .theme-btn::after {
	background-color: var(--theme-color);
}

.news-card-items .news-content .theme-btn:hover span {
	color: var(--white);
}

.news-card-items .news-content .theme-btn:hover i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	background-color: var(--white);
	color: var(--header);
}

.news-section.style-padding {
	padding-bottom: 185px;
}

@media (max-width: 1199px) {
	.news-section.style-padding {
		padding-bottom: 165px;
	}
}

@media (max-width: 991px) {
	.news-section.style-padding {
		padding-bottom: 145px;
	}
}

.news-box-items-4 {
	margin-top: 55px;
}

.news-box-items-4 .news-img {
	position: relative;
}

.news-box-items-4 .news-img img {
	width: 100%;
	height: 100%;
	border-radius: 28px;
}

.news-box-items-4 .news-img .post-date {
	position: absolute;
	top: -25px;
	left: 25px;
}

.news-box-items-4 .news-img .post-date li {
	text-align: center;
}

.news-box-items-4 .news-img .post-date li:first-child {
	width: 85px;
	height: 58px;
	border-radius: 10px 10px 0px 0px;
	background: #fb5b32;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	line-height: 58px;
	font-family: "Prompt", sans-serif;
	color: var(--white);
}

.news-box-items-4 .news-img .post-date li:last-child {
	width: 85px;
	height: 29px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--white);
	border-radius: 0 0 10px 10px;
	background: #4d40ca;
}

.news-box-items-4 .news-content {
	margin-top: 20px;
}

.news-box-items-4 .news-content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}

.news-box-items-4 .news-content h3 {
	border-bottom: 1px dashed rgba(21, 20, 21, 0.21);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.news-box-items-4 .news-content h3 a:hover {
	color: var(--theme-color);
}

.news-box-items-4 .news-content p {
	margin-bottom: 20px;
}

.news-box-items-4 .news-content .link-btn {
	font-size: 16px;
	font-weight: 800;
	color: var(--theme-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.news-box-items-4 .news-content .link-btn i {
	font-size: 21px;
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
	font-weight: 600;
}

.blog-wrapper .theme-btn {
	padding: 7px 15px 7px 30px;
	text-transform: capitalize !important;
}

.blog-wrapper .single-blog-post {
	margin-bottom: 40px;
	position: relative;
}

.blog-wrapper .single-blog-post .video__button {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
	position: relative;
	background: transparent;
	border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
	border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
	font-size: 36px;
	line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
	margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.post-details .post-content h1 {
		font-size: 28px;
	}
	.blog-wrapper .single-blog-post.post-details .post-content h3 {
		font-size: 20px;
	}
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
	background-color: var(--theme-color);
	color: var(--white);
	font-size: 26px;
	line-height: 1.4;
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	padding: 60px;
	text-align: center;
	margin: 40px 0px;
	position: relative;
	z-index: 1;
	border-radius: 4px;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
	color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
	color: var(--text);
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.post-details blockquote,
	.blog-wrapper .single-blog-post.post-details .wp-block-quote {
		padding: 30px 15px;
		font-size: 18px;
		line-height: 1.5;
	}
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
	right: 30px;
	font-size: 110px;
	line-height: 1;
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	content: "\f10d";
	bottom: -20px;
	color: var(--white);
	z-index: -1;
	opacity: 0.1;
	font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
	z-index: 1;
	position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper
	.single-blog-post.category-video-post
	.post-featured-thumb::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	background-color: #282835;
	opacity: 0.3;
	z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
	position: relative;
	background-color: var(--theme-color);
	border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(../images/quotepost.html);
	background-repeat: no-repeat;
	background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
	overflow: hidden;
	padding: 50px;
}

@media (max-width: 585px) {
	.blog-wrapper .single-blog-post.quote-post .quote-content,
	.blog-wrapper .single-blog-post.format-quote .quote-content {
		text-align: center;
		font-size: 24px;
		padding: 30px;
	}
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
	font-size: 70px;
	line-height: 80px;
	float: left;
	overflow: hidden;
	margin-right: 30px;
}

@media (max-width: 585px) {
	.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
	.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
		float: none;
		margin-bottom: 10px;
		margin-right: 0;
		font-size: 50px;
		line-height: 60px;
	}
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
	overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
	margin-top: -2px;
	font-size: 36px;
	color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
	margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
	color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
	height: 462px;
	width: 100%;
	position: relative;
	margin-bottom: -2px;
	border-radius: 6px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 15px 30px;
	background-color: var(--theme-color);
	text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
	color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
	color: var(--white);
	text-transform: uppercase;
	font-size: 15px;
}

@media (max-width: 991px) {
	.blog-wrapper .single-blog-post .post-featured-thumb {
		height: 280px;
	}
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-featured-thumb {
		height: 230px;
	}
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.blog-wrapper
	.single-blog-post
	.post-featured-thumb
	.video-play-btn
	.play-video {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
	padding-top: 30px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media (max-width: 575px) {
	.blog-wrapper .single-blog-post .post-content {
		padding-top: 20px;
	}
}

.blog-wrapper .single-blog-post .post-content h2 {
	line-height: 1.4;
	font-size: 32px;
}

@media (max-width: 575px) {
	.blog-wrapper .single-blog-post .post-content h2 {
		font-size: 28px;
	}
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
	color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content p {
	font-size: 16px;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content {
		padding: 30px 10px;
	}
}

@media (max-width: 414px) {
	.blog-wrapper .single-blog-post .post-content h2 {
		font-size: 22px;
	}
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
	color: var(--white);
	display: inline-block;
	background-color: var(--theme-color);
	padding: 14px 18px 12px;
	line-height: 1;
	font-size: 16px;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	text-transform: capitalize;
	font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-cat a {
		font-size: 12px;
	}
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
	background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
	margin-bottom: 0;
	list-style-type: disc;
	margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
	line-height: 1.5;
	margin-top: 10px;
	list-style-type: disc;
	color: var(--text);
	position: relative;
	font-size: 18px;
	padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-family: "Font Awesome 5 Pro";
	content: "\f00c";
	color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content ol {
	margin-bottom: 0;
	list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
	margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
	line-height: 1.5;
	margin-top: 10px;
	list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
	margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
	margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
	color: var(--text);
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	display: inline-block;
	margin-right: 25px;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-meta span {
		font-size: 15px;
	}
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
	margin-right: 5px;
	color: var(--theme-color);
	font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
	overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #f2f2f2;
	margin-right: 15px;
	float: left;
	overflow: hidden;
	background-position: center;
	background-size: cover;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .author-info .author-img {
		margin-right: 5px;
	}
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
	color: var(--theme-color);
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .author-info h5 {
		font-size: 14px;
	}
}

.blog-wrapper .single-blog-post .post-content .post-link a {
	font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
	color: var(--theme-color);
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-link a {
		font-size: 14px;
	}
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
	margin-right: 5px;
}

@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-link a i {
		margin-right: 3px;
	}
}

@media (min-width: 991px) {
	.news-area .main-sidebar {
		margin-left: 20px;
	}
}

@media (max-width: 991px) {
	.news-area .main-sidebar {
		margin-top: 40px;
	}
}

.news-area .main-sidebar .single-sidebar-widget {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 30px;
	margin-bottom: 40px;
	border-radius: 10px;
	background: #efeefa;
}

.news-area .main-sidebar .single-sidebar-widget ul {
	padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul > li {
	margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
	color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
	padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
	margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
	margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
	margin-bottom: 25px;
	padding-left: 45px;
	position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	height: 4px;
	width: 18px;
	border-radius: 5px;
	position: absolute;
	background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
	left: 22px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	height: 4px;
	width: 4px;
	border-radius: 50%;
	position: absolute;
	background-color: var(--theme-color);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
	font-size: 24px;
	font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white);
	font-size: 14px;
	margin-right: 5px;
	margin-bottom: 5px;
	color: var(--header);
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.search_widget form {
	width: 100%;
	position: relative;
}

.search_widget form input {
	background-color: var(--white);
	font-size: 15px;
	padding: 20px;
	width: 100%;
	border: none;
	text-transform: capitalize;
	color: var(--header);
	border-radius: 4px;
}

.search_widget form button {
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	font-size: 18px;
	height: 100%;
	background-color: var(--theme-color);
	color: var(--white);
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 4px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.search_widget form button:hover {
	background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
	height: 95px;
	width: 95px;
	background-color: #f2f2f2;
	float: left;
	overflow: hidden;
	margin-right: 20px;
	border-radius: 4px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
	overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
	color: var(--theme-color);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
	margin-top: 10px;
	color: var(--theme-color);
	font-weight: 600;
	font-size: 15px;
	text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
	margin-right: 7px;
}

.widget_categories ul li {
	display: block;
}

.widget_categories ul li:last-child a {
	margin-bottom: 0;
}

.widget_categories ul li a {
	position: relative;
	background: var(--white);
	padding: 17px 20px;
	line-height: 1;
	font-size: 14px;
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border-radius: 4px;
}

.widget_categories ul li a:hover {
	color: var(--theme-color);
}

.widget_categories ul li a i {
	margin-right: 10px;
}

.widget_categories ul li a span {
	position: absolute;
	width: 60px;
	line-height: 55px;
	height: 100%;
	content: "";
	background-color: var(--theme-color);
	right: 0;
	top: 0;
	text-align: center;
	color: var(--white);
	border-radius: 4px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.tagcloud a {
	display: inline-block;
	padding: 12px 20px;
	line-height: 1;
	font-weight: 600;
	border: 1px solid #f6f3ee;
	background-color: var(--white);
	margin-right: 10px;
	text-transform: capitalize;
	margin-bottom: 10px;
	border-radius: 4px;
}

.tagcloud a:last-child {
	margin-right: 0;
}

.tagcloud a:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.widget_categories ul li {
	display: block;
	margin-bottom: 10px;
}

p.sticky-label {
	position: absolute;
	right: 0;
	background: var(--theme-color);
	color: var(--white);
	padding: 10px 40px;
	z-index: -1;
	top: 0;
	font-weight: 700;
}

.page-nav-wrap ul li {
	display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background: #f6f6f6;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
	background-color: var(--theme-color);
	color: var(--white);
}

@media (max-width: 767px) {
	.page-nav-wrap ul li .page-numbers {
		margin-top: 10px;
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}
}

.page-nav-wrap ul li .page-numbers i {
	margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.social-share a {
	margin-left: 10px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.social-share a:hover {
	color: var(--theme-color);
}

.tag-share-wrap {
	padding-bottom: 50px;
}

.tag-share-wrap h4 {
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.tag-share-wrap h4 {
		margin-bottom: 10px;
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.tag-share-wrap .tagcloud {
		margin-bottom: 20px;
	}
}

.comments-section-wrap {
	overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
	font-size: 26px;
}

@media (max-width: 767px) {
	.comments-heading h3,
	.related-post-wrap h3,
	.comment-form-wrap h3 {
		font-size: 20px;
	}
}

.comments-item-list .single-comment-item {
	margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
	margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
	font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	float: left;
	overflow: hidden;
	margin-right: 30px;
}

@media (max-width: 991px) {
	.comments-item-list .single-comment-item .author-img {
		width: 80px;
		height: 80px;
		margin-right: 20px;
	}
}

@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-img {
		width: 70px;
		height: 70px;
		margin-right: 15px;
	}
}

@media (max-width: 585px) {
	.comments-item-list .single-comment-item .author-img {
		float: none;
		margin-bottom: 20px;
	}
}

.comments-item-list .single-comment-item .author-info-comment {
	overflow: auto;
	padding-bottom: 25px;
	border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
	position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
	padding: 10px 18px;
	font-size: 14px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--text);
	border: 1px solid #ebebeb;
	background: transparent;
	border-radius: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border-radius: 4px;
}

@media (max-width: 767px) {
	.comments-item-list
		.single-comment-item
		.author-info-comment
		.info
		.theme-btn {
		font-size: 12px;
	}
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn
	i {
	margin-right: 10px;
	margin-left: 0px !important;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width: initial;
	height: initial;
	line-height: initial;
	background-color: transparent;
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn.minimal-btn::before,
.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn.minimal-btn::after {
	background-color: initial;
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn:hover {
	background-color: var(--theme-color);
	color: var(--white);
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn:hover
	a {
	color: var(--white) !important;
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.info
	.theme-btn:hover
	i {
	-webkit-transform: translate(0);
	transform: translate(0);
	color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
	margin-bottom: 5px;
}

@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-info-comment .info h5 {
		font-size: 16px;
	}
}

.comments-item-list .single-comment-item .author-info-comment span {
	color: var(--theme-color);
	font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
	padding: 7px 18px;
	font-size: 14px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-info-comment .theme-btn {
		font-size: 12px;
	}
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
	margin-right: 5px;
}

.comments-item-list
	.single-comment-item
	.author-info-comment
	.theme-btn:hover
	a {
	color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
	margin-top: 15px;
}

.comment-form {
	background-color: var(--white);
	width: 100%;
	margin-top: 30px;
}

@media (max-width: 767px) {
	.comment-form {
		padding: 30px;
	}
}

@media (max-width: 585px) {
	.comment-form {
		padding: 30px 15px;
	}
}

.comment-form label {
	margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
	margin-bottom: 20px;
	outline: none;
	padding: 20px 30px;
	line-height: 1;
	font-size: 16px;
	width: 100%;
	border: none;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--header);
	background-color: var(--bg);
	-webkit-box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
	box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
	border-radius: 4px;
}

@media (max-width: 585px) {
	.comment-form input,
	.comment-form textarea {
		padding: 15px;
	}
}

.comment-form textarea {
	height: 200px;
	line-height: 1.3;
	border: none;
}

@media (max-width: 767px) {
	.comment-form textarea {
		height: 120px;
	}
}

.comment-form .theme-btn {
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 0;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.comment-form .theme-btn {
		padding: 20px 40px;
	}
}

@media (max-width: 585px) {
	.comment-form .theme-btn {
		padding: 15px 40px;
		font-size: 14px;
	}
}

.comment-form .theme-btn:hover i {
	-webkit-transform: translate(0);
	transform: translate(0);
}

.comment ul {
	list-style-type: disc;
}

.comment ul ol {
	margin-bottom: 0;
}

.comment ul li {
	line-height: 1.5;
	margin-top: 10px;
	list-style-type: disc;
}

.comment ol ul {
	margin-bottom: 0;
}

.comment ol ol {
	margin-bottom: 0;
}

.comment ol li {
	line-height: 1.5;
	margin-top: 10px;
}

.site_info_widget .single-contact-info {
	overflow: auto;
	margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
	display: block;
	color: var(--theme-color);
}

.site_info_widget .single-contact-info .icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--white);
	background-color: var(--theme-color);
	float: left;
	text-align: center;
	overflow: hidden;
	font-size: 16px;
	margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
	background-color: var(--theme-color);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
	background-color: var(--theme-color);
}

.site_info_widget .social-link {
	margin-top: 35px;
}

.site_info_widget .social-link a {
	margin-right: 8px !important;
}

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
	border-radius: 4px;
}

@media (max-width: 767px) {
	.alignleft {
		float: initial;
	}
}

.contact-wrapper {
	position: relative;
	z-index: 9;
}

.contact-wrapper .contact-content {
	background-color: var(--bg);
	border-radius: 10px;
	padding: 60px;
}

@media (max-width: 991px) {
	.contact-wrapper .contact-content {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.contact-wrapper .contact-content {
		padding: 40px;
		text-align: center;
	}
}

@media (max-width: 575px) {
	.contact-wrapper .contact-content {
		padding: 30px;
	}
}

.contact-wrapper .contact-content h3 {
	font-size: 32px;
	margin-bottom: 10px;
}

.contact-wrapper .contact-content .contact-form-items {
	margin-top: 30px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt {
	position: relative;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
	width: 100%;
	outline: none;
	border-radius: 4px;
	border: 1px solid rgba(35, 28, 37, 0.1);
	background: var(--white);
	color: var(--text);
	padding: 16px 20px;
	font-weight: 500;
	text-transform: capitalize;
}

@media (max-width: 767px) {
	.contact-wrapper .contact-content .contact-form-items .form-clt input,
	.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
		padding: 14px 20px;
	}
}

@media (max-width: 575px) {
	.contact-wrapper .contact-content .contact-form-items .form-clt input,
	.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
		padding: 12px 18px;
	}
}

.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	input::-webkit-input-placeholder,
.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	textarea::-webkit-input-placeholder {
	color: var(--text);
}

.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	input:-ms-input-placeholder,
.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	textarea:-ms-input-placeholder {
	color: var(--text);
}

.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	input::-ms-input-placeholder,
.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	textarea::-ms-input-placeholder {
	color: var(--text);
}

.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	input::placeholder,
.contact-wrapper
	.contact-content
	.contact-form-items
	.form-clt
	textarea::placeholder {
	color: var(--text);
}

.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
	padding-bottom: 140px;
	resize: none;
}

.contact-wrapper .contact-info-content {
	margin-left: 50px;
}

@media (max-width: 1199px) {
	.contact-wrapper .contact-info-content {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.contact-wrapper .contact-info-content {
		text-align: center;
	}
}

.contact-wrapper .contact-info-content .contact-info {
	margin-top: 50px;
	margin-top: 30px;
}

.contact-wrapper .contact-info-content .contact-info .contact-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

@media (max-width: 767px) {
	.contact-wrapper .contact-info-content .contact-info .contact-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

.contact-wrapper
	.contact-info-content
	.contact-info
	.contact-items:not(:last-child) {
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.contact-wrapper .contact-info-content .contact-info .contact-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.contact-wrapper .contact-info-content .contact-info .contact-items .icon {
	width: 68px;
	height: 68px;
	line-height: 68px;
	text-align: center;
	border-radius: 4px;
	background-color: var(--bg);
}

.contact-wrapper .contact-info-content .contact-info .contact-items .icon i {
	font-size: 16px;
}

@media (max-width: 767px) {
	.contact-wrapper .contact-info-content .contact-info .contact-items .content {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}

.contact-wrapper
	.contact-info-content
	.contact-info
	.contact-items
	.content
	span {
	font-size: 15px;
	color: var(--theme-color-2);
	font-weight: 500;
}

.contact-section {
	position: relative;
}

.contact-section .shape-1 {
	position: absolute;
	left: 5%;
	top: 15%;
}

.contact-section .shape-2 {
	position: absolute;
	right: 6%;
	bottom: 20%;
}

.map-section .google-map iframe {
	width: 100%;
	height: 810px;
}

@media (max-width: 991px) {
	.map-section .google-map iframe {
		height: 600;
	}
}

@media (max-width: 767px) {
	.map-section .google-map iframe {
		height: 500px;
	}
}

@media (max-width: 575px) {
	.map-section .google-map iframe {
		height: 400px;
	}
}

.footer-wrapper {
	padding: 75px 0 110px;
}

@media (max-width: 991px) {
	.footer-wrapper {
		padding: 50px 0 80px;
	}
}

.footer-wrapper .footer-content .contact-info-items {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

@media (max-width: 767px) {
	.footer-wrapper .footer-content .contact-info-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.footer-wrapper .footer-content .contact-info-items .contact-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.footer-wrapper .footer-content .contact-info-items .contact-items .icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	background-color: var(--theme-color-2);
	text-align: center;
}

.footer-wrapper
	.footer-content
	.contact-info-items
	.contact-items
	.content
	span {
	color: #6f7373;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 2px;
}

.footer-wrapper .footer-content .contact-info-items .contact-items .content h6 {
	font-size: 16px;
	font-weight: 800;
	font-family: "Nunito", sans-serif;
}

.footer-wrapper .footer-content .app-text {
	font-size: 15px;
	font-weight: 500;
	margin-top: 40px;
}

.footer-wrapper .footer-content .apps-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.footer-wrapper .footer-content .apps-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.footer-wrapper .footer-content .apps-items img {
	border-radius: 5px;
}

.footer-wrapper .footer-content .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.footer-wrapper .footer-content .social-icon a {
	font-size: 20px;
}

.footer-wrapper .footer-content .social-icon a:hover {
	color: var(--theme-color-2);
}

.footer-wrapper .footer-widget-items {
	margin-top: 30px;
}

.footer-wrapper .footer-widget-items .widget-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-wrapper .footer-widget-items .widget-title h3 {
	font-size: 20px;
	font-weight: 600;
}

.footer-wrapper .footer-widget-items .list-items li {
	font-size: 16px;
	font-weight: 600;
}

.footer-wrapper .footer-widget-items .list-items li:not(:last-child) {
	margin-bottom: 20px;
}

.footer-wrapper .footer-widget-items .list-items li a {
	color: #5e5960;
}

.footer-wrapper .footer-widget-items .list-items li a:hover {
	color: var(--theme-color);
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item:not(:last-child) {
	margin-bottom: 10px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb {
	position: relative;
	width: 75px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb
	img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb
	.icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb
	.icon::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(77, 64, 202, 0.8);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	opacity: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb
	.icon
	i {
	color: var(--white);
	font-size: 16px;
	z-index: 99;
	position: relative;
	margin-top: 35px;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb:hover
	.icon {
	opacity: 1;
}

.footer-wrapper
	.footer-widget-items
	.footer-gallery
	.gallery-wrap
	.gallery-item
	.thumb:hover
	.icon::after {
	opacity: 1;
}

.footer-newsletter-items {
	padding-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 1199px) {
	.footer-newsletter-items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 991px) {
	.footer-newsletter-items {
		padding-top: 73px;
	}
}

.footer-newsletter-items h2 {
	max-width: 510px;
}

.footer-newsletter-items .footer-input {
	position: relative;
	width: 100%;
	max-width: 640px;
}

.footer-newsletter-items .footer-input input {
	border-radius: 57px;
	border: 1px solid rgba(35, 28, 37, 0.1);
	background: var(--white);
	outline: none;
	width: 100%;
	padding: 26px 30px;
	line-height: 1;
	color: var(--text);
}

@media (max-width: 575px) {
	.footer-newsletter-items .footer-input input {
		padding: 18px 30px;
	}
}

.footer-newsletter-items .footer-input .newsletter-btn {
	padding: 20px 30px;
	display: inline-block;
	color: var(--white);
	background-color: var(--theme-color);
	line-height: 1;
	border-radius: 40px;
	position: absolute;
	top: 9px;
	right: 9px;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
	.footer-newsletter-items .footer-input .newsletter-btn {
		padding: 15px 30px;
		top: 7px;
		right: 9px;
	}
}

@media (max-width: 470px) {
	.footer-newsletter-items .footer-input .newsletter-btn {
		padding: 15px 20px;
	}
}

.footer-newsletter-items .footer-input .newsletter-btn i {
	margin-left: 10px;
}

@media (max-width: 470px) {
	.footer-newsletter-items .footer-input .newsletter-btn i {
		margin-left: 5px;
	}
}

.footer-newsletter-items .footer-input .newsletter-btn:hover {
	background-color: var(--header);
}

.footer-bottom-1 {
	border-top: 1px solid rgba(21, 20, 21, 0.15);
	padding: 25px 0;
}

.footer-bottom-1 .footer-bottom-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 575px) {
	.footer-bottom-1 .footer-bottom-wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px;
	}
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

@media (max-width: 575px) {
	.footer-bottom-1 .footer-bottom-wrapper .footer-menu {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li {
	font-size: 16px;
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li a {
	color: var(--text);
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(var(--theme-color)),
		to(var(--theme-color))
	);
	background-image: linear-gradient(var(--theme-color), var(--theme-color));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline-block;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: 400;
}

.footer-bottom-1 .footer-bottom-wrapper .footer-menu li a:hover {
	background-size: 100% 2px;
	color: var(--theme-color);
}

.footer-widget-wrapper {
	padding: 70px 0 100px;
}

@media (max-width: 991px) {
	.footer-widget-wrapper {
		padding: 50px 0 50px;
	}
}

.footer-widget-wrapper .single-footer-widget {
	margin-top: 30px;
	position: relative;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
	margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h4 {
	color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
	color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info {
	margin-top: 30px;
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item
	.icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50px;
	background-color: var(--theme-color-2);
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item
	.icon
	svg {
	font-size: 25px;
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item
	.content
	span {
	font-size: 14px;
	font-weight: 500;
	color: #6f7373;
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item
	.content
	h6 {
	font-weight: 800;
	font-family: "Nunito", sans-serif;
}

.footer-widget-wrapper
	.single-footer-widget
	.footer-content
	.contact-info
	.contact-item
	.content
	h6
	a {
	color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-items li {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	font-weight: 600;
	font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
	margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover {
	margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
	color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content p {
	color: rgba(255, 255, 255, 0.75);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content .search-widget {
	margin-top: 30px;
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	.search-widget
	input {
	width: 100%;
	border: none;
	border-radius: 57px;
	border: 1px solid rgba(35, 28, 37, 0.1);
	background-color: var(--white);
	position: relative;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 30px;
	color: var(--text);
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	.search-widget
	input::-webkit-input-placeholder {
	color: var(--text);
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	.search-widget
	input:-ms-input-placeholder {
	color: var(--text);
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	.search-widget
	input::-ms-input-placeholder {
	color: var(--text);
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	.search-widget
	input::placeholder {
	color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .newspaper-content button {
	margin-top: 20px;
	width: 100%;
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	button.theme-btn {
	width: 100%;
	padding: 19px 130px;
}

.footer-widget-wrapper
	.single-footer-widget
	.newspaper-content
	button.theme-btn
	span {
	margin-right: 0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	position: relative;
	z-index: 9;
}

.footer-bottom .footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 25px 0;
}

@media (max-width: 991px) {
	.footer-bottom .footer-wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.footer-bottom .footer-wrapper .footer-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 90px;
}

@media (max-width: 767px) {
	.footer-bottom .footer-wrapper .footer-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.footer-bottom .footer-wrapper .footer-item p {
	color: rgba(255, 255, 255, 0.56);
}

.footer-bottom .footer-wrapper .footer-item .bottom-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li {
	font-size: 15px;
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li a {
	color: rgba(255, 255, 255, 0.56);
}

.footer-bottom .footer-wrapper .footer-item .bottom-list li a:hover {
	color: var(--theme-color);
}

.footer-bottom .footer-wrapper .social-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.footer-bottom .footer-wrapper .social-icon a {
	display: inline-block;
	color: var(--white);
}

.footer-bottom .footer-wrapper .social-icon a:hover {
	color: var(--theme-color);
}

.footer-name {
	max-width: 1637px;
	margin: -70px auto -80px;
	text-align: center;
}

@media (max-width: 1600px) {
	.footer-name {
		margin: -15px auto -45px;
	}
}

@media (max-width: 991px) {
	.footer-name {
		margin: -20px auto -25px;
	}
}

@media (max-width: 767px) {
	.footer-name {
		margin: -20px auto -30px;
	}
}

@media (max-width: 575px) {
	.footer-name {
		margin: -20px auto -20px;
	}
}

.footer-name h2 {
	font-size: 450px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
}

@media (max-width: 1600px) {
	.footer-name h2 {
		font-size: 400px;
	}
}

@media (max-width: 1399px) {
	.footer-name h2 {
		font-size: 350px;
	}
}

@media (max-width: 1199px) {
	.footer-name h2 {
		font-size: 250px;
	}
}

@media (max-width: 991px) {
	.footer-name h2 {
		font-size: 210px;
	}
}

@media (max-width: 767px) {
	.footer-name h2 {
		font-size: 155px;
	}
}

@media (max-width: 575px) {
	.footer-name h2 {
		font-size: 120px;
	}
	#mice-data h4 {
		margin-bottom: 20px !important;
	}
}

@media (max-width: 470px) {
	.footer-name h2 {
		font-size: 90px;
	}
}
/*# sourceMappingURL=main.css.map */

/* whatapp */
.quickcontact {
	width: 40px;
	position: fixed;
	top: 77%;
	right: 3px;
	z-index: 9999;
}

.quickcontact-a {
	width: 156px;
	position: fixed;
	top: 60%;
	right: -55px;
	z-index: 9;
	transform: rotate(90deg);
}

.quickcontact-a a {
	padding: 10px 20px;
	background: #3b71fe;
	color: #fff;
	font-size: 16px;
	animation: blinka 2s ease-in-out infinite;
	border-radius: 0 0px 11px 11px;
}

/* mice */

#mice-sec {
	padding: 50px 0px;
}
#mice-sec h3 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 25px;
}
#mice-sec .row {
	row-gap: 40px;
}
#mice-sec .subtitle {
	margin-bottom: 20px;
	display: inline-block;
	position: relative;
}
#mice-sec .subtitle {
	text-align: center;
	width: 100%;
}
#mice-sec .title-bar1 {
	width: 15px;
	height: 4px;
	background-color: #ffa996;
	display: inline-block;
	margin-right: 5px;
	margin-left: 12px;
	border-radius: 10px;
}
#mice-sec .title-bar2 {
	width: 34px;
	height: 4px;
	background-color: #117513;
	display: inline-block;
	border-radius: 10px;
}
#mice-sec .text-b {
	font-size: 16px;
	margin-bottom: 50px;
}
#mice-sec .mice-inr {
	margin: 0px 0px 0px 0px;
	padding: 15px 15px 15px 15px;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.29);
	text-align: center;
	height: 415px;
}
#mice-sec .mice-inr .imgs img {
	width: 90px;
}
#mice-sec .mice-inr h5 {
	font-size: 20px;
	margin: 10px 0px 2px;
}
#mice-sec .mice-inr .text {
	font-size: 15px;
	color: #000;
	text-align: justify;
}

#mice-data {
	padding: 0px 0px 30px;
}
#mice-data .row {
	row-gap: 25px;
}
#mice-data h4 {
	text-align: center;
	font-size: 35px;
	margin-bottom: 50px;
}
#mice-data .mice-data-iner {
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.29);
	margin: 0px 0px 0px 0px;
	padding: 15px 15px 15px 15px;
	text-align: center;
	height: 530px;
}
#mice-data .mice-data-iner h5 {
	font-size: 20px;
	margin: 10px 0px 2px;
}
#mice-data .mice-data-iner .text {
	font-size: 14px;
	color: #000;
	text-align: justify;
	line-height: 1.1;
}
#mice-data .mice-data-iner img {
	height: 150px;
	width: 150px;
	object-fit: contain;
}

/* mice end */

/* gallery start */
.tour-area .location-area.style-1 .portfolio-filter li {
	display: inline-flex;
	color: #ffffff;
	padding: 17px 38px;
	text-align: center;
	font-weight: 700;
	font-family: "Plus Jakarta Sans", sans-serif;
	background-color: #041126;
	position: relative;
	z-index: 1;
	transition: all 0.5s ease-out;
	font-size: 16px;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	overflow: hidden;
	line-height: 180%;
	flex-shrink: 0;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.tour-area .location-area.style-1 .portfolio-filter li {
		padding: 12px 20px;
	}
}
.tour-area .location-area.style-1 .portfolio-filter li:after {
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	top: 0;
	background-color: #3b71fe;
	content: "";
	transition: all 0.5s ease-out;
	z-index: -1;
	color: #ffffff;
}
.tour-area .location-area.style-1 .portfolio-filter li:before {
	content: "";
	pointer-events: none;
	opacity: 0.6;
	background: radial-gradient(
			circle at 20% 35%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 75% 44%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 31% 22%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 46% 52%,
			transparent 0,
			transparent 4px,
			#ffffff 5px,
			#ffffff 6px,
			transparent 6px
		);
	width: 100%;
	height: 300%;
	top: 0;
	left: 0;
	position: absolute;
	animation: bubbles 5s linear infinite both;
}
.tour-area .location-area.style-1 .portfolio-filter li.style-2 {
	background-color: #ffffff;
	color: #041126;
}
.tour-area .location-area.style-1 .portfolio-filter li.style-2:before {
	content: "";
	pointer-events: none;
	opacity: 0.6;
	background: radial-gradient(
			circle at 20% 35%,
			transparent 0,
			transparent 2px,
			#041126 3px,
			#041126 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 75% 44%,
			transparent 0,
			transparent 2px,
			#041126 3px,
			#041126 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 31% 22%,
			transparent 0,
			transparent 2px,
			#041126 3px,
			#041126 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 46% 52%,
			transparent 0,
			transparent 4px,
			#041126 5px,
			#041126 6px,
			transparent 6px
		);
	width: 100%;
	height: 300%;
	top: 0;
	left: 0;
	position: absolute;
	animation: bubbles 5s linear infinite both;
}
.tour-area .location-area.style-1 .portfolio-filter li:hover {
	color: #ffffff;
}
.tour-area .location-area.style-1 .portfolio-filter li:hover:after {
	height: 100%;
	transition: all 0.5s ease-out;
}
.tour-area .location-area.style-1 .portfolio-filter li:hover.style-2:before {
	background: radial-gradient(
			circle at 20% 35%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 75% 44%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 31% 22%,
			transparent 0,
			transparent 2px,
			#ffffff 3px,
			#ffffff 4px,
			transparent 4px
		),
		radial-gradient(
			circle at 46% 52%,
			transparent 0,
			transparent 4px,
			#ffffff 5px,
			#ffffff 6px,
			transparent 6px
		);
}

.tour-area .location-area.style-1 .portfolio-filter {
	margin-top: 17px;
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
@media (max-width: 992px) {
	.tour-area .location-area.style-1 .portfolio-filter {
		flex-wrap: wrap;
		justify-content: start;
		align-items: start;
	}
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.tour-area .location-area.style-1 .portfolio-filter {
		gap: 6px;
	}
}
.tour-area .location-area.style-1 .portfolio-filter li {
	cursor: pointer;
}
.tour-area .location-area.style-1 .portfolio-filter li.active {
	background-color: #3b71fe !important;
}
.tour-area .location-area.style-1 .portfolio-filter li:hover:after {
	height: 0 !important;
}
.tour-area .location-area.style-1 .basic-pagination {
	margin-top: 64px;
	margin-bottom: 0px;
}

@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}
@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}
@keyframes rotating {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}
@-webkit-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	}
}
@-moz-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	}
}
@-ms-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	}
}
@keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	}
}
@-webkit-keyframes animatelinebar {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	100% {
		-webkit-transform: translateX(25px);
		transform: translateX(25px);
	}
}
@keyframes animatelinebar {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	100% {
		-webkit-transform: translateX(25px);
		transform: translateX(25px);
	}
}
@-webkit-keyframes slideUpIn {
	0% {
		-webkit-transform: translateY(40px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
	0% {
		-webkit-transform: translateY(40px);
	}
}
@keyframes slideUpIn {
	0% {
		transform: translateY(40px);
	}
	100% {
		transform: translateY(0);
	}
	0% {
		transform: translateY(40px);
	}
}
@-webkit-keyframes MoveLeftRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-10px);
	}
}
@keyframes MoveLeftRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-10px);
	}
}
@-webkit-keyframes MoveUpDown {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-30px);
	}
}
@keyframes MoveUpDown {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-30px);
	}
}
@-webkit-keyframes Animated3 {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-20px);
	}
}
@keyframes Animated3 {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-20px);
	}
}
@-webkit-keyframes Animated4 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-10px);
	}
}
@keyframes Animated4 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-10px);
	}
}
@keyframes UpToDown {
	49% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes Scroll {
	0% {
		transform: translateX(-50vw);
		transform: translateX(-50vw);
	}
	100% {
		transform: translateX(50vw);
		transform: translateX(50vw);
	}
}
@keyframes fadeEffect {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes bubbles {
	from {
		transform: translate();
	}
	to {
		transform: translate(0, -66.666%);
	}
}
.animated-text,
.location-card .content-wrapper .content-inner .content-title {
	text-decoration: none;
	background: linear-gradient(to right, #041126 50%, #041126 50%, #041126);
	background-size: 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: 0.5s ease-out;
	color: #ffffff;
}

.animated-text-blue,
.latest-comments li .comments-box .comments-text .avatar-name h5,
.widget_latest_post ul li .latest-post-desc .latest-post-title a,
.author-info .author-text h3,
.author-info .author-text a,
.blog-post-nav .post-navigation .text h4,
.single-post-item .post-title,
.icon-card.style-2 .content .info a,
.latest-post-card .content-wrapper .post-title a:hover,
.location-image-card .content-inner .city,
.location-card.style-3 .content-wrapper .content-inner .title a,
.location-card.style-2 .content-wrapper .content-inner .content-title a,
.location-card .content-wrapper .content-inner .content-title a:hover,
.link-card .content-wrapper .title a {
	text-decoration: none;
	background: linear-gradient(to right, #041126 50%, #041126 50%, #3b71fe);
	background-size: 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: 0.5s ease-out;
	color: #041126;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes beat {
	to {
		transform: scale(1);
	}
}

.location-card {
	position: relative;
	margin-right: 9px;
	border-radius: 16px;
	overflow: hidden;
}
@media (max-width: 992px) {
	.location-card {
		margin-right: 0;
	}
}
.location-card .image-wrapper {
	position: relative;
}
.location-card .image-wrapper .image-inner {
	z-index: 2;
	overflow: hidden;
	transition: 1s;
}
.location-card .image-wrapper .image-inner:before {
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	top: 0;
	/* background-color: rgba(254, 113, 42, 0.6); */
	content: "";
	transition: all 0.5s ease-out;
}
.location-card .image-wrapper .image-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease-out;
}
.location-card .image-wrapper .favourite-icon {
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(-67%, 52%);
	z-index: 20;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.08));
}
.location-card .image-wrapper .favourite-icon.active i {
	color: #3b71fe;
}
.location-card .image-wrapper .favourite-icon i {
	color: #fe712a;
	font-size: 20px;
}
.location-card .content-wrapper {
	/* visibility: hidden; */
	position: absolute;
	bottom: 0;
	margin-bottom: 20px;
	left: 0;
	right: 0;
	margin-left: 17px;
	margin-right: 17px;
	border-radius: 16px;
	background-color: #ffffff;
	z-index: 2;
	transition: all 0.5s ease-out;
}
.location-card .content-wrapper .content-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	/*justify-content: space-between;*/
	gap: 18px;
	padding: 16px 20px;
	opacity: 1;
	transition: all 0.5s ease-out;
}
.location-card .content-wrapper .content-inner.content-inner-a {
	padding: 5px 20px 5px;
}
.location-card .content-wrapper p {
	padding: 0px 15px 0px;
	font-size: 11px;
	margin: 0px;
	line-height: 20px;
}
@media (max-width: 1400px) {
	.location-card .content-wrapper .content-inner {
		gap: 0;
		justify-content: center;
	}
}
.location-card .content-wrapper .content-inner .content-title {
	line-height: 0px;
	/*width: 162px;*/
	margin: 0;
}
@media (max-width: 1400px) {
	.location-card .content-wrapper .content-inner .content-title {
		width: auto;
		margin: 0;
	}
}
.location-card .content-wrapper .content-inner .content-title a {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #041126;
	font-size: 20px;
	font-weight: 700;
	line-height: 140%;
}
.location-card
	.content-wrapper
	.content-inner
	.content-title.content-title-a
	a {
	font-size: 12px;
}
.location-card .content-wrapper .content-inner .content-title a:hover {
	background-position: -100%;
}
.location-card .content-wrapper .content-inner .icon {
	position: relative;
	overflow: hidden;
	transition: 1s;
	background-color: #3b71fe;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all 0.5s ease-out;
	flex-shrink: 0;
}
.location-card .content-wrapper .content-inner .icon:before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #041126;
	content: "";
	transition: all 0.5s ease-out;
	color: #ffffff;
}
.location-card .content-wrapper .content-inner .icon:hover:before {
	width: 100%;
	transition: all 0.5s ease-out;
}
.location-card .content-wrapper .content-inner .icon i {
	color: #ffffff;
	font-size: 28px;
	/* transform: translate(-28px, 14px); */
	transition: all 0.5s ease-out;
	position: relative;
	z-index: 10;
}
.location-card:hover .image-inner:before {
	height: 100%;
	transition: all 0.5s ease-out;
}
.location-card:hover .favourite-icon i {
	transform: rotateY(360deg);
	transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper {
	visibility: visible;
	margin-bottom: 17px;
	transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner {
	opacity: 1;
	transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner .icon i {
	transform: none;
	transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner .content-title {
	background-position: -100%;
}

.location-card.style-2 {
	border: 1px solid #e7e7e7;
	overflow: hidden;
	box-shadow: 0px 24px 64px 0px rgba(199, 206, 218, 0.25);
	transition: all 0.5s ease-out;
}
.location-card.style-2 .image-wrapper .image-inner {
	border-radius: 16px 16px 0 0;
}
.location-card.style-2 .image-wrapper .image-inner:before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(255, 255, 255, 0)),
		to(rgba(255, 255, 255, 0.8))
	);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 20;
}
.location-card.style-2 .image-wrapper .rating {
	left: 0 !important;
	right: inherit;
	margin-left: 18px;
}
.location-card.style-2 .content-wrapper {
	visibility: visible;
	margin-bottom: 0px;
	position: relative;
	margin-top: 34px;
	margin: 32px;
}
.location-card.style-2 .content-wrapper .content-inner {
	opacity: 1;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	padding: 0px;
	gap: 3px;
}
.location-card.style-2 .content-wrapper .content-inner .price {
	color: #3b71fe;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 140%;
	cursor: default;
}
.location-card.style-2 .content-wrapper .content-inner .content-title {
	width: auto;
	background-position: -100%;
}
.location-card.style-2 .content-wrapper .content-inner .content-title a {
	font-size: 28px;
	line-height: 130%;
	letter-spacing: -0.56px;
}
@media (max-width: 1400px) {
	.location-card.style-2 .content-wrapper .content-inner .content-title a {
		font-size: 22px;
	}
}
.location-card.style-2 .content-wrapper .content-inner .content-title a:hover {
	background-position: -100%;
}
.location-card.style-2 .content-wrapper .content-inner .time-zone {
	border-top: 1px solid #e7e7e7;
	padding-top: 24px;
	margin-top: 12px;
	width: 100%;
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	row-gap: 12px;
	column-gap: 24px;
}
.location-card.style-2
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
}
.location-card.style-2
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner
	i {
	color: #3b71fe;
	font-size: 18px;
}
.location-card.style-2
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner
	.title {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	margin: 0px;
	cursor: default;
}
.location-card.style-2:hover {
	margin-top: -10px;
	transition: all 0.5s ease-out;
}
.location-card.style-2:hover .image-wrapper .image-inner:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.location-card.style-3 {
	overflow: hidden;
}
.location-card.style-3 .image-wrapper .image-inner {
	border-radius: 16px;
}
.location-card.style-3 .image-wrapper .image-inner:before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(255, 255, 255, 0)),
		to(rgba(255, 255, 255, 0.8))
	);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 20;
}
.location-card.style-3 .image-wrapper .image-inner img {
	border-radius: 16px;
}
.location-card.style-3 .content-wrapper {
	visibility: visible;
	margin-bottom: 0px;
	position: relative;
	margin: 0;
	margin-top: 32px;
}
.location-card.style-3 .content-wrapper .content-inner {
	opacity: 1;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	padding: 0px;
	gap: 3px;
}
.location-card.style-3 .content-wrapper .content-inner .price {
	color: #3b71fe;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 140%;
}
.location-card.style-3 .content-wrapper .content-inner .title {
	width: auto;
	font-size: 24px;
}
.location-card.style-3 .content-wrapper .content-inner .title a {
	font-size: 24px;
	line-height: 130%;
	letter-spacing: -0.56px;
}
.location-card.style-3 .content-wrapper .content-inner .title a:hover {
	background-position: -100%;
}
.location-card.style-3 .content-wrapper .content-inner .time-zone {
	border-top: 1px solid #e7e7e7;
	padding-top: 24px;
	margin-top: 12px;
	width: 100%;
	display: flex;
	gap: 24px;
}
.location-card.style-3
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}
.location-card.style-3
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner
	i {
	color: #8f90a6;
	font-size: 18px;
}
.location-card.style-3
	.content-wrapper
	.content-inner
	.time-zone
	.time-zone-inner
	.desc {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	margin: 0px;
}
.location-card.style-3:hover .image-wrapper .image-inner:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.location-image-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	padding: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 8px;
	align-items: center;
	text-align: center;
	transition: all 0.5s ease-out;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-image-card {
		padding: 30px;
	}
}
@media (max-width: 1400px) {
	.location-image-card {
		padding: 20px;
	}
}
.location-image-card .img-wrapper {
	/*border-radius: 100%;*/
	/*overflow: hidden;*/
	position: relative;
	transition: all 0.5s ease-out;
}
.location-image-card .img-wrapper:before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(255, 255, 255, 0)),
		to(rgba(255, 255, 255, 0.8))
	);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 20;
}

.location-image-card .img-wrapper img {
	border-radius: 50%;
}

.location-image-card .content-inner .city {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #041126;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin-top: 26px;
	margin-bottom: 0px !important;
	cursor: default;
}
.location-image-card .content-inner .city:hover {
	background-position: -100%;
}
.location-image-card .content-inner .duration {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	cursor: default;
}
.location-image-card:hover {
	margin-top: -20px;
	transition: all 0.5s ease-out;
	box-shadow: 0px 24px 64px 0px rgba(199, 206, 218, 0.25);
}
.location-image-card:hover .img-wrapper {
	transform: rotateY(15deg);
	transition: all 0.5s ease-out;
}
.location-image-card:hover .img-wrapper:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.location-image-card.style-2 {
	border: 1px solid #e7e7e7;
}

.location-slider-area.style-1 {
	padding: 50px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.location-slider-area.style-1 {
		padding: 50px 0;
	}
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-slider-area.style-1 {
		padding: 80px 0;
	}
}
.location-slider-area.style-1 .slick-track .slick-slide {
	margin-top: 0;
}
.location-slider-area.style-1 .slick-track .slick-active {
	margin-top: 0px;
	transition: all 0.5s ease-out;
}
.location-slider-area.style-1 .slick-track .slick-active:nth-child(4n + 2),
.location-slider-area.style-1 .slick-track .slick-active:nth-child(4n + 4) {
	margin-top: 40px;
	transition: all 0.5s ease-out;
}
@media (max-width: 1200px) {
	.location-slider-area.style-1 .slick-track .slick-active:nth-child(4n + 2),
	.location-slider-area.style-1 .slick-track .slick-active:nth-child(4n + 4) {
		margin-top: 0px;
	}
}
.location-slider-area.style-1 .section-title {
	margin-top: 10px;
	margin-bottom: 48px;
}
@media (max-width: 1400px) {
	.location-slider-area.style-1 .section-title {
		margin-top: 0px;
	}
}
@media (max-width: 992px) {
	.location-slider-area.style-1 .section-title .bottom-shape {
		width: 345px;
	}
}
.location-slider-area.style-1 .location-card .image-wrapper {
	height: 370px;
}
.location-slider-area .slick-list {
	margin: 0 -12px;
}
.location-slider-area .slick-list .slick-slide {
	margin: 0 12px;
}
.location-slider-area .slick-dots {
	display: none !important;
}
.location-slider-area .slick-arrow {
	display: none !important;
}
.location-slider-area .location-slider-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.location-slider-area .location-slider-arrow .location-arrow-btn {
	width: 56px;
	height: 56px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.location-slider-area .location-slider-arrow .location-arrow-btn.prev-btn,
.location-slider-area .location-slider-arrow .location-arrow-btn.next-btn {
	overflow: hidden;
	transition: all 0.5s ease-out;
	position: relative;
}
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.prev-btn:before,
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.next-btn:before {
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #3b71fe;
	content: "";
	transition: all 0.5s ease-out;
	color: #ffffff;
}
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.prev-btn:hover:before,
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.next-btn:hover:before {
	width: 100%;
	transition: all 0.5s ease-out;
}
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.prev-btn:hover
	i,
.location-slider-area
	.location-slider-arrow
	.location-arrow-btn.next-btn:hover
	i {
	color: #ffffff;
	transition: all 0.5s ease-out;
}
.location-slider-area .location-slider-arrow .location-arrow-btn.prev-btn {
	background-color: #ffffff;
	border: 1px solid #e7e7e7;
}
.location-slider-area .location-slider-arrow .location-arrow-btn.prev-btn i {
	color: #041126;
	position: relative;
	z-index: 10;
	transition: all 0.5s ease-out;
}
.location-slider-area .location-slider-arrow .location-arrow-btn.next-btn {
	background-color: #e6efff;
}
.location-slider-area .location-slider-arrow .location-arrow-btn.next-btn i {
	color: #3b71fe;
	position: relative;
	z-index: 10;
	transition: all 0.5s ease-out;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-slider-area .location-slider-arrow {
		display: none !important;
	}
}

.location-slider-area.style-2 .location-card.style-2 {
	box-shadow: none;
}

.location-area {
	padding: 50px 0;
	overflow: hidden;
	position: relative;
}

.location-area .nav-link {
	color: #ffffff;
	padding: 17px 38px;
	text-align: center;
	font-weight: 700;
	font-family: "Plus Jakarta Sans", sans-serif;
	background-color: #041126;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.location-area {
		padding: 50px 0;
	}
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-area {
		padding: 80px 0;
	}
}
.location-area .section-title {
	margin-bottom: 47px;
}

.location-area.style-2 {
	padding: 30px 0;
	position: relative;
	background-color: #f9f8f7;
}
.location-area.style-2 .bg-bottom-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.location-area.style-2 {
		padding: 50px 0;
	}
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-area.style-2 {
		padding: 80px 0;
	}
}
.location-area.style-2 .sec-btn {
	margin-top: 56px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-area.style-2 .sec-btn {
		margin-top: 23px;
	}
}

.location-area.style-3 {
	padding: 0;
	padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.location-area.style-3 {
		padding-bottom: 100px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.location-area.style-3 {
		padding-bottom: 80px;
	}
}

.location-area.style-4 .location-card-wrapper {
	display: flex;
	flex-direction: column;
	gap: 27px;
}
.location-area.style-4 .location-card.style-1 {
	transition: all 0.5s ease-out;
}
.location-area.style-4 .location-card.style-1 .image-inner:before {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(
		left,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(255, 255, 255, 0)),
		to(rgba(255, 255, 255, 0.8))
	);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 100%
	);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 20;
}
.location-area.style-4 .location-card.style-1:hover {
	margin-top: -10px;
	transition: all 0.5s ease-out;
}
.location-area.style-4
	.location-card.style-1:hover
	.image-wrapper
	.image-inner:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.location-area.style-5 .location-card {
	border: none !important;
	box-shadow: none;
}
.location-area.style-5 .location-card .content-wrapper {
	margin: 0px;
	margin-top: 28px;
}
.location-area.style-5 .location-card .content-wrapper .title a {
	font-size: 24px;
}
.location-area.style-5 .location-card .content-wrapper .time-zone {
	gap: 20px;
}

.slider-area .single-slider .location-card {
	padding-bottom: 0px;
}

.destination-page .location-card.style-1:hover {
	margin-top: 0 !important;
}

/* gallery end */

#staticBackdrop{
	z-index: 10000;
}
