


/* Table of Content
==================================================
	#Homepage Styles
	#Page Styles
	#Media Queries
	#Font-Face */
:root{
	--gilda: "Gilda Display", serif;
	--gold: #d1a43e;
	--light-gold: #cda861;
	--dk-grey: #414042;
	--header-height: 136px;
}
*{
	padding:0;
	margin:0;
}
html, body, #wrapper {
	height: 100%;
	font-family: "Open Sans", sans-serif;
	/*font-family: "Gilda Display", serif;*/
	color: #414042;
} 

body > #wrapper {
	height: auto; min-height: 100%; background:#fff ;
}
body #main{
	  width:100%;
	  padding:0;
	  margin:0 auto;
	  padding-top: var(--header-height);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Let GSAP handle scroll */
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
  padding-top: var(--header-height);
}


table{
	width: 100%;
}
table, th, td {
    border: 1px solid #1a5f80;
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}
th {
    background-color: #104660;
    color: #fff;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	font-size: 16px;
	line-height: 1.75em;
	color: #414042;
	padding: 0 0 15px 0;
}
ul{
	padding: 10px 0 0 0;
}
ul li{
	font-size: 15px;
	line-height: 1.3em;
	color: #414042;
	padding: 0 0 10px 15px;
	position: relative;
}
ul li::before{
	position: absolute;
	content: '';
	left: 0;
	top: 7px;
	width: 5px;
	height: 5px;
	background: var(--gold);
	border-radius: 50%;
}

/*Thank You Page*/
.thankyou_page{
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100vh - var(--header-height) - 493px);
}
.thankyou_page .line1{
	font-size: 40px;
    color: var(--gold);
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    padding: 15px 0 15px 0;
}
.thankyou_page .line2{
	font-size: 21px;
	line-height: 28px;
	padding: 0 0 15px 0;
	color: #414042;
}
.thankyou_page .line3{
	font-size: 21px;
	padding: 15px 0 0 0;
	color: #414042;
}
.error {
    font-size: 14px;
    color: #ff0000;
}

