@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Intro
7. Why
8. CTA
9. Services
10. Extra
11. Newsletter
12. Footer


******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900");

/*********************************
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;
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #ffffff;
  color: #a5a5a5;
}

#success-msg,
#error-msg {
    display: none;
    margin-top: 20px;
}

#success-msg {
    color: green;
}

#error-msg {
    color: red;
}


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.14;
  font-weight: 500;
  color: #828282;
  -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 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
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: rgba(87, 204, 195, 0.75);
  color: #ffffff;
}
p::selection {
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
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;
  line-height: 1.2;
  color: #404040;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}
.form-control {
  color: #db5246;
}
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;
}
.trans_200 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.trans_400 {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.trans_500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.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 {
  height: 46px;
  border-radius: 20px;
}
.button a {
  display: block;
  padding-left: 40px;
  padding-right: 36px;
  line-height: 42px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.button_1 {
  background: #fd556d;
  border: solid 2px transparent;
}
.button_1 a {
  color: #ffffff;
}
.button_1:hover {
  background: transparent;
  border: solid 2px #fd556d;
}
.button_1:hover a {
  color: #fd556d;
}
.button_2 {
  background: transparent;
  border: solid 2px #57ccc3;
}
.button_2 a {
  color: #57ccc3;
}
.button_2:hover {
  background: #57ccc3;
}
.button_2:hover a {
  color: #ffffff;
}
.section_subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #a6abb2;
}
.section_title {
  margin-top: 9px;
}
.intro_text {
  margin-top: 0.5rem;
}

/*********************************
3. Header
*********************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: #ffffff;
}

.header_content{
  width: 100%;
  height: 117px;
  padding-left: 2% !important;
  padding-right: 2% !important;
}
.header.scrolled .header_content {
  height: 75px;
  box-shadow: 0px 5px 15px rgba(87, 204, 195, 0.15);
}
.logo a > div:first-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.75;
  color: #353535;
}
.logo a > div:first-child span {
  color: #57ccc3;
  margin-left: 7px;
}
.logo a > div:last-child {
  font-size: 12px;
  color: #969696;
  font-weight: 500;
  line-height: 0.75;
  margin-top: 6px;
}
.main_nav {
  margin-left: 226px;
}
.main_nav ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #404040;
  white-space: nowrap;
}
.main_nav ul li a:hover,
.main_nav ul li.active a {
  color: #57ccc3;
}
.main_nav ul li:not(:last-child) {
  margin-right: 33px;
}
.work_hours {
  font-size: 15px;
  font-weight: 600;
  color: #404040;
  margin-right: 26px;
  white-space: nowrap;
}
.header_phone {
  height: 46px;
  border-radius: 20px;
  background: #57ccc3;
  padding-left: 40px;
  /* padding-right: 36px; */
  line-height: 46px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 12px;
}
.header_phone::selection {
  background: rgba(64, 64, 64, 0.75);
}
.header_button {
  margin-right: 16px;
}
.social ul li {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6ebf1;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.social ul li:hover {
  background: #57ccc3;
}
.social ul li:hover a i {
  color: #ffffff;
}
.social ul li:not(:last-of-type) {
  margin-right: 15px;
}
.social ul li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 34px;
  text-align: center;
}
.social ul li a i {
  font-size: 16px;
  color: #404040;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.hamburger {
  display: none;
  cursor: pointer;
  border: solid 1px transparent;
  border-radius: 7px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.hamburger:hover {
  border: solid 1px rgba(0, 0, 0, 0.05);
}
.hamburger i {
  font-size: 20px;
  color: #404040;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 7px;
  padding-right: 7px;
}

/*********************************
4. Menu
*********************************/

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #57ccc3;
  z-index: 102;
  padding-left: 5rem;
  padding-right: 30px;
  padding-top: 50px;
}
.menu.active {
  right: 0;
}
.menu_overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  z-index: 101;
  visibility: hidden;
  opacity: 0;
}
.menu_overlay.active {
  visibility: visible;
  opacity: 1;
}
.menu_close_container {
  position: absolute;
  top: 41px;
  left: 28px;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
  z-index: 1;
}
.menu_close {
  width: 100%;
  height: 100%;
  transform-style: preserve-3D;
}
.menu_close div {
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 8px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.menu_close div:last-of-type {
  -webkit-transform: rotate(90deg) translateX(-2px);
  -moz-transform: rotate(90deg) translateX(-2px);
  -ms-transform: rotate(90deg) translateX(-2px);
  -o-transform: rotate(90deg) translateX(-2px);
  transform: rotate(90deg) translateX(-2px);
  transform-origin: center;
}
.menu_close:hover div {
  background: #1befc5;
}
.menu_nav {
  margin-top: 75px;
}
.menu_nav ul li:not(:last-child) {
  margin-bottom: 1px;
}
.menu_nav ul li a {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.menu_nav ul li a:hover {
  color: #1befc5;
}
.menu_social {
  position: relative;
  top: 30px;
}
.menu_social ul li:hover {
  background: #404040;
}
.menu_social ul li:hover a i {
  color: #ffffff;
}
.menu_extra {
  margin-top: 50px;
}
.menu_extra > div:not(:last-child) {
  margin-bottom: 5px;
}
.menu_link,
.menu_link a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.menu_link a:hover {
  color: #ffffff;
}

.menu_link p {
  color: white;
}

/*********************************
5. Home
*********************************/

.home {
  width: 100%;
  height: 768px;
  margin-top: 117px;
}
.home_slider_container {
  width: 100%;
  height: 100%;
}
.home_container {
  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: 100%;
}
.home_content {
  max-width: 550px;
}
.home_subtitle {
  font-size: 30px;
  color: #404040;
  font-weight: 600;
  line-height: 1.1;
}
.home_title {
  font-size: 60px;
  color: #404040;
  line-height: 1.2;
  font-weight: 500;
  margin-top: -2px;
}
.home_text {
  margin-top: 11px;
}
.home_buttons {
  margin-top: 36px;
}
.home_buttons > div:not(:last-child) {
  margin-right: 10px;
}
.home_slider_dots {
  position: absolute;
  bottom: 53px;
  left: calc((100vw - 1140px) / 2);
  z-index: 1;
}
.home_slider_custom_dot {
  width: 8px;
  height: 8px;
  background: #b4b4b4;
  border-radius: 50%;
  cursor: pointer;
}
.home_slider_custom_dot.active,
.home_slider_custom_dot:hover {
  background: #57ccc3;
}
.home_slider_custom_dot:not(:last-child) {
  margin-right: 8px;
}

/*********************************
6. Intro
*********************************/

.intro {
  width: 100%;
  background: #ffffff;
  padding-top: 89px;
  padding-bottom: 90px;
}
.intro_content {
  padding-top: 30px;
}
.clinic-details {
  margin-top: 16px;
}
.clinicinfo {
  font-size: 36px;
  font-weight: 700;
  color: #57ccc3;
  line-height: 0.75;
}
.clinic_text {
  font-size: 24px;
  font-weight: 600;
  color: #404040;
  line-height: 1.5;
  margin-top: 5px;
  margin-top: 32px;
}
.intro_form_container {
  width: 100%;
  background: #ffffff;
  padding-left: 33px;
  padding-right: 34px;
  padding-top: 114px;
  border-radius: 0px 0px 28px 28px;
  box-shadow: 0px 25px 38px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  border-radius: 30px;
}
.intro_form_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #57ccc3;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 28px 28px 0px 0px;
}
.intro_form {
  width: 100%;
}
.intro_input {
  width: calc((100% - 15px) / 2);
  height: 62px;
  background: transparent;
  border: solid 2px #e6ebf1;
  margin-bottom: 18px;
  padding-left: 25px;
  outline: none;
  font-size: 15px;
  color: #404040;
  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;
}
.intro_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
  cursor: pointer;
}
.intro_select.selected {
  font-size: 15px !important;
  color: #404040 !important;
  font-weight: 500 !important;
  font-style: normal !important;
}
.intro_select option {
  color: #404040;
}
.intro_input:focus,
.intro_input:hover {
  border: solid 2px #57ccc3;
}
.intro_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.intro_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.intro_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.intro_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.intro_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.intro_button {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  border: solid 2px transparent;
  cursor: pointer;
}
.intro_button:hover {
  background: transparent;
  border: solid 2px #fd556d;
  color: #fd556d;
}

