
body {
  color: #000;
    font-family: 'Poppins-Regular';
	overflow-x: hidden;
	
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Italic';
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}



a {
  	color: #196DC7;
  	transition: 0.5s;
}

a:hover, a:active {
  	outline: none;
  	text-decoration: none;
	  color: #ff5c59;
}

ul, p {
  	padding: 0;
	margin:0;
	font-size:15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins-Bold';
  	padding: 0;
	margin:0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
section
{
	display:block;
	float:left;
	width:100%;
}
.top_contact
{
	background: #569dff;
	padding: 10px 0;
}
.top_contact .left
{
	text-align: left;
}
.top_contact .left p
{
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	margin-right: 12px;
}
.top_contact .left p i
{
	margin-right: 5px;
}
.top_contact .right
{
	text-align: right;
}
.top_contact .right p
{
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	margin-right: 12px;
}
.top_contact .right p i
{
	margin-right: 5px;
	color: #fff;
}



.top_header_area
{
	padding: 10px 0;
	position: relative;
}
.top_header_logo_area
{
	display: inline-block;
	vertical-align: middle;
	width: 310px;
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
}
.top_header_logo_area:hover
{
	transform: scale(1.1);	
}
.top_header_logo_area img
{
	text-align: center;
	width: 100%;
	max-width: 310px;
}
.top_header_menu_area
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 315px);
	position: relative;	
}

.nav_main_area
{
	display:inline-block;
	vertical-align:middle;
	width:100%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  padding: 0;
  list-style: none;
  display:inline-block;
  vertical-align:middle;
  margin:0;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
  text-align:left;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li {
  float: left;
}
.nav-menu .home_icon
{
	font-size:16px;
	margin-right:5px;
}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  width: 100%;
  text-align: right;
}


@media (max-width: 992px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
	padding: 10px 18px;
	text-decoration: none;
	display: inline-block;
	color: #000;
	font-size: 16px;
	outline: none;
	position:relative;
    font-family: 'Poppins-SemiBold';
	text-transform: uppercase;
	border-radius: 5px;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
	background:#002975;
	color: #fff;
}


.nav-menu > li {
  margin-left: 5px;
}


.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  background: #1f1a17;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.26);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.26);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.26);
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #fff;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #e4fb41;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  margin: 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}
.fa-times
{
  color: #fff;	
}
.fa-bars
{
  color: #002975 !important;		
}

@media (max-width:992px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: #002975;
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
   cursor:pointer; 
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #DA251D;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #DA251D;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
#intro
{
	display:block;
	float:left;
	width:100%;
	position:relative;
	z-index:1;
	background:#000;
}
#intro .carousel
{
	position:relative;
	float:left;
	width:100%;
}
#intro .slider_contanear
{
	display:block;
	float:left;
	width:100%;
	position:relative;
	background:#000;
}
#intro .img_area
{
	display:block;
	float:left;
	width:100%;
	position:relative;
	z-index:1;
}
#intro .img_area img
{
	width:100%;
	height:550px;
    object-fit: cover;
    object-position: center;
	opacity: 0.5;	
}

#intro .slider_main_area
{
	display:block;
	float:left;
	width:96%;
	max-width:1140px;
	margin:0;
	position:absolute;
	z-index:2;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	padding:0 15px;
	text-align:center;
}
#intro .text_area
{
	display:inline-block;
	width:100%;
	max-width:1140px;
	text-align:center;
}
#intro .text_area h2
{
	color:#fff;
	font-size:50px;
    font-family: 'Poppins-Bold';
	display: inline-block;
	max-width: 600px;
	width: 100%;

}
#intro .carousel-indicators
{
	bottom:30px;
}

#intro .carousel-control-prev-icon
{
	background:url(../images/left_arrow.png) no-repeat;
	width:41px;
	height:79px;
}
#intro .carousel-control-next-icon
{
	background:url(../images/right_arrow.png) no-repeat;
	width:41px;
	height:79px;	
}
#intro .carousel-control-next, .carousel-control-prev
{
	width:auto;
	opacity: 1;
}
#intro .carousel-indicators li {
    width: 15px;
    height: 15px;
	border-radius:100%;
	background:#21254A;
	cursor:pointer;
}
#intro .carousel-indicators .active {
    background-color: #00ADEF;
}

