/* 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;
}

html, body, #wrapper {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	scroll-behavior: smooth;
} 

body > #wrapper {
	height: auto; min-height: 100%; background:#fff ;
}
body
#main{
	width:100%;
	padding:0;
	margin:0 auto;
	padding-top: 135px;
}
*{
	padding:0;
	margin:0;
}

table{
	width: 100%;
}
table, th, td {
    border: 1px solid #1a5f80;
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
th {
    background-color: #104660;
    color: #fff;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
    line-height: 1.4em;
    color: #414042;
    padding: 0 0 15px 0;
}

/* #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: 15px 0;*/
	background: var(--gold);
	-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: 100px;
	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 0 0 0;
}
header nav {
	display: inline-block;
	float: right;
	padding: 0% 0% 0% 0%;
	background-color: transparent;
	margin-top: 0px;
/*	width: 68%;*/
	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: 10px 0;
}
header.smaller .logo {
	width: 150px;
}
header.smaller nav {
	display: inline-block;
	float: left;
	padding:0% 0% 0% 0%;
	margin-top: 0%;
}

header .inner_container{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
header .inner_container .menu_box ul{
	display: flex;
}
header .inner_container .menu_box ul li{
	list-style: none;
	padding: 0 0 0 15px;
}
header .inner_container .menu_box ul li a{
	padding: 5px;
	font-size: 16px;
	text-decoration: none;
	color: #000;
}
header .inner_container .right_txt .heading{
	letter-spacing: 1px;
	color: #fff;
	padding: 0;
	font-size: 35px;
}

.space{
	padding: 0;
}
.heading {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    font-family: var(--gilda);
    padding: 0 0 10px;
    color: #414042;
}
.sub_heading {
    font-size: 28px;
    line-height: 1.3em;
    font-family: var(--gilda);
    font-weight: 500;
    color: #414042;
}
.title {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 500;
    font-family: var(--gilda);
    color: #414042;
    position: relative;
}
.title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
}
.btn{
	outline: none;
    margin: 0;
    font-size: 20px;
    color: #fff;
    background: var(--gold);
    font-weight: 700;
    border: 1px solid var(--gold);
    padding: 7px 10px;
    border-radius: 5px;
    transition: 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
    background: unset;
    color: var(--gold);
}
#enquire_now {
    position: absolute;
    top: -150px;
}

