body {
	margin: 0;
	box-sizing: border-box;
	font-family: arial;
}

.main_logo a img {
	width: 330px;
	height: 75px;
}

.nav {
	/* background-color: #efefef; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	height: 90px;
	font-size: 15;
}

.nav>div:nth-child(1) {
	font-size: 1.25em;
	font-weight: bold;
}

.nav>.nav_list_menu>ul {
	list-style: none;
}

.nav>.nav_list_menu>ul>li {
	display: inline-block;
	padding: 35px 20px;
}

.nav>.nav_list_menu>ul>li>a {
	color: black;
	text-decoration: none;
	font-weight: bold;
}

.nav>.nav_list_menu>ul>li>div {
	position: absolute;
	left: 0;
	right: 0;
	top: 90px;
	background-color: #efefef;
	padding: 0 20% 35px 20%;
	transform: scale(1, 0);
	transform-origin: top;
	transition: transform 0.2s ease-in-out 0.2s;
}

.nav>.nav_list_menu>ul>li>div>* {
	opacity: 0;
	transition: opacity 0.1s ease-in-out 0.1s;
}

.nav>button {
	cursor: pointer;
	position: relative;
	width: 30px;
	height: 28px;
	display: none;
	appearance: none;
	border: none;
	background: unset;
	z-index: 99;
}

.nav>button>span {
	right: 0;
	position: absolute;
	height: 4px;
	width: 30px;
	background: black;
	border-radius: 2px;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	transform-origin: center;
}

.nav>button>span:nth-child(1) {
	top: 0;
}

.nav>button>span:nth-child(2) {
	top: 10px;
}

.nav>button>span:nth-child(3) {
	top: 20px;
}

.nav.active>button>span:nth-child(1) {
	transform: translateY(10px) rotate(-45deg);
}

.nav.active>button>span:nth-child(2) {
	opacity: 0;
}

.nav.active>button>span:nth-child(3) {
	transform: translateY(-10px) rotate(45deg);
}

.nav>.nav_list_menu>ul>li>div>button {
	appearance: none;
	position: relative;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 28px;
	background: unset;
}

.nav>.nav_list_menu>ul>li>div>button>span {
	right: 4px;
	position: absolute;
	height: 4px;
	width: 20px;
	background: black;
	border-radius: 2px;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	transform-origin: center;
}

.nav>.nav_list_menu>ul>li>div>button>span:nth-child(1) {
	top: 0px;
	transform: rotate(45deg);
}

.nav>.nav_list_menu>ul>li>div>button>span:nth-child(2) {
	top: 12px;
	transform: rotate(-45deg);
}

/* @media screen and (min-width: 1201px) { */
.nav>.nav_list_menu>ul>li>div>button {
	display: none;
}

.nav>.nav_list_menu>ul>li:hover>div {
	transform: scale(1, 1);
	transition: transform 0.2s ease-in-out;
}

.nav>.nav_list_menu>ul>li:hover>div>* {
	opacity: 1;
	transition: opacity 0.2s ease-in-out 0.3s;
}

/* } */
/* @media screen and (max-width: 1200px) { */
.nav>button {
	display: unset;
}

/* .nav {
		padding: 0 10%;
	} */
.nav>div:nth-child(1) {
	transition: opacity 0.2s ease-in-out 0.3s;
}

.nav.active>div:nth-child(1) {
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.nav>.nav_list_menu {
	padding: 0 10%;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	/* background-color: #ffffff; */
	display: none;
	justify-content: center;
	align-items: center;
	/* transform: scale(0,1); */
	/* transform-origin: right; */
	transition: transform 0.2s ease-in-out;
}

.nav.active>.nav_list_menu {
	/* transform: scale(1,1); */
	background: #fff;
	display: flex;
}

.nav>.nav_list_menu>ul {
	padding: 0;
	opacity: 0;
	/* text-align: right; */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: opacity 0.05s ease-in-out;
}

.nav.active>.nav_list_menu>ul {
	opacity: 1;
	transition: opacity 0.2s ease-in-out 0.3s;
}

.nav>.nav_list_menu>ul>li {
	display: block;
	margin: 10px 0;
	font-size: 20px;
	padding: 0;
}

.nav>div:nth-child(3) {
	opacity: 0;
	transition: 0.2s ease-in-out;
	position: absolute;
}

.nav.active>div:nth-child(3) {
	opacity: 1;
	transition: 0.2s ease-in-out 0.3s;
}

.nav>.nav_list_menu>ul>li>div {
	inset: 0;
	padding: 0 10%;
	transform: scale(0, 1);
	transform-origin: right;
	transition: transform 0.2s ease-in-out;
}

.nav>.nav_list_menu>ul>li>div>* {
	opacity: 0;
	transition: opacity 0.01s ease-in-out;
}

.nav>.nav_list_menu>ul>li>div.active {
	transform: scale(1, 1);
}

.nav>.nav_list_menu>ul>li>div.active>* {
	opacity: 1;
	transition: opacity 0.2s ease-in-out 0.3s;
}

/* } */

.inerpage-banner {
	background: transparent linear-gradient(102deg, #2180BF 0%, #00EBBA 100%) 0% 0% no-repeat padding-box;
	padding: 80px 0;
	position: relative;
}

.sub-header-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bannerpart {
	position: relative;
	z-index: 11;
	font-family: 'Poppins', sans-serif;
}

.bannerpart p {
	font-size: 28px;
	color: #fff;
	font-weight: 700;
}

.aboutus-sec {
	margin-top: 45px;
	display: inline-block;
	width: 100%;
	padding: 40px 0;
}

.about-inner {
	/* padding: 20px 15px;
	background: #fff;
	box-shadow: 0px 0px 50px #1427301a;
	width: 100%;
	border-radius: 5px; */
	/* display: flex;
	justify-content: center; */
	position: relative;
    padding: 30px 40px;
    margin-top: 130px;
    border-radius: 10px;
    margin-left: -50px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}

/* .aboutus-sec .about-left-img {
	width: 44%;
	display: inline-block;
	vertical-align: top;
	margin: 0 -2px 0 0;
}

.about-right-part {
	display: inline-block;
	width: 55%;
	padding: 0 40px 0 50px;
	vertical-align: top;
	min-height: 555px;
	background: #F4F6FA;
	margin: 0 0 0 -1px;
} */

.about-icon {
	color: #fff;
	background: transparent linear-gradient(180deg, #FE9432 0%, #FA5873 100%) 0% 0% no-repeat padding-box;
	font-size: 22px;
	border-radius: 4px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	vertical-align: top;
}
.about-left-image{
	background-image: url(../images/aboutimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	height: auto;
	border-radius: 10px;
	width: 100%;
	background-position: center;
}
.about-content{
	margin: 0 auto;
}
.about-content img{
	height: 500px;
	width: 360px;
}

.text-theme-color{
	color: #198A93;
}

.meet-doctors {
	padding: 50px 0;
}

.doctor-box {
	background: #fff;
	border-radius: 5px;
	/* display: inline-block; */
	text-align: center;
	box-shadow: 0px 0px 15px #0000001f;
}

.doctor-img {
	position: relative;
	overflow: hidden;
	transition: 0.5s;
}

.doctor-box img {
	/* width: 100%; */
	border-radius: 5px;
	height: 350px;
	object-fit: cover;
}

.doctor-img:hover:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: transparent linear-gradient(133deg, #2180BF 0%, #00EBBA 100%) 0% 0% no-repeat padding-box;
	border-radius: 5px;
	opacity: 0.5;
	transition: 0.5s;
	cursor: pointer;
}

.doctor-img:hover .btn {
	bottom: 5%;
	z-index: 10;
	cursor: pointer;
	padding: 6px 20px;
	font-size: 16px;
}

.doctor-img .btn {
	position: absolute;
	display: inline-block;
	vertical-align: bottom;
	bottom: -14%;
	right: 0;
	left: 0;
	text-align: center;
	margin: 0 auto;
	width: 132px;
	max-width: 100%;
	transition: 0.5s;
}

.cmn-btn {
	min-height: 35px;
	background: transparent linear-gradient(180deg, #FE9432 0%, #FA5873 100%) 0% 0% no-repeat padding-box;
	padding: 10px 20px;
	border-radius: 0;
	color: #fff;
	text-transform: capitalize;
	border: none;
	line-height: 30px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.doctor-heading {
	padding: 22px 0 20px;
}

.doctor-box h6 {
	font-size: 22px;
	font-weight: 600;
	color: #232323;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 10px;
}

.doctor-box p {
	margin-bottom: 0;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #344C5D;
}

.social-icon {
	position: absolute;
	bottom: -60px;
	left: 0;
	opacity: 0;
	display: block;
	width: 100%;
	text-align: center;
	transition: all .5s;
	z-index: 99;
}

.social-icon li {
	text-align: center;
	margin-right: 2px;
	display: inline-block;
}

.social-icon ul li:last-child {
	margin-right: 0;
}

.social-icon li a {
	color: #6f6f6f;
	display: inline-block;
	font-size: 16px;
}

.social-icon li a i {
	background: transparent linear-gradient(180deg, #FE9432 0%, #FA5873 100%) 0% 0% no-repeat padding-box;
	color: white;
	width: 40px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
}

.social-icon li a i {
	background-color: #f7b035;
	color: white;
	width: 40px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
}

.doctor-box:hover .social-icon {
	bottom: 5%;
	opacity: 1;
}

.meet-doctors .row {
	padding-top: 50px;
}

.cmn-heading h1 {
	font-size: 30px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	position: relative;
	padding-right: 15px;
	display: inline-block;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.cmn-heading h1 span {
	color: #198A93;
	padding-left: 5px;
	text-transform: capitalize;
}

.cmn-heading h1:after {
	content: "";
	position: absolute;
	width: 99px;
	height: 4px;
	background: #198A93;
	top: 45%;
	left: 100%;
}

.cmn-heading p {
	font-size: 18px;
	margin: 0 auto;
	width: 65%;
}


.extra-sec {
	background: transparent linear-gradient(113deg, #2180BF 0%, #00EBBA 100%) 0% 0% no-repeat padding-box;
	padding: 70px 0;
}

.left_content h2 {
	color: #fff;
	font-weight: 700;
}

.left_content h3 {
	color: #fff;
}

.left_content p {
	color: #fff;
}

.right_content p {
	color: #fff;

}
.newsletter{
	padding: 50px 0;
}
.news-inner {
	width: 85%;
	margin: 0 auto;
	background: transparent linear-gradient(101deg, #2180BF 0%, #00EBBA 100%) 0% 0% no-repeat padding-box;
	border-radius: 86px 0px;
	min-height: 172px;
	color: #fff;
	padding: 35px 25px 25px 25px;
	text-align: center;
	position: relative;
	z-index: 10;
}

.news-inner .new-col {
	display: inline-block;
	width: 48%;
	vertical-align: top;
	text-align: left;
}

.footer-section{
	background-color: #F4F6FA;
	padding: 50px 0;
}
.footer-menu-list{
	padding: 0;
	margin: 0;
}
.footer-menu-list li{
	display: inline-block;
	margin-right: 25px;
}
.footer-menu-list li:last-child{
	margin-right: 0;
}
.footer-menu-list li a{
	color: #198A93;
	font-size: 20px;
	text-decoration: none;
}
.footer-bootom {
    margin:20px 0;
}
.footer-bootom p {
    float: left;
    margin-bottom: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    width: 70%;
}

.footer-social-icon{
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	justify-content: end;
}
.footer-social-icon li{
	display: inline-block;
	margin-right: 5px;
}
.footer-social-icon li:last-child{
	margin-right: 0;
}
.footer-social-icon li a{
	width: 30px;
    height: 30px;
    display: inline-block;
    background: transparent linear-gradient(134deg , #2180BF 0%, #00EBBA 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 32px;
}
.footer-social-icon li a:hover {
    background: transparent linear-gradient(180deg, #FE9432 0%, #FA5873 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width:768px){
	.about-inner {
		padding: 30px;
		margin-left: 0;
		margin-top: 0;
	}
}

@media screen and (max-width:767px){
	.main_logo a img {
		width: 300px;
	}
	.about-content img {
	    height: 430px;
	    width: 300px;
	}
	.cmn-heading h1{
		font-size: 28px;
	}
	.cmn-heading h1:after{
		width: 32px;
	}
	.doctor-box img{
		width: 100%;
	}
	.cmn-heading p{
		width: 100%;
		font-size: 16px;
	}
	.newsletter-title{
		font-size: 20px;
	}
	.news-inner {
		width: 100%;
	}
	.main_logo{
		text-align: center;
	}
	.footer-menu-list li{
		display: block;
	}
	.footer-menu-list li:first-child{
		margin-right: 0;
		margin-bottom: 10px;
	}
	.footer-bootom p{
		width: 100%;
		text-align: center;
	}
	.footer-social-icon{
		display: block;
		text-align: center;
	}
}
@media screen and (max-width:320px){
	.about-content img {
		height: 390px;
		width: 250px;
	}
	.main_logo a img {
		width: 250px;
    height: 65px;
	}
	.cmn-heading h1 {
		font-size: 24px;
	}
}

	