/*********************************
7. Why
*********************************/

.why {
  width: 100%;
  background: #eff3f7;
}
.why_content {
  /* padding-bottom: 90px; */
}
.why_text {
  margin-top: 33px;
}
.why_list {
  margin-top: 37px;
}
.why_list ul li:not(:last-of-type) {
  margin-bottom: 31px;
}
.icon_container {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #6bdbd2;
}
.icon {
  width: 32px;
  height: 32px;
}
.icon img {
  max-width: 100%;
}
.why_list_content {
  padding-left: 37px;
}
.why_list_title {
  font-size: 18px;
  font-weight: 600;
  color: #404040;
  line-height: 1.2;
}
.why_list_text {
  font-size: 14px;
  font-weight: 500;
  color: #868686;
}
.why_image_container {
  width: 100%;
  height: 100%;
}
.why_image {
  position: relative;
  bottom: 0;
  right: 0;
  width: 28rem;
}

.why_image img {
  border-radius: 28px;
}

/*********************************
8. CTA
*********************************/

.cta {
  width: 100%;
  background: #fd556d;
  padding-top: 49px;
  padding-bottom: 46px;
}
.cta_title {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.cta_phone {
  height: 59px;
  padding-left: 24px;
  padding-right: 25px;
  line-height: 59px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  background: #ee4860;
  border-radius: 19px;
  white-space: nowrap;
}

/*********************************
9. Services
*********************************/

.services {
  background: #ffffff;
  padding-top: 91px;
  padding-bottom: 91px;
}
.services_row {
  margin-top: 68px;
}
.service_col {
  margin-bottom: 55px;
}
.service_title {
  font-size: 20px;
  font-weight: 600;
  color: #404040;
  line-height: 1.2;
  margin-top: 17px;
}
.service_text {
  margin-top: 21px;
}

/*********************************
10. Extra
*********************************/

.extra {
  padding-top: 54px;
  padding-bottom: 53px;
}
.extra_container {
}
.extra_content {
  background: #ffffff;
  width: 393px;
  padding-top: 74px;
  padding-left: 46px;
  padding-right: 30px;
  padding-bottom: 63px;
  box-shadow: 0px 25px 38px rgba(0, 0, 0, 0.2);
}
.extra_disc > div:first-child {
  font-size: 60px;
  font-weight: 700;
  color: #6bdbd2;
  line-height: 0.75;
}
.extra_disc > div:last-child {
  font-size: 24px;
  font-weight: 500;
  color: #979797;
  line-height: 0.75;
}
.extra_disc > div:first-child span {
  display: inline-block;
  font-size: 36px;
  font-weight: 400;
  vertical-align: super;
}
.extra_title {
  font-size: 72px;
  font-weight: 600;
  color: #404040;
  margin-top: 16px;
  line-height: 1.11;
}
.extra_text {
  margin-top: 20px;
}
.extra_link {
  display: inline-block;
  margin-top: 47px;
}

/*********************************
11. Newsletter
*********************************/

.newsletter {
  padding-top: 56px;
  padding-bottom: 82px;
}
.newsletter_title {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.newsletter_row {
  margin-top: 54px;
}
.newsletter_input {
  width: calc(100% - 150px);
  height: 46px;
  background: transparent;
  border: solid 2px #e6ebf1;
  color: #ffffff;
  padding-left: 34px;
  outline: none;
}
.newsletter_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 167px;
  height: 46px;
  border-radius: 19px;
  background: #fd556d;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/*********************************
12. Footer
*********************************/

.footer {
  display: block;
  position: relative;
  background: #26292d;
}
.footer_content {
  padding-top: 94px;
  padding-bottom: 51px;
}
.footer_about {
  padding-top: 19px;
}
.footer_logo a > div:first-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.75;
  color: #ffffff;
}
.footer_logo a > div:first-child span {
  color: #57ccc3;
  /* margin-left: 7px; */
}
.footer_logo a > div:last-child {
  font-size: 12px;
  color: #969696;
  font-weight: 500;
  line-height: 0.75;
  margin-top: 6px;
}
.footer_about_text {
  margin-top: 42px;
}
.footer_about_text p {
  color: #868686;
}
.footer_title {
  font-size: 24px;
  font-weight: 600;
  color: #57ccc3;
  line-height: 1.2;
}
.footer_contact {
  padding-top: 19px;
}
.contact_list {
  margin-top: 44px;
}
.contact_list li {
  font-size: 15px;
  font-weight: 500;
  color: #878787;
}
.contact_list li:not(:last-child) {
  margin-bottom: 12px;
}
.footer_location {
  padding-top: 16px;
}
.locations_list {
  max-width: 180px;
  margin-top: 42px;
}
.locations_list li {
  line-height: 1.6;
}
.locations_list li:not(:last-child) {
  margin-bottom: 19px;
}
.location_title {
  font-size: 15px;
  font-weight: 500;
  color: #57ccc3;
}
.location_text {
  margin-top: 13px;
}
.opening_hours {
  font-size: large;
}
.opening_hours_list {
  margin-top: 44px;
}
.opening_hours_list li {
  white-space: nowrap;
}
.opening_hours_list li:not(:last-child) {
  margin-bottom: 9px;
}
.footer_bar {
  width: 100%;
  background: #181a1d;
}
.footer_bar_content {
  height: 49px;
}
.copyright {
  font-size: 12px;
  font-weight: 500;
  color: #646464;
}
.footer_nav ul li:not(:last-child) {
  margin-right: 29px;
}
.footer_nav ul li a {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #818181;
}
.footer_nav ul li a:hover {
  color: #57ccc3;
}

.opening_hours_footer {
  padding-top: 16px;
}

.logo {
  position: relative;
  padding: 0;
  width: 170px;
  height: 55px;
  top: 0px;
  left: 0;
}

@media (max-width: 991.98px) {
  .logo {
    width: 126px;
    height: 40px;
    top: 0px;
  }
}

img {
  vertical-align: middle;
  border-style: none;
  width: 100%;
  height: auto;
}

.doctor-image {
  border-radius: 28px;
}

.opening_hours_footer {
  padding-top: 16px;
}

a.copyright-color {
  color: white;
}

.owl-carousel {
  display: block !important;
}

.home {
  width: 100% !important;
  height: 625px !important;
}

.description-icons2 {
  font-size: 24px;
  color: white;
}

.galleryHeading {
  text-align: center;
}

ul {
  margin-bottom: 0rem !important;
}

.section_title h2 {
  font-size: 42px !important;
}

@media only screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 28px !important;
  }

  .milestone a {
    font-size: 22px;
  }

  .clinicinfo {
    font-size: 24px;
  }
}