[type=submit][disabled]{
	position: relative;
}
[type=submit][disabled]::before{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #56c5d0;
	color: #fff;
	z-index: 10;
}
[type=submit][disabled]::after{
	position: absolute;
    content: '';
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 11;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* #Grid system
================================================== */
.contain_90{
	width: 90%;
	margin: auto;
}
.container{
	width:1170px;
	margin:0 auto;
}
.container:before, .container:after, .row:before, .row:after{
	content:"";
	display:table;
}
.container:after, .row:after{clear:both;}
.row{
	margin-left:-10px;
	margin-right:-10px;
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
	position:relative;
	min-height:1px;
	padding-left:10px;
	padding-right:10px;
	float:left;
}

.col-sm-12{width:100%;}
.col-sm-11{width:91.66666667%;}
.col-sm-10{width:83.33333333%;}
.col-sm-9{width:75%;}
.col-sm-8{width:66.66666667%;}
.col-sm-7{width:58.33333333%;}
.col-sm-6{width:50%;}
.col-sm-5{width:41.66666667%;}
.col-sm-4{width:33.33333333%;}
.col-sm-3{width:25%;}
.col-sm-2{width:16.66666667%;}
.col-sm-1{width:8.33333333%;}
.flt-right { float: right; }
.flt-left { float: left; }

.clr{
	clear:both;
}

/* =Header
-------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0px;
	left: 0;
	z-index: 999;
	/*padding: 5px 0;*/
	background:#fff;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}
header .logo {
	width:unset;
	float: left;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0;
}
header nav {
	display: inline-block;
	float: right;
	padding: 0% 0% 0% 0%;
	background-color: transparent;
	margin-top: 0;
	width: unset;
}
header.smaller {
	top:0;
	background-color: transparent;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background:#fff;
	padding: 0;
}

.ace-responsive-menu > li > ul.sub-menu {
  margin: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.ace-responsive-menu li ul.sub-menu > li {
/*  width: 200px;*/
  border-bottom: 2px solid #fff;
  padding: 0;
}
.ace-responsive-menu li ul.sub-menu > li:last-child{
	border: none;
}
.ace-responsive-menu li ul.sub-menu li a {
  text-transform: none;
  padding: 10px 15px 10px 15px;
  line-height: 1.4em;
  font-size: 15px;
}
header.smaller .logo {
	/*width:14%;*/
}
header.smaller nav {
	padding:0;
	margin-top: 0;
}
header .inner_container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
header .inner_container .ace-responsive-menu li::before{
	display: none;
}
header .inner_container .ace-responsive-menu li a{
	font-size: 16px;
	color: #414042;
/*	padding: 52px 10px;*/
}
.banner .main_banner .item_box{
	position: relative;
}
.banner .main_banner .item_box img{
	width: 100vw;
	height: calc(100vh - var(--header-height));
	object-fit: cover;
	object-position: top;
}
.banner .main_banner .item_box .overlay_text {
  position: absolute;
  width: 30%;
  height: 80%;
  bottom: 0;
  left: 5%;
  background: #fff;
  padding: 0 3vw;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  display: flex;
  align-items: center;
}
.banner .main_banner .item_box .overlay_text .number_box .icon img{
	width: unset;
	height: unset;
}
.owl-theme .owl-nav.disabled+.owl-dots{
	margin: 0;
}
.owl-theme .owl-dots{
	position: absolute;
	left: 10vw;
	bottom: 2vw;
}
.owl-theme .owl-dots .owl-dot span{
	background: transparent;
    border: 1px solid var(--gold);
}
.owl-theme .owl-dots .owl-dot:hover span{
	background: var(--light-gold);
}
.owl-theme .owl-dots .owl-dot.active span{
	background: var(--gold);
}

/*golden_slider_wrapper*/
.golden_slider_wrapper{
	background: var(--light-gold);
}
.golden_slider_wrapper .item_box{
	display: inline-flex;
	align-items: center;
	padding: 20px 0;
}
.golden_slider_wrapper .item_box .txt{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	padding: 0 40px 0 30px;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-marquee 10s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused; /* Optional: pause on hover */
}

.marquee-content .item-box {
  flex: 0 0 auto;
  margin-right: 30px; /* spacing between items */
}

.marquee-content .item-box img {
  /*height: 100px;*/
  /*display: block;*/
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.width_20{
	width: 20%;
}
.width_45{
	width: 45%;
}
.width_50{
	width: 50%;
}
.width_55{
	width: 55%;
}
.sub_heading{
	font-size: 20px;
	line-height: 1.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding: 0 0 10px;
}
.heading{
	font-size: 40px;
	line-height: 1.2em;
  font-weight: 500;
  font-family: var(--gilda);
  padding: 0 0 10px;
}
.title{
	font-size: 24px;
	line-height: 1.2em;
  font-weight: 500;
  font-family: var(--gilda);
	position: relative;
	padding: 0 0 5px;
  margin: 0 0 5px;
}
.title::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 80px;
	height: 1px;
	background: var(--gold);
}
.white{
	color: #fff;
}
.golden_hollow_btn{
	outline: none;
	margin: 0;
	font-size: 20px;
	color: var(--gold);
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid var(--gold);
	padding: 7px 10px;
	border-radius: 5px;
	transition: 0.3s;
	position: relative;
	background: unset;
}
.golden_hollow_btn:hover{
	transform: translateY(-2px);
	background: var(--gold);
    color: #fff;
}

/*.golden_hollow_btn{
    outline: none;
    margin: 0;
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 7px 10px;
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
    background: #fff;
}
.golden_hollow_btn:hover{
	background-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.golden_hollow_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.golden_hollow_btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
    background-color: var(--gold);
}
.golden_hollow_btn:hover::after {
    transform: scaleX(1.2) scaleY(1.6);
    opacity: 0;
}*/
.golden_filled_btn{
	outline: none;
	margin: 0;
	font-size: 20px;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 7px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.golden_filled_btn:hover{
	transform: translateY(-2px);
	background: unset;
	color: var(--gold);
}

.number_box{
	display: inline-flex;
	align-items: center;
	padding: 10px 0 0;
}
.number_box .icon{
	transition: .5s;
}
.number_box:hover .icon{
	transform: scale(1.05);
}
.number_box .txt{
	font-size: 25px;
	padding: 0 0 0 10px;
	display: flex;
	flex-direction: column;
}
.number_box .txt .golden{
	font-size: 16px;
  line-height: 1.3em;
  font-weight: 500;
  color: var(--gold);
}
.number_box .txt .grey{
	font-size: 16px;
  line-height: 1.3em;
  font-weight: 500;
}
/*about_twc*/
.about_twc{
	padding: 5vw 0;
}
.about_twc .text_box{
	max-width: 550px;
}
.about_twc .img_boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	position: relative;
}
.about_twc .img_boxes .about_link{
	--size: 8vw;
	position: absolute;
	left: 0;
	top: 5%;
	width: var(--size);
	height: var(--size);
	z-index: 3;
}
.about_twc .img_boxes .about_link img{
	animation: rotate_this 5s linear infinite forwards;

}
@keyframes rotate_this{
	0%{
		transform: rotateZ(0deg);
	}
	100%{
		transform: rotateZ(360deg);
	}
}
.about_twc .img_boxes .img_box{
	width: 50%;
	padding: 1vw;
	z-index: 2;
}
.about_twc .img_boxes .img_box:last-child{
	padding-bottom: 3vw;
}

/*specialised_care_plans*/
.specialised_care_plans{
	background: #f8f5ee;
	padding: 5vw 0;
}
.specialised_care_plans .img_boxes{
	display: flex;
	flex-wrap: wrap;
}
.specialised_care_plans .img_boxes [class*=col-sm]{
	padding: 0;
}
.specialised_care_plans .img_boxes .col-sm-12{
	padding: 0 0 3.4vw;
}
.specialised_care_plans .img_boxes .col-sm-12:last-child{
	padding: 0;
}
.specialised_care_plans .img_boxes .col-sm-4{
	padding: 0 0 0 3.4vw;
}
.specialised_care_plans .img_boxes .care_box{
	position: relative;
	height: 100%;
}
/*.specialised_care_plans .img_boxes [class*=col-sm]:nth-child(2) .care_box{
	margin: 0 0 0 3.4vw;
}
.specialised_care_plans .img_boxes [class*=col-sm]:nth-child(3) .care_box{
	margin: 0 3.4vw 0 0;
}*/
/*.specialised_care_plans .img_boxes [class*=col-sm]:nth-child(1){
	margin: 0 0 3.4vw;
}
.specialised_care_plans .img_boxes [class*=col-sm]:nth-child(2){
	margin: 0 0 3.4vw;
}*/
.specialised_care_plans .img_boxes .care_box .img_box{
	height: 100%;
	overflow: hidden;
}
.specialised_care_plans .img_boxes .care_box .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.specialised_care_plans .img_boxes .care_box:hover .img_box img{
	transform: scale(1.09);
	transition: all 1s ease;
}
.specialised_care_plans .img_boxes .care_box .text_box{
	position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, #00000026, transparent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.specialised_care_plans .img_boxes .care_box .text_box .title{
	color: #fff;
	text-shadow: 0 0 5px #0000009c;
}
.specialised_care_plans .img_boxes .care_box .text_box p{
	color: #fff;
	padding: 0 46px 0 0;
	position: relative;
	display: none;
}
.specialised_care_plans .img_boxes .care_box .text_box p::before{
	position: absolute;
	content: '';
	right: 0;
	top: calc(50% - 10px);
	width: 44px;
	height: 20px;
	background: url(../images/icons/arrow.png) no-repeat;
	background-size: contain;
	background-position: center;
}
.specialised_care_plans .img_boxes .care_box .overlay_img{
  position: absolute;
  content: '';
  top: 10px;
  right: 10px;
}
.specialised_care_plans .img_boxes .care_box .overlay_img .img_box{
	height: unset;
  overflow: unset;
}
/*clinics_wrapper*/
.clinics_wrapper{
	padding: 5vw 0;
	background: var(--dk-grey);
}
.clinics_wrapper .left_pane{
	max-width: 360px;
}
.clinics_wrapper .heading{
	color: #fff;
}
.clinics_wrapper p{
	color: #fff;
}
.clinics_wrapper .clinics_slider .owl-stage{
	display: flex;
}
.clinics_wrapper .clinics_slider .item_box{
	height: 100%;
}
.clinics_wrapper .clinics_slider .item_box a{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  overflow: hidden;
}
.clinics_wrapper .clinics_slider .item_box a::before{
	position: absolute;
	content: '';
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 20px;
	background: url(../images/icons/arrow.png) no-repeat;
	background-size: contain;
	background-position: center;
}
.clinics_wrapper .clinics_slider .item_box a .text_box{
	/*background: #fff;*/
    padding: 20px;
}
.clinics_wrapper .owl-theme .owl-nav.disabled+.owl-dots{
	margin: 20px 0 0;
	position: static;
}
.clinics_wrapper .owl-theme .owl-dots{
	position: static;
}

/*homepage_video_wrapper*/
.homepage_video_wrapper{
	position: relative;
}
.homepage_video_wrapper .text_overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.homepage_video_wrapper .text_overlay .sub_heading{
	color: #fff;
}
.homepage_video_wrapper .text_overlay .heading{
	color: #fff;
	text-align: center;
}

/*features_wrapper*/
.features_wrapper{
	padding: 5vw 0;
}
.features_wrapper .features_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.features_wrapper .features_boxes .box{
	border: 1px solid #f9f7f1;
	width: calc(25% - 20px);
	margin: 0 0 25px 0;
	padding: 20px;
}
.features_wrapper .features_boxes .box .icon_box{
	min-height: 72px;
}
.features_wrapper .features_boxes .box .icon_box img{
	transition: all 0.3s;
}
.features_wrapper .features_boxes .box:hover .icon_box img{
	transform: scale(1.1);
}
.features_wrapper .features_boxes .box .title{
	padding: 15px 0 10px;
	margin: 0 0 10px;
}
.features_wrapper .btn_wrapper{
	text-align: center;
	padding: 15px 0 0;
}

/*testimonials*/
.testimonials{
	background: url(../images/bg/testimonials.jpg) no-repeat;
	padding: 7.5vw 0;
}
.testimonials .inner_container{
	width: 1080px;
	margin: auto;
}
.testimonials .title{
	font-size: 35px;
	padding: 0 0 15px;
	margin: 0 0 15px;
}
.testimonials .testimonials_slider .item_box .text_box p{
	color: #fff;
}
.testimonials .testimonials_slider .item_box .attestant_box{
	display: flex;
	align-items: center;
	position: relative;
}
.testimonials .testimonials_slider .item_box .attestant_box::before{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	width: 76px;
	height: 85px;
	background: url(../images/icons/double-quotes.png) no-repeat;
	background-size: contain;
	background-position: right center;
}
.testimonials .testimonials_slider .item_box .attestant_box .img_box img{
	border-radius: 50%;
	max-width: 120px;
}
.testimonials .testimonials_slider .item_box .attestant_box .info_box{
	padding: 0 0 0 25px;
}
.testimonials .testimonials_slider .item_box .attestant_box .info_box .attestant_name{
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
	color: #fff;
}
.testimonials .testimonials_slider .item_box .attestant_box .info_box .attestant_position{
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400;
	color: #fff;
}
.testimonials .testimonials_slider.owl-theme .owl-nav.disabled+.owl-dots{
	/*margin: 20px 0 0;*/
	/*position: static;*/
}
.testimonials .testimonials_slider.owl-theme .owl-dots{
	left: unset;
  right: 0;
  bottom: -46px;
}
.testimonials .btn_wrapper{
	text-align: center;
	padding: 15px 0 0;
}

/*blogs_wrapper*/
.blogs_wrapper{
	background: #f8f5ee;
	padding: 5vw 0;
}
.blogs_boxes{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.blogs_boxes .blog_box{
	width: 33.33%;
	padding: 0 15px;
}
.blogs_boxes .blog_box a{
	display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.blogs_boxes .blog_box a .img_box{
	width: 100%;
}
.blogs_boxes .blog_box a .img_box img{
	width: 100%;
}
.blogs_boxes .blog_box a .date_box{
	position: absolute;
  left: 15px;
  top: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.3em;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 12px 8px 7px 8px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.blogs_boxes .blog_box a .date_box .number{
	font-size: 30px;
	font-weight: 600;
	padding: 5px 0 0;
}
.blogs_boxes .blog_box a .text_box{
	--box-height: 97px;
	background: #fff;
	padding: 20px 15px;
	z-index: 1;
	position: relative;
	width: 84%;
	left: 8%;
	bottom: 0;
	flex-grow: 1;
	margin: calc((var(--box-height) / 2) * -1) 0 calc(var(--box-height) / 2) 0;
	transition: all 0.3s;
}
.blogs_boxes .blog_box a:hover .text_box{
	margin: calc((var(--box-height) + 8%) * -1) 0 calc(var(--box-height) + 8%) 0;
}
.blogs_boxes .blog_box a .text_box::before{
	position: absolute;
	content: '';
	right: 10px;
	bottom: 5px;
	width: 35px;
	height: 18px;
	background: url(../images/icons/arrow.png) no-repeat;
	background-size: contain;
	background-position: center;
}
.blogs_boxes .blog_box a .text_box .reading_duration{
	font-size: 14px;
  line-height: 1.3em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0 5px;
}
.blogs_boxes .blog_box a .text_box .title{
	padding: 0;
}
.blogs_boxes .blog_box a .text_box .title::before{
	display: none;
}
.blogs_wrapper .btn_wrapper{
	text-align: center;
	/*padding: 30px 0 0;*/
}
.blogs_innerpages_wrapper .inner_container ol{
	padding: 0 0 0 15px;
}
.blogs_innerpages_wrapper .inner_container ol li{
	font-size: 15px;
    line-height: 1.3em;
    color: #414042;
    padding: 0 0 10px 0;
}
/*contact_us_wrapper*/
.contact_us_wrapper{
	background: url(../images/bg/contact-us.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 20px 0;
}
.contact_us_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.contact_us_wrapper .inner_container .left_pane{
	width: 65%;
}
.contact_us_wrapper .inner_container .left_pane .info_box{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.contact_us_wrapper .inner_container .left_pane .info_box .heading{
	color: #fff;
}
.contact_us_wrapper .inner_container .left_pane .info_box .title::before{
	display: none;
}
.contact_us_wrapper .inner_container .left_pane .info_box .number_box{
	padding: 0 0 20px;
}
.contact_us_wrapper .inner_container .right_pane{
	width: 35%;
}
.contact_us_wrapper .inner_container .right_pane .form_wrapper{
	background: #fff;
	height: 100%;
	padding: 30px 40px;
	position: relative;
  margin: 100px 0 -100px 0;
}
.contact_us_wrapper .inner_container .right_pane .form_wrapper form .input_box{
	padding: 0 0 10px;
}
.contact_us_wrapper .inner_container .right_pane .form_wrapper form .input_box input[type=text]{
	background: #f8f5ee;
	width: 100%;
	font-size: 16px;
	border: none;
	outline: none;
	padding: 10px;
}
.contact_us_wrapper .inner_container .right_pane .form_wrapper form .input_box select{
	background: #f8f5ee;
	width: 100%;
	font-size: 16px;
	border: none;
	outline: none;
	padding: 10px;
}
.contact_us_wrapper .inner_container .right_pane .form_wrapper form .input_box textarea{
	background: #f8f5ee;
	width: 100%;
	font-size: 16px;
	border: none;
	outline: none;
	padding: 10px;
}

/*amenities_wrapper*/
.amenities_wrapper{
	padding: 5vw 0;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes:nth-child(even) {
  flex-direction: row-reverse;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .text_box .title{
	padding: 0;
	margin: 0;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .text_box .title::before{
	display: none;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .text_box ul{
	padding: 10px 0;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .text_box ul li::before{
	display: none;
} 
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper{
	position: relative;
  height: 600px;
  overflow: hidden;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes:nth-child(even) .image_wrapper{
	border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-bottom-left-radius: 500px;
  border-bottom-right-radius: 500px;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165%; /* Make it larger for smooth motion */
  z-index: -1;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_1{
  background: url('../images/facilities/premium-rooms.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_2{
  background: url('../images/facilities/bathrooms.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_3{
  background: url('../images/facilities/kitchen.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_4{
  background: url('../images/facilities/emergency-medical.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_5{
  background: url('../images/facilities/emergency-care.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_6{
  background: url('../images/facilities/housekeeping.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_7{
  background: url('../images/amenities/community.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_8{
  background: url('../images/amenities/lounge.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_9{
  background: url('../images/amenities/dining.jpg') no-repeat center center;
  background-size: cover;
}
.amenities_wrapper .inner_container .amenities_wrapper_boxes .image_wrapper .parallex_image.parallex_image_10{
  background: url('../images/amenities/consultation.jpg') no-repeat center center;
  background-size: cover;
}

/*core_team_wrapper*/
.core_team_wrapper{
	padding: 5vw 0 0;
}
.core_team_wrapper .inner_conatiner .heading{
	text-align: center;
}
.core_team_wrapper .inner_conatiner .core_team_boxes{
	padding: 3vw 0 0;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #f8f5ee;
	border-radius: 20px;
	transition: 0.5s;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes:nth-child(even) {
  flex-direction: row-reverse;
  background: unset;
  border-radius: unset;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes .text_box{
	padding: 0 50px 0 60px;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes:nth-child(even) .text_box{
	padding: 0 60px 0 30px;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes .text_box .title::before{
	display: none;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes .text_box .sub_title{
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
	color: var(--gold);
	padding: 0 0 10px 0;
}
.core_team_wrapper .inner_conatiner .core_team_boxes .info_boxes .core_team_inner_boxes .text_box p{
	font-size: 16px;
	padding: 0;
}

/*who_benefits_wrapper*/
.who_benefits_wrapper{
	padding: 5vw 0;
}
.who_benefits_wrapper .inner_container .text_box{
	border-bottom: 2px solid #f8f5ee;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
}
.who_benefits_wrapper .inner_container .text_box p{
	font-size: 16px;
}
.who_benefits_wrapper .inner_container .who_benefits_boxes .info_box{
	display: flex;
	flex-wrap: wrap;
}
.who_benefits_wrapper .inner_container .who_benefits_boxes .info_box .text_box{
	border: none;
  padding: 0 10vw 0 0;
  margin: 0;
}
.who_benefits_wrapper .inner_container .who_benefits_boxes .info_box .text_box ul{
	padding: 0 0 10px 0;
}
.who_benefits_wrapper .inner_container .who_benefits_boxes .info_box .col-sm-6:nth-child(odd) .img_box{
	padding: 80px 0 0;
}
.who_benefits_wrapper .inner_container .who_benefits_boxes .info_box .col-sm-6:nth-child(even) .img_box{
	padding: 30px 0 0;
}

/*services_wrapper*/
.services_wrapper{
	padding: 5vw 0 2vw;
	background: #f8f5ee;
}
.services_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.services_wrapper .inner_container .inner_box{
	display: flex;
	align-items: center;
	padding: 0 0 30px 0;
	transition: .5s;
}
.services_wrapper .inner_container .inner_box .img_box{
	width: 35%;
}
.services_wrapper .inner_container .inner_box .img_box img{
	transition: .5s;
}
.services_wrapper .inner_container .inner_box:hover .img_box img{
	transform: scale(1.1);
}
.services_wrapper .inner_container .inner_box .text_box{
	width: 65%;
}
.services_wrapper .inner_container .inner_box .text_box p{
	padding: 0;
	transition: .5s;
}
.services_wrapper .inner_container .inner_box:hover .text_box p{
	color: var(--gold);
}
.explore_care_plan_wrapper{
	padding: 5vw 0;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/*.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .width_20{
	width: 19%;
}*/
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box{
	border: 1px solid #f8f5ee;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box .sub_heading {
	font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 0 10px 15px;
  position: relative;
  z-index: 1;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box .sub_heading.black_text{
	color: var(--dk-grey);
	background: #f8f5ee;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box .sub_heading.gold_text{
	background: var(--light-gold);
  color: #fff;
  position: relative;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box .sub_heading.gold_text::before{
	position: absolute;
  content: '';
  background: url(../images/icons/right-arrow.png) no-repeat;
  background-size: contain;
  background-position: right center;
  width: 12px;
  height: 12px;
  right: 15px;
  top: 15px;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul{
	padding: 0;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li{
	font-size: 15px;
	font-weight: 400;
  padding: 0;
  margin: 0 15px;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  transition: .5s;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li b{
	display: contents;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  top: unset;
  width: 235px;
  height: 1px;
  background: #f8f5ee;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li:last-child::before {
	display: none;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li.tick{
	padding: 0 0 0 30px;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li.tick::after{
  position: absolute;
  content: '';
  background: url(../images/icons/tick.png) no-repeat;
  background-size: contain;
  background-position: left center;
  width: 18px;
  height: 18px;
  left: 0;
  top: 22px;
  bottom: unset;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li.cross::after{
  position: absolute;
  content: '';
  background: url(../images/icons/cross.png) no-repeat;
  background-size: contain;
  background-position: left center;
  width: 18px;
  height: 18px;
  left: 0;
  top: 22px;
  bottom: unset;
}
.explore_care_plan_wrapper .inner_container .explore_care_plan_boxes .info_box .col-sm-3 .inner_box ul li.cross{
	padding: 0 0 0 30px;
}
.explore_care_plan_wrapper .inner_container .number_box{
	padding: 40px 0 0;
}

/*common_text_wrapper*/
.common_text_wrapper{
  padding: 5vw 0;
  background: #f8f5ee;
  text-align: center;
}
.care_plans_page .common_text_wrapper{
  background: #fff;
}
.common_text_wrapper .inner_container{
	width: 80%;
  margin: 0 auto;
}
.common_text_wrapper .inner_container p{
	font-size: 16px;
}
.common_text_wrapper .inner_container .btn_wrapper{
	padding: 10px 0 0;
}

/*day_thewisdomclub_wrapper*/
.day_thewisdomclub_wrapper{
	padding: 5vw 0;
}
.day_thewisdomclub_wrapper .inner_container .heading{
	text-align: center;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes{
	width: 50%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box {
  width: calc(50% + 3px);
  height: 60px;
  position: relative;
  opacity: 0.4;
  transition: 0.2s;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.past{
	opacity: 1;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.active{
	opacity: 1;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box p{
	font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  padding: 0;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box img{
	height: 60px;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box::before{
	position: absolute;
	content: '';
/*	background: var(--gold);*/
	background: #e0d8cf;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	left: -2px;
	top: calc(50% - 5px);
	z-index: 1;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box:nth-child(even)::before{
	left: unset;
	right: -2px;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.past::before{
	background: var(--gold);
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.active::before{
	background: var(--gold);
	box-shadow: 0 0 0 4px var(--gold);
  outline: 3px solid #ffffff;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box::after{
	position: absolute;
	content: '';
	background: #e0d8cf;
	width: 2px;
	height: 100%;
	left: 2px;
	bottom: calc(50% - 5px);
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box:first-child::after{
	display: none;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box:nth-child(even)::after{
	left: unset;
	right: 2px;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.past::after{
	background: var(--gold);
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box.active::after{
	background: var(--gold);
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box:nth-child(odd) {
  padding: 0 0 0 50px;
  margin: 0 0 0 auto;
}
.day_thewisdomclub_wrapper .inner_container .day_thewisdomclub_boxes .data_box:nth-child(even) {
  margin: 0 auto 0 0;
  padding: 0 50px 0 0;
  text-align: right;
}
.day_thewisdomclub_wrapper .inner_container .btn_wrapper{
	text-align: center;
}

/*gallery_wrapper*/
.gallery_wrapper{
	padding: 5vw 0;
}
.gallery_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
}
.gallery_wrapper .inner_container .col-sm-4{
	padding: 10px;
}
.gallery_wrapper .inner_container .col-sm-6{
	padding: 10px;
}
.gallery_wrapper .inner_container .item_box{
	position: relative;
}
.gallery_wrapper .inner_container .item_box .img_box{
	width: 100%;
	height: 100%;
}
.gallery_wrapper .inner_container .item_box .img_box img{
	width: 100%;
}
.gallery_wrapper .inner_container .item_box .text_box {
  position: absolute;
  width: 100%;
  height: 25%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, #00000090, transparent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery_wrapper .inner_container .item_box .text_box .title {
  color: #fff;
  text-shadow: 0 0 5px #0000009c;
}
/*.gallery_wrapper .inner_container .item_box .text_box .title::before{
	display: none;
}*/
/*footer*/

/*testimonials_wrapper*/
.testimonials_wrapper{
	padding: 5vw 0 2vw;
	text-align: center;
}
.testimonials_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
}
.testimonials_wrapper .inner_container .col-sm-4{
	padding: 0 1vw 3vw;
}
.testimonials_wrapper .inner_container .inner_box{
  background: #f8f5ee;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  padding: 50px 30px 30px;
}
.testimonials_wrapper .inner_container .inner_box .img_quotes img{
	width: 65px;
}
.testimonials_wrapper .inner_container .inner_box p{
  line-height: 1.4em;
  padding: 0;
  height: 250px;
  display: flex;
  align-items: center;
}
.testimonials_wrapper .inner_container .inner_box .text_box{
	display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.testimonials_wrapper .inner_container .inner_box .text_box .img_box img{
	width: 75px;
}
.testimonials_wrapper .inner_container .inner_box .text_box .info_box{
	padding: 0 0 0 15px;
}
.testimonials_wrapper .inner_container .inner_box .text_box .info_box .attestant_name{
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 600;
  color: var(--dk-grey);
  text-align: left;
}
.testimonials_wrapper .inner_container .inner_box .text_box .info_box .attestant_position{
	font-size: 14px;
  line-height: 1.3em;
  font-weight: 400;
  color: #414042;
  text-align: left;
}

/*blogs_pages_wrapper*/
.blogs_pages_wrapper{
	padding: 5vw 0;
}
.blogs_pages_wrapper .blogs_boxes .blog_box a .text_box{
	background: #f8f5ee;
}
.blogs_pages_wrapper .btn_wrapper{
	text-align: center;
	padding: 0;
}

/*blogs_innerpages_wrapper*/
.blogs_innerpages_wrapper{
	padding: 5vw 0 2vw;
}
.blogs_innerpages_wrapper .inner_container .sub_heading{
	font-size: 18px;
}
.blogs_innerpages_wrapper .inner_container .heading{
	font-size: 24px;
}
.blogs_innerpages_wrapper .inner_container p{
	line-height: 1.6em;
	padding: 0 0 10px 0;
}
.blogs_innerpages_wrapper .inner_container .img_box{
	padding: 40px 0;
}
.blogs_innerpages_wrapper .inner_container .text_box{
	padding: 0 0 30px;
}

/*blogs_nextpages_wrapper*/
.blogs_nextpages_wrapper{
	background: #f8f5ee;
	padding: 5vw 0;
	text-align: center;
}
.blogs_nextpages_wrapper .inner_container .col-sm-6{
	border-right: 2px solid #fff;
}
.blogs_nextpages_wrapper .inner_container .col-sm-6:last-child{
	border: none;
}
.blogs_nextpages_wrapper .inner_container a{
	width: 50%;
	margin: 0 auto;
}
.blogs_nextpages_wrapper .inner_container .sub_heading{
	font-size: 18px;
	color: #364655;
}
.blogs_nextpages_wrapper .inner_container .heading{
	font-size: 24px;
}

/*our_story_text_wrapper*/
.our_story_text_wrapper{
	padding: 5vw 0;
}
.our_story_wrapper{
	padding: 0 0 5vw;
}
.our_story_wrapper .inner_conatiner .our_story_boxes{
	background: #f8f5ee;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.our_story_wrapper .inner_conatiner .our_story_boxes:nth-child(even) {
  flex-direction: row-reverse;
}
.our_story_wrapper .inner_conatiner .our_story_boxes .inner_box{
	padding: 0 80px 0 50px;
}
.our_story_wrapper .inner_conatiner .our_story_boxes .img_box{
	width: 100%;
}
.our_story_wrapper .inner_conatiner .our_story_boxes .img_box img{
	width: 100%;
}
.our_story_wrapper .inner_conatiner .our_story_boxes .inner_box p:last-child{
	padding: 0;
}

/*faqs_wrapper*/
.faqs_wrapper{
	padding: 5vw 0;
}
.faqs_wrapper .inner_conatiner a{
	color: var(--gold);
}
.f-html{
	background: #000!important;
}

/*events_and_media_wrapper*/
.events_and_media_wrapper{
	padding: 5vw 0;
}
.events_and_media_wrapper .inner_container .boxes{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box {
  width: 33.33%;
  padding: 0 15px;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box .img_box{
	width: 100%;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box .img_box img{
	width: 100%;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a .text_box {
  background: #f8f5ee;
  padding: 20px;
  z-index: 1;
  position: relative;
  width: 85%;
  left: 7%;
  bottom: 0;
  flex-grow: 1;
  margin: -110px 0 0 0;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a .text_box::before {
  position: absolute;
  content: '';
  right: 10px;
  bottom: 5px;
  width: 35px;
  height: 18px;
  background: url(../images/icons/arrow.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a .text_box .reading_duration {
  font-size: 14px;
  line-height: 1.3em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0 5px;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a .text_box .title {
  padding: 0;
}
.events_and_media_wrapper .inner_container .boxes .events_and_media_box a .text_box .title::before{
	display: none;
}
.events_and_media_wrapper .inner_container .btn_wrapper{
	text-align: center;
	padding: 40px 0 0;
}

/*contact_wrapper*/
.contact_wrapper{
	padding: 5vw 0;
}
.contact_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.contact_wrapper .inner_container .inner_box{
	padding: 0 10vw 0 0;
}
.contact_wrapper .inner_container .inner_box p{
	border-bottom: 2px solid #f8f5ee;
	padding: 0 0 20px 0;
}
.contact_wrapper .inner_container .inner_box .ctc_info ul {
  padding: 20px 0 0 0;
}
.contact_wrapper .inner_container .inner_box .ctc_info ul li{
	padding: 0 0 10px 0;
	display: flex;
}
.contact_wrapper .inner_container .inner_box .ctc_info ul li .icon_box i{
  color: var(--gold);
}
.contact_wrapper .inner_container .inner_box .ctc_info ul li .txt{
	padding: 0 0 0 10px;
}
.contact_wrapper .inner_container .inner_box .ctc_info ul li .txt a{
	color: #414042;
}
.contact_wrapper .inner_container .inner_box .ctc_info ul li::before{
	display: none;
}

/*continuum_wrapper*/
.continuum_wrapper{
	padding: 50px 0 80px;
}
.continuum_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.continuum_wrapper .inner_container .col-sm-6:nth-child(odd) .img_box {
  padding: 80px 0 0;
}
.continuum_wrapper .inner_container .col-sm-6:nth-child(even) .img_box {
  padding: 30px 0 0;
}
.continuum_wrapper .inner_container .inner_box{
	padding: 0 8vw 0 0;
}

/*what_continuum_wrapper*/
.what_continuum_wrapper{
  background: #f8f5ee;
  padding: 5vw 0;
}
.what_continuum_wrapper .inner_container .what_continuum_boxes{
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}
.what_continuum_wrapper .inner_container .what_continuum_boxes .box {
  background: #fff;
  width: calc(25% - 20px);
  padding: 20px;
}
.what_continuum_wrapper .inner_container .what_continuum_boxes .box .icon_box img{
  width: 70px;
}
.what_continuum_wrapper .inner_container .what_continuum_boxes .box .title {
  padding: 15px 0 10px;
  margin: 0 0 10px;
}
.what_continuum_wrapper .inner_container .what_continuum_boxes .box p{
	padding: 0;
}

/*why_twc_wrapper*/
.why_twc_wrapper{
	padding: 5vw 0;
}
.why_twc_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #f8f5ee;
}
.why_twc_wrapper .inner_container .inner_box{
	padding: 0 70px 0 50px;
}
.why_twc_wrapper .inner_container .inner_box p:last-child{
	padding: 0;
}

/*clinics_common_text_wrapper*/
.clinics_common_text_wrapper{
  padding: 5vw 0;
}

/*clinics_common_icons_wrapper*/
.clinics_common_icons_wrapper {
  padding: 5vw 0;
  background: #f8f5ee;
}
.clinics_common_icons_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.clinics_common_icons_wrapper .inner_container .boxes {
  width: 20%;
  border-right: 2px solid #fff;
}
.clinics_common_icons_wrapper .inner_container .box {
  width: 25%;
  border-right: 2px solid #fff;
}
.clinics_common_icons_wrapper .inner_container .inner_box{
	padding: 0 18px;
}
.clinics_common_icons_wrapper .inner_container .img_box img{
	width: 70px;
}
.clinics_common_icons_wrapper .inner_container .boxes:last-child{
	border: unset;
}
.clinics_common_icons_wrapper .inner_container .box:last-child{
	border: unset;
}
.clinics_common_icons_wrapper .inner_container .inner_box p{
	padding: 10px 0;
}

/*clinics_commontext_wrapper*/
.clinics_commontext_wrapper {
	padding: 5vw 0 0;
}
.clinics_commontext_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.clinics_commontext_wrapper .inner_container .inner_box{
	padding: 0 10vw 0 0;
}

/*clinics_nextpages_wrapper*/
.clinics_nextpages_wrapper {
  background: #f8f5ee;
  padding: 5vw 0;
  text-align: center;
}
.clinics_nextpages_wrapper .inner_container .col-sm-6 {
  border-right: 2px solid #fff;
}
.clinics_nextpages_wrapper .inner_container .sub_heading {
  color: #364655;
  font-size: 18px;
}
.clinics_nextpages_wrapper .inner_container .heading{
	font-size: 28px;
} 
.clinics_nextpages_wrapper .inner_container .col-sm-6:last-child {
  border: none;
}

/*footer*/
footer{
	background: url(../images/bg/footer.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 120px 0 0 0;
}
footer ul li{
	margin: 0;
	padding: 0;
}
footer ul li::before{
	display: none;
}
footer .upper_sec .inner_container{
	background: #fff;
	padding: 50px 75px;
}
footer .upper_sec .inner_container .info_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .upper_sec .inner_container .info_boxes .sub_title{
	font-size: 18px;
  font-weight: 700;
  padding: 0 0 10px;
}
footer .upper_sec .inner_container .info_boxes .links_list ul li a{
	font-size: 15px;
	margin: 0 0 10px;
	transition: .5s;
}
footer .upper_sec .inner_container .info_boxes .links_list ul li a:hover{
	color: var(--gold);
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .ctc_info ul li{
	display: flex;
	align-items: center;
	padding: 0 0 5px;
	transition: .5s;
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .ctc_info ul li:hover{
	transform: translateY(-2px);
	color: var(--gold);
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .ctc_info ul li .icon_box{
	padding: 0 10px 0 0;
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .ctc_info ul li .txt{
	font-size: 15px;
	color: #414042;
	white-space: nowrap;
	transition: .5s;
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .ctc_info ul li:hover .txt{
	color: var(--gold);
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .social_links{
	padding: 20px 0 0 0;
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .social_links ul li{
	display: inline-block;
	max-width: 20%;
	padding: 0 10px 0 0;
	transition: .5s;
}
footer .upper_sec .inner_container .info_boxes .ctc_info_box .social_links ul li:hover{
	transform: translateY(-2px);
}
footer .upper_sec .inner_container .center_logo{
	text-align: center;
}
footer .upper_sec .inner_container .center_logo img{
	max-width: 75%;
    margin: auto;
}
footer .last_box{
	background: var(--dk-grey);
	color: #fff;
	text-align: center;
	font-size: 16px;
	padding: 10px 0;
}
footer .last_box a{
	color: #fff;
}

/*sticky_right*/
.sticky_right {
  position: fixed;
  right: 0;
  bottom: calc(50% - 50px);
  z-index: 11;
}
.sticky_right .block_1 {
  display: flex;
  flex-direction: column;
}
.sticky_right .block_1 a{
  padding: 10px 10px 10px 15px;
  margin: 5px 0;
  width: 60px;
  background: var(--gold);
  transition: .5s;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

/*body_overlay*/
.body_overlay {
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.body_overlay .inner_box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.request_overlay_box {
  width: 380px;
  background: #fff;
  padding: 30px 40px;
  position: relative;
}
.request_overlay_box .form_wrapper form .input_box {
  padding: 0 0 10px;
}
.request_overlay_box .form_wrapper form .input_box input[type=text] {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_wrapper form .input_box select {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_wrapper form .input_box textarea {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_enquire_now{
  width: 98%;
  margin: 0 auto;
  padding: 2% 0%;
}
.close_overlay {
  position: absolute;
  right: -5px;
  top: -25px;
  width: 32px;
  height: 32px;
}
.close_overlay:hover {
  opacity: 1;
}
.close_overlay:before, .close_overlay:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.close_overlay:before {
  transform: rotate(45deg);
}
.close_overlay:after {
  transform: rotate(-45deg);
}

.form_wrapper .input_box{
  padding: 0 0 10px;
}
.form_wrapper .input_box input{
  border: none;
  outline: none;
  width: 100%;
  height: 45px;
  padding: 0 25px;
  font-size: 16px;
  color: #000;
  border-radius: 5px;
}
.form_wrapper .input_box select{
  border: none;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  font-size: 15px;
  color: #000;
}
.form_wrapper .input_box textarea{
  border: none;
  outline: none;
  width: 100%;
  height: 80px;
  padding: 15px 20px;
  font-size: 15px;
  color: #000;
  border-radius: 5px;
}
.form_wrapper .submit_box button{
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  background: var(--dk-grey);
  font-family: var(--gilda);
  color: #fff;
  padding: 10px;
  margin: 10px 0 0;
  border-radius: 5px;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}
.form_wrapper .submit_box button:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}