@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Home
5. Blogs
6. Info Boxes
7. Contact
8. About
9. Milestones
10. Call To Action
11. Services
12. Departments
13. Doctors
14. FAQ
15. Google Map
16. Footer


******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,900");
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap');
/*********************************
2. Body and some general stuff
*********************************/

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #ffffff;
}

div {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0px;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a {
  display: inline;
  position: relative;
  color: inherit;
  border-bottom: solid 1px #ffa07f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

p:last-of-type {
  margin-bottom: 0;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a:active {
  position: relative;
  color: #ff6347;
}

p a:hover {
  color: #ffffff;
  background: #ffa07f;
}

p a:hover::after {
  opacity: 0.2;
}

::selection {
  background: #32c69a;
  color: #ffffff;
}

p::selection {
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}

.form-control {  
  font-weight: bold;
	border: 1px solid #32C69A;
}

section {
  display: block;
  position: relative;
  box-sizing: border-box;
}

.clear {
  clear: both;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.fill_height {
  height: 100%;
}

.super_container {
  width: 100%;
  overflow: hidden;
}

.prlx_parent {
  overflow: hidden;
}

.prlx {
  height: 130% !important;
}

.parallax-window {
  min-height: 400px;
  background: transparent;
}

.parallax_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.nopadding {
  padding: 0px !important;
}

.button {
  width: 137px;
  height: 54px;
  background: #32c69a;
  overflow: hidden;
}

.button a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

.button a span {
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  line-height: 54px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.button a span:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.button a span:last-child {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
  font-size: 9px;
  opacity: 0;
}

.button:hover a span:first-child {
  top: -10%;
  font-size: 9px;
  opacity: 0;
}

.button:hover a span:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 11px;
  opacity: 1;
}

.button_2 {
  background: #ffffff;
}

.button_2 a span {
  color: #404040;
}

.section_title {
  font-size: 36px;
  font-weight: 600;
  color: #404040;
  line-height: 0.75;
}

.section_subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #838383;
  line-height: 0.75;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 23px;
}

/*********************************
3. Header
*********************************/

.header_top {
  width: 100%;
  z-index: 2;
}

.header_top_content {
  height: 91px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.logo a {
  line-height: 0.75;
  font-family: 'Philosopher', sans-serif;
  color: #404040;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo a .main_text {
  font-size: xx-large;
  color: #38975c;
  letter-spacing: 20px;
}

.logo a .sub_text {
  font-size: small;
  color: #f3321a;
  line-height: 0.75;
  letter-spacing: 0.75px;
}

.logo a:hover {
  text-decoration: none;
}

.header_top_nav ul li {
  position: relative;
}

.header_top_nav ul li:not(:last-child)::after {
  content: "|";
  margin-left: 12px;
  margin-right: 12px;
}

.header_top_nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #838383;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header_top_nav ul li a:hover {
  color: #32c69a;
}

.header_top_phone {
  margin-left: 44px;
}

.header_top_phone i {
  font-size: 22px;
  color: #32c69a;
  vertical-align: middle;
  transform: translateY(-1px);
}

.header_top_phone span {
  font-size: 16px;
  font-weight: 600;
  color: #404040;
  margin-left: 3px;
  vertical-align: middle;
}

/*********************************
4. Home
*********************************/

.home {
  width: 100%;
  height: 874px;
}

.home_container {
  position: absolute;
  top: 38%;
  left: 0;
  width: 100%;
}

.home_title {
  font-size: 60px;
  font-weight: 600;
  color: #ffffff;
  max-width: 570px;
  line-height: 1.2;
}

.home_text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.875;
  max-width: 480px;
  margin-top: 25px;
}

.home_button {
  margin-top: 36px;
}

/*********************************
5. Boxes
*********************************/

.vision {
  width: 100%;
  background: #ffffff;
  padding-top: 50px;
}

.boxes {
  width: 100%;
}

.box {
  width: calc(100% / 2);
  height: auto;
  padding-top: 79px;
  padding-left: 90px;
  padding-bottom: 64px;
  padding-right: 30px;
}

.box_title {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.box_subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.75;
  margin-top: 16px;
  padding-left: 1px;
}

.box_text {
  margin-top: 60px;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.14;
  padding-left: 3px;
}

.box_button {
  margin-top: 77px;
}

/*--------------------------------------------------------------
6. Carousel
--------------------------------------------------------------*/
#the-carousel {
  width: 100%;
  height: 75vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

#the-carousel .carousel,
#the-carousel .carousel-inner,
#the-carousel .carousel-item,
#the-carousel .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#the-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#the-carousel img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#the-carousel .carousel-caption {
  top: 70%;
  width: auto;
  border-radius: 15px;
  background-color: #ebf6fa;
  border: solid 4px #ffa07f;
}

#the-carousel h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #32c769;
}