.footer_logo a > div:first-child {
  font-size: 22px !important;
}

@charset "utf-8";

@media only screen and (max-width: 1840px) {
  .main_nav {
    margin-left: 143px;
  }
}

@media only screen and (max-width: 1760px) {
  .work_hours {
    display: none;
  }
}


@media only screen and (max-width: 1440px) {
  .header_phone {
    display: none;
  }
}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px) {
}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px) {
  .main_nav ul li:not(:last-child) {
    margin-right: 29px;
  }
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px) {
  .header_button {
    display: none;
  }
  .home_slider_dots {
    left: calc((100vw - 930px) / 2);
  }
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px) {
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px) {
}

/************
6. 991px
************/

@media only screen and (max-width: 991px) {
  .main_nav,
  .header_social {
    display: none;
  }
  .home_slider_dots {
    left: calc((100vw - 690px) / 2);
  }
  .hamburger {
    display: block;
  }
  .intro_form_container {
    margin-top: 102px;
  }
  .why_image {
    position: relative;
    bottom: auto;
    right: auto;
  }
  .why_content {
    padding-bottom: 60px;
  }
  .why_image img {
    max-width: 100%;
  }
  .cta_phone {
    margin-top: 33px;
  }
  .footer_col:not(:last-child) {
    margin-bottom: 80px;
  }
  .footer_location,
  .footer_contact {
    padding-top: 19px;
  }
}

