@charset "utf-8";
/* CSS Document */

:root {
	--green: #21836C;
	--white: #FFFFFF;
	--yellow: #F6BB31;
	--black: #000000;
	--grey: #757575;
}

body {
	font-family: 'MontserratAlternatesLight';
	font-size: 18px;
	line-height: 28px;
	background-color: var(--white);
	color: var(--black);
}

figure {
	margin: 0;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	color: var(--yellow);
}

ul li,
ol li {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	color: var(--yellow);
}

/* Common Style Start */
.main-title {
	font-family: 'LamaSansSemiBold';
	font-size: 70px;
	line-height: 80px;
	font-weight: normal;
}

.main-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.section-title {
	font-family: 'LamaSansSemiBold';
	font-size: 60px;
	line-height: 70px;
	font-weight: normal;
}

.section-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.block-title {
	font-family: 'LamaSansSemiBold';
	font-size: 50px;
	line-height: 60px;
	font-weight: normal;
}

.block-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.small-title {
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 40px;
	font-weight: normal;
}

.small-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.large-detail {
	font-family: 'MontserratAlternatesMedium';
	font-size: 22px;
	line-height: 32px;
	font-weight: normal;
}

.large-detail * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.common-detail {
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
}

.common-detail * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.detail * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}


.small-detail {
	font-size: 16px;
	line-height: 26px;
}

