@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/* font-family: 'Roboto', sans-serif; */

:root {
	--baseFont: 'Roboto', sans-serif;
	--baseColor: var(--black);
	--regular: 400;
	--medium: 500;
	--sBold: 700;
	--bold: 700;
	--primaryColor: #386396;
	--primaryDarkColor: #2E517A;
	--primaryLightColor: #79B6FF;
	--primaryLightBg: #3286EA;
	--secondaryColor: #CC4341;
	--secondaryHoverColor: #B93D3B;
	--secondaryDarkColor: #712524;
	--black: #000;
	--white: #fff;
	--lightColor: #4F4F4F;
	--lightBg: #EEF8FF;
	--lightGrayBg: #F8F8F8;
	--darkBg: #000;
	--border-color: #D9D9D9;
}

body {
	font-family: var(--baseFont);
	color: var(--black);
}

img {
	max-width: 100%;
}

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

a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}

.cs3ContentMdlCol.opacityFull p:not(.sLine) {
	opacity: 1;
}

.btn {
	font-size: 15px;
	font-weight: var(--bold);
	line-height: normal;
	padding: 20px 42px;
	text-transform: uppercase;
	border-radius: 40px;
	letter-spacing: 1px;
}

.btn.btn-light {
	color: var(--primaryColor);
}

.btnSecondaryDark {
	background-color: var(--secondaryDarkColor);
	color: var(--white);
}

.btnSecondaryDark:hover {
	background-color: var(--secondaryHoverColor);
	color: var(--white);
}

.btnSecondary {
	background-color: var(--secondaryColor);
	color: var(--white);
}

.btnSecondary:hover {
	background-color: var(--secondaryHoverColor);
	color: var(--white);
}

.btnSecondaryOutline {
	border: 1px solid var(--secondaryColor);
	color: var(--secondaryColor);
}

.btnSecondaryOutline:hover {
	background-color: var(--secondaryColor);
	color: var(--white);
}

.btnPrimary {
	background-color: var(--primaryColor);
	color: var(--white);
}

.btnPrimary:hover {
	background-color: var(--primaryDarkColor);
	color: var(--white);
}

.nowrap {
	white-space: nowrap;
}

.primaryColor {
	color: var(--primaryColor);
}

.primaryLightColor {
	color: var(--primaryLightColor);
}

.secondaryColor {
	color: var(--secondaryColor);
}

.primaryBg {
	background-color: var(--primaryColor);
	color: var(--white);
}

.lightBg {
	background-color: var(--lightBg);
}

.primaryLightBg {
	background-color: var(--primaryLightBg);
}

.secondaryBg {
	background-color: var(--secondaryColor);
}

.modalClose {
	position: absolute;
	right: 0px;
	top: -30px;
}

.modalClose img {
	filter: brightness(0) invert(1);
}

.headerCol {
	position: relative;
	z-index: 99;
}

/* Tab Style Start */
.tabStyle {
	background-color: #EDF3F6;
	border-radius: 5px;
}

.tabStyle .nav-tabs {
	border: 0;
}

.tabStyle .nav-tabs button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	border-radius: 5px;
	font-weight: var(--medium);
	border: 2px solid transparent;
}

.tabStyle .nav-tabs button:hover {
	border: 2px solid var(--primaryColor);
}

.tabStyle .nav-tabs button img {
	margin-bottom: 5px;
	height: 26px;
	object-fit: contain;
}

.tabStyle .nav-tabs button span {
	color: rgba(0, 0, 0, 0.8);
}

.tabStyle .nav-tabs button.active {
	background-color: transparent;
	border: 2px solid var(--primaryColor);
}

.tabStyle .nav-tabs button.active span {
	color: var(--primaryColor);
}

/* Tab Style End */
/* Menu toggle */
.menuToggle {
	position: relative;
	width: 40px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	max-width: 100%;
	/* margin-bottom: 5px; */
}

.menuToggle span {
	position: absolute;
	width: 18px;
	left: 5px;
	height: 3px;
	background-color: var(--primaryColor);
	border-radius: 10px;
	transition: 0.5s;
}

.menuToggle span:nth-child(1) {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	width: 28px;
}

.activeMenu .menuToggle span:nth-child(1) {
	width: 30px;
	-webkit-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
	-webkit-transition-delay: 0.125s;
	-o-transition-delay: 0.125s;
	transition-delay: 0.125s;
}

.menuToggle span:nth-child(2) {
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	width: 30px;
	left: 5px;
}

.activeMenu .menuToggle span:nth-child(2) {
	width: 30px;
	-webkit-transform: translateY(0) rotate(315deg);
	-ms-transform: translateY(0) rotate(315deg);
	transform: translateY(0) rotate(315deg);
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.activeMenu .menuToggle span:nth-child(3) {
	-webkit-transform: translateX(60px);
	-ms-transform: translateX(60px);
	transform: translateX(60px);
}

.activeMenu .menuToggle span {
	background-color: #fff;
}

.tagStyle {
	padding: 13px 25px;
	line-height: initial;
	color: #808080;
	font-size: 16px;
	font-weight: var(--regular);
	display: inline-block;
	border: 1px solid #E7E7E7;
	border-radius: 50px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
	text-transform: capitalize;
}

.tagCol ul li {
	margin-right: 5px;
	margin-bottom: 15px;
}

/* -- */
.lineStyle {
	position: relative;
	padding-bottom: 12px;
}

.lineStyle:before {
	content: "";
	background-color: var(--primaryLightBg);
	width: 70px;
	height: 2px;
	position: absolute;
	bottom: 0;
}

.subTitle {
	display: inline-block;
	padding: 12px 35px;
	background-color: var(--primaryDarkColor);
	color: var(--white);
	font-size: 14px;
	font-weight: var(--bold);
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: normal;
	border-radius: 30px;
	margin-bottom: 20px;
}

.subTitle.st2 {
	background-color: var(--white);
	color: var(--primaryColor);
}

.xlTitle {
	font-size: 80px;
	line-height: 1;
	font-weight: var(--bold);
}

.lgTitle {
	font-size: 36px;
	line-height: 1.25;
}

.mdTitle {
	font-size: 24px;
	line-height: 1.25;
}

.bold {
	font-weight: var(--bold);
}

.sBold {
	font-weight: var(--sBold);
}

.medium {
	font-weight: var(--medium);
}

.regular {
	font-weight: var(--reguler);
}

.listStyle li {
	color: var(--black);
	font-size: 14px;
	position: relative;
	padding-left: 35px;
}

.listStyle li+li {
	margin-top: 13px;
}

.listStyle li:before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url('../images/checkicon.svg');
	position: absolute;
	left: 0;
}

.socialIcons>li {
	display: inline-block;
	vertical-align: middle;
}

.socialIcons>li+li {
	padding-left: 40px;
}

.headerTopCol {
	background-color: var(--lightGrayBg);
	padding: 16px 0;
}