/************
7. 959px
************/

@media only screen and (max-width: 959px) {
}

/************
8. 880px
************/

@media only screen and (max-width: 880px) {
}

/************
9. 768px
************/

@media only screen and (max-width: 768px) {
}

/************
10. 767px
************/

@media only screen and (max-width: 767px) {
  .home_slider_dots {
    left: calc((100vw - 510px) / 2);
  }
  .home_content {
    max-width: 100%;
  }
  .home_title {
    font-size: 48px;
  }
  .home_subtitle {
    font-size: 24px;
  }
  .milestone_col:not(:last-child) {
    margin-bottom: 50px;
  }
  .extra_content {
    width: 100%;
  }
  .footer_bar_content {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_nav {
    margin-top: 15px;
  }
}

/************
11. 575px
************/

@media only screen and (max-width: 575px) {
  p {
    font-size: 13px;
  }
  h2 {
    font-size: 36px;
  }
  .header.scrolled .header_content,
  .header_content {
    height: 60px;
  }
  .home {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
  .logo a > div:first-child {
    font-size: 24px;
  }
  .logo a > div:last-child {
    font-size: 10px;
  }
  .section_subtitle {
    font-size: 16px;
  }
  .header_content {
    padding-left: 15px;
    padding-right: 30px;
  }
  .button {
    height: 40px;
  }
  .button a {
    font-size: 12px;
    line-height: 36px;
    padding-left: 31px;
    padding-right: 30px;
  }
  .home_slider_dots {
    display: none !important;
  }
  .home_subtitle {
    font-size: 18px;
  }
  .home_title {
    font-size: 36px;
  }
  .cta_title {
    font-size: 28px;
  }
  .cta_phone {
    font-size: 24px;
  }
  .extra_disc > div:first-child {
    font-size: 48px;
  }
  .extra_disc > div:last-child {
    font-size: 20px;
  }
  .extra_title {
    font-size: 56px;
  }
  .newsletter {
    padding-bottom: 67px;
  }
  .newsletter_row {
    margin-top: 39px;
  }
  .newsletter_title {
    font-size: 24px;
  }
  .newsletter_input {
    width: calc(100% - 120px);
    height: 40px;
  }
  .newsletter_input::-webkit-input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input:-moz-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input::-moz-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input:-ms-input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input::input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_button {
    width: 142px;
    height: 40px;
    font-size: 12px;
  }
  .opening_hours {
    left: auto;
    width: 100%;
  }
}

/************
11. 539px
************/

@media only screen and (max-width: 539px) {
}

/************
12. 480px
************/

@media only screen and (max-width: 480px) {
}

/************
13. 479px
************/

@media only screen and (max-width: 479px) {
}

/************
14. 400px
************/

@media only screen and (max-width: 400px) {
}

/* Contact CSS */
@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Contact
7. Newsletter
8. Footer


******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900");

/*********************************
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;
  color: #a5a5a5;
}
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.14;
  font-weight: 500;
  color: #828282;
  -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 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
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: rgba(87, 204, 195, 0.75);
  color: #ffffff;
}
p::selection {
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
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;
  line-height: 1.2;
  color: #404040;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}
.form-control {
  color: #db5246;
}
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;
}
.trans_200 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.trans_400 {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.trans_500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.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 {
  height: 46px;
  border-radius: 20px;
}
.button a {
  display: block;
  padding-left: 40px;
  padding-right: 36px;
  line-height: 42px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.button_1 {
  background: #fd556d;
  border: solid 2px transparent;
}
.button_1 a {
  color: #ffffff;
}
.button_1:hover {
  background: transparent;
  border: solid 2px #fd556d;
}
.button_1:hover a {
  color: #fd556d;
}
.button_2 {
  background: transparent;
  border: solid 2px #57ccc3;
}
.button_2 a {
  color: #57ccc3;
}
.button_2:hover {
  background: #57ccc3;
}
.button_2:hover a {
  color: #ffffff;
}
.section_subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #35bdb3;
}
.section_title {
  margin-top: 9px;
}


/*********************************
3. Header
*********************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: #ffffff;
}
.header_content {
  width: 100%;
  height: 117px;
  padding-left: 100px;
  padding-right: 102px;
}
.header.scrolled .header_content {
  height: 75px;
  box-shadow: 0px 5px 15px rgba(87, 204, 195, 0.15);
}
.logo a > div:first-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.75;
  color: #353535;
}
.logo a > div:first-child span {
  color: #57ccc3;
  margin-left: 7px;
}
.logo a > div:last-child {
  font-size: 12px;
  color: #969696;
  font-weight: 500;
  line-height: 0.75;
  margin-top: 6px;
}
.main_nav {
  margin-left: 226px;
}
.main_nav ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #404040;
  white-space: nowrap;
}
.main_nav ul li a:hover,
.main_nav ul li.active a {
  color: #57ccc3;
}
.main_nav ul li:not(:last-child) {
  margin-right: 33px;
}
.work_hours {
  font-size: 15px;
  font-weight: 600;
  color: #404040;
  margin-right: 26px;
  white-space: nowrap;
}
.header_phone {
  height: 46px;
  border-radius: 20px;
  background: #57ccc3;
  padding-left: 40px;
  padding-right: 36px;
  /* line-height: 46px; */
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 12px;
}
.header_phone::selection {
  background: rgba(64, 64, 64, 0.75);
}
.header_button {
  margin-right: 16px;
}
.social ul li {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6ebf1;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.social ul li:hover {
  background: #57ccc3;
}
.social ul li:hover a i {
  color: #ffffff;
}
.social ul li:not(:last-of-type) {
  margin-right: 15px;
}
.social ul li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 34px;
  text-align: center;
}
.social ul li a i {
  font-size: 16px;
  color: #404040;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.hamburger {
  display: none;
  cursor: pointer;
  border: solid 1px transparent;
  border-radius: 7px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.hamburger:hover {
  border: solid 1px rgba(0, 0, 0, 0.05);
}
.hamburger i {
  font-size: 20px;
  color: #404040;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 7px;
  padding-right: 7px;
}

/*********************************
4. Menu
*********************************/

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #57ccc3;
  z-index: 102;
  padding-left: 5rem;
  padding-right: 30px;
  padding-top: 50px;
}
.menu.active {
  right: 0;
}
.menu_overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  z-index: 101;
  visibility: hidden;
  opacity: 0;
}
.menu_overlay.active {
  visibility: visible;
  opacity: 1;
}
.menu_close_container {
  position: absolute;
  top: 41px;
  left: 28px;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
  z-index: 1;
}
.menu_close {
  width: 100%;
  height: 100%;
  transform-style: preserve-3D;
}
.menu_close div {
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 8px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.menu_close div:last-of-type {
  -webkit-transform: rotate(90deg) translateX(-2px);
  -moz-transform: rotate(90deg) translateX(-2px);
  -ms-transform: rotate(90deg) translateX(-2px);
  -o-transform: rotate(90deg) translateX(-2px);
  transform: rotate(90deg) translateX(-2px);
  transform-origin: center;
}
.menu_close:hover div {
  background: #1befc5;
}
.menu_nav {
  margin-top: 75px;
}
.menu_nav ul li:not(:last-child) {
  margin-bottom: 1px;
}
.menu_nav ul li a {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.menu_nav ul li a:hover {
  color: #1befc5;
}
.menu_social {
  position: relative;
  top: 30px;
}
.menu_social ul li:hover {
  background: #404040;
}
.menu_social ul li:hover a i {
  color: #ffffff;
}
.menu_extra {
  margin-top: 50px;
}
.menu_extra > div:not(:last-child) {
  margin-bottom: 5px;
}
.menu_link,
.menu_link a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.menu_link a:hover {
  color: #ffffff;
}

/*********************************
5. Home
*********************************/

.home {
  width: 100%;
  height: 625px;
}
.home_overlay {
  z-index: 1;
}
.home_overlay img {
  max-width: 100%;
}
.home_container {
  position: absolute;
  top: 218px;
  left: 0;
  width: 100%;
}
.home_content {
  max-width: 550px;
}
.home_title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 500;
  color: #404040;
  font-weight: bold;
}
.home_text {
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  margin-top: 1px;
}

/*********************************
6. Contact
*********************************/

.contact {
  background: #ffffff;
  padding-top: 51px;
  padding-bottom: 90px;
}
.contact_form_container {
  width: 100%;
  background: #ffffff;
  padding-left: 33px;
  padding-right: 34px;
  padding-bottom: 63px;
  padding-top: 136px;
  box-shadow: 0px 25px 38px rgba(0, 0, 0, 0.2);
}
.contact_form_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 336px;
  height: 80px;
  background: #57ccc3;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
.contact_form {
  width: 100%;
}
.contact_input {
  width: calc((100% - 15px) / 2);
  height: 62px;
  background: transparent;
  border: solid 2px #e6ebf1;
  margin-bottom: 18px;
  padding-left: 25px;
  outline: none;
  font-size: 15px;
  color: #404040;
  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;
}
.contact_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
  cursor: pointer;
}
.contact_select.selected {
  font-size: 15px !important;
  color: #404040 !important;
  font-weight: 500 !important;
  font-style: normal !important;
}
.contact_select option {
  color: #404040;
}
.contact_input:focus,
.contact_input:hover {
  border: solid 2px #57ccc3;
}
.contact_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.contact_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.contact_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.contact_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.contact_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #a09f9f !important;
}
.contact_button {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  border: solid 2px transparent;
  cursor: pointer;
  margin-top: 24px;
}
.contact_button:hover {
  background: transparent;
  border: solid 2px #fd556d;
  color: #fd556d;
}
.contact_content_title {
  font-size: 30px;
  font-weight: 600;
  color: #404040;
  line-height: 1.2;
  margin-top: 32px;
}
.contact_content_text {
  margin-top: 21px;
}
.direct_line {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 31px;
}
.direct_line_title {
  width: 130px;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  color: #fff;
  background-color: #fd556d;
  white-space: nowrap;
}
.direct_line_num {
  width: calc(100% - 130px);
  height: 100%;
  font-size: 30px;
  font-weight: 500;
  line-height: 48px;
  color: #fff;
  background: #57ccc3;
  white-space: nowrap;
}
.contact_info {
  margin-top: 50px;
}
.contact_info ul li:not(:last-child) {
  margin-bottom: 24px;
}
.contact_info ul li > div:first-of-type {
  font-size: 18px;
  font-weight: 600;
  color: #57ccc3;
  line-height: 1.34;
  margin-right: 0.5rem;
}
.contact_info ul li > div:last-of-type {
  max-width: 170px;
  font-size: 15px;
  font-weight: 600;
  color: #878787;
  line-height: 1.6;
}
.contact_social {
  margin-top: 43px;
}
.contact_social ul li:not(:last-of-type) {
  margin-right: 22px;
}
.contact_social ul li a i {
  color: #404040;
  padding: 5px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.contact_social ul li a i:hover {
  color: #57ccc3;
}
.google_map_row {
  margin-top: 90px;
}
.contact_map {
  width: 100%;
}
.map {
  width: 100%;
}
.google_map {
  width: 100%;
  height: 570px;
}
.map_container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#map {
  width: 100%;
  height: calc(100% + 30px);
}