#intro .our_services_but
{
	display: inline-block;
	padding: 15px 35px;
	color: #fff;
	font-size: 14px;
    font-family: 'Poppins-SemiBold';
	background: #67b930;
	border-radius: 5px;
	margin-top: 15px;	
}
#intro .our_services_but:hover
{
	background: #067190;
}
.about_section
{
	position: relative;
	z-index: 2;
	padding: 60px 0;
}
.about_img
{
	display: block;
	float: left;
	width: 100%;
}
.about_img img
{
	float: left;
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: center;
}
.about_box
{
	display: block;
	float: left;
	width: 100%;
}
.about_box h2 
{
	color: #002975;
	font-size: 40px;
    font-family: 'Poppins-Bold';	
}
.about_box h2 strong
{
	color: #10242b;
}
.about_box h3 
{
	color: #000;
	font-size: 20px;
    font-family: 'Poppins-Medium';
	margin-top: 15px;
}
.about_box p
{
	color: #5c666a;
	font-size: 15px;
	margin-top: 15px;
}
.learnmore_but
{
	display: inline-block;
	vertical-align: top;
	width: 160px;
	height: 50px;
	line-height: 50px;
	background: #002975;
	padding: 0 15px;
	border: none;
	color: #fff;
	border-radius: 5px;
	font-size: 15px;
	margin: 30px 0 10px 0;
	font-family: 'Poppins-SemiBold';
	cursor: pointer;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	transition-timing-function: ease-out;
	text-transform: uppercase;
	text-align: center;
}
.learnmore_but:hover {
	background: #000000;
	color: #fff;
}

.appointment_but
{
	display: inline-block;
	vertical-align: top;
	height: 50px;
	line-height: 50px;
	background: #00a4eb;
	padding: 0 25px;
	border: none;
	color: #fff;
	border-radius: 5px;
	font-size: 15px;
	margin: 30px 0 10px 0;
	font-family: 'Poppins-SemiBold';
	cursor: pointer;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	transition-timing-function: ease-out;
	text-transform: uppercase;
	text-align: center;
}
.appointment_but:hover {
	background: #000000;
	color: #fff;
}
.help_section
{
	padding: 60px 0;
	text-align: center;
	background: url(../images/help_bg.jpg) center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.help_section h2
{
	font-size: 35px;
	font-family: 'Poppins-SemiBold';
}
.help_section p
{
	font-size: 16px;
	margin-top: 15px;
}
.page_main_heading
{
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}
.page_main_heading p
{
	color: #fff;
	font-size: 15px;	
}
.page_main_heading h2
{
	color: #fff;
    font-family: 'Poppins-SemiBold';
	font-size: 38px;	
}
.page_main_heading2
{
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}
.page_main_heading2 h2
{
	color: #000;
    font-family: 'Poppins-SemiBold';
	font-size: 38px;	
}

.services
{
	padding: 60px 0;
	background: #eff0f0;
	background-size: cover;
	background-attachment: fixed;
}
.services_boxes_area
{
	display: block;
	float: left;
	width: 100%;
}
.services_box1
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 30px;
}
.services_box_img_area
{
	display: block;
	float: left;
	width: 100%;
	overflow: hidden;	
}
.services_box_img_area img
{
	float: left;
	width: 100%;
	height: 260px;
	object-fit: cover;
	object-fit: cover;
}
.services_box1 .services_box_img_area img
{
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;

}
.services_box1:hover .services_box_img_area img
{
	transform: scale(1.1);	


}
.services_box_text_area
{
	display: flex;
	float: left;
	width: 100%;
	overflow: hidden;
	padding: 0 15px;
	background: #fff;
	height: 90px;
	align-items: center;
}
.services_box_text_area p
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 51px);
	color: #10242b;
	font-size: 19px;
    font-family: 'Poppins-Medium';	
	line-height: 20px;

}
.services_box_text_area img
{
	display: inline-block;
	vertical-align: middle;
	width: 46px;
}