#the-carousel p {
  font-size: 16px;
  font-weight: 500;
  color: #5e616c;
  line-height: 1.875;
  margin-top: 10px;
}

#the-carousel .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#the-carousel .carousel-indicators li.active {
  opacity: 1;
  background: #32c69a;
}

#the-carousel .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #32c69a;
}

#the-carousel .btn-get-started:hover {
  background: #fff;
  color: #32c69a;
}

/*********************************
6. Blogs
*********************************/

.info {
  width: 100%;
  background: #f4f8fb;
  padding-top: 99px;
  padding-bottom: 102px;
}

.info .website-list {
  margin-top: 100px;
}

.blog-card .card {
	border: solid 4px #32c69a;
}

.blog-card:hover .card {
	box-shadow: 0px 38px 46px rgba(0, 0, 0, 0.3);
}

.blog-card img {
  max-width: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.blog-card:hover img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}

/*********************************
7. Contact
*********************************/
.contact {
  width: 100%;
  padding-bottom: 20px;
  z-index: 2;
}

/*********************************
8. About
*********************************/

.about {
  width: 100%;
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 113px;
}

.about_row {
  margin-top: 89px;
}

.about_text_highlight {
  font-size: 16px;
  font-weight: 700;
  color: #404040;
  margin-top: 28px;
}

.about_text {
  margin-top: 13px;
}

.about_image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}

.about_button {
  margin-top: 49px;
}

/*********************************
9. Milestones
*********************************/

.milestones {
  width: 100%;
  background: #f5f6f8;
  padding-top: 88px;
  padding-bottom: 93px;
}

.milestone {
  width: 100%;
}

.milestone_icon [class^="medical-icon-"],
.milestone_icon [class*=" medical-icon-"] {
  font-size: 5em;
  color: #32c69a;
}

.milestone_content {
  padding-left: 29px;
}

.milestone_counter {
  font-size: 48px;
  font-weight: 600;
  color: #404040;
  line-height: 0.75;
}

.milestone_text {
  font-size: 16px;
  font-weight: 600;
  color: #c1c1c1;
  margin-top: 12px;
  line-height: 1.2;
}

/*********************************
10. Call To Action
*********************************/

.cta {
  width: 100%;
  padding-top: 77px;
  padding-bottom: 74px;
}

.cta_content {
  width: 100%;
}

.cta_title {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.cta_subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
  margin-top: 14px;
}

.cta_button {
  width: 141px;
  margin-top: 7px;
}

/*********************************
11. Services
*********************************/

.services {
  width: 100%;
  background: #f4f8fb;
  padding-top: 99px;
  padding-bottom: 52px;
}

.icon_boxes_row {
  margin-top: 100px;
}

.icon_box {
  width: 100%;  
  height: 18em;
  padding: 15px;  
  margin-bottom: 50px;
  border: solid 4px #ffa07f;
  border-radius: 15px;
  background-color: #32c69a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.icon_box:hover {
  box-shadow: 0px 38px 46px rgba(0, 0, 0, 0.3);
  border: solid 4px #32c69a;
  background-color: #ffa07f;
}