.socialIcons {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.socialIcons img,
.socialIcons a {
	display: block;
}

.socialIcons a:hover {
	opacity: 0.5;
}

.selectedLang {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	padding-right: 15px;
	cursor: pointer;
}

.selectedLang::after {
	content: "";
	position: absolute;
	right: 0;
	width: 10px;
	height: 6px;
	background-image: url('../images/angle-down.svg');
	-webkit-background-size: contain;
	background-size: contain;
}

.flagIcon img {
	display: block;
	width: 27px;
	height: auto;
	border: 1px solid rgba(0, 0, 0, 0.2);
}

.langText {
	line-height: 1;
	padding-left: 10px;
	font-size: 15px;
	font-weight: var(--medium);
}

.langDd .flagIcon,
.langDd .langText {
	display: inline-block;
	vertical-align: middle;
}

.langDd .langText {
	padding-left: 8px;
	font-size: 14px;
	font-weight: var(--medium);
}

.langDd {
	background-color: #fff;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	position: absolute;
	right: 0;
	top: calc(100% + 15px);
	padding: 15px;
	border-radius: 4px;
	min-width: 100px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	z-index: 5;
}

.langDdCol.actLangDD .langDd {
	opacity: 1;
	pointer-events: initial;
}

.langDdCol {
	position: relative;
}

.langDd a {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	text-decoration: none;
}

.langDd a:hover {
	color: var(--primaryColor);
	opacity: 0.7;
}

.langDd>li+li {
	margin-top: 10px;
}

.langDd .flagIcon img {
	width: 24px;
	border: 1px solid rgba(0, 0, 0, 0.2);
}



.headerBtmCol {
	/* padding: 40px 0; */
}

.navigationCol {
	color: #808080;
	font-size: 14px;
}

.navigationCol>ul>li {
	display: inline-block;
	position: relative;
}

.mbDDTrigger img,
.mbSDDTrigger img {
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}

.actDD .mbDDTrigger img,
.sDDColMain.actSDD .mbSDDTrigger img {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.navigationCol>ul>li+li>a {
	padding-left: 10px;
}

.navigationCol>ul>li>a {
	display: block;
	text-transform: uppercase;
	color: inherit;
	font-weight: var(--medium);
	padding-top: 50px;
	padding-bottom: 50px;
	-webkit-transition: color 300ms ease-in-out 0s;
	-o-transition: color 300ms ease-in-out 0s;
	transition: color 300ms ease-in-out 0s;
}

li.ddCol>a {
	padding-right: 20px;
	position: relative;
}

.navigationCol>ul>li:hover>a,
.ddMenuList a:hover {
	color: var(--primaryColor);
}

.ddMenuCol {
	background-color: #fff;
	border-top: 1px solid #d9e7ee;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

li.ddCol:hover .ddMenuCol {
	opacity: 1;
	pointer-events: initial;
}

.ddMenuList a {
	display: block;
	padding: 12px 15px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1;
	color: inherit;
	font-weight: var(--medium);
}

.ddMenuList>li+li {
	border-top: 1px solid var(--border-color);
}

.menuTitle {
	display: block;
	font-size: 16px;
	font-weight: var(--medium);
	color: var(--primaryColor);
	border-bottom: 2px solid var(--border-color);
	padding-bottom: 5px;
	position: relative;
}

.mbDDTrigger,
.mbSDDTrigger {
	position: absolute;
	right: 0;
	top: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 50px;
	cursor: pointer;
	/* background-color: rgba(0,0,0,0.05); */
	z-index: 1;
	padding: 0 20px;
}





.bannerSection {
	padding: 70px 0;
	background-color: var(--primaryColor);
	color: var(--white);
}

.bannerContent>.xlTitle {
	padding: 5px 0 25px;
}

.bannerContent p {
	font-size: 22px;
	line-height: 1.36;
}

.bannerContent>p+a {
	margin-top: 35px;
}

.bannerContent {
	max-width: 538px;
}

.bannerFormCol {
	width: 600px;
	--radius: 20px;
	border-radius: var(--radius);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.bannerFormHeader {
	background-color: var(--secondaryHoverColor);
	color: var(--white);
	text-align: center;
	padding: 20px 15px 15px;
	border-radius: var(--radius) var(--radius) 0 0;
}

.bannerFormBody {
	padding: 35px 40px;
	background-color: var(--secondaryColor);
	color: var(--white);
	border-radius: 0 0 var(--radius) var(--radius);
}

.bannerFormHeader>p:last-child {
	margin-bottom: 5px;
}



.formFldCol {
	position: relative;
}

.fldIcon {
	position: absolute;
	left: 6px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	padding: 4px;
	pointer-events: none;
}

.formStyle .form-control {
	height: 48px;
	padding: 5px 20px;
	border-radius: 30px;
	border: none;
	font-size: 14px;
}

.form-style .form-control::placeholder {
	color: #808080;
}

.formStyle .form-control.iconFld {
	padding-left: 57px;
}

.date-selector-wrapper {
	min-width: 250px;
	z-index: 1000;
}

.incServices {
	padding: 10px 0 5px;
}

.incServtitle {
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: var(--bold);
	padding-bottom: 12px;
}

.checkList>li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	margin-bottom: 10px;
}

.checkList>li::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background-image: url('../images/s-check.svg');
	left: 0;
	top: 2px;
	background-repeat: no-repeat;
	background-size: contain;
}

.incServices .checkList li {
	display: inline-block;
	width: 32%;
	vertical-align: top;
}

.incServices .checkList.checkStyleHalf li {
	width: 49%;
}


.sectionSpace {
	padding: 120px 0;
}

.sectionSpaceMd {
	padding-top: 70px;
	padding-bottom: 70px;
}

.tbsImg {
	display: inline-block;
	position: relative;
	padding-left: 100px;
	padding-right: 100px;
	margin-top: 20px;
}

.tbsImg img {
	width: 30px;
}

.tbsImg::before,
.tbsImg::after {
	content: "";
	position: absolute;
	border-top: 1px solid var(--border-color);
	width: 80px;
	top: 50%;
}

.tbsImg::before {
	left: 0;
}

.tbsImg::after {
	right: 0;
}

.titleCol {
	padding-bottom: 70px;
}

.cs1ImgCol img {
	width: 100%;
	height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: var(--cs1radius);
}

.cs1ContentCol {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 22px 10px;
	text-align: center;
}

.cs1ContentCol::before {
	content: "";
	position: absolute;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -30px;
	background-color: var(--black);
	z-index: -1;
	-webkit-filter: blur(60px);
	filter: blur(60px);
}

.cs1Title {
	display: block;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	font-weight: var(--bold);
	letter-spacing: 1px;
}

.blankLink {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
}

/******** CardStyle5 Css Start *******/
.cardStyle5 {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 20px;
	margin-bottom: 15px;
}

.cardStyle5 h3 {
	font-size: 16px;
	color: var(--black);
	text-transform: capitalize;
	margin-bottom: 0;
	padding-bottom: 5px;
	font-weight: normal;
}

.cardStyle5 p {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 0;
}

/******** CardStyle5 Css End *******/
/******** OverviewSlider Css Start *******/
.cs2ImgCol img {
	width: 100%;
	object-fit: cover;
	height: 690px;
	border-radius: 30px 0 0 0;
}

.overviewSlider {
	position: relative;
}

/******** OverviewSlider Css End *******/
/******** NavStyle 1 Css Start *******/
.navStyle1 {
	display: flex;
	align-items: center;
}

.navStyle1 .navTrigger {
	position: initial;
	width: 50px;
	height: 50px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	background-color: var(--primaryColor);
}

.navStyle1 .navTrigger+.navTrigger {
	margin-left: 12px;
}

.navStyle1 .navTrigger:after {
	display: none;
}

.sStyle2 .posBtmRight {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 4;
}

/******** NavStyle 1 Css End *******/
/******** CardStyle4 Css Start *******/
.cardStyle4 {
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	padding: 45px 30px;
	height: 100%;
	border-radius: 30px 0 0 0;
}

.cardStyle4 .cardIcon {
	min-height: 80px;
	margin-bottom: 35px;
}

.cardStyle4 .cardDesc h3 {
	color: var(--black);
	font-size: 20px;
	font-weight: var(--sBold);
	margin-bottom: 15px;
}

.cardStyle4 .cardDesc p {
	font-size: 16px;
	margin-bottom: 0;
	color: var(--lightColor);
}

/******** CardStyle4 Css End *******/
.cardStyle1 {
	--cs1radius: 15px;
	position: relative;
	border-radius: var(--cs1radius);
	overflow: hidden;
}

.cardStyle1.cs1LgCard {
	--cs1radius: 0px;
}

.cardStyle1.cs1LgCard.tlRadius {
	border-top-left-radius: 30px;
}

.cardStyle1.cs1LgCard.brRadius {
	border-bottom-right-radius: 30px;
}

.cs1LgCard .cs1ImgCol img {
	height: 650px;
}

.cs1LgCard .cs1ContentCol {
	padding: 22px 15px 50px;
}

.cs1LgCard .cs1ContentCol::before {
	opacity: 0.8;
}

.cs1LgCard .cs1Title {
	font-size: 22px;
}

.cs1ImgCol img {
	-webkit-transition: transform 800ms ease-in-out 0s;
	-o-transition: transform 800ms ease-in-out 0s;
	transition: transform 800ms ease-in-out 0s;
}

.cardStyle1:hover .cs1ImgCol img {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
}

.sStyle1 {
	position: relative;
	padding: 0 40px;
}

.mxWdContentCol {
	max-width: 395px;
}

.contentCol p {
	font-size: 18px;
}

.sStyle1 .swiper-button-next,
.sStyle1 .swiper-rtl .swiper-button-prev {
	right: 0;
}

.sStyle1 .swiper-button-prev,
.sStyle1 .swiper-rtl .swiper-button-next {
	left: 0;
}

.whyChooseRightCol {
	width: 725px;
	max-width: 100%;
}

.cardStyle2 {
	background-color: var(--white);
	padding: 30px;
	border-radius: 30px 0 0 0;
	height: 100%;
	text-align: center;
	color: var(--black);
}

.cs2IconCol {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	justify-content: center;
	height: 130px;
	padding-bottom: 35px;
}

.cs2IconCol img {
	max-width: 100px;
	max-height: 80px;
	-o-object-fit: contain;
	object-fit: contain;
}

.cs2ContentCol p {
	color: var(--lightColor);
}

.cs2CardTitle {
	display: block;
	font-size: 20px;
	font-weight: var(--medium);
	line-height: 1.2;
	margin: 0 auto 15px;
	max-width: 210px;
}

.cs2ContentCol>p:last-child {
	margin-bottom: 10px;
}

.sStyle1 .swiper-button-next,
.sStyle1 .swiper-button-prev {
	--swiper-theme-color: #C9C9C9;
}

.airlineSwiper {
	text-align: center;
}

.airlineLogoCol {
	display: inline-block;
}

.airlineSwiper .swiper-slide {
	width: auto;
}

.airlineSwiper .swiper-wrapper {
	-ms-align-items: center;
	align-items: center;
}

.sNotificationStyle {
	padding-bottom: 80px;
}

.sNotificationStyle .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--secondaryColor);
}