.doctors_area
{
	padding:60px 0;
}
.doctors_box1
{
	display: flex;
	flex-wrap: wrap;
	float: left;
	width: 100%;
	margin-top: 35px;
}
.doctors_box1 .text
{
	padding: 0 80px;
}
.doctors_box1 .text h2
{
	font-size: 30px;
}
.doctors_box1 .text h4
{
	font-size: 19px;
}
.doctors_box1 .text p
{
	margin-top: 15px;
	color: #888888;
}
.service_box1 .text h3 a
{
	margin-top: 15px;
	color: #f39611;
	font-size: 15px;
} 
.doctors_box1 .text h3 a:hover
{
	color: #077789;
}
.doctors_box1 .image
{
	width: 100%;
	float: left;
}
.doctors_box1 .image img
{
	float: left;
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: center;
}
.doctors_box1:nth-child(even) .row
{
	flex-direction: row-reverse;
}
.doctors_box1:nth-child(odd) .row .image
{

-webkit-box-shadow: 10px 10px 0px 0px #00a4eb;
-moz-box-shadow: 10px 10px 0px 0px #00a4eb;
box-shadow: 10px 10px 0px 0px #00a4eb;
overflow: hidden;
border-radius: 0 300px 300px 0 ;
margin-left: -15px;
float: left;
}
.doctors_box1:nth-child(even) .row .image
{
	-webkit-box-shadow: -10px 10px 0px 0px #00a4eb;
-moz-box-shadow: -10px 10px 0px 0px #00a4eb;
box-shadow: -10px 10px 0px 0px #00a4eb;
overflow: hidden;
border-radius:  300px 0 0 300px ;
margin-right: -15px;
float: right;
}



.gallery_section
{
	padding: 40px 0;
	background: #e0e0e0;;
}

.gallery_slider_area
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 40px;
}
.gallery_slider_area .owl-nav
{
	display: none;
}
.gallery_slider_area  .owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin-top: 30px;
}
.gallery_slider_area  .owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
	display: block;
    background: url(../images/dot.png) center center no-repeat;
    transition: opacity .2s ease;
	border-radius: 30px;
	outline: none;
}
.gallery_slider_area  .owl-theme .owl-dots .owl-dot:focus {
	outline: none;
	outline-style: none;
	border: none;
}

.gallery_slider_area .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: url(../images/active_dot.png) center center no-repeat;
}
.gallery_box1
{
	display: block;
	float: left;
	width: 100%;	
}
.gallery_box1 img
{
	float: left;
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-fit: cover;
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;	
}
.gallery_box1:hover  img
{
	transform: scale(1.1);	
}

.gallery_slider_area .owl-dot:hover span {
    background: #f39611;
}
.testimonial
{
	padding: 60px 0;	
}

.testimonial_box1
{
	display: block;
	float: left;
	width: 100%;
	text-align: center;
	padding-bottom: 6px;
}
.testimonial_img_area
{
	display: inline-block;
	vertical-align: middle;
	width: 190px;
	height: 230px;
	-webkit-box-shadow: 6px 6px 0px 0px #00a4eb;
-moz-box-shadow: 6px 6px 0px 0px #00a4eb;
box-shadow: 6px 6px 0px 0px #00a4eb;
}
.testimonial_img_area img
{
	float: left;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.testimonial_text_area
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 195px);
	padding-left: 20px;
	text-align: left;
}
.testimonial_text_area p
{
	font-size: 16px;
	color: #888888;
}
.testimonial_text_area h3
{
	font-size: 18px;
	margin-top: 15px;
	color: #00a4eb;
}
.testimonial_slider_area
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 35px;
	text-align: center;
}
.testimonial_slider_area .owl-nav
{
	display: none;
}
.testimonial_slider_area  .owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin-top: 30px;
}
.testimonial_slider_area  .owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
	display: block;
    background: url(../images/dot.png) center center no-repeat;
    transition: opacity .2s ease;
	border-radius: 30px;
	outline: none;
}
.testimonial_slider_area  .owl-theme .owl-dots .owl-dot:focus {
	outline: none;
	outline-style: none;
	border: none;
}