.icon_box_icon [class^="medical-icon-"],
.icon_box_icon [class*=" medical-icon-"] {
  font-size: 3.5em;
  color: #fff;
}

.icon_box_title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding-left: 25px;
}

.icon_box_text {
  font-size: 14px;
  font-weight: 500;
  color: #fafafa;
  line-height: 2.14;
  margin-top: 21px;
}

/*********************************
12. Departments
*********************************/

.departments {
  width: 100%;
  background: #ffffff;
  padding-top: 99px;
  padding-bottom: 52px;
}

.dept_row {
  margin-top: 100px;
}

.dept_slider_container,
.service_slider_container {
  overflow: hidden;
  width: calc(100% + 60px);
  left: -30px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

.dept_item {
  background: #ffffff;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.dept_item:hover {
  box-shadow: 0px 20px 46px rgba(0, 0, 0, 0.1);
  background: #f4f8fb;
}

.dept_image::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.dept_item:hover .dept_image::after {
  background: rgba(0, 0, 0, 0.49);
}

.dept_content {
  padding-left: 28px;
  padding-top: 21px;
  padding-bottom: 23px;
}

.dept_content::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #32c69a;
  content: "";
}

.dept_title {
  font-size: 20px;
  font-weight: 600;
  color: #404040;
}

.dept_link {
  margin-top: 4px;
}

.dept_link a {
  font-size: 12px;
  font-weight: 500;
  color: #838383;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.dept_link a:hover {
  color: #32c69a;
}