.sNotificationStyle .swiper-pagination-bullet {
	background: #D9D9D9;
	opacity: 1;
}

.airlineLogoCol {
	display: inline-block;
	padding: 0 30px;
}

.airlineLogoCol img {
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.airlineLogoCol img:hover {
	-webkit-filter: none;
	filter: none;
}

/* before after image start */
.beforeAfterImgCol {
	width: 730px;
	max-width: 100%;
	position: relative;
	--position: 50%;
	overflow: hidden;
	border-radius: 30px 0 0 0;
}

.slider-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: left;
	object-position: left;
}

.image-before {
	position: absolute;
	inset: 0;
	width: var(--position);
}

.slider {
	position: absolute;
	inset: 0;
	cursor: pointer;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.slider:focus-visible~.slider-button {
	outline: 5px solid black;
	outline-offset: 3px;
}

.slider-line {
	position: absolute;
	inset: 0;
	width: 2px;
	height: 100%;
	background-color: #fff;
	left: var(--position);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}

.slider-button {
	position: absolute;
	background-color: #fff;
	color: black;
	padding: .5rem;
	border-radius: 100vw;
	display: grid;
	place-items: center;
	top: 50%;
	left: var(--position);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.beforeAfterImgCol::before,
.beforeAfterImgCol::after {
	position: absolute;
	bottom: 15px;
	z-index: 5;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 6px 12px;
	background-color: rgba(0, 0, 0, 0.5);
	line-height: normal;
	pointer-events: none;
	color: var(--white);
}

.beforeAfterImgCol::before {
	content: "Before";
	left: 15px;
}

.beforeAfterImgCol::after {
	content: "After";
	right: 15px;
}

/* before after image close */


.shapeBgCol {
	position: relative;
	overflow: hidden;
}

.leftTopShape {
	position: absolute;
	left: 0;
	top: 0;
}

.rightBtmShape {
	position: absolute;
	right: 0;
	bottom: 0;
}

.counterColMain {
	text-align: center;
}

.countText {
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
}

.countLbl {
	display: block;
	font-weight: var(--medium);
	padding: 15px 0 10px;
	letter-spacing: 0.5px;
	opacity: 0.8;
}

.counterCol {
	position: relative;
	z-index: 1;
	padding: 0 15px 15px;
	min-width: 250px;
	display: inline-block;
}

.counterCol::before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	bottom: 0;
	top: 25px;
	border-width: 0 1px 1px;
	border-radius: 20px;
	border-style: none solid solid;
	border-color: transparent var(--primaryColor) var(--primaryColor);
}


.footerSection {
	background-color: var(--primaryColor);
	color: var(--white);
	position: relative;
	z-index: 1;
}

.footerContactInfo {
	--fcRadius: 15px;
	border-radius: 15px;
	overflow: hidden;
}

.contactInfoCol {
	text-align: center;
	background-color: var(--primaryLightBg);
	padding: 30px 30px 35px;
	color: var(--white);
	font-size: 22px;
	line-height: 1.4;
	font-weight: var(--medium);
	height: 100%;
}

.contactInfoCol a {
	color: inherit;
}

.contactInfoCol a:hover {
	color: inherit;
	opacity: 0.7;
}

.contactInfoCol.secondaryBg {
	background-color: var(--secondaryColor);
}

.cInfoTitle {
	display: block;
	font-size: 18px;
	font-weight: var(--bold);
	padding: 20px 0 15px;
}

.cInfoIcon img {
	height: 45px;
}

.footerTopCol {
	position: relative;
	z-index: 2;
}

.footerTopCol::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -2px;
	height: 50%;
	background-color: var(--white);
	z-index: -1;
}

.footerMiddleCol {
	padding: 60px 0;
	color: #B7C7D9;
}

.footerMiddleCol a:hover {
	color: var(--white);
}

.footerLeftCol {
	max-width: 540px;
	padding-right: 150px;
}

.footerTitle {
	font-size: 18px;
	font-weight: var(--medium);
	text-transform: uppercase;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
	padding-top: 30px;
	color: var(--white);
}

.footerTitle::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	background-color: var(--primaryLightBg);
	height: 2px;
	background-color: var(--white);
}

.footerAboutCol {
	padding-bottom: 20px;
}

.iconList>li+li {
	margin-top: 20px;
}

.listIcon img {
	width: auto;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
}

.listIcon {
	width: 45px;
	padding-right: 10px;
}