.testimonial_slider_area .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: url(../images/active_dot.png) center center no-repeat;
}
.web_section
{
	display: block;
	float: left;
	width: 50%;
	padding: 60px 20px;
	background: #434d7c;
}
.web_section img
{
	margin-top: 20px;
	max-width: 90%;
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;	
}
.web_section:hover img
{
	transform: scale(1.05);	
}
.web_section p
{
	font-size: 18px;
	margin-top: 15px;
	text-transform: uppercase;
}
.web_section p a
{
	text-decoration: underline;
	color: #fff;
}
.web_section p a:hover
{
	text-decoration: none;
}
.top_footer_section
{
	background: #ebf1f6;
	padding: 25px 0;
}
.top_footer_box1
{
	display: block;
	float: left;
	width: 100%;
}
.top_footer_box1 img{
	display: inline-block;
	vertical-align: middle;
}
.top_footer_box1_text
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 61px);
	padding-left: 15px;
}
.top_footer_box1_text h2{
    font-family: 'Poppins-SemiBold';
	color: #10242b;
	font-size: 36px;
}
footer
{
	display: block;
	float: left;
	width: 100%;
	background: url(../images/footer_bg.jpg) center center no-repeat;
	background-size: cover;
}
.footer_top_section
{
	display: block;
	float: left;
	width: 100%;
	padding: 70px 0 90px 0;	
}
.footer_box1
{
	display: block;
	float: left;
	width: 100%;	
}
.footer_box1 h2{
	color: #fff;
	font-size: 25px;
    font-family: 'Poppins-SemiBold';
	margin-bottom: 25px;
}
.footer_box1 p
{
	margin: 15px 0 40px 0;
	color: #fff;
	position: relative;
	padding-left: 60px;
}
.footer_box1 p img
{
	position: absolute;
	left: 0;
	top: 5px;
	color: #67b930;
}
.footer_box1 p a
{
	color: #fff;
}
.footer_box1 ul
{
	margin: 15px 0 20px 0;
	color: #64676a;
	list-style-type: none;
}
.footer_box1 ul li::before
{
	content: url(../images/tick.png);
	left: 0;
	top: 0;
	position: absolute;
}
.footer_box1 ul li
{
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;	
}
.footer_box1 ul li a
{
	color: #fff;
}
.footer_box1 ul li a:hover
{
	color: #fff;
}

.footer_box2
{
	display: block;
	float: left;
	width: 100%;	
}
.footer_box2 h2{
	color: #fff;
	font-size: 25px;
    font-family: 'Poppins-SemiBold';
	margin-bottom: 25px;
}
.footer_box2 p img
{
	margin: 0 2px;
}
.newsnatter
{
	display: block;
	float: left;
	width: calc(100% - 125px);
	height: 44px;
	background: #252627;
	padding: 0 15px;
	border: none;
	color: #fff;
	font-size: 15px;
	margin-top: 5px;
	outline-style: none;
}
.submit
{
	display: block;
	float: left;
	width: 125px;
	height: 44px;
	background: #67b930;
	padding: 0 15px;
	border: none;
	color: #fff;
	font-size: 15px;
	margin-top: 5px;
    font-family: 'Poppins-SemiBold';
	cursor: pointer;
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;

}
.submit:hover
{
	background: #434d7c;
}
.input_style2
{
  display: block;
  float: left;
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  background: none;
  outline-style: none;
}
.input_style2::placeholder
{
  font-size: 16px;
  color: #fff;
}
.textarea_style2
{
  display: block;
  float: left;
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  background: none;
  outline-style: none;
  height: 70px;
}
.textarea_style2::placeholder
{
  font-size: 16px;
  color: #fff;
}
.submit_style2
{
  display: block;
  float: left;
  padding: 8px 25px;
  margin-top: 15px;
  border-radius: 30px;
  border: none;
  outline-style: none;
  cursor: pointer;
  background: #00a4eb;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-family: 'Poppins-Bold';
  -webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;

}
.submit_style2:hover
{
  background: #002975;
  color: #fff;
}
.copy_area
{
	display: block;
	float: left;
	width: 100%;
	padding: 15px 0;
	background: #00a4eb;
	text-align: center;
}
.copy_area p
{
	color: #fff;	
}

.subpage_header {
    display: block;
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    background: #000;
}
.subpage_header img
{
	float: left;
	width: 100%;
	position: relative;
	z-index: 1;
	height: 250px;
	opacity: 0.5;
	object-fit: cover;
	object-position: center;
}
.subpage_header h2
{
	position: absolute;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 0 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	color: #fff;
	text-transform: uppercase;
}
.subpage_body
{
	padding: 50px 0;
}
.contact_left
{
	display: block;
	float: left;
	width: 100%;
}
.contact_left h2
{
	font-size: 17px;
}