/*hero*/
.hero{
	position: relative;
}
.hero .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.hero .inner_container .item_box{
	width: 100%;
}
.hero .inner_container .img_box img{
	width: 100%;
}
.hero .inner_container .overlay_text{
	position: absolute;
	width: 100%;
}
.hero .inner_container .overlay_text .inner_box{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hero .inner_container .overlay_text .left_box{
	padding: 0 0 0 3vw;
    width: 70%;
}
.hero .inner_container .overlay_text .left_box .info_box{
	width: 45%;
}
.hero .inner_container .overlay_text .left_box .info_box .heading{
	padding: 0 0 10px 0;
}
.hero .inner_container .overlay_text .right_box{
	width: 30%;
}
.hero .inner_container .overlay_text .right_box .form_box{
	padding: 30px 40px 30px 30px;
    background: #fff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: 0px 0 15px 0px #00000033;
}
.hero .inner_container .overlay_text .right_box .form_box .heading{
	font-size: 32px;
    padding: 0 0 15px;
}
.hero .inner_container .overlay_text .right_box .form_box .mobile_box {
    display: flex;
}
.hero .inner_container .overlay_text .right_box .form_box .mobile_box .code_box {
    width: 100px;
    margin: 0 5px 0 0;
}
.hero .inner_container .overlay_text .right_box .form_box .mobile_box .number_box {
    width: calc(100% - 100px);
}
.hero .inner_container .overlay_text .right_box .form_box .col-sm-12{
	padding: 0;
}
.hero .inner_container .overlay_text .right_box .form_box form input[type=text] {
    background: #f8f5ee;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.hero .inner_container .form_box #care_type_description{
	display: none;
	font-size: 14px;
    text-align: unset;
    font-weight: 500; 
    padding: 10px 15px;
    margin: 0 0 10px 0;
    color: #414042;
    background: #f5f0ea;
    border: 2px solid #d1a43e;
    border-radius: 5px;
}
.hero .inner_container .overlay_text .right_box .form_box form select{
	background: #f8f5ee;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.hero .inner_container .overlay_text .right_box .form_box form textarea{
	background: #f8f5ee;
    width: 100%;
    height: 70px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.hero .inner_container .overlay_text .right_box .form_box .btn{
	margin: 10px 0 0;
}

/*features_section*/
.features_section{
	padding: 5vw 0;
	position: relative;
}
.features_section .inner_container .sub_heading{
	text-align: center;
}
.features_section .inner_container .heading{
	text-align: center;
}
.features_section .inner_container .features_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
}
.features_section .inner_container .features_boxes .boxes {
    border: 1px solid #ede3cc;
    width: calc(33.333% - 20px);
    margin: 0 0 25px 0;
    padding: 20px 30px;
}
.features_section .inner_container .features_boxes .boxes .icon_box {
    min-height: 72px;
}
.features_section .inner_container .features_boxes .boxes .icon_box img {
    transition: all 0.3s;
}
.features_section .inner_container .features_boxes .boxes:hover .icon_box img {
    transform: scale(1.1);
}
.features_section .inner_container .features_boxes .boxes .title {
    padding: 15px 0 10px;
    margin: 0 0 10px;
}
.features_section .inner_container .button{
	text-align: center;
}

/*transition_care*/
.transition_care{
	position: relative;
}
.transition_care .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.transition_care .inner_container .left_box{
	width: 50%;
}
.transition_care .inner_container .left_box .img_box{
	width: 100%;
	overflow: hidden;
}
.transition_care .inner_container .left_box .img_box img{
	width: 100%;
	transition: all 0.3s;
}
.transition_care .inner_container .left_box .img_box:hover img{
	transform: scale(1.1);
}
.transition_care .inner_container .right_box{
	width: 50%;
}
.transition_care .inner_container .right_box .inner_box{
	padding: 0 0 0 120px;
}
.transition_care .inner_container .right_box .inner_box p{
	padding: 0;
}

/*special_conditions_section*/
.special_conditions_section {
  padding: 5vw 0 3vw;
  text-align: center;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	padding: 20px 0 0;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box {
    border: 1px solid #ede3cc;
    width: calc(25% - 15px);
    margin: 0 0 25px 0;
    padding: 30px;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box .inner_box p{
	padding: 25px 0 0;
	font-size: 16px;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box .inner_box .img_box{
	position: relative;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box .inner_box .img_box::before{
	position: absolute;
    content: '';
    left: calc(50% - 40px);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--gold);
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box .inner_box .img_box img{
	width: 70px;
	transition: all 0.3s;
}
.special_conditions_section .inner_container .special_conditions_boxes .info_box .box .inner_box:hover .img_box img{
	transform: scale(1.1);
}

/*video_wrapper*/
.video_wrapper{
	padding: 5vw 0;
	background: #f8f5ee;
}
.video_wrapper .inner_container .heading{
	text-align: center;
}
.video_wrapper .inner_container .video_box{
	padding: 20px 0 0;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.video_wrapper .inner_container .video_box .item_box{
	width: calc(25% - 20px);
	margin: 0 0 25px 0;
}
.video_wrapper .inner_container .video_box a{
    transition: all 0.3s;
    position: relative;
    width: 100%;
}
.video_wrapper .inner_container .video_box a img{
	width: 100%;
}
.video_wrapper .inner_container .video_box a::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(farthest-side at 50% 100%,transparent,transparent);
    background-size: 0 0;
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: rgb(0 0 0 / 35%) 0px -50px 36px -28px inset;
}
.video_wrapper .inner_container .video_box a:hover::before{
	background-image: radial-gradient(farthest-side at 50% 100%,#cdcdcd80,transparent);
	background-size: 100% 100%;
}
.video_wrapper .inner_container .video_box a:hover .img_box::before{
	width: 62px;
    height: 62px;
    top: calc(50% - 31px);
    left: calc(50% - 31px);
	background: transparent;
}

.video_wrapper .inner_container .video_box a:hover .img_box::after{
	top: calc(50% - 12px);
    left: calc(50% - 6px);
    border-left: 24px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.video_wrapper .inner_container .video_box a .play_btn_trans {
   	position: absolute;
    width: 15px;
    height: 15px;
    top: calc(50% - 7.5px);
    left: calc(50% - 7.5px);
}
.video_wrapper .inner_container .video_box a .play_btn_trans::after{
	content: " ";
    position: absolute;
    height: 56px;
    width: 56px;
    border-radius: 50px;
    left: calc(50% - 31px);
    top: calc(50% - 28px);
    border: 2px solid #fff;
}
.video_wrapper .inner_container .video_box a .play_btn_trans .play_img{
	position: relative;
}
.video_wrapper .inner_container .video_box a .play_btn_trans .play_img::before {
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    z-index: 1;
    border-left: 14px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 9px solid transparent;
    transform: scale(0,0);
    transform-origin: left;
    transition: all 0.3s;
}
.video_wrapper .inner_container .video_box a:hover .play_btn_trans .play_img::before{
	transform: scale(1,1);
}
.video_wrapper .inner_container .video_box.owl-theme .owl-nav {
    margin-top: 0px;
}
.video_wrapper .inner_container .video_box .owl-nav [class*=owl-] {
    position: absolute;
    top: calc(50% - 28px);
    font-size: 50px;
    font-weight: 100;
    line-height: 30px;
    outline: none;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s;
}
.video_wrapper .inner_container .video_box.owl-theme .owl-nav [class*=owl-] span {
    display: inline-block;
    font-family: 'FontAwesome';
}
.video_wrapper .inner_container .video_box .owl-nav [class*=owl-]:hover{
	filter: brightness(0) saturate(100%) invert(69%) sepia(67%) saturate(428%) hue-rotate(360deg) brightness(87%) contrast(88%);
}
.video_wrapper .inner_container .video_box .owl-nav .owl-prev {
  left: -50px;
}
.video_wrapper .inner_container .video_box .owl-nav .owl-next {
  right: -50px;
}
.video_wrapper .inner_container .button{
	text-align: center;
    padding: 20px 0 0;
}

/*proven_recoveries*/
.proven_recoveries{
	padding: 80px 0 60px;
	position: relative;
}
.proven_recoveries .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 90%;
    margin: 0 auto;
}
.owl-carousel.owl-theme .owl-nav [class*=owl-] span {
    font-size: 50px;
    line-height: 0.2em;
    padding: 0 0 0.3em 0;
    font-family: 'Font Awesome 5 Free';
    color: var(--gold);
}
.owl-theme .owl-nav [class*=owl-]{
	position: absolute;
    top: calc(50% - 25px);
    background: transparent !important;
}
.owl-theme .owl-nav{
	margin: 0;
}
.proven_recoveries .inner_container .proven_recoveries_slider.owl-theme .owl-nav .owl-prev{
	left: -35px;
}
.proven_recoveries .inner_container .proven_recoveries_slider.owl-theme .owl-nav .owl-next{
	right: -107%;
}
.proven_recoveries .inner_container .proven_recoveries_slider{
	width: 50%;
}
.proven_recoveries .inner_container .item_box{
	width: 50%;
}
.proven_recoveries .inner_container .inner_box{
	padding: 0 30px 0 0;
}
.proven_recoveries .inner_container .inner_box p{
	padding: 0 0 10px 0;
}
.proven_recoveries .inner_container .inner_box ul{
	padding: 0 0 15px 20px;
}
.proven_recoveries .inner_container .inner_box ul li{
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    color: #414042;
    list-style: disc;
}
.proven_recoveries .inner_container .inner_box .button{
	padding: 10px 0 0;
}
.proven_recoveries .inner_container .img_box{
	width: 100%;
	overflow: hidden;
}
.proven_recoveries .inner_container .img_box img{
	width: 100%;
	transition: all 0.3s;
}
.proven_recoveries .inner_container .img_box:hover img{
	transform: scale(1.1);
}

/*step_by_step*/
.step_by_step{
	text-align: center;
    background: #f8f5ee;
    padding: 3vw 0;
    position: relative;
}
.step_by_step .inner_container .heading{
	padding: 0;
}
.step_by_step .inner_container .heading span{
	font-size: 50px;
}

/*number_by_number*/
.number_by_number{
	padding: 5vw 0;
	text-align: center;
	position: relative;
}
.number_by_number .inner_container{
	display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
}
.number_by_number .inner_container .title::before{
	display: none;
}
.number_by_number .inner_container .title{
	padding: 20px 0 0;
}
.number_by_number .inner_container .inner_box{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.number_by_number .inner_container .inner_box .img_box{
	width: 200px;
}
.number_by_number .inner_container .inner_box .img_box img{
	transition: all .3s;
}
.number_by_number .inner_container .inner_box:hover .img_box img{
	transform: scale(1.1);
}

/*facility_highlights_section*/
.facility_highlights_section{
	background: #f8f5ee;
	padding: 5vw 0;
	text-align: center;
}
.facility_highlights_section .inner_container .facility_highlights_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes{
	width: calc(25% - 20px);
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes .inner_box .img_box{
	overflow: hidden;
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes .inner_box .img_box img{
	transition: all 0.3s;
	width: 100%;
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes .inner_box:hover .img_box img{
	transform: scale(1.1);
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes .title{
	padding: 10px 0 5px;
}
.facility_highlights_section .inner_container .facility_highlights_boxes .boxes .title::before{
	display: none;
}
.facility_highlights_section .inner_container .button{
	text-align: center;
}

/*our_core_team_section*/
.our_core_team_section{
	padding: 5vw 0;
}
.our_core_team_section .inner_container .heading{
	text-align: center;
}
.our_core_team_section .inner_container p{
	text-align: center;
}
.our_core_team_section .inner_container .our_core_team_boxes{
	padding: 20px 0 0;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box {
    width: calc(16.666% - 10px);
    transition: all 0.3s;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box .inner_box {
	display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
	padding: 15px 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box:hover {
	transform: translateY(-5px);
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box .inner_box .title{
	padding: 10px 0 5px;
	font-size: 18px;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box .inner_box p{
	font-size: 12px;
    line-height: 1.3em;
    padding: 0;
    text-align: unset;
}
.our_core_team_section .inner_container .our_core_team_boxes .info_box .box .inner_box .title::before{
	display: none;
}

/*testimonials*/
.testimonials{
	background: url(../images/testimonials.jpg) no-repeat;
    padding: 7.5vw 0;
    background-position: center center;
    background-size: cover;
}
.testimonials .inner_container{
	width: 1080px;
	margin: auto;
}
.testimonials .inner_container .sub_heading{
	color: var(--gold);
	text-transform: uppercase;
}
.testimonials .title{
	font-size: 40px;
	padding: 0 0 15px;
	margin: 0 0 15px;
	color: #fff;
}
.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 20px;
}
.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-dots {
    right: 0;
    bottom: -35px;
    position: absolute;
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid var(--gold);
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot span {
    /* width: 10px; */
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot span{
	background: transparent;
    border: 1px solid var(--gold);
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot:hover span{
	background: var(--light-gold);
}
.testimonials .testimonials_slider.owl-theme .owl-dots .owl-dot.active span{
	background: var(--gold);
}
.testimonials .inner_container .button{
	text-align: center;
}

/*faq_section*/
.faq_section{
	padding: 5vw 0;
}
.faq_section .inner_container .button{
	text-align: center;
	margin: 10px 0 0;
}

/*form_section*/
.form_section {
    background: #f8f5ee;
    padding: 5vw 0;
}
.form_section .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.form_section .inner_container .heading{
	padding: 0 0 15px 10px;
}
.form_section .inner_container form{
	display: flex;
	flex-wrap: wrap;
}
.form_section .inner_container form .col-sm-3{
	padding: 0 5px;
}
.form_section .inner_container form .mobile_box {
    display: flex;
}
.form_section .inner_container form .mobile_box .code_box {
    width: 100px;
    margin: 0 5px 0 0;
}
.form_section .inner_container form .mobile_box .number_box {
    width: calc(100% - 100px);
}
.form_section .inner_container form input[type=text] {
    background: #fff;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.form_section .inner_container form select{
	background: #fff;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.form_section .inner_container form textarea{
	background: #fff;
    width: 100%;
    height: 70px;
    font-size: 16px;
    color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0 0 10px;
}
.form_section .inner_container form #care_type_description{
    display: none;
    font-size: 14px;
    text-align: unset;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 0 10px 0;
    color: #414042;
    background: #f5f0ea;
    border: 2px solid #d1a43e;
    border-radius: 5px;
}
.form_section .inner_container .btn{
	margin: 10px 0 0;
}

/*footer_section*/
.footer_section{
	background-color: #d1a43e;
    padding: 1vw 0;
}
.footer_section .inner_container .inner_box{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.footer_section .inner_container .inner_box .ctc_box .icon{
	padding: 0 5px 0 0;
}
.footer_section .inner_container .inner_box .ctc_box .txt a{
	color: #fff;
	transition: .5s;
}
.footer_section .inner_container .inner_box .ctc_box .txt a:hover{
	color: #403f41;
}
.footer_section .inner_container .inner_box .line_space span{
	padding: 0 10px;
}

/*sticky_right*/
.sticky_right {
  position: fixed;
  right: 0;
  bottom: 50%;
  z-index: 11;
}
.sticky_right .block_1 {
  display: flex;
  flex-direction: column;
}
.sticky_right .block_1 a{
  padding: 10px 10px 10px 15px;
  width: 60px;
  background: var(--gold);
  transition: .5s;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

/*thankyou_page*/
.thankyou_page{
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
}
.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: var(--gold);
	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); }
}

button {
    background: none;
    border: none;
    appearance: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}
.nav {
    background: #414042;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    transition: transform 0.7s, opacity 1s;
    transform: translateX(100%);
    opacity: 0;
    color: #ffffff;
    z-index: 1;
}

.nav.show {
    transform: translateX(0%);
    opacity: 1;
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: inherit;
}

.list li {
    margin: 15px auto;
    font-size: 18px;
}

.list li a{
	color: #fff;
}
.hamburger {
    position: relative;
/*    margin-left: auto;*/
    width: 40px;
    height: 30px;
    z-index: 1;
}

.hamburger span {
    position: absolute;
    left: 0;
    background: #ffffff;
    width: inherit;
    height: 2px;
    transition: transform 0.5s, opacity 0.5s;
}

.top-line {
    top: 0px;
}

.center-line {
    top: 10px;
}

.bottom-line {
    bottom: 7px;
}

.top-line.active {
    transform: translateY(15px) rotate(45deg);
}

.center-line.active {
    opacity: 0;
}

.bottom-line.active {
    transform: translateY(-6px) rotate(-45deg);
}


#js-nav {
  display: none;
}

#js-nav.show {
  display: block;
}


#why_choose_us{
	position: relative;
    top: -200px;
}
#transition_care{
	position: relative;
    top: -200px;
}
#life_of_our_residents{
	position: relative;
    top: -200px;
}
#care_specialisations{
	position: relative;
    top: -200px;
}
#care_plans{
	position: relative;
    top: -200px;
}
#proven_recoveries{
	position: relative;
    top: -200px;
}
#step_by_step{
	position: relative;
    top: -200px;
}
#amenities_and_facilities{
	position: relative;
    top: -200px;
}
#our_experts{
	position: relative;
    top: -200px;
}
#testimonials{
	position: relative;
    top: -200px;
}
#faqs{
	position: relative;
    top: -200px;
}
#contact_us{
	position: relative;
    top: -200px;
}