.dept_slider_nav,
.service_slider_nav {
  position: absolute;
  top: calc(50% - 25px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -106px;
  width: 42px;
  height: 42px;
  background: #32c69a;
  text-align: center;
  cursor: pointer;
}

.dept_slider_nav i,
.service_slider_nav i {
  font-size: 16px;
  color: #ffffff;
  line-height: 42px;
}

/*********************************
13. Doctors
*********************************/

.doctors {
  width: 100%;
  background: #ffffff;
  padding-top: 97px;
  padding-bottom: 210px;
}

.speciality_filter {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  padding: 0.6em 1.4em 0.5em 0.8em;
  margin-top: 50px;
  background: #fff;
  max-width: 100%;
  box-sizing: border-box;
  border: 4px solid #32c69a;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
}

.doctors_row {
  margin-top: 100px;
}

.doctor {
  width: 100%;
  background: #ffffff;
  margin-bottom: 50px;
  border-radius: 15px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.doctor::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 4px #32c69a;
  border-radius: 15px;
  background: transparent;
  content: "";
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.doctor:hover::after {
  visibility: visible;
  opacity: 1;
}

.doctor:hover {
  box-shadow: 0px 38px 46px rgba(0, 0, 0, 0.3);
  background: #f4f8fb;
}

.doctor_image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.doctor_image img {
  max-width: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.doctor:hover img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}

.doctor_content {
  width: 100%;
  padding-left: 29px;
  padding-top: 29px;
  padding-bottom: 29px;
}

.doctor_content::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #32c69a;
  content: "";
}

.doctor_name {
  line-height: 0.75;
  display: inline;  
  min-height: 60px;
}

.doctor_name a {
  font-size: 20px;
  font-weight: 600;
  color: #404040;
  line-height: 0.75;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.doctor_name a:hover {
  color: #32c69a;
}

.doctor_title {
  font-size: 12px;
  font-weight: 500;
  color: #838383;
  line-height: 0.75;
  margin-top: 17px;
}

.doctor_link {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background: #32c69a;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.doctor_link a {
  display: block;
  line-height: 50px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.doctor:hover .doctor_link {
  visibility: visible;
  opacity: 0.8;
}

.doctors_button {
  width: 181px;
  margin-top: 50px;
}

.doctors_image {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.doctor_profile {
  padding-top: 100px;
  padding-bottom: 100px;
}

.doctor_profile .doctor_profile_image:hover .social {
  opacity: 1;
}

.doctor_profile_content {
  width: 100%;
  padding-left: 29px;
  padding-top: 29px;
  padding-bottom: 29px;
}
.doctor_profile_content::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #32c69a;
  content: "";
}
.doctor_profile_name {
  font-size: 20px;
  font-weight: 600;
  line-height: 0.75;
}
.doctor_profile_title {
  font-size: 12px;
  font-weight: 500;
  color: #838383;
  line-height: 0.75;
  margin-top: 17px;
}
.doctor_profile_image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.doctor_profile_image img {
  max-width: 100%;
  height: auto;
}

.doctor_profile_list {
  padding-top: 50px;
  padding-bottom: 85px;
}

.doctor_profile_list:not(:last-child) {
  margin-bottom: 41px;
}

.doctor_profile_list {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: solid 4px #32c69a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.doctor_profile_list:hover {
  box-shadow: 0px 38px 46px rgba(0, 0, 0, 0.3);
  background: #f4f8fb;
}

.doctor_profile_list_text blockquote {
  margin-top: 8px;
  font-weight: 600;
  color: #32c69a;
}

.doctor_profile_list_text ol,
ul,
dl {
  padding-left: 20px;
  color: #505050;
}

/*********************************
14. FAQ
*********************************/

.stuff {
  width: 100%;
  background: #f4f8fb;
  padding-top: 99px;
  padding-bottom: 104px;
}

.faq_title {
  font-size: 36px;
  font-weight: 600;
  color: #404040;
  line-height: 0.75;
}

.faq_subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #838383;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 0.75;
  margin-top: 23px;
}

.elements_accordions_tabs {
  margin-top: 115px;
}

.elements_accordions {
  width: 100%;
}

.accordions_tabs {
  width: 100%;
  background: #ffffff;
  margin-top: 100px;
}

.accordions {
  margin-top: 100px;
}

.accordion_container:not(:last-child) {
  margin-bottom: 14px;
}

.accordion {
  height: 49px;
  width: 100%;
  background: #ffffff;
  padding-left: 70px;
  cursor: pointer;
  color: #404040;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.accordion div {
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
}

.accordion::after {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 100%;
  content: "+";
  background: #32c69a;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.accordion.active {
  background: #32c69a;
  color: #ffffff;
}

.accordion.active::after {
  content: "-";
  color: #ffffff;
  background: #404040;
}

.accordion_panel {
  padding-right: 8px;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.accordion_panel > div {
  padding-bottom: 11px;
}

.accordion_panel p {
  font-size: 14px;
  font-weight: 500;
  padding-top: 35px;
  color: #838383;
  line-height: 2.14;
}

/*********************************
15. Google Map
*********************************/
.contact_map {
  width: auto;
  height: auto;
  z-index: 1;
  overflow: hidden;
}
.map {
  width: 100%;
  height: 100%;
}
.google_map {
  width: 100%;
  height: 100%;
}
.map_container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#map {
  width: 100%;
  height: 100%;  
}

/*********************************
16. Footer
*********************************/

.web-footer {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 64px;
}

.footer-about {
  margin: 0;
}

.footer-logo {
  width: 96px;
  height: 96px;
}

.footer_about_text {
  font-size: 14px;
  font-weight: 500;
  color: #d3d3d3;
  line-height: 2.14;
  margin-top: 20px;
}

.footer_social {
  margin-top: 30px;
}

.footer_social ul li:not(:last-child) {
  margin-right: 30px;
}

.footer_social ul li a i {
  color: #ffffff;
}

.copyright {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 54px;
}

.footer_hours_title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-link {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.footer_phone span {
  font-size: 14px;
  font-weight: 600;
  color: #32c69a;
}

.footer_phone i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: #32c69a;
}