.contact_left p
{
	font-size: 16px;
	color: #616161;
	margin: 10px 0 15px 0;
}
.contact_left p a{
	color: #616161;	
}
.contact_left_map_area
{
	display: inline-block;
	width: 100%;
	margin-top: 15px;
	vertical-align: top;
}
.contact_input_style
{
	display: block;
	float: left;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 1px solid #888888;
	padding: 0 15px;
	font-size: 15px;
	outline-style: none;
	margin-bottom: 15px;
}
.contact_textarea_style
{
	display: block;
	float: left;
	width: 100%;
	height: 200px;
	border-radius: 5px;
	border: 1px solid #888888;
	padding:15px;
	font-size: 15px;
	outline-style: none;	
	margin-bottom: 25px;	
}
.contact_submit_style
{
	display: block;
	float: left;
	width: 200px;
	height: 50px;
	border-radius: 40px;
	font-size: 20px;
	color: #fff;
	background: #002975;
	outline-style: none;
	margin-bottom: 15px;
	border: none;
	cursor: pointer;
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
		
}
.contact_submit_style:hover
{
	background: #00a4eb;
}
.service_left_area
{
	display: block;
	float: left;
	width: 100%;
}
.service_left_area li{
	list-style-type: none;
	position: relative;
}
.service_left_area li a
{
	display: block;
	float: left;
	width: 100%;
	padding: 15px 20px;
	background: #00a4eb;
	color: #fff;
	position: relative;
}
.service_left_area li a::after 
{
	content: ">";
	position: absolute;
	right: 15px;
	color: #fff;
	top: 15px;
}
.service_left_area li a:hover
{
	background: #002975;	
}
.active2 a
{
	background: #002975 !important;
}
.service_right_top_img_area
{
	display: block;
	float: left;
	width: 100%;
}
.service_right_top_img_area img{
	float: left;
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
	margin-bottom: 15px;
}
.service_right_top_text_area
{
	display: block;
	float: left;
	width: 100%;
}
.service_right_top_text_area h2
{
	font-size: 30px;
	margin-top: 25px;
    font-family: 'Poppins-Medium';	
}
.service_right_top_text_area p
{
	font-size: 15px;
	margin-top: 15px;	
}
.service_right_top_text_area ul
{
	list-style-type: none;
}
.service_right_top_text_area ul li
{
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 3 -  4px);
	margin-top: 10px;
	position: relative;
	padding-left: 30px;
}
.service_right_top_text_area ul li::after
{
	content: url(../images/tick2.png);
	position: absolute;
	left: 0;
	top: 0;
}
.pdf_but {
    display: inline-block;
    vertical-align: top;
	padding:10px 30px;
    text-align: center;
    border-radius: 50px;
    background: #002975;
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 18px;
	margin-top: 25px;
}
.pdf_but:hover
{
	background: #00a4eb;
	color: #fff;
}
.service_right_doctor_area
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 30px;	
}
.service_right_doctor_main_heading
{
	font-size: 30px;
    font-family: 'Poppins-Medium';	
}
.service_right_doctor_boxes
{
	display: block;
	float: left;
	width: 100%;
}
.doctor_box1
{
	display: block;
	float: left;
	width: 100%;
	position: relative;
	margin-top: 20px;
	background: #077789;
}
.doctor_box1::after
{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(0,0,0,0);
background: -moz-linear-gradient(top, rgba(0,0,0,0) 31%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.59) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(31%, rgba(0,0,0,0)), color-stop(55%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.59)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 31%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.59) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0) 31%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.59) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0) 31%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.59) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 31%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.59) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.doctor_box1_img_area
{
	display: block;
	float: left;
	width: 100%;
	position: relative;
	z-index: 1;
}
.doctor_box1_img_area img
{
	float: left;
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
}
.doctor_box1_text_area
{
	display: block;
	float: left;
	width: 100%;
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 20px;
	padding: 0 15px;
}
.doctor_box1_text_area h2
{
	color: #fff;
	font-size: 17px;
}
.doctor_box1_text_area p
{
	color: #b5b8b9;
	font-size: 14px;
}
.doctor_box1 .doctor_box1_text_area
{
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
}
.doctor_box1:hover .doctor_box1_text_area
{
	display: block;
	float: left;
	width: 100%;
	position: absolute;
	z-index: 3;
	left: 0;
	bottom:inherit;
	padding: 0 15px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
.doctor_box1  .doctor_box1_img_area
{
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
}
.doctor_box1:hover  .doctor_box1_img_area
{
	opacity: 0.2;
}
.about_section1
{
	padding: 60px 0;
}
.about_section1_left
{
	display: block;
	float: left;
	width: 100%;
}
.about_section1_left img
{
	float: left;
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}
.about_section1_right
{
	display: block;
	float: left;
	width: 100%;
	--text-g
}
.about_section1_right h2
{
	font-size: 36px;
}
.about_section1_right p
{
	font-size: 15px;
	margin-top: 15px;
	line-height: 30px;
	color: #5c666a;;
}
.about_section1_right_bottom
{
	display: block;
	float: left;
	width: 100%;
}
.about_section1_right_bottom img
{
	display: inline-block;
	vertical-align: middle;
	width: 52px;
}
.about_section1_right_bottom_text_area
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 57px);
	padding-left: 10px;
}
.about_section1_right_bottom_text_area h2
{
	font-size: 25px;
    font-family: 'Poppins-SemiBold';	
}
.about_section1_right_bottom_text_area p
{
	font-size: 13px;
	color: #5c666a;
}
.about_section2
{
	padding: 60px 0;
  background: #ededed;
}
.about_section3_top_mission
{
	display: block;
	float: left;
	width: 100%;	
}
.about_section3_top_mission img
{
	display: inline-block;
	vertical-align: top;
	width: 51px;	
}
.about_section3_top_mission_text_area
{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 56px);
	padding-left: 20px;	
}
.about_section3_top_mission_text_area h2
{
	font-size: 25px;
}
.about_section3_top_mission_text_area p
{
	color: #5c666a;
	margin-top: 10px;
	line-height: 24px;
}
.about_section3_top_mission_text_area ul
{
	color: #5c666a;
	margin-top: 10px;
	line-height: 24px;
	list-style-type: none;
}
.about_section3_top_mission_text_area ul li::before
{
	content: url(../images/tick2.png);
	left: 0;
	top: 0;
	position: absolute;
}
.about_section3_top_mission_text_area ul li
{
	margin-bottom: 10px;
	position: relative;
	padding-left: 30px;	
}
.about_section3_bottom_area
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #b5b8b9;
}
.team_slider_area
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 10px;
}
.team_slider_area .owl-nav
{
	display: none;
}
.team_slider_area  .owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin-top: 30px;
}
.team_slider_area  .owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
	display: block;
    background: url(../images/dot.png) center center no-repeat;
    transition: opacity .2s ease;
	border-radius: 30px;
	outline: none;
}
.team_slider_area  .owl-theme .owl-dots .owl-dot:focus {
	outline: none;
	outline-style: none;
	border: none;
}

