@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

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

.row>* {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

:root {
	--body-font-family: 'Montserrat', sans-serif;
	--e-global-color-white: #fff;
	--e-global-color-black: #000;
	--e-global-color-dark-yellow: #CDA34D;
	--e-global-color-gray: #444444;
}

img {
	max-width: 100%;
}

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

a, a:hover {
	text-decoration: none;
	color: var(--e-global-color-white);
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
	max-width: calc(100% - 18rem);
}

body {
	font-size: 1.4rem;
	line-height: normal;
	font-weight: 400;
	color: var(--e-global-color-black);
	font-family:var(--body-font-family);
}

input,
select,
textarea,
input:focus,
select:focus,
textarea:focus {
	border: none;
	outline: none;
}

button,
button:focus {
	border: none;
	outline: none;
	cursor: pointer;
}

.section {
	position: relative;
	padding: 10rem 0;
	clear: both;
	width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

header, .logo img {
	transition: all .3s ease;
}

#menu_background_overlay, .hamburger_menu, .mobile_view, .mobile_hamburger {
	display: none;
}

header {
	width: 100%;
	float: left;
	position: relative;
	background: var(--e-global-color-white);
	z-index: 999;
}

.header_top {
	width: 100%;
	padding: 1.2rem 0;
	text-transform: uppercase;
	color: var(--e-global-color-white);
	background: var(--e-global-color-dark-yellow);
}



.header_bottom {
	width: 100%;
	float: left;
	background: var(--e-global-color-white);
	box-shadow: 0 0 2rem 0 rgb(0 0 0 / 6%);
}

.header_fixed {
	min-height: 13.8rem;
}

.header_fixed .header_bottom {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 111;
}

.logo {
	width: auto;
	max-width: 18%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.logo img {
	min-width: 20rem;
}

.logo a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.menu {
	width: 62%;
	float: left;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.menu ul li {
	position: relative;
	font-size: 1.5rem;
}

.menu ul li > a {
	padding: 3rem 2.5rem;
	position: relative;
    font-weight: 500;
    display: block;
    letter-spacing: .1rem;
    text-transform: uppercase;
	color: var(--e-global-color-dark);
	overflow: hidden;
}
.menu ul li > a::before {
	position: absolute;
	content: '';
	width: 32px;
	height: 2px;
	background: var(--e-global-color-dark-yellow);
	border-radius: 2px;
	top: 100%;
	left: 0px;
	right: 0px;
	margin: 0px auto;
}

.menu ul li .sub_menu {
	position: absolute;
	top: calc(100% + 15px);
	width: 280px;
	background: #FFFFFF;
	box-shadow: 0px 12px 55px rgba(0, 0, 0, 0.11);
	border-radius: 8px;
	padding: 20px 19px;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
	visibility: hidden;
}
.menu ul li .sub_menu li {
	width: 100%;
	display: inline-block;
}
.menu ul li .sub_menu li a {
	font-weight: 400;
	font-size: 12px;
	line-height: 30px;
	text-transform: uppercase;
	color: #000000;
	padding: 0px;
}
.menu ul li .sub_menu li a:hover {
	color: var(--e-global-color-dark-yellow);
}
.menu ul li .sub_menu li a::before {
	display: none;
}

.menu ul li.active > a, .menu ul li:hover > a {
	color: var(--e-global-color-dark-yellow);
}
.menu ul li.active > a::before,
.menu ul li > a:hover:before {
	top: 90%;
}

.menu ul li.child_menu > a span:after {
	font-family:'FontAwesome';
	content: "\f107";
	position: absolute;
	right: .8rem;
	top: 0;
	bottom: 0;
	margin: auto;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu ul li:hover .sub_menu {
	top: 100%;
	visibility: visible;
	transition: 0.3s;
}

.menu ul li.child_menu .child_menu_panel {
	-webkit-box-shadow: 0 .3rem 1.5rem 0 rgb(0 0 0 / 5%);
    box-shadow: 0 .3rem 1.5rem 0 rgb(0 0 0 / 5%);
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--e-global-color-white);
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    pointer-events: none;
    max-height: none;
    z-index: 999;
    min-width: 22rem;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease;
}

.menu ul li.child_menu .child_menu_panel li {
	width: 100%;
}

.menu ul li.child_menu .child_menu_panel li a {
	padding: 1.5rem;
}

.menu ul li.child_menu:hover .child_menu_panel {
	opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

.header_button {
	width: 20%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header_button .green_button {
	margin: 0;
}

.header_button .green_button a {
	font-size: 1.4rem;
	padding: 1.8rem 2.5rem;
}

.green_button {
	margin-top: 1rem;
	display: inline-block;
}

.green_button a {
	font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .16rem;
    background-color: #00BF71;
    padding: 2rem 4rem;
    display: inline-block;
    border-radius: .3rem;
    color: var(--e-global-color-black);
    background: var(--e-global-color-dark-yellow);
    transition: all .3s;
}

.green_button a:hover {
	transform: translateY(-.8rem);
}

.mob_book_appointment {
	display: none;
}


/*-- header end --*/



.home_banner {
	width: 100%;
    position: relative;
    overflow: hidden;
    /* padding: 5rem 0; */
    height: calc(100vh - 14rem);
	background: url(../images/banner-bg.jpg) no-repeat right;
	background-size: cover;
}

.home_banner .container {
	height: 100%;
	position: relative;
}

.banner_image {
	height: 100%;
}

.banner_image img {
	height: 100%;
	float: right;
}

/* .home_banner_overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 2;
	position: absolute;
	background: rgba(73, 73, 73, 0.35);
} */

.home_banner_content {
	color: var(--e-global-color-white);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home_banner_content h5 {
	font-weight: 500;
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	letter-spacing: .1rem;
	text-transform: uppercase;
}

.home_banner_content h1 {
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 5.6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
	color: var(--e-global-color-dark-yellow);
}

.home_banner_content p {
	font-size: 2.4rem;
}

.home_banner_content .green_button a {
	border-radius: 0;
	padding: 2.2rem 4rem;
	color: var(--e-global-color-black);
	background: var(--e-global-color-dark-yellow);
}


/* home_aboutUs start */
.home_aboutUs {
	width: 100%;
	overflow: hidden;
	padding: 87px 0px 64px;	
}
.home_aboutUs .container {
	display: flex;
	flex-wrap: wrap;
}
.aboutUs_img {
	max-width: 50%;
	flex: 0 0 50%;
}
.aboutUs_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.aboutUs_info {
	max-width: 48.5%;
	flex: 0 0 48.5%;
	margin-left: 1.5%;
	background: rgba(216, 216, 216, 0.15);
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.09);
	border-radius: 21px;
	padding: 68px 22px 78px;
}
.aboutUs_info h5 {
	font-weight: 500;
	font-size: 8.49px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 16px;
}
.aboutUs_info h2 {
	font-weight: 700;
	font-size: 26.49px;
	line-height: 35px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 29px;
}
.aboutUs_info h2 .markClr {
	display: inline-block;
	color: var(--e-global-color-dark-yellow);
}
.aboutUs_info p {
	font-weight: 500;
	font-size: 9.49px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
}
.aboutUs_info p + p {
	margin-top: 18px;
}
.btnArea {
	width: 100%;
	display: inline-block;
}
.aboutUs_info .btnArea {
	margin-top: 44px;
	text-align: left;
}
.bookConsult_btn {
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #141313;
	padding: 12px 30px;
	background: #CDA34D;
	transition: all .3s;
	display: inline-block;
}
/* home_aboutUs end */

/* what_we_do_section start */
.what_we_do_section {
	width: 100%;
	padding: 97px 0px 142px;
	background: var(--e-global-color-dark-yellow);
}
.sectionTitle {
	font-weight: 500;
	font-size: 16.49px;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	text-align: center;
}
.sectionTitle::before {
	position: absolute;
	content: '';
	width: 30px;
	height: 3px;
	background: rgba(0, 0, 0, 0.2);
	left: 0px;
	right: 0px;
	bottom: -17px;
	margin: 0px auto;
}
.what_we_do_section .sectionTitle {
	margin-bottom: 125px;
}

.whatWe_cstm_row {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -15px;
}
.whatWe_cstm_row .cstm_col_4 {
	max-width: 33.333%;
	flex: 0 0 33.333%;
	padding: 0px 15px;
	display: flex;
}
.whatWe_col {
	display: flex;
	flex-direction: column;
	position: relative;
}
.whatWe_img {
	width: 100%;
	height: 347px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 33px;
}
.whatWe_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.whatWe_cstm_row figcaption {
	text-align: center;
	padding-bottom: 54px;
}
.whatWe_cstm_row figcaption h3 {
	font-weight: 700;
	font-size: 27.49px;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4D4D4D;
	margin-bottom: 37px;
}
.whatWe_cstm_row figcaption p {
	font-weight: 400;
	font-size: 12.53px;
	line-height: 23px;
	color: #000000;
}
.whatWe_cstm_row figcaption .moreBtn {
	font-weight: 500;
	font-size: 11.4px;
	line-height: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--e-global-color-dark-yellow) !important;
	display: inline-block;
	background: #111010;
	padding: 8px 16px;
	transition: all .3s;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0px auto;
}

.whatWe_cstm_row figcaption .moreBtn:hover {
	bottom: 15px;
}
/* what_we_do_section end */

/* notice_section */
.notice_section {
	width: 100%;
	background: #CDA34D;
	padding: 0px 20px;
	margin-top: 97px;
}

.noticeScroll_box {
	position: relative;
	padding: 0rem 1.75rem;
}
.txt_scroll {
	display: inline-block;
}
.txt_scroll img {
	display: inline-block;
	vertical-align: middle;
}
.txt_scroll p {
	font-weight: 500;
	font-size: 20.5166px;
	line-height: 33px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FFFFFF;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	margin-bottom: 0px;
}

/* brand_section start */
.brand_section {
	width: 100%;
	display: inline-block;
	padding: 112px 0px 56px;
}

.brand_section .sectionTitle {
	margin-bottom: 103px;
}

.brand_wrap {
	max-width: 1080px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
}
.brand_wrap .brand_col_4 {
	max-width: 33.333%;
	flex: 0 0 33.333%;
}
.brand_con_col {
	width: 100%;
	height: 170px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #CDA34D;
}
.brand_wrap .brand_col_4:nth-child(3n) .brand_con_col {
	border-right: 0px;
}
.brand_wrap .brand_col_4:nth-last-child(1) .brand_con_col,
.brand_wrap .brand_col_4:nth-last-child(2) .brand_con_col,
.brand_wrap .brand_col_4:nth-last-child(3) .brand_con_col {
	border-bottom: 0px;
}
/* brand_section end */

/* testimonial_section start */
.testimonial_section {
	width: 100%;
	display: inline-block;
	padding: 56px 0px 44px;
}
.testimoni_box {
	max-width: 899px;
	margin: 0px auto 72px;
	background: #CDA34D;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 21px;
	padding: 28px 72px 35px;
	position: relative;
}
.testimoni_cont {
	width: 100%;
	display: inline-block;
	text-align: center;
}
.testimoni_cont .testimoni_img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #D9D9D9;
	border: 9px solid #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	position: relative;
	margin: 0px auto;
}
.testimoni_img figure {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	margin: 0px;
	overflow: hidden;
}
.testimoni_img figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimoni_img .quote {
	width: 33px;
	height: 33px;
	border-radius: 50%;
	overflow: hidden;
	background: #CDA34D;
	position: absolute;
	right: -5px;
	bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimoni_cont h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 43px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #101820;
	margin: 37px 0px 10px;
}
.testimoni_cont p {
	font-weight: 300;
	font-size: 16px;
	line-height: 36px;
	color: #101820;
}
.rating_box {
	display: flex;
	margin-top: 39px;
	align-items: center;
	justify-content: center;
}
.rating_box li {
	display: inline-block;
}
.rating_box li + li {
	margin-left: 5.5px;
}
.feedBack_holderName {
	margin-top: 9px;
	font-weight: 600;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #101820;
}
.feedBack_holderDesig {
	display: inline-block;
	font-weight: 400;
	font-size: 20px;
	line-height: 34px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #505050;
	margin-top: 9px;
}
.cmn_nx_pv_btn {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #272F35;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	outline: none;
}
.cmn_nx_pv_btn:focus {
	border: none;
	outline: none;
}
.testimoni_box .slick-next {
	right: -67px;
}
.testimoni_box .slick-prev {
	left: -67px;
}
.testimoni_box .slick-disabled {
	background: rgba(39, 47, 53, 0.43);
}
.testimoni_box .slick-disabled img {
	opacity: 0.87;
}

.testimoni_box .slick-dots {
	position: absolute;
	left: 0px;
	right: 0px;
	top: calc(100% + 49px);
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimoni_box .slick-dots li button {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #000000;
	line-height: 0px;
	font-size: 0px;
	border: none;
	outline: none;
	transition: 0.3s;
}
.testimoni_box .slick-dots li button:focus {
	border: none;
	outline: none;
}
.testimoni_box .slick-dots li.slick-active button {
	width: 23px;
	height: 23px;
	background: #CDA34D;
}
.testimoni_box .slick-dots li + li {
	margin-left: 7px;
}

/* testimonial_section end */

/* insta_section start */
.insta_section {
	width: 100%;
	display: inline-block;
	padding: 44px 0px 68px;
}
.insta_section h2 {
	font-size: 24px;
	line-height: 43px;
	text-align: center;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #101820;
	margin-bottom: 28px;
}
.insta_wrap {
	margin: 0px -12px;
	display: flex;
	flex-wrap: wrap;
}
.insta_wrap .cstm_col_4 {
	max-width: 33.333%;
	flex: 0 0 33.333%;
	padding: 0px 12px;
}
.insta_con_col {
	display: block;
	position: relative;
	width: 100%;
	height: 17em;
	overflow: hidden;
}
.insta_con_col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.insta_con_col .cover {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0px;
	top: 110%;
	transition: 0.5s;
}
.insta_con_col:hover .cover {
	top: 0px;
}
/* insta_section end */

/* map_section start */
.map_section {
	width: 100%;
	display: inline-block;
	padding-left: 8rem;
	padding-bottom: 53px;
}
.map_container {
	display: flex;
}
.openTime_box {
	width: 340px;
	border: 10px solid #000000;
	border-right: 0px;
	position: relative;
	z-index: 1;
	padding: 53px 28px 74px;
}
.openTime_box::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 43px;
	top: 0px;
	right: 0px;
	background: #CDA34D;
	z-index: -1;
}
.openTime_box::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 43px;
	bottom: 0px;
	right: 0px;
	background: #CDA34D;
	z-index: -1;
}
.openTime_box .time_sc_txt {
	font-weight: 500;
	font-size: 20.006px;
	line-height: 20px;
	text-transform: capitalize;
	color: #CDA34D;
	margin-bottom: 22px;
}
.openTime_box h3 {
	font-weight: 600;
	font-size: 30.002px;
	line-height: 30px;
	text-transform: capitalize;
	color: #000000;
	margin-bottom: 37px;
}
.openTime_box p {
	font-weight: 400;
	font-size: 14px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 38px;
}
.time {
	display: block;
	font-weight: 500;
	font-size: 16.002px;
	line-height: 19px;
	text-transform: capitalize;
	color: #101820;
}
.time + .time {
	margin-top: 15px;
}
.close_time {
	color: var(--e-global-color-dark-yellow);
}
.map_box {
	width: calc(100% - 340px);
	padding-left: 79px;
}
.map_box iframe {
	width: 100%;
	height: 100%;
}
/* map_section end */

/* footer start */
footer {
	width: 100%;
	padding-top: 31px;
	background: #262323;
}
.ftr_topBox {
	padding-bottom: 34px;
	border-bottom: 2px solid #363636;
}
.ftr_formBox {
	width: 100%;
	max-width: 420px;
	margin: 0px auto;
	text-align: center;
}
.ftr_formBox h5 {
	font-weight: 400;
	font-size: 16px;
	line-height: 43px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #FFFFFF;
	margin: 8px 0px 17px;
}
.formFild_wrap {
	width: 100%;
	display: inline-block;
	padding: 6px;
	background: #444444;
}
.formFild_wrap input {
	width: 60%;
	float: left;
	margin-right: 10px;
	padding: 10px 12px;
	font-weight: 500;
	font-size: 10px;
	line-height: 29px;
	letter-spacing: 1px;
	background: none;
	border: none;
	color: #FFFFFF;
}
.formFild_wrap input::placeholder {
	color: #919191;
}
.formFild_wrap .subscribe_btn {
	border: none;
	outline: none;
	font-weight: 700;
	font-size: 10px;
	line-height: 29px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #333333;
	background: #CDA34D;
	padding: 10px 23px;
	float: left;
}
.formFild_wrap input:focus,
.formFild_wrap .subscribe_btn:focus {
	outline: none;
	border: none;
}

.ftr_mdlBox {
	width: 100%;
	display: inline-block;
	padding: 32px 0px 24px;
}
.ftr_mdlcont_wraper {
	display: flex;
	flex-wrap: wrap;
}
.ftr_cont_col {
	max-width: 32%;
	flex: 0 0 32%;
	padding: 0px 20px;
}
.ftr_cont_col + .ftr_cont_col {
	margin-left: 2%;
	border-left: 2px solid #363636;
}

.ftr_cont_col .ftr_cont_title {
	font-weight: 600;
	font-size: 24px;
	line-height: 43px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #FFFFFF;
	margin-bottom: 16px;
}
.ftr_cont_col p {
	font-weight: 300;
	font-size: 10px;
	line-height: 23px;
	color: #FFFFFF;
	margin-bottom: 31px;
}
.ftr_cont_col .moreAbout {
	display: block;
	font-weight: 600;
	font-size: 13px;
	line-height: 23px;
	color: #CDA34D;
	position: relative;
	padding-left: 15%;
}
.ftr_cont_col .moreAbout::before {
	position: absolute;
	content: '';
	width: 12%;
	height: 2px;
	background-color: #CDA34D;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.news_listBox li {
	display: flex;
	align-items: center;
	padding: 18px 0px;
}
.news_listBox li + li {
	border-top: 1px solid #363636;
}
.news_listBox li:first-child {
	padding-top: 0px;
}

.news_listBox li:last-child {
	padding-bottom: 0px;
}
.news_listBox li figure {
	width: 55px;
	height: 55px;
	margin: 0px;
}
.news_listBox li figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_listBox li figcaption {
	width: calc(100% - 55px);
	padding-left: 20px;
}
.news_listBox li figcaption .date {
	display: block;
	font-weight: 300;
	font-size: 10px;
	line-height: 16px;
	color: #FFFFFF;
}
.news_listBox li figcaption h4 {
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	color: #FFFFFF;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
}

.address_list li {
	padding: 13px 0px;
	display: flex;
	align-items: center;
}
.address_list li + li {
	border-top: 1px solid #363636;
}

.address_list li:first-child {
	padding-top: 0px;
}
.address_icon {
	width: 17px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.address_txt {
	width: calc(100% - 17px);
	padding-left: 17px;
	display: inline-block;
	font-weight: 300;
	font-size: 10px;
	line-height: 17px;
	color: #FFFFFF;
	margin: 0px;
}

.copyright_box {
	padding: 18px 0px 20px;
	border-top: 2px solid #363636;
}
.copyright_box p {
	font-weight: 400;
	font-size: 12px;
	line-height: 43px;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	color: #FFFFFF;
}
.copyright_box p > a {
	color: #CDA34D;
	display: inline-block;
}
/* footer end */

.bookConsult_btn:hover {
	transform: translateY(-.8rem);
	color: #141313;
}


/*-------- Home Page End ---------*/

/* start: appoinment modal */
.appoinment__modal .modal-dialog {
	max-width: 330px;
}
.appoinment__modal .modal-content {
	border: none;
	background-color: transparent;
	border-radius: 10px;
	overflow: hidden;
}
.appoinment__modal .modal-body {
	width: 100%;
	display: inline-block;
	background: #DCB77D;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.22);
	border-radius: 10px;
	padding: 0px;
}
.modal_profBox {
	padding: 19px 30px 12px;
}
.modal_profBox h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	color: #212121;
	margin-bottom: 10px;
}
.modal_profBox p {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #212121;
}

.modal_profImg_wrap {
	margin: 0px;
	display: inline-block;
}
.modal_profImg_wrap .modal_profImg {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.modal_profImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.modal_profImg_wrap figcaption {
	font-weight: 500;
	font-size: 9px;
	line-height: 12px;
	text-align: center;
	color: #212121;
	margin-top: 5px;
}

.modal__appoinment_form {
	padding: 15px 30px 70px;
	background: #FFFFFF;
	border-radius: 20px 20px 0px 0px;
}
.modal__appoinment_form .fild_group {
	width: 100%;
	display: inline-block;
	margin-bottom: 13px;
}
.modal__appoinment_form .form_fild,
.modal__appoinment_form input,
.modal__appoinment_form select,
.modal__appoinment_form textarea {
	width: 100%;
	display: inline-block;
	padding: 14px 0px 11px;
	border: none;
	border-bottom: 1px solid #ECEFF1;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #647A8E;
}
.modal__appoinment_form .form_fild::placeholder,
.modal__appoinment_form input::placeholder,
.modal__appoinment_form select::placeholder,
.modal__appoinment_form textarea::placeholder {
	color: #647A8E;
}
.submitBtn,
.modal__appoinment_form button,
.modal__appoinment_form input[type="button"] {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: #0C0C0C;
	background: #E2A347;
	border-radius: 4px;
	margin-top: 10px;
	margin-bottom: 3px;
	width: 100%;
	display: inline-block;
	padding: 13px 10px;
}
.reciveMsg {
	display: block;
	font-weight: 400;
	font-size: 8px;
	line-height: 12px;
	letter-spacing: 0.5px;
	color: #999999;
}
/* end: appoinment modal */


/* about-us */
.inner_page_banner {
	width: 100%;
	height: calc(100vh - 14rem);
	background: linear-gradient(180deg, #CCA987 0%, #D6C2AF 50%, #C79B76 100%);
	position: relative;
	z-index: 1;
	padding-bottom: 84px;
}
.bnrImg_box {
	position: absolute;
	z-index: -1;
	right: 10%;
	top: 0;
	width: auto;
	height: 100%;
}
.bnrImg_box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.inner_page_banner .container {
	height: 100%;
	display: flex;
	align-items: flex-end;
}
.page_nameBox strong {
	font-weight: 500;
	font-size: 12.487px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FFFFFF;
	display: block;
}
.page_nameBox h2 {
	font-weight: 400;
	font-size: 45.1509px;
	line-height: 56px;
	color: #FFFFFF;
}

.aboutUs_para_section {
	width: 100%;
	display: inline-block;
	padding: 57px 0px 56px;
}
.aboutUs_txtwrap {
	width: 100%;
	display: inline-block;
	padding: 75px 0px 50px;
	background: #CDA34D;
}
.aboutUs_txtwrap h3 {
	font-weight: 500;
	font-size: 25.49px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4D4D4D;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}
.aboutUs_txtwrap h3::before {
	position: absolute;
	content: '';
	width: 40px;
	height: 3px;
	background: #000000;
	opacity: 0.2;
	left: 0px;
	top: calc(100% + 17px);
	z-index: -1;
}
.aboutUs_txtwrap p {
	font-weight: 400;
	font-size: 17.7227px;
	line-height: 28px;
	color: #000000;
}
.aboutUs_txtwrap p + p {
	margin-top: 20px;
}


.founder_section {
	width: 100%;
	display: inline-block;
	padding-bottom: 79px;
	background: #FFFFFF;
}
.founder_section .container {
	display: flex;
	flex-wrap: wrap;
}
.founder_img {
	width: 50%;
	display: flex;
}
.founder_img figure {
	width: 100%;
	height: 100%;
	margin: 0px;
}
.founder_img figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.founder_info {
	width: 48%;
	margin-left: 2%;
	padding: 35px 16px 48px;
	background: rgba(216, 216, 216, 0.15);
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.09);
	border-radius: 21px;
	display: flex;
	flex-direction: column;
}
.founder_info h2 {
	font-weight: 700;
	font-size: 64.49px;
	line-height: 60px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #CDA34D;
	margin-bottom: 24px;
}
.founder_info h2 small {
	display: block;
	font-size: 17.49px;
	font-weight: 700;
	line-height: 1;
	color: #000000;
}
.founder_info p {
	font-weight: 500;
	font-size: 9.49px;
	line-height: 26px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 0px;
}

.oueTeam_section {
	padding: 81px 0px 47px;
	background: #CDA34D;
}
.oueTeam_section h4 {
	font-weight: 500;
	font-size: 16.49px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	z-index: 1;
}
.oueTeam_section h4::before {
	position: absolute;
	content: '';
	width: 41px;
	height: 3px;
	background: #000000;
	opacity: 0.2;
	left: 0px;
	right: 0px;
	margin: 0px auto;
	top: calc(100% + 20px);
}
.team_sliderBox {
	margin-top: 83px;
}
.team_itm {
	padding: 0px 19px;
}
.team_itm figure {
	width: 100%;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 24px;
	overflow: hidden;
}
.team_itm figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.designation_box {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-top: 10px;
}
.designation_box span {
	display: block;
	font-weight: 500;
	font-size: 12.487px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4D4D4D;
	margin-bottom: 15px;
}
.designation_box h5 {
	font-weight: 700;
	font-size: 14.5268px;
	line-height: 23px;
	text-align: center;
	color: #000000;
	margin: 0px;
}

.oueTeam_section .slick-dots {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-top: 109px;
}
.oueTeam_section .slick-dots li {
	display: inline-block;
}
.oueTeam_section .slick-dots li button {
	font-size: 0px;
	line-height: 0px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #000000;
}
.oueTeam_section .slick-dots li + li {
	margin-left: 7px;
}
.oueTeam_section .slick-dots .slick-active button {
	width: 23px;
	height: 23px;
	background-color: #FFFFFF;
}

.form_section {
	padding: 116px 15px 74px;
}
.form_box {
	width: 100%;
	max-width: 692px;
	margin: 0px auto;
}
.form_box h3 {
	font-weight: 500;
	font-size: 12.487px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4D4D4D;
	position: relative;
	z-index: 1;
	margin-bottom: 43px;
}
.form_box h3::before {
	position: absolute;
	content: '';
	width: 30px;
	height: 3px;
	background: #000000;
	opacity: 0.2;
	left: 0px;
	top: calc(100% + 20px);
}
.fild_group {
	width: 100%;
	display: inline-block;
}
.form_fild {
	width: 100%;
	display: inline-block;
	padding: 10px 11px;
	font-weight: 400;
	font-size: 14.5268px;
	line-height: 18px;
	color: #757575;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}
.form_box .form_fild:focus {
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.form_box .form_fild::placeholder {
	color: #000000;
}
.fild_group + .fild_group {
	margin-top: 20px;
}
.privacy_txt {
	font-weight: 400;
	font-size: 13px;
	line-height: 21px;
	color: #4D4D4D;
	display: block;
	font-style: italic;
	margin-top: 22px;
}
.privacy_txt a {
	color: #000000;
}
.privacy_txt a:hover {
	color: #CDA34D;
}
.sendBtn {
	font-weight: 500;
	font-size: 11.4px;
	line-height: 11px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 11px 23px;
	background: #000000;
	transition: all 0.4s ease-in-out;
	margin-top: 12px;
}
.sendBtn:hover {
	transform: translateY(-.8rem);
}
/* about-us */

/* service-page */
.servicePage_bnr {
	background: rgba(0, 0, 0, 0.15);
}
.servicePage_bnr .bnrImg_box {
	left: 0px;
	right: 0px;
	margin: 0px auto;
}

.service_accordion_section {
	padding: 58px 0px;
}
.service_accordion_wrap {
	padding: 48px 15px;
	background: #CDA34D;
}
.serv_accr_main {
	width: 100%;
	max-width: 1112px;
	margin: 0px auto;
}

.servName {
	display: inline-block;
	font-weight: 600;
	font-size: 21.49px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #CDA34D;
	padding: 8px 16px;
	background: #000000;
	border-radius: 4px;
	margin-bottom: 22px;
}
.serv_accr {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.serv_accr:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.collapse_btn {
	width: 100%;
	display: inline-block;
	background: none;
	text-align: left;
	font-weight: 500;
	font-size: 14.7347px;
	line-height: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	padding: 26px 0px;
	position: relative;
}
.collapse_btn::before {
	position: absolute;
	content: '';
	width: 12px;
	height: 12px;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../images/right-arrow-black.png);
	background-repeat: no-repeat;
	transition: 0.5s;
}
.collapse_btn[aria-expanded="true"]::before {
	transform: translateY(-50%) rotate(90deg);
}
.colapse_cont {
	padding: 15px 0px 40px;
}
.colapse_cont p {
	font-weight: 500;
	font-size: 12.487px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #4D4D4D;
}
/* service-page */

/* contact-page */
.contact_box_section {
	width: 100%;
	display: inline-block;
	padding: 77px 0px;
}
.contact_box_section .cstm_row {
	margin: 0px -7px;
	display: flex;
	flex-wrap: wrap;
}
.contact_box_section .col_4 {
	width: 33.333%;
	padding: 0px 7px;
	display: flex;
}
.contact_col {
	width: 100%;
	padding: 60px 30px 93px;
	background: #F7F7F7;
	border-radius: 26px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: 0.5s;
}
.contact_col .iconBox {
	width: 134px;
	height: 134px;
	border-radius: 50%;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
	margin-bottom: 56px;
}
.iconBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact_col h5 {
	font-weight: 500;
	font-size: 18.49px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 10px;
}
.contact_col p,
.contact_col a {
	font-weight: 400;
	font-size: 14.53px;
	line-height: 23.24px;
	text-align: center;
	color: #4D4D4D;
	display: inline-block;
	word-break: break-all;
}
.contact_col .mob_no {	
	font-size: 32.53px;
	line-height: 23px;
	text-decoration-line: underline;
}
.contact_col:hover {
	background: #CDA34D;
	box-shadow: 0px 12px 55px rgba(0, 0, 0, 0.25);
}
.contact_col:hover .iconBox img {
	filter: brightness(0) invert(0);
}
/* contact-page */