.footerLinks>li>a {
	position: relative;
	padding-left: 20px;
}

.footerLinks>li>a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 7px;
	height: 11px;
	background-image: url('../images/angle-right-light.svg');
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	opacity: 0.8;
	-webkit-transition: opacity 300ms ease-in-out 0s;
	-o-transition: opacity 300ms ease-in-out 0s;
	transition: opacity 300ms ease-in-out 0s;
}

.footerLinks>li>a:hover::before {
	opacity: 1;
}

.footerLinks>li+li {
	margin-top: 15px;
}

.socialLinks li {
	display: inline-block;
	vertical-align: middle;
	padding: 5px;
}

.socialLinks a {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--white);
}

.socialLinks a:hover {
	opacity: 0.7;
}

.copyrightCol {
	background-color: var(--white);
	color: var(--baseColor);
	padding: 35px 0;
	text-align: center;
}

.copyrightCol p {
	margin-bottom: 0;
	opacity: 0.8;
}


/* contact page start */
.innerPageBanner {
	padding: 45px 0;
	background-color: var(--primaryColor);
	color: var(--white);
}

.pageTitle {
	font-size: 60px;
	font-weight: bold;
	line-height: 1.3;
}

.breadcrumbCol .breadcrumb-item img {
	display: block;
}

.breadcrumbCol .breadcrumb-item {
	--bs-breadcrumb-item-active-color: var(--white);
	--bs-breadcrumb-divider-color: var(--white);
	font-size: 14px;
}

.breadcrumbCol .breadcrumb-item a {
	color: var(--white);
}

.breadcrumbCol {
	padding-top: 10px;
}

.contactFomrCol {
	width: 580px;
}

.formStyle2 .form-control {
	height: 55px;
	border-radius: 30px;
	padding: 10px 25px;
	font-size: 14px;
	border-color: #E7E7E7;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.formStyle2 textarea.form-control {
	padding-top: 20px;
	height: 110px;
	border-radius: 50px;
	resize: none;
}

.row.gy-form {
	--bs-gutter-y: 25px;
}

.contactRightCol {
	max-width: 620px;
	margin-left: auto;
	background-color: var(--lightBg);
	padding: 50px 20px;
	border-radius: 20px;
}

.crInnerCol {
	max-width: 320px;
	margin: 0 auto;
}

.contactImgCol {
	padding-bottom: 50px;
}

/* contact page close */