.team_slider_area .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: url(../images/active_dot.png) center center no-repeat;
}

.top_form_area {
    display: block;
    float: left;
    width: 100%;
    background: #00a4eb;
    margin-bottom: 50px;
    margin-top: -72px;
    padding: 25px;
}
.top_form_area_heading
{
	display: block;
	float: left;
	width: 100%;
	font-size: 32px;
    font-family: 'Poppins-Bold';
	color: #fff;
}
.top_form_inner
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 15px;
}
.top_form_input
{
	display: block;
	float: left;
	width: 100%;
	height: 50px;
	background:none;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
	margin-top: 15px;
	outline-style: none;
	padding: 0 15px;	
}
.top_form_input::placeholder
{
	color: #fff;
}
.top_form_textarea
{
	display: block;
	float: left;
	width: 100%;
	height: 120px;
	background:none;
	border: none;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
	margin-top: 15px;
	outline-style: none;
	padding: 15px;	
}
.top_form_textarea::placeholder
{
	color: #fff;	
}
.submit3 {
    display: block;
    float: left;
    width: 180px;
    height: 60px;
    background: #fff;
    padding: 0 15px;
    border: none;
    color: #000;
	border-radius: 60px;
    font-size: 15px;
    margin: 30px 0 10px 0;
    font-family: 'Poppins-SemiBold';
    cursor: pointer;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    transition-timing-function: ease-out;
	text-transform: uppercase;
}
.submit3:hover {
    background: #002975;
	color: #fff;
}