/*********************************
7. Newsletter
*********************************/

.newsletter {
  padding-top: 56px;
  padding-bottom: 82px;
}
.newsletter_title {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.newsletter_row {
  margin-top: 54px;
}
.newsletter_input {
  width: calc(100% - 150px);
  height: 46px;
  background: transparent;
  border: solid 2px #e6ebf1;
  color: #ffffff;
  padding-left: 34px;
  outline: none;
}
.newsletter_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #ffffff !important;
}
.newsletter_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 167px;
  height: 46px;
  border-radius: 19px;
  background: #fd556d;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/*********************************
8. Footer
*********************************/

.footer {
  display: block;
  position: relative;
  background: #26292d;
}
.footer_content {
  padding-top: 94px;
  padding-bottom: 51px;
}
.footer_about {
  padding-top: 19px;
}
.footer_logo a > div:first-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.75;
  color: #57ccc3;
}
.footer_logo a > div:first-child span {
  color: #57ccc3;
  /* margin-left: 7px; */
  /* line-height: 1.6rem; */
      font-weight: 600;
          font-size: 24px;
}
.footer_logo a > div:last-child {
  font-size: 12px;
  color: #969696;
  font-weight: 500;
  line-height: 0.75;
  margin-top: 6px;
}
.footer_about_text {
  margin-top: 42px;
}
.footer_about_text p {
  color: #868686;
}
.footer_title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
.footer_contact {
  padding-top: 40px;
}
.contact_list {
  margin-top: 44px;
}
.contact_list li {
  font-size: 15px;
  font-weight: 500;
  color: #878787;
}
.contact_list li:not(:last-child) {
  margin-bottom: 12px;
}
.footer_location {
  padding-top: 40px;
}
.locations_list {
  max-width: 180px;
  margin-top: 42px;
}
.locations_list li {
  line-height: 1.6;
}
.locations_list li:not(:last-child) {
  margin-bottom: 19px;
}
.location_title {
  font-size: 15px;
  font-weight: 500;
  color: #57ccc3;
}
.location_text {
  margin-top: 13px;
}