.small-detail * {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

.btn {
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 18px;
	line-height: 28px;
	border: none;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.btn-read-more {
	padding: 0;
	display: inline-flex;
	color: var(--green);
	transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
}

.btn-read-more span {
	margin: 0 0 0 5px;
}

.btn-read-more span,
.btn-read-more span figure,
.btn-gradient span figure {
	display: flex;
}

.btn-read-more .hover-icon {
	display: none;
}

.btn-read-more:hover {
	color: var(--yellow);
}

.btn-read-more:hover .default-icon {
	display: none;
}

.btn-read-more:hover .hover-icon {
	display: flex;
}

.btn-read-more span figure,
.btn-gradient span figure {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.btn-gradient {
	display: inline-flex;
}


.btn-gradient strong {
	display: block;
	font-weight: normal;
	color: var(--white);
	padding: 11px 25px;
	background-image: linear-gradient(90deg, #F6BB31 0%, #21836C 50%, #F6BB31 100%);
	background-size: 180% 100%;
	border-radius: 33px;
	-webkit-border-radius: 33px;
	-moz-border-radius: 33px;
	-ms-border-radius: 33px;
	-o-border-radius: 33px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.btn-gradient:hover strong {
	background-position: right;
}

.btn-gradient span {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--green);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.btn-gradient:hover span figure,
.btn-gradient:active span figure {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.common-yellow-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px 15px;
	background: var(--yellow);
	color: var(--white);
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.common-yellow-btn:hover{
	background: var(--green);
}
/* Common Style End */


/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header .container {
	max-width: 100%;
	width: auto;
	padding: 0;
}

.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	padding: 0 50px;
	margin: 20px 115px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: var(--white);
	/* overflow: hidden; */
	-moz-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.02) inset, 0px -6px 10px 0px rgba(0, 0, 0, 0.02) inset;
	-webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.02) inset, 0px -6px 10px 0px rgba(0, 0, 0, 0.02) inset;
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.02) inset, 0px -6px 10px 0px rgba(0, 0, 0, 0.02) inset;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.inner-header {
	padding: 10px 10px 10px 10px !important;
}

.header .navbar {
	padding: 0;
}

.header .navbar-brand {
	padding: 0;
	margin: 0;
}

.header .navbar-nav .nav-item {
	padding: 0 25px;
}

.header .navbar-nav .nav-item:first-child {
	padding-left: 0;
}

.header .navbar-nav .nav-item:last-child {
	padding-right: 0;
}

.header .navbar-nav .nav-item .nav-link {
	font-family: 'MontserratAlternatesMedium';
	font-weight: normal;
	color: var(--black);
	padding: 25px 0;
	position: relative;
	overflow: hidden;
}

.header .navbar-nav .nav-item .nav-link::before {
	content: "";
	background-color: var(--yellow);
	width: 1px;
	height: 0;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 100%;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.header .navbar-nav .nav-item .nav-link::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--yellow);
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin: 0 auto -12px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
	color: var(--yellow);
}

.header .navbar-nav .nav-item .nav-link:hover::before,
.header .navbar-nav .nav-item .nav-link.active::before {
	height: 12px;
	top: auto;
	bottom: 0;
}

.header .navbar-nav .nav-item .nav-link:hover::after,
.header .navbar-nav .nav-item .nav-link.active::after {
	margin: 0 auto 12px;
	bottom: 0;
	top: auto;
}

.header-right-block {
	display: flex;
	align-items: center;
}

.header-right-block>*:not(:last-child) {
	margin-right: 15px;
}

/* .language-block {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	border-radius: 50px;
	border: 1px solid rgba(33, 131, 108, 0.30);
	color: var(--black);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
} */



.language-block figure {
	margin-right: 5px;
}

.language-block .form-select {
	/*font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	color: var(--black);
	border: none;
	background-position: right center;
	box-shadow: none;
	display: flex;
	justify-content: center;
	align-items: center;
	*/
	padding: 10px 50px 10px 50px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.language-block {
	position: relative;
}

.globe-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.language-block .select2-container {
	padding: 10px 15px 10px 50px;
	border: 1px solid rgba(33, 131, 108, 0.30);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.language-block .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
	padding: 0;
}

.language-block .select2-container--default .select2-selection--single {
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
}

.language-block .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
}

.language-block .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-image: url("../images/down-arrow-black.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 13px;
	height: 13px;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--green) !important;
}

.select2-container--default .select2-results__option--selected {
	background-color: var(--green) !important;
	color: var(--white);
}

.language-block .select2-container.select2-container--open {
	border-radius: 30px 30px 0 0;
	-webkit-border-radius: 30px 30px 0 0;
	-moz-border-radius: 30px 30px 0 0;
	-ms-border-radius: 30px 30px 0 0;
	-o-border-radius: 30px 30px 0 0;
}

.language-block .select2-container.select2-container--open .select2-selection__arrow {
	transform: translate(0, -50%) rotate(180deg);
	-webkit-transform: translate(0, -50%) rotate(180deg);
	-moz-transform: translate(0, -50%) rotate(180deg);
	-ms-transform: translate(0, -50%) rotate(180deg);
	-o-transform: translate(0, -50%) rotate(180deg);
}

.select2-dropdown {
	overflow: hidden;
	border: 1px solid rgba(33, 131, 108, 0.30) !important;
	border-top: none !important;
	border-radius: 0 0 20px 20px !important;
	-webkit-border-radius: 0 0 20px 20px !important;
	-moz-border-radius: 0 0 20px 20px !important;
	-ms-border-radius: 0 0 20px 20px !important;
	-o-border-radius: 0 0 20px 20px !important;
}

.place-dropdown {
	top: 9px;
}

.where-place .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-image: url("../images/down-arrow-black.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 13px;
	height: 13px;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.where-place .select2-container.select2-container--open .select2-selection__arrow {
	transform: translate(0, -50%) rotate(180deg);
	-webkit-transform: translate(0, -50%) rotate(180deg);
	-moz-transform: translate(0, -50%) rotate(180deg);
	-ms-transform: translate(0, -50%) rotate(180deg);
	-o-transform: translate(0, -50%) rotate(180deg);
}

.where-place .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
}

/* .select2-container--open .place-dropdown.select2-dropdown {
    top: 100% !important;
    bottom: auto !important;
} */

.profile-block {
	display: flex;
	align-items: center;
	padding: 5px 15px 5px 5px;
	border: 1px solid rgba(246, 187, 49, 0.15);
	background: var(--yellow);
	border-radius: 200px;
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	-ms-border-radius: 200px;
	-o-border-radius: 200px;
}

.profile-block.open {
	border-radius: 30px 30px 0 0;
	-webkit-border-radius: 30px 30px 0 0;
	-moz-border-radius: 30px 30px 0 0;
	-ms-border-radius: 30px 30px 0 0;
	-o-border-radius: 30px 30px 0 0;
}

.profile-icon {
	width: 50px;
	height: 50px;
	margin: 0 10px 0 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	flex: 0 0 auto;
}

.profile-icon img {
	width: 100%;
}

.profile-block .dropdown-menu {
	max-width: 100%;
	width: 100%;
	background-color: var(--white);
	padding: 8px 12px;
	border: none;
	margin: 1px 0 0 0;
	-moz-box-shadow: 8px -5px 24px 0px rgba(93, 106, 131, 0.1);
	-webkit-box-shadow: 8px -5px 24px 0px rgba(93, 106, 131, 0.1);
	box-shadow: 8px -5px 24px 0px rgba(93, 106, 131, 0.1);
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
}

.profile-block .dropdown-menu .dropdown-item {
	font-size: 14px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0.4px;
	color: var(--grey);
	padding: 0;
	white-space: normal;
}

.profile-block .dropdown-menu li {
	padding: 0 0 15px;
}

.profile-block .dropdown-menu li:last-child {
	padding-bottom: 0;
}

.profile-block .dropdown-menu .dropdown-item:hover {
	background-color: transparent;
	color: var(--green);
}

.profile-block .btn {
	font-family: 'MontserratAlternatesMedium';
	color: var(--black);
	padding: 0;
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
}

.profile-block .btn:active {
	background-color: transparent !important;
	color: #1a202c;
	box-shadow: none;
}

.profile-block .dropdown-toggle::after {
	border: none;
	background-image: url("../images/profile-dropdown-arrow.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 12px;
	height: 12px;
	margin-left: 10px;
}

.profile-block .dropdown-toggle.show::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.hotel-reviews-slider {
	opacity: 0;
}

.hotel-reviews-slider.slick-initialized {
	opacity: 1;
	height: calc(100% - 93px);
}

.hotel-reviews-slider .slick-list,
.hotel-reviews-slider .slick-track {
	height: 100%;
}

.hotel-reviews-slider .slick-track {
	display: flex;
}

.hotel-reviews-item {
	height: auto !important;
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/



/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/* Banner Start */
.banner-wrp {
	padding: 150px 0 0;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	background: var(--white);
	-moz-box-shadow: 0px 50px 50px 0px rgba(0, 0, 0, 0.03);
	-webkit-box-shadow: 0px 50px 50px 0px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 50px 50px 0px rgba(0, 0, 0, 0.03);
	border-radius: 0px 0px 100px 100px;
	-webkit-border-radius: 0px 0px 100px 100px;
	-moz-border-radius: 0px 0px 100px 100px;
	-ms-border-radius: 0px 0px 100px 100px;
	-o-border-radius: 0px 0px 100px 100px;
}

.banner-top {
	text-align: center;
	/* padding: 0 0 56px; */
	padding: 0 0 30px;
}

.banner-top .common-detail {
	color: var(--green);
	margin: 0 0 15px;
}

.banner-top .main-title {
	margin: 0 0 30px;
}

.banner-btns {
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-btns a:first-child {
	margin: 0 20px 0 0;
}


.banner-bottom {
	text-align: center;
	position: relative;
}

.bg-circle {
	width: 1110px;
	height: 1110px;
	background-color: rgba(246, 187, 49, 0.1);
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.bg-circle::before {
	content: "";
	width: 934px;
	height: 934px;
	background-color: #FBE4AC;
	position: absolute;
	left: 0;
	right: 0;
	top: 88px;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.bg-circle::after {
	content: "";
	width: 756px;
	height: 756px;
	background-color: #F9D683;
	position: absolute;
	left: 0;
	right: 0;
	top: 177px;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.banner-img {
	position: relative;
	z-index: 9;
}

.banner-img img {
	max-width: 740px;
	width: 100%;
}

.plane-img {
	position: absolute;
	/*left: 100px;
	right: 0;
	*/
	bottom: -30px;
	max-width: 1058px;
	width: 100%;
	z-index: 9;
	left: 50%;
	transform: translate(-569px, 0);
	-webkit-transform: translate(-569px, 0);
	-moz-transform: translate(-569px, 0);
	-ms-transform: translate(-569px, 0);
	-o-transform: translate(-569px, 0);
}

.banner-bus {
	position: absolute;
	right: 0;
	bottom: 20px;
}

.plane-img svg {
	height: auto;
	overflow: visible;
	max-width: 100%;
}

.plane-path {
	position: absolute;
	top: 0;
	bottom: 0;
}

/* Banner End */

/* Services Start */
.services-details .large-detail {
	color: var(--yellow);
	margin: 0 0 20px;
}

.services-details .common-detail {
	font-family: 'MontserratAlternatesLight';
	color: var(--grey);
}

.services-icon {
	width: 80px;
	height: 80px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--green);
	background-color: #E9F3F1;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.services-block {
	max-width: 521px;
	width: 100%;
	display: flex;
	position: absolute;
}

.services-logo {
	width: 578px;
	height: 578px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	border: 1px dashed rgba(33, 131, 108, 0.15);
	background-color: rgba(33, 131, 108, 0.05);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.services-main .section-title {
	text-align: center;
	margin: 0 0 50px;
}

.services-wrp {
	overflow: hidden;
	padding: 150px 0 331px;
}

.services-content {
	display: flex;
}

.services-block.left .services-content {
	flex-direction: row-reverse;
}

.services-block.left .services-details {
	text-align: right;
}

.services-block.left .services-icon {
	margin: 0 0 0 50px;
}

.services-block.right .services-icon {
	margin: 0 50px 0 0;
}

.services-inner {
	position: relative;
}

.services-block.first {
	top: 16px;
	left: 50%;
	transform: translate(-662px, 0);
	-webkit-transform: translate(-662px, 0);
	-moz-transform: translate(-662px, 0);
	-ms-transform: translate(-662px, 0);
	-o-transform: translate(-662px, 0);
}

.services-block.second {
	top: 32px;
	right: 50%;
	transform: translate(670px, 0);
	-webkit-transform: translate(670px, 0);
	-moz-transform: translate(670px, 0);
	-ms-transform: translate(670px, 0);
	-o-transform: translate(670px, 0);
}

.services-block.third {
	top: 333px;
	left: 50%;
	transform: translate(-761px, 0);
	-webkit-transform: translate(-761px, 0);
	-moz-transform: translate(-761px, 0);
	-ms-transform: translate(-761px, 0);
	-o-transform: translate(-761px, 0);
}

.services-block.fourth {
	top: 350px;
	right: 50%;
	transform: translate(733px, 0);
	-webkit-transform: translate(733px, 0);
	-moz-transform: translate(733px, 0);
	-ms-transform: translate(733px, 0);
	-o-transform: translate(733px, 0);
}

.services-block.center {
	display: block;
	text-align: center;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -32px);
	-webkit-transform: translate(-50%, -32px);
	-moz-transform: translate(-50%, -32px);
	-ms-transform: translate(-50%, -32px);
	-o-transform: translate(-50%, -32px);
}

.services-block.center .services-content {
	display: block;
}

.services-block.center .services-icon {
	margin: 0 auto 25px;
}

.services-block.center .common-detail {
	max-width: 430px;
	width: 100%;
	margin: 0 auto;
}

/* Services End */

/* About Us Start */
.about-wrp {
	background-color: rgba(33, 131, 108, 0.05);
	padding: 70px 0 0;
}

.about-details {
	padding: 0 0 0 50px;
}

.about-details .detail {
	color: var(--grey);
}

.about-details .btn {
	margin: 30px 0 50px;
}

.trust-signals-wrp .small-title {
	color: var(--green);
	margin: 0 0 20px;
}

.trust-signals-block {
	padding: 20px 20px 24px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.trust-signals-block .detail {
	color: #757575;
}

.trust-signals-icon {
	margin: 0 0 20px;
}

.trust-signals-main .row {
	margin: 0 -10px;
}

.trust-signals-main .row>* {
	padding: 0 10px;
}

.about-left .section-title {
	margin: 0 0 30px;
}

.about-right {
	text-align: right;
	position: relative;
	margin: 0 0 -70px 0;
}

.circle-bg {
	width: 706px;
	height: 706px;
	position: absolute;
	left: 0;
	right: -42px;
	margin-left: auto;
	top: 0;
	background-color: rgba(33, 131, 108, 0.05);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	/* transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%); */
}

.circle-bg::after {
	content: "";
	width: 594px;
	height: 594px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	background-color: rgba(33, 131, 108, 0.08);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.circle-bg::before {
	content: "";
	width: 480px;
	height: 480px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	background-color: rgba(33, 131, 108, 0.1);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.about-img {
	position: relative;
	z-index: 9;
	margin-right: -20px;
}

.about-left {
	margin: 10px -55px 0 0;
}

.about-plane {
	position: absolute;
	top: 140px;
	z-index: 9;
	right: 8px;
}

.about-plane svg {
	max-width: 100%;
	overflow: visible;
	height: auto;
}

.about-plane .animated-path {
	position: absolute;
	top: 0;
	left: 0;
}

.animated-solid-path{
	position: absolute;
	top: 0;
	left: 0;
}

.solid-line-plane-block svg{
	max-width: 100%;
	overflow: visible;
	height: auto;
}
/* About Us End */

/* Why Chosse Us Start */
.why-us-right .section-title {
	margin: 0 0 30px;
}

.why-us-icon {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
	background-color: rgba(33, 131, 108, 0.05);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.why-us-block {
	padding: 19px 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	background-color: var(--white);
	height: calc(100% - 30px);
	margin: 0 0 30px;
	cursor: pointer;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.why-us-block:hover {
	-moz-box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
	-webkit-box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
	box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
}

.why-us-left {
	background-color: rgba(0, 0, 0, 0.05);
	max-width: 554px;
	width: 100%;
	overflow: hidden;
	padding: 60px 62px 0;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.why-us-left img {
	filter: drop-shadow(-156px 0px 44px rgba(0, 0, 0, 0.00)) drop-shadow(-100px 0px 40px rgba(0, 0, 0, 0.01)) drop-shadow(-56px 0px 34px rgba(0, 0, 0, 0.05)) drop-shadow(-25px 0px 25px rgba(0, 0, 0, 0.09)) drop-shadow(-6px 0px 14px rgba(0, 0, 0, 0.10));
	-webkit-filter: drop-shadow(-156px 0px 44px rgba(0, 0, 0, 0.00)) drop-shadow(-100px 0px 40px rgba(0, 0, 0, 0.01)) drop-shadow(-56px 0px 34px rgba(0, 0, 0, 0.05)) drop-shadow(-25px 0px 25px rgba(0, 0, 0, 0.09)) drop-shadow(-6px 0px 14px rgba(0, 0, 0, 0.10));
}

.why-us-right {
	margin: 0 0 0 -41px;
}

.why-us-main>.row {
	align-items: center;
}

.why-us-wrp {
	padding: 150px 0;
}

/* Why Chosse Us End */

/* News Start */
.news-wrp {
	padding: 80px 0;
	background-color: rgba(33, 131, 108, 0.05);
}

.news-main .section-title {
	text-align: center;
	margin: 0 0 50px;
}

.news-img {
	display: block;
	margin: 0 0 30px;
}

.news-img img {
	width: 100%;
	height: 301px;
	object-fit: cover;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.news-slider {
	opacity: 0;
	margin: 0 -10px;
	position: relative;
}


.news-slider.slick-initialized {
	opacity: 1;
}

.news-content {
	display: flex;
	padding: 0 10px;
}

.news-date {
	padding: 0 20px 0 0;
}

.news-details .detail {
	color: var(--green);
	margin: 0 0 5px;
}

.news-details .large-detail {
	color: var(--black);
	margin: 0 0 20px;
}

.news-details {
	padding: 0 0 0 20px;
	border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.news-slider .news-item {
	padding: 0 10px;
}

.slick-arrow {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	padding: 0;
	border: 1px solid var(--green);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.slick-arrow:hover {
	background-color: var(--green);
}

.slick-arrow svg path {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.slick-arrow:hover svg path {
	fill: var(--yellow);
}

.slider-arrows {
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-arrows .slick-arrow {
	margin: 30px 7px 0;
}

/* .slick-arrow.hide {
	display: none;
} */
/* News End */

/* Inquiries Start */

.inquiry-main {
	max-width: 1251px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--yellow);
	border-radius: 50px 50px 0 0;
	-webkit-border-radius: 50px 50px 0 0;
	-moz-border-radius: 50px 50px 0 0;
	-ms-border-radius: 50px 50px 0 0;
	-o-border-radius: 50px 50px 0 0;
}

.inquiry-left .block-title {
	margin: 0 0 30px;
}

.inquiry-left .btn-gradient strong {
	background-image: none;
	background-color: var(--green);
}

.inquiry-right {
	margin: -113px 0 0 -11px;
	position: relative;
}

.inquiry-left {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 0 50px 120px;
}

.inquiry-wrp {
	padding: 263px 0 0;
}

/* Inquiries End */

/* inner banner */
.inner-banner-section {
	position: relative;
	z-index: 9;
	padding-top: 130px;
	background: var(--green);
	border-radius: 0px 0px 100px 100px;
}

.inner-banner-vector-image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.inner-banner-content {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
}

.solid-line-with-plane {
	position: relative;
	top: -10px;
}

.inner-banner-center-part {
	position: relative;
	z-index: 9;
	left: -120px;
	width: 100%;
	max-width: 855px;
}

.inner-banner-bus {
	padding-bottom: 64px;
}

.inner-banner-center-part .section-title {
	text-align: center;
}

.inner-banner-center-part .section-title * {
	color: var(--white);
}

.inner-banner-center-part .section-title span {
	color: var(--yellow);
}

.inner-banner-center-wrp {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

.inner-banner-center-block {
	position: relative;
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #FFF;
	box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
	margin: 30px 0 80px;
	padding: 8px 5px 8px 30px;
}

[dir="rtl"] .inner-banner-center-block {
	padding: 8px 30px 8px 5px;
}

.inner-banner-center-child-block {
	width: 100%;
	max-width: 740px;
}

.inner-banner-center-child-block .row>*:first-child {
	width: 33.3%;
}

.inner-banner-center-child-block .row>*:nth-child(2) {
	width: 33.3%;
}

.inner-banner-center-child-block .row>*:last-child {
	width: 33.3%;
}

.inner-banner-center-wrp-image {
	flex: 0 0 auto;
	margin-right: 12px;
}

.inner-banner-center-wrp-right * {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'MontserratAlternatesLight';
	font-size: 14px;
	line-height: 170%;
	margin: 0;
}

.inner-banner-center-wrp-right * span {
	display: block;
	color: var(--green);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
}

.inner-banner-center-block .row>* {
	position: relative;
}

[dir="ltr"] .inner-banner-center-block .row>*::after {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.2);
	width: 1px;
	top: 0;
	bottom: 0;
	right: 0;
}

[dir="rtl"] .inner-banner-center-block .row>*::before {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.2);
	width: 1px;
	top: 0;
	bottom: 0;
	left: 0;
}

.inner-banner-center-block .row>*:last-child::after {
	display: none;
}

.search-block {
	position: absolute;
	font-size: 0;
	top: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--green);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

[dir="rtl"] .search-block {
	position: absolute;
	top: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--green);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.search-block:hover {
	background: var(--yellow);
}

.inner-banner-center-wrp-right .form-control {
	background-color: transparent;
	color: rgba(0, 0, 0, 0.5);
	padding: 0;
	border: none;
	box-shadow: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.inner-banner-center-wrp-right .form-control::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.inner-banner-center-wrp-right button {
	background-color: transparent;
	cursor: pointer;
	border: none;
	padding: 0;
}

.guests-input-options {
	position: absolute;
	left: 0;
	z-index: 9;
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
	box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
	border-radius: 2px;
	overflow: hidden;
	height: 0;
	opacity: 0;
	top: 100%;
	margin: 4px 0 0;
	transition: all .1s linear;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-ms-transition: all .1s linear;
	-o-transition: all .1s linear;
	border-radius: 0 0 30px 30px;
	-webkit-border-radius: 0 0 30px 30px;
	-moz-border-radius: 0 0 30px 30px;
	-ms-border-radius: 0 0 30px 30px;
	-o-border-radius: 0 0 30px 30px;
}

.guests-input-options span {
	display: flex;
	align-items: center;
}

.guests-input-options.open {
	opacity: 1;
	height: auto;
}

.guests-input-options .common-guest {
	padding: 10px 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.guests-input-ctrl {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--green);
	font-size: 20px;
	line-height: 20px;
	color: var(--green);
	padding: 5px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.inner-banner-center-wrp-right * span svg,
.inner-banner-center-wrp-right * span svg path {
	color: var(--green);
}

.guests-input-ctrl.disabled {
	color: #d8d8d8;
	border-color: #d8d8d8;
	cursor: default
}

.guests-input-value {
	display: inline-block;
	padding: 0 10px;
	width: auto;
	cursor: default
}

.guests-input-value span {
	display: inline-block;
	padding-right: 5px
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
	font-family: 'MontserratAlternatesLight';
	width: 30px !important;
	height: 30px !important;
	border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	-ms-border-radius: 50% !important;
	-o-border-radius: 50% !important;
}

.daterangepicker {
	border-color: rgba(0, 0, 0, 0.1) !important;
	border-radius: 10px !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	-ms-border-radius: 10px !important;
	-o-border-radius: 10px !important;
}

.daterangepicker td:hover,
.daterangepicker td.in-range {
	background-color: rgba(33, 131, 108, 0.2) !important;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
	background-color: rgba(33, 131, 108, 0.2) !important;
}


.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker td.in-range.end-date {
	color: var(--white) !important;
	background-color: var(--green) !important;
}


.inner-banner-center-wrp-right {
	flex: 0 0 auto;
	width: 85%;
}

.inner-banner-center-wrp-right .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-family: 'MontserratAlternatesLight';
	color: rgba(0, 0, 0, 0.5);
	padding: 0;
}

.where-place {
	margin: 0 50px 0 0;
}

.inner-banner-center-wrp-right .select2-container--default .select2-selection--single {
	border: none;
	background-color: transparent;
}

/* inner banner */

/* option-section */
.option-section {
	padding: 150px 0 75px;
}

.option-detail {
	margin: 0 -60px 0 0;
}

.option-detail .section-title span {
	color: var(--yellow);
}

.option-slider-image {
	cursor: pointer;
	position: relative;
	width: 100%;
	height: 250px;
}

.option-slider-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.option-slider-image img {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.option-slider-image::before {
	position: absolute;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 59.8%, #000 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.option-slider .slick-list {
	margin: 0 -10px;
}

.option-slider .slick-slide {
	padding: 0 10px;
}

.option-slider {
	opacity: 0;
}

.option-slider.slick-initialized {
	opacity: 1;
}

.option-slider-block {
	width: 100%;
	max-width: 1054px;
	margin-left: auto;
}

.option-slider-detail {
	position: relative;
}

.option-slider-cart {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.option-slider-cart span {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	text-align: center;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	padding: 6px 12px 4px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.option-slider-cart span svg{
	cursor: pointer;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.option-slider-cart span svg path{
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.option-slider-cart span svg:hover{
	fill: red !important;
}

.option-slider-cart span svg:hover path{
	stroke: red !important;
	fill: red!important;
}

.option-slider-title {
	cursor: pointer;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 20px 20px;
	color: var(--white);
	text-align: center;
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 133%;
}

.option-slider-wrp {
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
	opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.option-slider-wrp.show {
    opacity: 1;
    visibility: visible;
}

.option-slider-title.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.option-slider-wrp>* {
	width: 50%;
	padding: 9px 12px;
	background: var(--green);
	color: var(--white);
	text-align: center;
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.option-slider-wrp>*:first-child {
	border-right: 1px solid var(--white);
	border-radius: 0 0 0 18px;
	-webkit-border-radius: 0 0 0 18px;
	-moz-border-radius: 0 0 0 18px;
	-ms-border-radius: 0 0 0 18px;
	-o-border-radius: 0 0 0 18px;
}

.option-slider-wrp>*:last-child {
	border-radius: 0 0 18px 0;
	-webkit-border-radius: 0 0 18px 0;
	-moz-border-radius: 0 0 18px 0;
	-ms-border-radius: 0 0 18px 0;
	-o-border-radius: 0 0 18px 0;
}

.option-slider-wrp>*:hover {
	background: var(--yellow);
}

/* option-section */

/* explore section */
.explore-section {
	margin: 75px 0 0;
	padding: 70px 0;
}

.explore-wrp {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.explore-wrp .section-title span {
	color: var(--green);
}

.explore-slider-block {
	margin: 50px 0 0;
}

.explore-slider-detail {
	position: relative;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #FFF;
}

.explore-cart {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 30px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.explore-cart svg{
	cursor: pointer;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.explore-cart svg path{
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.explore-cart svg:hover{
	fill: red !important;
}

.explore-cart svg:hover path{
	stroke: red !important;
	fill: red!important;
}

.explore-slider-image {
	width: 100%;
	height: 322px;
}

.explore-slider-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.explore-slider-image img {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.explore-slider-info {
	padding: 20px;
}

.explore-slider-info-top-part {
	display: flex;
	justify-content: space-between;
}

.explore-info-top-left {
	display: flex;
}

.explore-icon {
	margin-right: 10px;
}

.explore-info-title * {
	margin: 0;
	color: var(--green);
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 133%;
}

.explore-info-price * {
	color: var(--black);
	font-size: 16px;
	line-height: 162%;
	margin: 0;
}

.explore-info-price * span {
	color: var(--yellow);
	font-family: 'MontserratAlternatesSemiBold';
}

.explore-info-top-right ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.explore-info-top-right ul li:not(:last-child) {
	margin-right: 10px;
}

.explore-info-top-right ul li {
	color: var(--black);
	text-align: center;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
}

.explore-slider-info>*:not(:last-child) {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.explore-info-center-part {
	display: flex;
	justify-content: center;
	align-items: center;
}

.explore-slider {
	opacity: 0;
}

.explore-slider.slick-initialized {
	opacity: 1;
}

.explore-info-date-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.explore-info-date {
	width: 100%;
	max-width: 90px;
}

.explore-info-date * {
	text-align: left !important;
	color: var(--black);
	font-size: 14px;
	line-height: 171%;
	margin: 0;
}

.explore-info-date * span {
	display: block;
	color: var(--green);
	text-align: center;
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
}

.explore-info-date-center-block span {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid #D9D9D9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.explore-info-date-center-block {
	position: relative;
	width: 100%;
	max-width: 254px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.explore-info-date-center-block::before {
	position: absolute;
	content: "";
	background-image: url('../images/left-line.svg');
	background-repeat: no-repeat;
	top: 50%;
	height: 100%;
	left: 0;
	right: 0;
}

.explore-info-date-center-block::after {
	position: absolute;
	content: "";
	background-image: url('../images/right-line.svg');
	background-repeat: no-repeat;
	top: 50%;
	height: 100%;
	width: 100%;
	left: auto;
	right: -158px;
}

.explore-btn-block a {
	background: var(--yellow);
	padding: 21px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black);
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.explore-btn-block a svg {
	margin-left: 10px;
}

.explore-btn-block a svg path {
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.explore-btn-block a:hover {
	color: var(--white);
	background: var(--green);
}

.explore-btn-block a:hover svg path {
	fill: var(--white);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.explore-slider .slick-list {
	margin: 0 -10px;
}

.explore-slider .slick-slide {
	padding: 0 10px;
}

.explore-slider-arrow {
	display: flex;
}

.explore-slider-arrow>*:not(:last-child) {
	margin-right: 10px;
}

.explore-slider-arrow .slick-arrow {
	width: 50px;
	height: 50px;
	background: #D4E7E3;
	border: 1px solid #9EC9BF;
}

.explore-slider-arrow .slick-arrow:hover {
	background: var(--green);
	border-color: var(--green);
}

/* explore section */

/* makkah section */
.makkah-section {
	padding: 10px 0 70px;
}

.makkah-top-part {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 27px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 50px;
}

.makkah-title * {
	color: var(--green);
	font-family: 'LamaSansSemiBold';
	font-size: 40px;
	line-height: 125%;
	margin: 0;
}

.makkah-top-left {
	display: flex;
	align-items: center;
}

.makkah-title {
	display: flex;
	align-items: center;
}

.makkah-title>*:not(:last-child) {
	margin-right: 15px;
}

.makkah-title span {
	color: var(--grey);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.share-block {
	cursor: pointer;
	display: flex;
	align-items: center;
}

.share-block figure {
	margin-right: 8px;
	margin-top: -2px;
}

.share-block span {
	color: var(--black);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	margin: 1px 0 0;
}

.makkah-top-right>*:not(:last-child) {
	margin-right: 30px;
}

.cart-whishlist-block {
	cursor: pointer;
	display: flex;
}

.cart-whishlist-block figure {
	margin-right: 7px;
	margin-top: -2px;
}

.cart-whishlist-block span {
	color: var(--black);
	text-align: center;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	margin: 1px 0 0 0;
}

.makkah-top-right {
	display: flex;
}

.makkah-rating-block {
	display: flex;
}

.makkah-rating-block figure {
	top: -2px;
	position: relative;
	margin-right: 7px;
}

.makkah-rating-block span {
	color: var(--black);
	text-align: center;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	margin: 1px 0 0 0;
}

.makkah-block {
	padding: 0 15px;
}

.makkal-block-wrp {
	padding: 20px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #FFF;
	box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.makkah-block>*:not(:last-child) {
	margin-bottom: 30px;
}

.makkah-image {
	position: relative;
	margin: 0;
	height: 450px;
}

.makkah-image figure,
.makkah-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.makkah-image img {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.genius-title {
	padding: 8px 40px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
	top: 20px;
	left: -10px;
	background: var(--green);
	border-radius: 5px 5px 5px 0;
	-webkit-border-radius: 5px 5px 5px 0;
	-moz-border-radius: 5px 5px 5px 0;
	-ms-border-radius: 5px 5px 5px 0;
	-o-border-radius: 5px 5px 5px 0;
}

.genius-title::after {
	position: absolute;
	content: "";
	background-image: url('../images/triangle.svg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	left: 0;
	bottom: -10px;
	width: 10px;
	height: 10px;
}

/* makkah section */

/* S3 Page Start */
.gallery-img img {
	width: 100%;
}

.gallery-left .gallery-img img {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.gallery-right .gallery-img img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gallery-main .row {
	margin: 0 -10px;
}

.gallery-main .row>* {
	padding: 0 10px;
}

.gallery-img {
	height: calc(100% - 20px);
	margin: 0 0 20px;
	display: flex;
}

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

.gallery-left .gallery-img {
	margin-bottom: 0;
}

.gallery-left .gallery-img figure {
	height: 100%;
}

.gallery-img figure {
	width: 100%;
	display: flex;
}

.gallery-left,
.gallery-right {
	height: 100%;
}

.gallery-left {
	max-width: 732px;
	width: 100%;
}

.gallery-right {
	margin: 0 0 0 -16px;
}

.gallery-row {
	margin: 0 3px;
}

.gallery-right .row {
	height: 100%;
}

.gallery-main .makkah-title {
	padding: 0 0 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin: 0 0 50px;
}

.gallery-wrp {
	padding: 150px 0 20px;
}

.last-img {
	position: relative;
}

.last-img::after {
	content: "";
	background-color: var(--black);
	opacity: 0.67;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.more-img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 9;
	text-align: center;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.more-img .small-title {
	color: var(--white);
}

.makkah-hotel-main .small-title {
	color: var(--green);
	margin: 0 0 20px;
}

.makkah-hotel-map #map {
	height: 404px;
}

.makkah-hotel-map .gm-style-iw {
	padding: 14px !important;
	max-width: 211px !important;
	width: 100%;
	background-color: var(--green);
	box-shadow: none;
	top: -10px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	-webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.makkah-hotel-map .gm-style .gm-style-iw-tc::after {
	background-color: var(--green);
	width: 50px;
	height: 17px;
	left: -10px;
	top: -11px;
}

.makkah-hotel-map .gm-style-iw-d {
	overflow: unset !important;
}

.makkah-hotel-map .common-detail {
	font-size: 16px;
	line-height: 26px;
	color: var(--white);
	margin: 7px 0 0;
	text-align: center;
}

.makkah-hotel-map .gm-ui-hover-effect {
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	opacity: 1 !important;
}

.makkah-hotel-map .gm-ui-hover-effect>span {
	width: 20px !important;
	height: 20px !important;
	background-color: var(--white);
	margin: 0 !important;
}

.makkah-hotel-info-left ul {
	padding: 0;
	margin: 0;
}

.makkah-hotel-info-left ul li {
	font-size: 16px;
	line-height: 26px;
	list-style-type: none;
	display: flex;
	padding: 0 0 10px;
}

.makkah-hotel-info-left ul li p {
	margin: 0;
}

.makkah-hotel-info-left ul li strong {
	font-family: 'MontserratAlternatesSemiBold';
}

.makkah-hotel-info-left ul li span {
	font-family: 'MontserratAlternatesSemiBold';
	color: var(--green);
}

.makkah-hotel-info-left ul li:last-child {
	padding-bottom: 0;
}

.makkah-hotel-info-left .info-icon figure {
	display: flex;
	margin: 5px 0 0;
}

.makkah-hotel-info-left .info-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 12px 0 0;
	flex: 0 0 auto;
}

.makkah-hotel-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 19px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.makkah-hotel-left {
	border: 1px solid rgba(0, 0, 0, 0.15);
	max-width: 1129px;
	width: 100%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.makkah-hotel-map {
	-moz-box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
	-webkit-box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
	box-shadow: -1px 3px 6px 0px rgba(0, 0, 0, 0.05), -2px 11px 12px 0px rgba(0, 0, 0, 0.04);
}

.makkah-hotel-info .btn-yellow {
	flex: 0 0 auto;
}

.btn-yellow {
	font-family: 'MontserratAlternatesMedium';
	padding: 10px 15px;
	background-color: var(--yellow);
	color: var(--white);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.btn-yellow:hover,
.btn-yellow:active {
	background-color: var(--green) !important;
	color: var(--white) !important;
}

.makkah-hotel-detail {
	padding: 10px;
	background-color: rgba(33, 131, 108, 0.05);
	border-top: 1px solid rgba(33, 131, 108, 0.15);
	text-align: center;
}

.makkah-hotel-section {
	padding: 0 0 20px;
}

.makkah-hotel-section .row {
	margin: 0 -10px;
}

.makkah-hotel-section .row>* {
	padding: 0 10px;
}

.makkah-hotel-bottom-left {
	max-width: 482px;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.makkah-hotel-bottom .row {
	margin: 0 -10px;
}

.makkah-hotel-bottom .row>* {
	padding: 0 10px;
}

.makkah-hotel-detail p {
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 26px;
	color: #E54720;
	margin: 0;
}

.makkah-hotel-main {
	margin: 0 3px;
}

.makkah-hotel-bottom-right .large-detail {
	color: var(--green);
	margin: 0 0 10px;
}

.makkah-hotel-bottom-right .small-detail p {
	margin: 0 0 15px;
}

.makkah-hotel-bottom-right .small-detail p:last-child {
	margin-bottom: 0;
}

.makkah-hotel-bottom-right {
	margin: 0 0 0 -10px;
	padding: 19px 20px 14px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.makkah-hotel-btn {
	margin: 30px 0 0;
	text-align: center;
}

.makkah-hotel-wrp {
	padding: 0 0 70px;
}

.total-reviews .star figure {
	display: flex;
}

.total-reviews .detail {
	font-family: 'MontserratAlternatesMedium';
	margin: 0 0 0 9px;
}

.total-reviews {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--green);
	color: var(--white);
	padding: 3px 12px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.hotel-reviews-icon {
	width: 41px;
	height: 41px;
	overflow: hidden;
	flex: 0 0 auto;
	margin: 0 5px 0 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.hotel-reviews-icon figure {
	display: flex;
}

.hotel-reviews-details .large-detail {
	color: var(--green);
	margin: 0 0 -6px 0;
}

.hotel-reviews-left {
	display: flex;
	align-items: center;
}

.hotel-reviews-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.makkah-hotel-reviews {
	/* height: 100%; */
	position: relative;
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.reviews-item-details {
	padding: 20px 24px;
}

.reviews-item-details .small-detail strong {
	font-family: 'MontserratAlternatesSemiBold';
	color: var(--black);
}

.reviews-item-details .small-detail p {
	margin: 0 0 12px;
	color: var(--grey);
}

.reviews-item-details .small-detail p:last-child {
	margin-bottom: 0;
}

.reviews-item-details .hotel-address {
	padding: 43px 0 21px;
}

.reviews-block .detail {
	font-family: 'MontserratAlternatesMedium';
	color: var(--grey);
}

.ratings {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	color: #b1b1b1;
	overflow: hidden;
}

.full-stars {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
	overflow: hidden;
	color: #F6BB31 !important;
}

.reviews-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.client-name .small-detail {
	font-family: 'MontserratAlternatesSemiBold';
}

.client-icon {
	width: 40px;
	height: 40px;
	margin: 0 15px 0 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.client-details {
	display: flex;
	align-items: center;
	padding: 25px;
	border-top: 1px solid;
	border-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(43, 43, 43, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
	border-image-slice: 1;
}

.country-name {
	display: flex;
	align-items: center;
}

.country-name figure {
	display: flex;
}

.country-name p {
	font-size: 14px;
	line-height: 24px;
	margin: 0 0 0 8px;
}

.reviews-slider-arrows {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	right: 25px;
	bottom: 35px;
}

.reviews-slider-arrows .slick-arrow {
	width: 32px;
	height: 32px;
	border-color: rgba(0, 0, 0, 0.15);
	background-color: var(--white);
}

.reviews-slider-arrows .slick-arrow:hover {
	background-color: var(--green);
}

.reviews-slider-arrows .slick-prev {
	margin: 0 10px 0 0;
}

/* S3 Page End */

/* S6 Page Start */
.confirmation-wrp {
	padding: 150px 0 50px;
}

.confirmation-main .block-title {
	color: var(--green);
	padding: 0 0 20px;
	margin: 0 0 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.confirmation-table .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 26px;
	color: var(--white);
	padding: 9px 15px;
	text-align: left;
}

.confirmation-table .select2-container--default .select2-selection--single {
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: transparent;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.confirmation-table .select2-container--default.select2-container--open .select2-selection--single {
	border-radius: 30px 30px 0 0;
	-webkit-border-radius: 30px 30px 0 0;
	-moz-border-radius: 30px 30px 0 0;
	-ms-border-radius: 30px 30px 0 0;
	-o-border-radius: 30px 30px 0 0;
}

.confirmation-table .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("../images/down-arrow-white.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 12px;
    height: 12px;
    right: 14px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.confirmation-table .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
}

.confirmation-table thead tr th {
	font-weight: normal;
	background-color: var(--green);
	padding: 20px;
	vertical-align: middle;
	border: none;
}

.confirmation-table thead tr th:first-child {
	padding-left: 66px;
	border-radius: 20px 0 0 0;
	-webkit-border-radius: 20px 0 0 0;
	-moz-border-radius: 20px 0 0 0;
	-ms-border-radius: 20px 0 0 0;
	-o-border-radius: 20px 0 0 0;
}

.confirmation-table .small-title {
	color: var(--white);
}

.confirmation-table thead tr th:last-child {
	text-align: right;
	border-radius: 0 20px 0 0;
	-webkit-border-radius: 0 20px 0 0;
	-moz-border-radius: 0 20px 0 0;
	-ms-border-radius: 0 20px 0 0;
	-o-border-radius: 0 20px 0 0;
}

.confirmation-table .form-select {
	max-width: 115px;
	width: 100%;
}

.confirmation-table.table {
	box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	/* overflow: unset; */
}

.confirmation-table tbody tr th {
	/* border-left: 1px solid #D9D9D9 !important; */
}


.confirmation-table tbody tr th,
.confirmation-table tfoot tr th {
	font-family: 'MontserratAlternatesMedium';
	font-weight: normal;
	padding: 25px 25px 25px 66px !important;
	color: var(--black) !important;
	text-align: left;
	border: none;
}

.confirmation-table tfoot tr th {
	border-radius: 0 0 0 20px;
	-webkit-border-radius: 0 0 0 20px;
	-moz-border-radius: 0 0 0 20px;
	-ms-border-radius: 0 0 0 20px;
	-o-border-radius: 0 0 0 20px;
}

.confirmation-table tfoot tr th {
	/* border-left: 1px solid #D9D9D9; */
	border-radius: 0 0 0 20px;
	-webkit-border-radius: 0 0 0 20px;
	-moz-border-radius: 0 0 0 20px;
	-ms-border-radius: 0 0 0 20px;
	-o-border-radius: 0 0 0 20px;
}

.confirmation-table tbody tr td {
	font-family: 'MontserratAlternatesLight';
	font-size: 18px;
	line-height: 28px;
	padding: 25px 30px !important;
	text-align: right;
	color: var(--black) !important;
}

.confirmation-table tbody tr td:last-child {
	border-left: 1px solid rgba(33, 131, 108, 0.2);
	/* border-right: 1px solid #D9D9D9; */
}

.confirmation-table tbody tr:nth-child(even) th {
	padding: 10px 25px 10px 66px !important;
	background: rgba(33, 131, 108, 0.1);
}

.confirmation-table.table tbody tr:nth-child(even) td {
	padding: 10px 30px !important;
}

.confirmation-table tfoot {
	border-top: 1px solid var(--green);
}

.confirmation-table-block{
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.confirmation-table tfoot td:last-child {
	text-align: right;
	padding: 10px 30px;
	/* border-right: 1px solid #D9D9D9; */
	/* border-bottom: 1px solid #D9D9D9; */
	border-radius: 0 0 20px 0;
	-webkit-border-radius: 0 0 20px 0;
	-moz-border-radius: 0 0 20px 0;
	-ms-border-radius: 0 0 20px 0;
	-o-border-radius: 0 0 20px 0;
}

.confirmation-table tfoot td .btn-yellow {
	padding: 13px 40px;
}

.confirmation-left .common-detail {
	color: var(--green);
	margin: 0 0 10px;
}

.personal-detail-block {
	max-width: 184px;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background-color: var(--white);
	-moz-box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	-webkit-box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.personal-detail-user {
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -1px -1px 0;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.personal-detail-user img {
	width: 50px;
}

.personal-detail-name {
	padding: 10px;
	text-align: center;
}

.personal-detail-name p {
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

.confirmation-section {
	margin: 0 48px;
}

.confirmation-details {
	padding: 25px 0 0;
}

.confirmation-details > .row {
	margin: 0 -10px;
}

.confirmation-details > .row>* {
	padding: 0 10px;
}

.confirmation-left-bottom .row {
	margin: 0 -6px;
}

.confirmation-left-bottom .row>* {
	padding: 0 6px;
}

.confirmation-left-bottom {
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	background-color: var(--white);
	height: 100%;
	-moz-box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	-webkit-box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.confirmation-invoice {
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.05)) drop-shadow(0px 22px 22px rgba(0, 0, 0, 0.04)) drop-shadow(0px 49px 29px rgba(0, 0, 0, 0.03)) drop-shadow(0px 86px 35px rgba(0, 0, 0, 0.01)) drop-shadow(0px 135px 38px rgba(0, 0, 0, 0.00));
	-webkit-filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.05)) drop-shadow(0px 22px 22px rgba(0, 0, 0, 0.04)) drop-shadow(0px 49px 29px rgba(0, 0, 0, 0.03)) drop-shadow(0px 86px 35px rgba(0, 0, 0, 0.01)) drop-shadow(0px 135px 38px rgba(0, 0, 0, 0.00));
}

.btn-border-yellow {
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 28px;
	color: var(--yellow);
	border: 1px solid var(--yellow);
	padding: 10px 40px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.btn-border-yellow:hover,
.btn-border-yellow:active {
	background-color: var(--yellow) !important;
	color: var(--white) !important;
}

.btn-green {
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 28px;
	color: var(--white);
	background-color: var(--green);
	padding: 11px 20px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.btn-green:hover,
.btn-green:active {
	background-color: var(--yellow) !important;
	color: var(--white) !important;
}

.invoice-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 0;
}

.invoice-btns .btn-border-yellow {
	margin: 0 15px 0 0;
}

.confirmation-right-bottom {
	padding: 15px 10px;
}

.back-home {
	text-align: center;
	padding: 50px 0 0;
}

.back-home .btn-yellow {
	padding: 14px 30px;
}

/* S6 Page End */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	background-color: var(--black);
}

.inner-footer {
	background: var(--green);
}

.footer-main {
	padding: 50px 0;
}

.f-logo {
	display: block;
	max-width: 182px;
	width: 100%;
	margin: 0 auto;
}

.footer-links {
	padding: 50px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-links ul li {
	padding: 0 25px;
}

.footer-links ul li a {
	font-family: 'MontserratAlternatesMedium';
	color: var(--white);
}

.footer-links ul li a:hover,
.footer-links ul li a.active {
	color: var(--yellow);
}

.footer-block .common-detail {
	font-family: 'MontserratAlternatesSemiBold';
	color: var(--yellow);
	margin: 0 0 10px;
}

.footer-block .detail {
	font-family: 'MontserratAlternatesMedium';
	color: var(--white);
}

.social-media ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.social-media ul li {
	list-style-type: none;
	padding: 0 20px 0 0;
}

.social-media ul li:last-child {
	padding-right: 0;
}

.social-media ul li a {
	width: 40px;
	height: 40px;
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	-moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.social-media ul li a:hover {
	background: rgba(255, 255, 255, 1);
}

.footer-bottom {
	padding: 50px 0 0;
}

.footer-block {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	position: relative;
	height: 100%;
}

.footer-bottom .row>*:nth-child(2) .footer-block::before,
.footer-bottom .row>*:nth-child(2) .footer-block::after {
	content: "";
	background-color: rgba(255, 255, 255, 0.1);
	width: 1px;
	height: 121px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.footer-bottom .row>*:nth-child(2) .footer-block::before {
	left: 0;
}

.footer-bottom .row>*:nth-child(2) .footer-block::after {
	right: 0;
}

.copyright {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 23px;
	text-align: center;
}

.copyright p {
	color: var(--white);
	margin: 0;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/

/* makkah section */
.common-cart {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 30px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.common-cart * {
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-ms-border-radius: 0 !important;
	-o-border-radius: 0 !important;
}

.common-cart svg{
	cursor: pointer;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.common-cart svg path{
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.common-cart svg:hover{
	fill: red !important;
}

.common-cart svg:hover path{
	stroke: red !important;
	fill: red!important;
}

.makkal-block-wrp .row {
	margin: 0 -12px;
}

.makkal-block-wrp .row>* {
	padding: 0 12px;
}

.makkah-location-info {
	margin: 10px 0 0;
	display: flex;
	align-items: center;
}

.makkah-location-info>*:not(:last-child) {
	margin-right: 10px;
}

.makkah-location-info span {
	color: var(--black);
	text-align: center;
	font-family: 'MontserratAlternatesLight';
	font-size: 16px;
	line-height: 162%;
}

.makkah-location-info span:first-child {
	color: var(--yellow);
	font-family: 'MontserratAlternatesSemiBold';
}

.makkah-location-info>*:nth-child(2) {
	color: var(--yellow);
	font-family: 'MontserratAlternatesSemiBold';
}

.makkah-location-info span:last-child {
	color: var(--green);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 14px;
}

.makkah-title-block {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.makkah-title-block::after {
	position: absolute;
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #2B2B2B 50%, rgba(0, 0, 0, 0.00) 100%);
}

.makkah-right-left-part {
	width: 100%;
	/*max-width: 470px;*/
	padding-top: 15px;
}

.makkah-facelity-block {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.makkah-facelity-block::after {
	position: absolute;
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #2B2B2B 50%, rgba(0, 0, 0, 0.00) 100%);
}

.makkah-facelity-wrp {
	display: flex;
}

.makkah-facelity-wrp>*:not(:last-child) {
	margin-right: 20px;
}

.makkah-facelity-wrp-info span {
	color: #000;
	text-align: center;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	margin: 3px 0 0;
}

.makkah-facelity-block>*:not(:last-child) {
	margin-bottom: 20px;
}

.makkah-facelity-wrp-info ul {
	margin: 5px 0 0;
	padding: 0;
	display: flex;
	list-style: none;
}

.makkah-facelity-wrp-info ul li {
	position: relative;
	padding: 0 10px;
	color: #000;
	font-size: 14px;
	line-height: 171%;
}

.makkah-facelity-wrp-info ul li:first-child {
	padding-left: 0;
}

.makkah-facelity-wrp-info ul li:last-child {
	padding-right: 0;
}

.makkah-facelity-wrp-info ul li:not(:last-child)::after {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.2);
	width: 1px;
	right: 0;
	top: 0;
	bottom: 0;
}

.makkah-right-block {
	display: flex;
    flex: 1 1 0;
    height: 100%;
	width: 100%;
	max-width: 930px;
	margin-left: auto;
}

.detail-date-block {
	width: 100%;
	/*max-width: 453px;*/
}

.detail-date-block>*:not(:last-child) {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.detail-date-block>*:not(:last-child)::after {
	position: absolute;
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #2B2B2B 50%, rgba(0, 0, 0, 0.00) 100%);
}

.makkah-room-info {
	display: block;
	margin: 30px 0 0;
	color: #E54720;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
}

.makkah-availability-part {
	position: relative;
	width: 100%;
	margin-left: auto;
    padding: 0 15px;
}

.makkah-availability-part {
    height: 100% !important;
    margin-right: 0 !important;
}

/* Show border only on screens larger than 768px (tablet and up) */
@media (min-width: 768px) {
    .makkah-availability-part {
        border-left: 0.5px dashed black !important;
    }
}

/* For RTL support */
[dir="rtl"] .makkah-availability-part {
    margin-left: 0 !important;
    margin-right: initial !important;
}

@media (min-width: 768px) {
    [dir="rtl"] .makkah-availability-part {
        border-left: none !important;
        border-right: 0.5px dashed black !important;
    }
}

.makkah-availability-child-part {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	/*max-width: 285px;*/
	margin-left: auto;
	padding-top: 20px;
}

.makkah-availibility-top {
	display: flex;
	align-items: center;
}

.makkah-availiility-wrp {
	display: flex;
}

.makkah-availiility-wrp>*:not(:last-child) {
	margin-right: 5px;
}

.makkah-availiility-wrp figure {
	margin-top: -3px;
}

.makkah-availiility-wrp * {
	color: #01876E;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 24px;
	line-height: 108%;
	margin: 0;
}

.makkah-availiility-wrp span {
	display: block;
	margin: 5px 0 0;
	color: var(--black);
	text-align: right;
	font-family: 'MontserratAlternatesLight';
	font-size: 14px;
	line-height: 170%;
}

.makkah-availiility-wrp img {
	width: 36px;
	height: 36px;
}

.makkah-rating {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 12px;
	color: var(--white);
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
	border-radius: 10px;
	background: var(--green);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.makkah-rating figure {
	margin: -2px 9px 0 0;
}

.makkah-availiility-wrp {
	margin-right: 10px;
}

.makkah-availibility-bottom * {
	text-align: right;
}

.makkah-availibility-bottom-top * {
	color: var(--black);
	text-align: right;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
}

.makkah-availability-price {
	margin: 8px 0;
}

.makkah-availability-price>* {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.makkah-availability-price * {
	margin: 0;
	color: var(--green);
	text-align: center;
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 133%;
}

.makkah-availability-price span {
	margin-right: 10px;
	color: var(--yellow);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
	text-decoration-line: line-through;
	-moz-text-decoration-line: line-through;
}

.taxes-charges-info * {
	color: #000;
	font-size: 16px;
	line-height: 162%;
}

.common-yellow-btn-block {
	margin: 30px 0 0;
}

.common-yellow-btn-block * {
	min-width: 232px;
}

.common-yellow-btn-block *:hover {
	background: var(--green);
}

/* makkah section */

/* choice section */
.choice-section {
	background: rgba(33, 131, 108, 0.05);
	margin: 80px 0 0;
	padding: 70px 0;
}

/* .choice-slider::before{
	position: absolute;
	content: "";
	background: var(--white);
	width: 238px;
	top: 0;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	z-index: 9;
	border-radius: 0 20px 20px 0;
	-webkit-border-radius: 0 20px 20px 0;
	-moz-border-radius: 0 20px 20px 0;
	-ms-border-radius: 0 20px 20px 0;
	-o-border-radius: 0 20px 20px 0;
}

.choice-slider::after{
	position: absolute;
	content: "";
	background: var(--white);
	width: 238px;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0.5;
	z-index: 9;
	border-radius: 20px 0 0 20px;
	-webkit-border-radius: 20px 0 0 20px;
	-moz-border-radius: 20px 0 0 20px;
	-ms-border-radius: 20px 0 0 20px;
	-o-border-radius: 20px 0 0 20px;
} */

.table {
	width: 100%;
	margin: 0;
	overflow: hidden;
	table-layout: fixed;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	vertical-align: middle;
}

.table-caption {
	text-align: center;
	padding: 23px;
	color: var(--white);
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 133%;
	border-radius: 20px 20px 0px 0px;
	background: var(--green);
	-webkit-border-radius: 20px 20px 0px 0px;
	-moz-border-radius: 20px 20px 0px 0px;
	-ms-border-radius: 20px 20px 0px 0px;
	-o-border-radius: 20px 20px 0px 0px;
}

.choice-slider-detail {
	border-radius: 20px;
	border: 1px solid #D9D9D9;
	background: #FFF;
	/* box-shadow: 0px 590px 165px 0px rgba(0, 0, 0, 0.00), 0px 377px 151px 0px rgba(0, 0, 0, 0.00), 0px 212px 127px 0px rgba(0, 0, 0, 0.01), 0px 94px 94px 0px rgba(0, 0, 0, 0.02), 0px 24px 52px 0px rgba(0, 0, 0, 0.02); */
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.choice-slider .slick-slide {
	opacity: 0.3;
	padding: 0 15px;
}

.choice-slider .slick-slide.slick-center {
	opacity: 1;
}

.choice-slider-arrow {
	display: flex;
	justify-content: center;
	margin: 40px 0 0;
}

.choice-slider-arrow .slick-arrow {
	width: 50px;
	height: 50px;
	background: #D4E7E3;
	border: 1px solid #9EC9BF;
}

.choice-slider-arrow .slick-arrow:hover {
	background: var(--green);
	border-color: var(--green);
}

.choice-slider-arrow>*:not(:last-child) {
	margin-right: 10px;
}

.table-cell {
	padding: 30px !important;
	text-align: center;
	color: var(--green) !important;
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.table-cell p {
	display: none;
}

.table-cell span {
	margin: 0 auto;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--green);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.choice-slider-block .row>*:not(:last-child)::after {
	position: absolute;
	content: "";
	background: rgba(33, 131, 108, 0.2);
	width: 1px;
	right: 0;
	top: 0;
	bottom: 0;
}

.choice-slider {
	opacity: 0;
}

.choice-slider.slick-initialized {
	opacity: 1;
}

.table td {
	width: 33.33%;
	text-align: center;
	border-bottom: none;
}

.table tr {
	border: none !important;
}

.table tr td:not(:last-child) {
	border-right: 1px solid rgba(33, 131, 108, 0.2);
	;
}

.table tbody tr:nth-child(even) td {
	padding: 20px !important;
	background: rgba(33, 131, 108, 0.1);
}

.check-btn input {
	display: none;
}

.check-btn svg {
	opacity: 0;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.check-btn label {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 40px 8px;
	border-radius: 50px;
	background: var(--yellow);
	color: var(--white);
	text-align: center;
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
}

.check-btn label:hover {
	color: var(--white);
	background-color: var(--yellow);
}

.check-btn input:checked+label {
	background: var(--green);
	background-color: var(--green) !important;
	color: var(--white) !important;
}

.check-btn:active,
.check-btn:focus,
.check-btn.active {
	background: var(--yellow);
	background-color: var(--yellow) !important;
	color: var(--white) !important;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.check-btn input:checked+label svg {
	opacity: 1;
}

.table-select-block {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--green);
}

.table-select-block .select-price {
	color: var(--green);
	font-family: 'LamaSansSemiBold';
	font-size: 30px;
	line-height: 133%;
}

/* choice section */

/* personal detail section */
.personal-detail-section {
	padding: 150px 0;
}

.personal-detail-title * {
	margin: 0;
	color: var(--black);
	font-family: 'LamaSansSemiBold';
	font-size: 40px;
	line-height: 125%;
}

.personal-detail-child-block .small-title {
	display: block;
	margin: 30px 0 0;
	color: var(--yellow);
	line-height: 133%;
}

.user-profile-block {
	width: 100px;
	height: 100px;
	margin: 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0F7C67;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.common-form-part {
	margin: 20px 0 0;
}

.common-form .form-group {
	margin-bottom: 30px;
}

.common-form .form-group .form-label {
	color: var(--black);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.common-form .form-group .form-control {
	font-family: 'MontserratAlternatesMedium';
	padding: 12px 15px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: rgba(0, 0, 0, 0.02);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.common-form .form-group .form-control:focus {
	box-shadow: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.personal-detail-main-block {
	margin: 0 -34px 0 0;
}

.radio-button-block {
	display: flex;
}

.radio-button-block>*:not(:last-child) {
	margin-right: 50px !important;
}

.radio-main-block .radio-title {
	display: block;
	color: var(--black);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 15px;
}

.radio-button-block .form-check {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.radio-button-block .form-check .form-check-input {
	width: 30px;
	height: 30px;
	border: 1px solid rgba(33, 131, 108, 0.20);
	background: rgba(33, 131, 108, 0.05);
	margin: 0 15px 0 0;
	box-shadow: none;
}

.radio-button-block .form-check .form-check-label {
	color: var(--black);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.form-check-input:checked[type=radio] {
	box-shadow: none !important;
	background: var(--green);
	background-color: var(--green);
	border-color: rgba(0, 0, 0, 0.20);;
	outline: none !important;
}

.other-option-block {
	margin: 30px 0 0;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(33, 131, 108, 0.20);
	background: rgba(33, 131, 108, 0.05);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.other-option-block .small-title {
	display: block;
	padding-bottom: 20px;
	color: var(--black);
	line-height: 133%;
	margin: 0 0 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.other-option-checkbox .form-check {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.other-option-checkbox .form-check .form-check-input {
	width: 30px;
	height: 30px;
	border: 1px solid rgba(33, 131, 108, 0.50);
	background: rgba(33, 131, 108, 0.05);
	margin: 0 15px 0 0;
	box-shadow: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.other-option-checkbox .form-check .form-check-label {
	color: var(--black);
	font-family: 'MontserratAlternatesMedium';
	font-size: 20px;
	line-height: 150%;
}

.form-check-input:checked[type=checkbox] {
	box-shadow: none !important;
	background: var(--green);
	background-color: var(--green);
	border-color: var(--green);
	outline: none !important;
}

.other-option-checkbox>*:not(:last-child) {
	margin-right: 75px;
}

.other-option-checkbox {
	display: flex;
}

.personal-detail-main-block>*:not(:last-child) {
	margin-bottom: 40px;
}

.confirm-btn-block {
	margin: 50px 0 0;
	display: flex;
	justify-content: flex-end;
}

.confirm-btn-block button {
	min-width: 217px;
	border: none;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.confirm-btn-block button:hover {
	background: var(--green);
}

.payment-method-block {
	width: 100%;
	max-width: 563px;
	margin-left: auto;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: rgba(0, 0, 0, 0.02);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.makkah-omrah-image {
	width: 100%;
	height: 330px;
}

.makkah-omrah-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.makkah-omrah-image img {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.payment-method-rating {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.payment-method-rating .small-title {
	color: var(--black);
	line-height: 133%;
}

.payment-method-info {
	margin: 30px 0 0;
}

.common-rating {
	display: flex;
	align-items: center;
	color: var(--black);
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 16px;
	line-height: 162%;
}

.common-rating figure {
	margin: -2px 10px 0 0;
}

.payment-method-date-night-stay-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.payment-method-date-night-stay-block {
	margin: 10px 0 0;
	padding-bottom: 22px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.payment-date-night-stay {
	display: flex;
}

.payment-date-night-stay>*:not(:last-child) {
	margin-right: 10px;
}

.payment-date-night-stay span {
	display: inline-flex;
	padding: 10px 15px;
	border-radius: 10px;
	color: var(--green);
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
	border: 1px solid rgba(33, 131, 108, 0.20);
	background: var(--white);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.common-image-with-title {
	display: flex;
	align-items: center;
	color: #01876E;
	font-family: 'MontserratAlternatesSemiBold';
	font-size: 24px;
	line-height: 108%;
}

.common-image-with-title figure {
	width: 36px;
	margin-right: 10px;
}

.payment-option-title {
	color: var(--black);
}

.payment-options-block {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.payment-options-block ul {
	margin: 15px 0 0;
	padding: 0;
	display: flex;
	list-style: none;
}

.payment-options-block ul li:not(:last-child) {
	margin-right: 21px;
}

.payment-method-info .makkah-availability-price {
	margin: 0 0 8px;
}

.payment-method-info .makkah-availibility-bottom {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.payment-method-info .makkah-availibility-bottom .taxes-charges-info * {
	margin: 0;
}

.subtotal-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.subtotal-block * {
	color: var(--green);
	font-family: 'MontserratAlternatesMedium';
	font-size: 18px;
	line-height: 155%;
	opacity: 0.8;
}

.subtotal-block > *:last-child{
	font-size: 20px;
	line-height: 150%;
}

.payment-confirm-btn{
	margin: 20px 0 0;
}

.payment-confirm-btn *{
	display: flex;
}

.payment-confirm-btn *:hover{
	background: var(--green);
}

.confirmation-wrp .payment-method-block{
	height: 100%;
}

.booking-tex-block{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.booking-tex-block > *:not(:last-child){
	margin-bottom: 10px;
}

.booking-tex-wrp{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.confirmation-wrp .payment-confirm-btn{
	margin: 50px 0 0;
}
/* personal detail section */

/* Add these RTL-specific styles */

/* General RTL support */
[dir="rtl"] {
    /* Reverse default directions */
    direction: rtl;
    text-align: right;
}

/* Trip card specific RTL adjustments */
[dir="rtl"] .makkah-right-block {
    /* Adjust padding/margins if any */
    padding-right: 0;
    padding-left: 0;
}

[dir="rtl"] .makkah-facelity-wrp figure {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .makkah-availibility-wrp figure {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .explore-info-date {
    text-align: right;
}

[dir="rtl"] .makkah-rating {
    margin-right: auto;
    margin-left: 0;
}

/* Fix flexbox direction for RTL */
[dir="rtl"] .makkah-right-block,
[dir="rtl"] .makkah-facelity-wrp,
[dir="rtl"] .makkah-availibility-wrp,
[dir="rtl"] .explore-info-date-detail {
    /*flex-direction: row-reverse;*/
}

/* Adjust icons and arrows if needed */
[dir="rtl"] .explore-info-date-detail .explore-info-date-center-block {
    transform: scaleX(-1);
}

[dir="rtl"] .makkah-availability-part {
    position: relative;
    width: 100%;
    margin-right: auto;
}

[dir="rtl"] .makkah-availability-child-part {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /*max-width: 285px;*/
    margin-right: auto;
    padding-top: 20px;
}