.news_box1
{
	display: block;
	float: left;
	width: 100%;
	margin: 15px 0;	
}
.news_box1_img_area
{
	display: block;
	float: left;
	width: 100%;
	overflow: hidden;	
}
.news_box1_img_area img
{
	float: left;
	width: 100%;
	height: 230px;
	object-fit: cover;
	object-fit: cover;
}
.news_box1_text_area
{
	display: block;
	float: left;
	width: 100%;
	padding:15px 20px;
	background: #00a4eb;
}
.news_box1_text_area p
{
	font-family: 'Poppins-SemiBold';
	font-size: 13px;
	color: #fff;
}
.news_box1_text_area h2
{
    font-family: 'Poppins-Medium';
	font-size: 20px;
	color: #fff;
	margin-top: 8px;
}
.news_box1 .news_box1_text_area
{
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
}
.news_box1:hover .news_box1_text_area
{
	background: #002975;
}

.news_box1 .news_box1_img_area img
{
	-webkit-transition: all .5s ;
	-moz-transition: all .5s ;
	-ms-transition: all .5s ;
	-o-transition: all .5s ;
	transition: all .5s ;
	transition-timing-function:ease-out;
}
.news_box1:hover .news_box1_img_area img
{
	transform: scale(1.1);	
}
.gallery_img_box1
{
  display: block;
  float: left;
  width: 100%;
  margin: 15px 0;
} 
.gallery_img_box1 img
{
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}
.service_body
{
	display: block;
	float: left;
	width: 100%;
}
.service_heading
{
	font-size: 30px;
	margin-top: 20px;
	color: #fff;
	text-transform: uppercase;
	background: #002975;
	display: inline-block;
	padding: 10px 20px;
}
.service_body p
{
	margin: 10px 0;
	clear: both;
}
.service_sub_heading
{
	font-size: 25px;
	margin-top: 30px;
	color: #00a4eb;
}
.service_doctor_box_size
{
	width: 250px;
	clear: both;
	float: none;
	display: inline-block;
}
.service_body ul li {
    vertical-align: top;
    margin-top: 10px;
    position: relative;
	margin-left: 18px;

}
.service_body .card-header {
	padding: 0;
}
.service_body .btn-link {
	width: 100%;
	text-align: left;
	color: #00a4eb;
	padding: 10px 15px;
}
.service_body .card
{
	margin-top: 12px;
}

.about_doctor_section
{
	padding: 50px 0;
}
.about_doctor_section .heading
{
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}
.about_doctor_section .heading h2
{
	font-size: 30px;
}
.about_doctor_boxes
{
	display: block;
	float: left;
	width: 100%;
}
.about_doctor_box1
{
	display: block;
	float: left;
	width: 100%;
	margin-top: 30px;
	padding: 20px;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.1);
	border-radius: 15px;
}
.about_doctor_box1 .doctor_img_area
{
	display: block;
	float: left;
	width: 100%;

}
.about_doctor_box1 .doctor_img_area .doctor_box1_img_area img
{	width: 100%;
	height: 324px;
}
.about_doctor_box1 .right_text
{
	display: block;
	float: left;
	width: 100%;	
}
.about_doctor_box1 .right_text .btn-link {
    width: 100%;
    text-align: left;
    color: #00a4eb;
    padding: 10px 15px;
}
.about_doctor_box1 .right_text  .card {
    margin-top: 12px;
}
.about_doctor_box1 .right_text .card-header {
    padding: 0;
}
.about_doctor_box1 .right_text ul
{
	color: #5c666a;
	margin-top: 10px;
	line-height: 24px;
	list-style-type: none;
}
.about_doctor_box1 .right_text ul li::before
{
	content: url(../images/tick2.png);
	left: 0;
	top: 0;
	position: absolute;
}
.about_doctor_box1 .right_text ul li
{
	margin-bottom: 10px;
	position: relative;
	padding-left: 30px;	
}