.opening_hours_list {
  margin-top: 44px;
}
.opening_hours_list li {
  white-space: nowrap;
}
.opening_hours_list li:not(:last-child) {
  margin-bottom: 9px;
}
.footer_bar {
  width: 100%;
  background: #181a1d;
}
.footer_bar_content {
  height: 49px;
}
.copyright {
  font-size: 12px;
  font-weight: 500;
  color: #646464;
}
.footer_nav ul li:not(:last-child) {
  margin-right: 29px;
}
.footer_nav ul li a {
  font-size: 12px;
  font-weight: 500;
  color: #818181;
}
.footer_nav ul li a:hover {
  color: #57ccc3;
}

.logo {
  position: relative;
  padding: 0;
  width: 170px;
  height: 55px;
  top: 0px;
  left: 0;
}

@media (max-width: 991.98px) {
  .logo {
    width: 126px;
    height: 40px;
    top: 0px;
  }
}

img {
  vertical-align: middle;
  border-style: none;
  width: 100%;
  height: auto;
}

.doctor-image {
  border-radius: 28px;
}

.footer_location {
  padding-top: 16px;
}

.footer_contact {
  padding-top: 19px;
}

.opening_hours_footer {
  padding-top: 16px;
}

.footer_title {
  font-size: 24px;
  font-weight: 600;
  color: #57ccc3;
  line-height: 1.2;
}