/************ Faq Css Start ***********/
.accordionStyle .accordion-item {
	border: 1px solid #E7E7E7;
	border-radius: 10px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.accordionStyle .accordion-item+.accordion-item {
	margin-top: 30px;
}

.accordionStyle .accordion-item .accordion-header button.accordion-button {
	background-color: transparent;
	color: var(--black);
	font-weight: var(--sBold);
	font-size: 20px;
	padding: 30px 66px 34px 34px;
	box-shadow: none;
	position: relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.accordionStyle .accordion-item .accordion-header button.accordion-button.collapsed {
	color: var(--black);
}

.accordionStyle .accordion-item .accordion-header button.accordion-button {
	color: var(--primaryColor);
}

.accordionStyle .accordion-item .accordion-header button.accordion-button.collapsed:after {
	background-color: #EFEFEF;
}

.accordionStyle .accordion-item .accordion-header button.accordion-button:after {
	--tPosition: 22px;
	content: "";
	width: 34px;
	height: 32px;
	background-color: var(--primaryColor);
	border-radius: 4px;
	right: var(--tPosition);
	position: absolute;
	top: 27px;
	transform: initial;
	background-image: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.accordionStyle .accordion-item .accordion-header button.accordion-button.collapsed:before {
	background-image: url('../images/plusicon.svg');
	width: 16px;
	height: 16px;
	top: 35px;
}

.accordionStyle .accordion-item .accordion-header button.accordion-button:before {
	--iconPosition: 31px;
	content: "";
	background-image: url('../images/minusicon.svg');
	position: absolute;
	right: var(--iconPosition);
	width: 16px;
	height: 2px;
	z-index: 8;
	background-size: 100%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	top: 41px;
}

.accordionStyle .accordion-item .accordion-body {
	color: var(--black);
	font-size: 18px;
	line-height: 26px;
	padding: 0 34px 34px;
}

/************ Faq Css End ***********/
/************ About Css Start ***********/
.maxWidAbout {
	max-width: 560px;
}

.aboutImg {
	width: 100%;
	position: relative;
	height: 510px;
}

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

.aboutImg:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
}

.playTrigger {
	position: absolute;
	width: 112px;
	height: 112px;
	border-radius: 50%;
	background-color: var(--secondaryColor);
	z-index: 9;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.playTrigger img {
	width: auto;
	height: auto;
}

.videoModalStyle .modal-body {
	padding: 0;
}

/************ About Css End ***********/

/* plastic-surgery page start */
.sLine {
	font-size: 20px;
	font-weight: var(--medium);
	color: var(--primaryColor);
}

.cs3ContentMdlCol p:not(.sLine) {
	font-size: 18px;
	line-height: 1.44;
	opacity: 0.5;
}

.cs3ContentCol {
	--sPadding: 40px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	padding-right: var(--sPadding);
	max-width: 555px;
	position: relative;
}

.cBorder {
	position: absolute;
	border: 2px solid #d9e7ee;
	border-left: none;
	left: 0;
	right: 0;
	top: 20px;
	bottom: 20px;
	pointer-events: none;
}

.cs3ContentTopCol,
.cs3ContentBtmCol {
	position: relative;
	z-index: 5;
}

.cs3ContentCol:before,
.cs3ContentCol:after {
	content: '';
	position: absolute;
	background-color: transparent;
	top: 20px;
	bottom: 20px;
	right: 0px;
	left: 0px;
	border-right: 2px solid var(--secondaryColor);
	border-left: 0;
	margin: auto;
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: 2;
	-webkit-transition: transform 0.5s ease-in;
	-o-transition: transform 0.5s ease-in;
	transition: transform 0.5s ease-in;
	pointer-events: none;
}

.cs3ContentCol:before {
	-webkit-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.cs3ContentCol:after {
	-webkit-transform-origin: right center;
	-moz-transform-origin: right center;
	-ms-transform-origin: right center;
	-o-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	border-right: 0;
	border-top: 2px solid var(--secondaryColor);
	border-bottom: 2px solid var(--secondaryColor);
	-webkit-transition: transform 0.5s linear;
	-o-transition: transform 0.5s linear;
	transition: transform 0.5s linear;
	pointer-events: none;
}

.cardStyle3:hover .cs3ContentCol:before,
.cardStyle3:hover .cs3ContentCol:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.cardStyle3:hover .cs3ContentCol:before {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

.cardStyle3:hover .cs3ContentCol:after {
	-webkit-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.cs3TopInnerCol,
.cs3BtmInnerCol {
	display: inline-block;
	background-color: var(--white);
	padding-right: 20px;
}

.cs3ContentBtmCol {
	margin-top: auto;
}

.cardStyle3 {
	margin: 0 auto;
	max-width: 1000px;
}

.cs3ImgCol {
	width: 395px;
	height: 100%;
}

.cs3ImgCol img {
	border-radius: 30px 0 0 0;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* plastic-surgery page close */

/* Service Detail page Start */
.sidebarCol {
	width: 455px;
}

.detailMain {
	max-width: 750px;
}

.bannerFormBody.sidebarForm {
	padding: 0;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.bannerFormBody.sidebarForm .formTop {
	padding: 20px 35px 5px;
	background-color: var(--secondaryHoverColor);
	border-radius: 20px 20px 0 0;
}

.bannerFormBody.sidebarForm .sidebarFormInner {
	padding: 30px 35px;
}

/* Service Detail page close */
/* About page Start */
.aboutCol {
	margin-bottom: 70px;
}

/* About page End */
.cardStyle6 {
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cardStyle6 .cardHeader {
	background-color: var(--primaryColor);
	padding: 15px 40px;
	border-radius: 10px 10px 0 0;
}

.cardStyle6 .cardHeader h3 {
	color: #fff;
	margin: 0;
}

.cardStyle6 .cardDesc ul li {
	padding: 17px 40px;
}

.cardStyle6 .cardDesc ul li:nth-child(even) {
	background-color: #EDF3F6;
}

.cardStyle6 .cardDesc ul li .cardIcon {
	width: 36px;
	height: 36px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.cardStyle6 .cardDesc ul li .cardIcon img {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.cardStyle6 .cardDesc ul li .cardTitle {
	font-size: 18px;
	font-weight: var(--sBold);
	color: var(--primaryColor);
	width: 190px;
	display: block;
}

.cardStyle6 .cardDesc ul li .cardInfo {
	font-size: 18px;
	color: rgba(0, 0, 0, 0.8);
}

/* List Style 2 Start */
.listStyle2>li>a {
	position: relative;
	padding: 25px 30px 25px 80px;
	font-size: 20px;
	font-weight: var(--sBold);
	border: 1px solid #E7E7E7;
	border-radius: 10px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
	display: block;
}

.listStyle2>li>a:hover {
	color: var(--secondaryColor);
}

.listStyle2>li+li {
	margin-top: 20px;
}

.listStyle2>li>a:before {
	content: "";
	position: absolute;
	width: 34px;
	height: 32px;
	border-radius: 4px;
	left: 22px;
	background-color: var(--secondaryColor);
	background-image: url('../images/infoicon.svg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 6px 14px;
	background-size: 6px 14px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* List Style 2 End */
/* Search Start */
.searchForm {
	margin-top: 80px;
}

.searchformInner {
	position: relative;
}

.searchformInner input {
	width: 100%;
	background-color: var(--primaryColor);
	border-radius: 50px;
	height: 60px;
	font-size: 14px;
	color: #fff;
	border: 0;
	font-weight: var(--regular);
	padding: 10px 70px 10px 30px;
}

.searchformInner input:focus {
	border: 0;
	outline: none;
	box-shadow: none;
}

.searchformInner input::placeholder {
	color: #fff;
}

.searchformInner button {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: transparent;
	border: 0;
	padding: 0 24px;
}

/* Search End */




/* blog page style */

.cardStyle7 {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 15px 0 15px 15px;
	height: 100%;
}

.cs7ImgCol {
	height: 400px;
	width: 100%;
	overflow: hidden;
	border-radius: 15px 0 0 0;
}

.cs7ImgCol img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 800ms ease-in-out 0s;
	-o-transition: all 800ms ease-in-out 0s;
	transition: all 800ms ease-in-out 0s;
}

.cardStyle7:hover .cs7ImgCol img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.cs7ContentCol {
	padding: 30px 20px 40px;

}

.cs7ContentCol h4 {
	font-size: 24px;
	line-height: 1.25;
}

.cs7ContentCol h4 a:hover {
	color: var(--secondaryColor);
}

.bDateTime {
	font-size: 14px;
	opacity: 0.8;
	padding: 10px 0 20px;
}

.cs7ContentCol p {
	font-size: 18px;
	line-height: 1.44;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cs7ContentCol p+a.btn {
	margin-top: 15px;
}

.loadMoreBtnCol {
	padding-top: 60px;
}

/* Blog page close */

/* blog detail Page start */
.blogDtlImgCol img {
	border-radius: 15px 0 0 0;
	width: 100%;
}

.blogDtlImgCol+.blogDetailContent {
	padding-top: 30px;
}

.dDetailTitleCol {
	padding-bottom: 20px;
}

.commentLink {
	font-size: 14px;
	color: var(--primaryColor);
}

.blogDetailContent p {
	font-size: 18px;
	line-height: 1.66;
}

.hltText {
	padding: 10px 50px;
	border-left: 2px solid var(--primaryLightBg);
	color: var(--primaryColor);
}

.blogDetailContent+.commentColMain {
	border-top: 1px solid var(--border-color);
	padding-top: 40px;
	margin-top: 40px;
}

.btn.btnSm {
	font-size: 14px;
	text-transform: capitalize;
	font-weight: normal;
	padding: 5px 15px 6px;
}

.commentImgCol img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 5px 0 0 0;
}

.cContentCol {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	min-height: 110px;
}

.ndCol {
	opacity: 0.8;
	font-size: 14px;
}

.achievesList .tagStyle {
	display: block;
	padding: 15px 20px;
	position: relative;
}

.achievesList .tagStyle .acNumber {
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.achievesList .tagStyle:hover {
	color: var(--secondaryColor);
}

.achievesList>li+li {
	margin-top: 15px;
}

/* blog detail page close */

/* hotel page start */
.filterCol {
	width: 280px;
	margin-right: 20px;
	background-color: var(--lightBg);
	border-radius: 6px;
	overflow: hidden;
}

.filterTitle {
	padding: 20px 18px;
	position: relative;
	background-color: #DBECF9;
}

.smTitle {
	font-size: 20px;
	font-weight: var(--sBold);
	letter-spacing: 0.5px;
}

.filterBody {
	padding: 25px 15px;
}

.xsTitle {
	font-size: 16px;
	font-weight: var(--sBold);
	letter-spacing: 0.5px;
}

.filterCheckList {
	font-size: 15px;
}

.filterCheckList .form-check-label,
.filterCheckList .filterCount {
	opacity: 0.8;
}

.filterCheckList>li+li {
	margin-top: 5px;
}

.form-check-input:checked {
	background-color: var(--primaryColor);
	border-color: var(--primaryColor);
}

.starIcon {
	width: 17px;
}

.starIcon,
.starIcon+span {
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
}

.starIcon img {
	display: block;
}

.starRating li {
	display: inline-block;
	vertical-align: middle;
}

.starRating img {
	display: block;
}

.locationText {
	font-size: 20px;
	font-weight: var(--sBold);
	color: var(--primaryColor);
}

.hotelCard .cs3ContentMdlCol p:not(.sLine) {
	opacity: 0.8;
}

.hotelCard .cs3ContentMdlCol p {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cardStyle3.hotelCard {
	max-width: 100%;
}

.cardStyle3.hotelCard .cs3ContentCol {
	max-width: calc(100% - 10px);
}

.filterTriggerCol {
	background-color: var(--lightBg);
	padding: 15px 15px;
	border-radius: 5px;
	font-size: 20px;
	font-weight: var(--bold);
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primaryColor);
	position: relative;
}

/* hotel page close */

/* hotel detail page start */
.hotelDetailSliderCol {
	width: 750px;
}

.detailSliderImgCol img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 490px;
	border-radius: 30px 0 0 0;
}

.revCount,
.revStatus {
	font-size: 14px;
}

.revStatus {
	font-weight: var(--sBold);
}

.vgStatus {
	color: #007F0C;
}

.hDetailCol>ul>li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px 5px;
}

.hDetailCol {
	margin-top: 20px;
}

.detailRightCol {
	padding-left: 10px;
}

.dtlCardIcon {
	width: 24px;
	display: block;
}

.dtlCardTitle {
	font-weight: var(--medium);
	color: var(--primaryColor);
	width: 95px;
	display: block;
}

.dtlCardInfo {
	font-size: 15px;
	opacity: 0.8;
}

.sectionSpaceSm {
	padding: 40px 0;
}

.photoStyleCol {
	position: relative;
}

.photoStyle {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
}

.photo1 .photoStyle {
	height: 490px;
}

.photo2 .photoStyle {
	height: 240px;
}

.photo3 .photoStyle {
	height: 234px;
}

.morePhotoTrigger {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.btn.morePhotoTrigger {
	font-size: 14px;
	padding: 14px 25px;
}

.ratedText {
	background-color: var(--primaryColor);
	color: var(--white);
	display: inline-block;
	border-radius: 4px;
	padding: 4px 8px;
	font-weight: bold;
	font-size: 14px;
}

/* hotel detail page close */

/* clinic detail page start */
.clinicDetailLeftCol {
	max-width: 750px;
}

.sidebarCol.sticky-top {
	top: 10px;
	z-index: 9;
}

/* clinic detail page close */
.lightbox .carousel-item img {
	max-width: 100%;
	max-height: calc(100vh - var(--bs-modal-margin) * 2);
	-o-object-fit: contain;
	object-fit: contain;
}

.lightbox .modal-body {
	background-color: rgba(0, 0, 0, 0.8);
	width: auto;
	margin: 0 auto;
}

.lightbox .btn-close {
	background-color: #fff;
	padding: 7px !important;
	border-radius: 0;
	opacity: 0.8;
	margin-right: 5px;
	margin-top: 5px;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}

.lightbox .btn-close:hover {
	opacity: 1;
}

.lightbox .carousel-control-next,
.lightbox .carousel-control-prev {
	width: 40px;
	height: 45px !important;
	background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width:1200px) {
	.ddMenuCol {
		min-width: 240px;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}

	li.ddCol:hover .ddMenuCol {
		opacity: 1;
		pointer-events: initial;
	}

	.ddMenuCol.mDDMenu {
		min-width: 800px;
		padding: 15px 30px 10px;
	}

	.ddMenuCol {
		position: absolute;
		left: 0;
		top: 100%;
	}

	.ddMenuCol,
	.sddMenuCol {
		display: block !important;
	}

	.ddMenuList a {
		white-space: nowrap;
	}

	li.ddCol>a::before {
		content: "";
		width: 9px;
		height: 5px;
		position: absolute;
		right: 5px;
		top: 50%;
		background-image: url('../images/angle-down.svg');
		-webkit-background-size: contain;
		background-size: contain;
		background-position: center;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.navigationCol>ul>li.ddCol:hover>a::before {
		-webkit-transform: translateY(-50%) rotate(180deg);
		-ms-transform: translateY(-50%) rotate(180deg);
		transform: translateY(-50%) rotate(180deg);
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}

	.ddMenuList a:hover {
		-webkit-transform: translateX(5px);
		-ms-transform: translateX(5px);
		transform: translateX(5px);
	}

	.ddMenuCol.mDDMenu .ddMenuList a {
		padding-left: 0;
		padding-right: 0;
	}

	.mbDDTrigger,
	.mbSDDTrigger {
		display: none;
	}

}

@media (max-width:1399px) {
	.sidebarCol {
		width: 365px;
	}

	.bannerFormBody.sidebarForm .sidebarFormInner {
		padding: 20px 15px;
	}

	.bannerFormBody.sidebarForm .formTop {
		padding: 15px 15px 1px;
		border-radius: 10px 10px 0 0;
	}

	.detailMain {
		max-width: 720px;
	}

	.navigationCol {
		font-size: 11px;
	}

	.logoCol {
		width: 130px;
	}

	.navigationCol>ul>li>a {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.xlTitle {
		font-size: 66px;
	}

	.lgTitle {
		font-size: 32px;
	}

	.bannerContent p {
		font-size: 20px;
	}

	.bannerContent {
		max-width: 460px;
	}

	.bannerFormBody {
		padding: 25px 25px;
	}

	.bannerFormCol {
		width: 580px;
	}

	.sectionSpace {
		padding: 100px 0;
	}

	.titleCol {
		padding-bottom: 50px;
	}

	.tbsImg {
		margin-top: 10px;
	}

	.cs1Title {
		font-size: 15px;
	}

	.cs1ImgCol img {
		height: 320px;
	}

	.beforeAfterImgCol {
		width: 600px;
	}

	.countText {
		font-size: 60px;
	}

	.cs1LgCard .cs1ImgCol img {
		height: 560px;
	}

	.contactInfoCol {
		font-size: 20px;
	}

	.footerLeftCol {
		max-width: 400px;
		padding-right: 30px;
	}

	.socialLinks a {
		width: 44px;
		height: 44px;
	}

	.pageTitle {
		font-size: 50px;
	}

	.innerPageBanner {
		padding: 35px 0;
	}

	.breadcrumbCol {
		padding-top: 0;
	}

	.contactFomrCol {
		width: 480px;
	}

	.contactRightCol {
		max-width: 520px;
	}

	.mapCol iframe {
		height: 450px;
	}

	.cardStyle4 .cardDesc h3 br {
		display: none;
	}

	.cardStyle6 .cardDesc ul li {
		padding: 15px 20px;
	}

	.cardStyle6 .cardHeader {
		padding: 15px 20px;
	}

	.cardStyle6 .cardDesc ul li .cardIcon {
		width: 26px;
		height: 26px;
	}

	.cardStyle6 .cardDesc ul li .cardTitle {
		font-size: 16px;
	}

	.cs7ContentCol h4 {
		font-size: 22px;
	}

	.cs7ImgCol {
		height: 350px;
	}

	.tagStyle {
		padding: 12px 20px;
		font-size: 14px;
	}

	.blogDetailContent p {
		font-size: 16px;
	}

	.hltText {
		padding: 10px 30px;
	}

	.hotelCard .cs3ContentMdlCol p:not(.sLine) {
		font-size: 16px;
	}

	.filterCol {
		margin-right: 0;
	}

	.cardStyle3.hotelCard .cs3ContentCol {
		max-width: 100%;
	}

	.hotelDetailSliderCol {
		width: 600px;
	}

	.clinicDetailLeftCol {
		max-width: 710px;
	}

	.cs2ImgCol img {
		height: 640px;
	}

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

	.sidebarForm .formTop p {
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.sidebarForm .row.g-3>* {
		--bs-gutter-y: 0.5rem;
	}

	.sidebarForm .incServtitle {
		padding-bottom: 5px;
	}

	.sidebarForm .incServices {
		padding: 5px 0 5px;
	}

	.checkList>li {
		margin-bottom: 8px;
	}
}


@media (max-width:1199px) {
	.detailMain {
		max-width: initial;
	}

	.sidebarCol {
		width: initial;
	}

	html.activeMenu {
		overflow: hidden;
	}

	.cardStyle4 .cardDesc h3 {
		font-size: 16px;
	}

	.cardStyle4 .cardDesc p {
		font-size: 14px;
	}

	.cardStyle4 {
		box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
		padding: 35px 15px;
		height: 100%;
		border-radius: 30px 0 0 0;
	}

	.accordionStyle .accordion-item .accordion-header button.accordion-button.collapsed:before {
		top: 22px;
	}

	.accordionStyle .accordion-item .accordion-header button.accordion-button:before {
		top: 29px;
	}

	.menuBackdrop {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.8);
		pointer-events: none;
		opacity: 0;
	}

	.menuColMain {
		z-index: 99;
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		overflow-y: auto;
		background-color: var(--primaryColor);
		width: 290px;
		padding: 10px 0;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}

	.activeMenu .menuColMain {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.activeMenu .menuBackdrop {
		pointer-events: initial;
		opacity: 1;
	}

	.navigationCol>ul>li {
		display: block;
	}

	.navigationCol>ul>li+li {
		border-top: 1px solid rgba(165, 192, 224, 0.5);
	}

	.navigationCol>ul>li>a {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.navigationCol>ul>li>a,
	.navigationCol>ul>li+li>a {
		padding-left: 15px;
	}

	.navigationCol>ul>li:hover>a,
	.ddMenuList a:hover {
		color: var(--white);
	}

	.menuTitle {
		padding: 16px 20px;
		font-size: 16px;
		line-height: 1;
		border-bottom: none;
		color: #fff;
	}

	.ddMenuList>li+li {
		border-top-color: rgba(165, 192, 224, 0.5);
	}

	.navigationCol {
		font-size: 14px;
		color: #fff;
	}

	.ddMenuCol {
		background-color: #4579B8;
		box-shadow: none;
		border-top: none;
		display: none;
	}

	.ddMenuList a {
		padding: 15px 10px 15px 20px;
		font-size: 13px;
	}

	.headerBtmCol {
		padding: 20px 0;
	}

	.sddMenuCol {
		display: none;
	}

	.ddMenuCol.mDDMenu>div>div+div {
		border-top: 1px solid rgba(165, 192, 224, 0.5);
	}

	.accordionStyle .accordion-item .accordion-header button.accordion-button {
		font-size: 16px;
		padding: 20px 66px 20px 20px;
	}

	.accordionStyle .accordion-item .accordion-header button.accordion-button:after {
		top: 14px;
	}

	.accordionStyle .accordion-item .accordion-body {
		color: var(--black);
		font-size: 14px;
		line-height: 26px;
		padding: 0 20px 20px;
	}


	.incServices .checkList li {
		width: 49%;
	}

	.bannerFormCol {
		width: 500px;
	}

	.xlTitle {
		font-size: 56px;
	}

	.lgTitle {
		font-size: 30px;
	}

	.bannerContent p {
		font-size: 18px;
	}

	.bannerContent {
		max-width: 400px;
	}

	.bannerFormBody {
		padding: 25px 20px;
	}

	.btn {
		font-size: 14px;
		padding: 16px 40px;
	}

	.subTitle {
		padding: 12px 25px;
		font-size: 13px;
	}


	.mxWdContentCol {
		max-width: 100%;
	}

	.whyChooseRightCol {
		width: 100%;
		padding-top: 20px;
	}

	.beforeAfterImgCol {
		width: 500px;
	}

	.contentCol p {
		font-size: 16px;
	}

	.countText {
		font-size: 48px;
	}

	.counterCol {
		min-width: 100%;
	}

	.cs1LgCard .cs1ImgCol img {
		height: 470px;
	}

	.cs1LgCard .cs1Title {
		font-size: 20px;
	}

	.cs1LgCard .cs1ContentCol {
		padding: 20px 15px;
	}

	.contactInfoCol {
		font-size: 16px;
		padding: 20px 15px 25px;
	}

	.cInfoTitle {
		padding: 20px 0 10px;
	}

	.cInfoIcon img {
		height: 40px;
	}

	.footerLeftCol {
		max-width: 100%;
		padding-right: 0;
		padding-bottom: 20px;
	}

	.footerTitle {
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

	.footerAboutCol {
		padding-bottom: 10px;
	}

	.footerLeftCol .iconList>li+li {
		margin-top: 0;
	}

	.footerLeftCol .iconList>li {
		display: inline-block;
		width: 33%;
	}

	.footerLinks>li+li {
		margin-top: 10px;
	}

	.footerMiddleCol {
		padding: 20px 0 40px;
	}

	.copyrightCol {
		padding: 25px 0;
	}

	.titleCol {
		padding-bottom: 40px;
	}

	.contactFomrCol {
		width: 400px;
	}

	.contactRightCol {
		max-width: 480px;
	}

	.mapCol iframe {
		height: 350px;
	}

	.pageTitle {
		font-size: 40px;
	}

	.sectionSpaceMd {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.blogCard:nth-child(8n)+.blogCard {
		display: none;
	}

	.loadMoreBtnCol {
		padding-top: 40px;
	}

	.filterCol {
		position: fixed;
		z-index: 999;
		left: 0;
		top: 0;
		bottom: 0;
		border-radius: 0;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}

	.actFilter .menuBackdrop {
		pointer-events: initial;
		opacity: 1;
	}

	.actFilter .filterCol {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.filterBody {
		height: calc(100vh - 65px);
		overflow-y: auto;
	}

	.hotelDetailSliderCol {
		width: 550px;
	}

	.detailSliderImgCol img {
		height: 440px;
	}

	.hDetailCol>ul>li {
		padding: 15px 5px;
	}

	.photo1 .photoStyle {
		height: 400px;
	}

	.photo2 .photoStyle {
		height: 190px;
	}

	.photo3 .photoStyle {
		height: 194px;
	}

	.clinicDetailLeftCol {
		max-width: 100%;
	}
}

@media (max-width:991px) {
	.cs3ImgCol {
		width: 250px;
	}

	.cs3ContentMdlCol p:not(.sLine) {
		font-size: 15px;
		line-height: 1.34;
	}

	.sLine {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.subTitle {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.aboutImg {
		margin-top: 10px;
	}

	.bannerFormCol {
		width: 100%;
		margin-top: 50px;
	}

	.aboutImg {
		height: auto;
	}

	.playTrigger {
		width: 76px;
		height: 76px;
	}

	.bannerContent {
		max-width: 100%;
		text-align: center;
	}

	.bannerContent>p+a {
		margin-top: 15px;
	}

	.bannerContent>.xlTitle {
		padding: 0px 0 15px;
	}

	.xlTitle {
		font-size: 44px;
	}

	.lgTitle {
		font-size: 26px;
	}

	.cs1ImgCol img {
		height: 350px;
	}

	.beforeAfterImgCol {
		width: 100%;
	}

	.sNotificationStyle {
		padding-bottom: 60px;
	}

	.cs2CardTitle {
		max-width: 190px;
		font-size: 18px;
	}

	.sStyle1 .swiper-button-next::after,
	.sStyle1 .swiper-button-prev::after {
		font-size: 34px;
	}

	.sStyle1 {
		position: relative;
		padding: 0 30px;
	}

	.contactFomrCol {
		width: 100%;
		margin-bottom: 20px;
	}

	.contactRightCol {
		max-width: 100%;
	}

	.pageTitle {
		font-size: 36px;
	}

	.cs2ImgCol img {
		height: 640px;
	}

	.sectionSpace {
		padding: 80px 0;
	}

	.accordionStyle .accordion-item+.accordion-item {
		margin-top: 20px;
	}

	.searchForm {
		margin-top: 40px;
	}

	.cardStyle6 .cardDesc ul li .cardTitle {
		width: 150px;
	}

	.navStyle1 .navTrigger {
		width: 40px;
		height: 40px;
	}

	.cs7ImgCol {
		height: 320px;
	}

	.tagCol ul li {
		margin-right: 4px;
		margin-bottom: 10px;
	}

	.hotelDetailSliderCol {
		width: 100%;
	}

	.detailRightCol {
		padding-left: 0;
	}
}

@media (max-width:767px) {

	.cs3ImgCol,
	.cs3ImgCol img {
		width: 100%;
	}

	.cs3ContentCol {
		padding: 40px 25px 30px;
	}

	.cBorder {
		border: 2px solid #d9e7ee;
		border-top: none;
		top: 0;
		bottom: 0;
	}

	.cs3ContentCol:before,
	.cs3ContentCol:after {
		top: 0px;
		bottom: 0px;
		border-bottom: 2px solid var(--secondaryColor);
		border-right: 0;
	}

	.cs3ContentCol:before {
		-webkit-transform-origin: center bottom;
		-moz-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
		-o-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-transform: scale(0, 1);
		-ms-transform: scale(0, 1);
		transform: scale(0, 1);
	}

	.cs3ContentCol:after {
		border-top: 0;
		border-right: 2px solid var(--secondaryColor);
		border-left: 2px solid var(--secondaryColor);
		border-bottom: 0;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		transform: scale(1, 0);
		transform-origin: bottom;
	}

	.airlineLogoCol {
		padding: 0;
	}

	.cs1ImgCol img {
		height: 550px;
	}

	.mapCol iframe {
		height: 300px;
	}

	.row.gy-form {
		--bs-gutter-y: 15px;
	}

	.innerPageBanner {
		padding: 25px 0;
	}

	.sectionSpaceMd {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.cs2ImgCol img {
		height: 470px;
	}

	.sStyle2 .posBtmRight {
		bottom: 30px;
	}

	.sectionSpace {
		padding: 80px 0;
	}

	.listStyle2>li>a {
		font-size: 18px;
	}

	.tabStyle .nav-tabs button img {
		height: 22px;
	}

	.bDateTime {
		padding: 5px 0 15px;
	}

	.cs7ContentCol p+a.btn {
		margin-top: 0;
	}

	.commentImgCol img {
		width: 70px;
		height: 70px;
	}

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

	.mdTitle {
		font-size: 20px;
	}

	.detailSliderImgCol img {
		height: 340px;
	}

	.photo1 .photoStyle {
		height: auto;
	}
}

@media (max-width:575px) {
	.socialIcons>li+li {
		padding-left: 20px;
	}

	.headerBtmCol {
		padding: 15px 0;
	}

	.bannerSection {
		padding: 50px 0;
	}

	.xlTitle {
		font-size: 36px;
	}

	.bannerContent p {
		font-size: 16px;
	}

	.lgTitle {
		font-size: 24px;
	}

	.bannerFormBody {
		padding: 25px 10px;
	}

	.incServices {
		padding: 0;
	}

	.checkList>li {
		margin-bottom: 5px;
	}

	.sectionSpace {
		padding: 60px 0;
	}

	.titleCol {
		padding-bottom: 30px;
	}

	.sStyle1 {
		padding: 0 0px 50px;
	}

	.sStyle1 .swiper-button-prev,
	.sStyle1 .swiper-rtl .swiper-button-next,
	.sStyle1 .swiper-button-next,
	.sStyle1 .swiper-rtl .swiper-button-prev {
		bottom: 0;
		top: auto;
	}

	.cs1ImgCol img {
		height: 460px;
	}

	.subTitle {
		padding: 10px 15px;
		font-size: 12px;
		letter-spacing: 1px;
	}

	.btn {
		padding: 14px 30px;
	}

	.cardStyle2 {
		padding: 20px;
	}

	.cs2IconCol {
		height: 100px;
		padding-bottom: 25px;
	}

	.cs2IconCol img {
		max-height: 60px;
	}

	.beforeAfterImgCol::before,
	.beforeAfterImgCol::after {
		font-size: 12px;
		bottom: 5px;
	}

	.beforeAfterImgCol::before {
		left: 5px;
	}

	.beforeAfterImgCol::after {
		right: 5px;
	}

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

	.counterCol {
		min-width: 250px;
	}

	.leftTopShape,
	.rightBtmShape {
		opacity: 0.5;
		max-width: 80%;
	}

	.countText {
		font-size: 40px;
	}

	.cs1LgCard .cs1ImgCol img {
		height: 350px;
	}

	.cs1LgCard .cs1Title {
		font-size: 18px;
	}

	.cInfoIcon img {
		height: 30px;
	}

	.copyrightCol {
		padding: 15px 0;
		font-size: 14px;
	}

	.contactRightCol {
		padding: 30px 15px;
	}

	.pageTitle {
		font-size: 30px;
	}

	.formStyle .form-control.iconFld {
		padding-left: 50px;
		padding-right: 15px;
	}

	.cs3ContentCol {
		padding: 20px 15px 25px;
	}

	.cs2ImgCol img {
		height: 400px;
	}

	.detailMain .tabStyle .nav-tabs .nav-link {
		width: 50%;
	}

	.cs2ImgCol img {
		height: 325px;
	}

	.bannerFormBody.sidebarForm .sidebarFormInner {
		padding: 30px 10px;
	}

	.cs7ContentCol {
		padding: 20px 15px 30px;
	}

	.cs7ContentCol p {
		font-size: 16px;
	}

	.tagStyle {
		padding: 10px 15px;
	}

	.cContentCol+.commentCol {
		padding-left: 15px;
	}

	.hltText {
		padding: 5px 0 5px 15px;
	}

	.blogDtlImgCol+.blogDetailContent {
		padding-top: 15px;
	}

	.mdTitle {
		font-size: 18px;
	}

	.formStyle2 .form-control {
		height: 50px;
	}

	.cardStyle6 .cardDesc.aClinicList ul li .cardTitle {
		width: 120px;
	}

	.cardStyle6 .cardDesc.aClinicList ul li {
		padding: 15px 10px;
	}

	.detailSliderImgCol img {
		height: 280px;
	}
}

@media (max-width:374px) {
	.xlTitle {
		font-size: 32px;
	}

	.incServices .checkList>li {
		font-size: 13px;
	}

	.cs1ImgCol img {
		height: 390px;
	}

	.sStyle1 .swiper-button-next::after,
	.sStyle1 .swiper-button-prev::after {
		font-size: 30px;
	}

	.cardStyle2 {
		padding: 20px 15px;
	}

	.cs1LgCard .cs1ImgCol img {
		height: 310px;
	}

	.socialIcons>li+li {
		padding-left: 15px;
	}

	.menuColMain {
		width: 270px;
	}

	.cs2ImgCol img {
		height: 275px;
	}

	.cs7ImgCol {
		height: 290px;
	}

	.cardStyle6 .cardDesc.aClinicList ul li .cardTitle {
		width: 100px;
	}

	.cardStyle6 .cardDesc.aClinicList ul li .cardTitle,
	.cardStyle6 .cardDesc.aClinicList ul li .cardInfo {
		font-size: 15px;
	}

	.cardStyle6 .cardDesc.aClinicList ul li .cardIcon {
		width: 22px;
		height: auto;
	}
}

/**
 *  Preloader
 */
#preloader {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #f5f5f5;
	z-index: 99999999;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

#preloader_image {
	width: 100px;
	height: 100px;
	animation: coin-rotate 2s both infinite;
}

@keyframes coin-rotate {
	0% {
		transform: rotateY(0);
	}

	50% {
		transform: rotateY(180deg);
	}

	100% {
		transform: rotateY(0deg);
	}
}

.sorted-list-image img {
	border-radius: 4px;
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.gallery-list-image img {
	border-radius: 4px;
	width: 100%;
	height: 500px;
	object-fit: cover;
	max-width: 100%
}

select.gray-if-invalid:required:invalid {
	color: gray;
}