/* .intro_image {
    width: 12rem;
} */

.footer_nav ul li a {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #818181;
}

@media (max-width: 1023px) {
  .col-lg-2.col-md-5.payment-img.mx-1 {
    width: 150px;
  }
}

a.copyright-color {
  color: white;
}

/* Contact CSS responsive */

@media only screen and (max-width: 1840px) {
  .main_nav {
    margin-left: 143px;
  }
}

/************
1. 1760px
************/

@media only screen and (max-width: 1760px) {
  .work_hours {
    display: none;
  }
}

/************
1. 1600px
************/

@media only screen and (max-width: 1600px) {
  .main_nav {
    margin-left: 20px;
  }
}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px) {
  .header_phone {
    display: none;
  }
}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px) {
}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px) {
  .main_nav ul li:not(:last-child) {
    margin-right: 29px;
  }
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px) {
  .header_button {
    display: none;
  }
  .home {
    height: 525px;
  }
  .direct_line_num {
    font-size: 24px;
  }
  .cd-resize-img {
    right: 0px;
  }
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px) {
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px) {
}

/************
6. 991px
************/

@media only screen and (max-width: 991px) {
  .main_nav,
  .header_social {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .contact_col {
    margin-top: 70px;
  }
  .google_map {
    height: 470px;
  }
  .footer_col:not(:last-child) {
    margin-bottom: 80px;
  }
  .footer_location,
  .footer_contact {
    padding-top: 0;
  }
}

/************
7. 959px
************/

@media only screen and (max-width: 959px) {
}

/************
8. 880px
************/

@media only screen and (max-width: 880px) {
}

/************
9. 768px
************/

@media only screen and (max-width: 768px) {
}

/************
10. 767px
************/

@media only screen and (max-width: 767px) {
  .home {
    height: 444px;
  }
  .home_container {
    top: 200px;
  }
  .home_content {
    max-width: 100%;
  }
  .home_title {
    font-size: 48px;
  }
  .footer_bar_content {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_nav {
    margin-top: 15px;
  }
}

/************
11. 575px
************/

@media only screen and (max-width: 575px) {
  p {
    font-size: 13px;
  }
  h2 {
    font-size: 36px;
  }
  .header.scrolled .header_content,
  .header_content {
    height: 60px;
  }
  .home {
    height: 365px;
  }
  .home_container {
    top: 154px;
  }
  .home_text {
    font-size: 13px;
  }
  .logo a > div:first-child {
    font-size: 24px;
  }
  .logo a > div:last-child {
    font-size: 10px;
  }
  .section_subtitle {
    font-size: 16px;
  }
  .header_content {
    padding-left: 15px;
    padding-right: 30px;
  }
  .button {
    height: 40px;
  }
  .button a {
    font-size: 12px;
    line-height: 36px;
    padding-left: 31px;
    padding-right: 30px;
  }
  .home_title {
    font-size: 36px;
  }
  .google_map {
    height: 370px;
  }
  .newsletter {
    padding-bottom: 67px;
  }
  .newsletter_row {
    margin-top: 39px;
  }
  .newsletter_title {
    font-size: 24px;
  }
  .newsletter_input {
    width: calc(100% - 120px);
    height: 40px;
  }
  .newsletter_input::-webkit-input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input:-moz-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input::-moz-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input:-ms-input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_input::input-placeholder {
    font-size: 13px !important;
  }
  .newsletter_button {
    width: 142px;
    height: 40px;
    font-size: 12px;
  }
  .opening_hours {
    left: auto;
    width: 100%;
  }
}

.contact_list li a {
  color: #878787;
}

.col-lg-3.offset-lg-1 {
  margin: 0px !important;
}

.home {
  height: 570px !important;
}

.schedule p {
  font-size: 18px;
  color: black;
}

.header_social_footer {
  margin-top: 12%;
}

.logo {
  position: relative;
  padding: 0px;
  width: max-content;
  height: 55px;
  left: 0px;
  top: 0px;
}

.logo_name {
  color: #007bff;
}

.cta_text p, .cta_text .mb-5{
  color: rgb(255, 255, 255) !important;
  font-family: "Montserrat", sans-serif !important;

}

.cta_text .mb-5 > p {
  color: rgb(255, 255, 255) !important;
  font-family: "Montserrat", sans-serif !important;

}

.cta_text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 2;
  margin-top: -1px;
}

.logo a img {
  height: 50px;
  width: 150px;
  object-fit: contain;
}

.img_fluid{
  height: 300px !important;
  width: 100% !important;
  width: -webkit-fill-available !important;
}

.milestone a {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}


.app_make{
  background: #fd556d;
  padding: 0.25rem;
  border-radius: 1rem;
}

.main{
  margin-top: 117px;
}

.d-flex.logo_name.text-capitalize {
    color: #57ccc3 !important;
}

ul.contact_list li a:hover {
    color: #57ccc3;
}

.social_iconbox{
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}