*, *:before, *:after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: normal;
}
@media (max-width: 991px) {
  body, html {
    font-size: 14px;
    line-height: 20px;
  }
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: #00978d;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a[href] {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1308px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .container {
    padding: 0 10px;
  }
}

.container-fluid {
  padding: 0 25px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.heading h2 {
  margin-bottom: 25px;
  font-size: 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Century Gothic", sans-serif;
  font-weight: normal;
  line-height: normal;
}
@media (max-width: 767px) {
  h1, h2, h3, h4, h5, h6 {
    margin: 5px 0;
  }
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

input, select, button, textarea, label {
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

button, input[type=submit], input[type=button] {
  cursor: pointer;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.read-more {
  display: inline-block;
}
.read-more a {
  display: inline-block;
  color: #fff;
}
.read-more a span, .read-more a img {
  display: inline-block;
}
.read-more a span {
  padding-right: 10px;
  transition: 0.5s ease;
}
.read-more a:hover span {
  padding-right: 18px;
}

.owl-carousel {
  padding: 0px;
}
.owl-carousel .owl-nav button {
  display: inline-block;
  margin: 0 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.owl-carousel .owl-nav button svg {
  display: block;
  width: 30px;
  height: 30px;
  color: #000;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 5%;
  margin: 0;
  left: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 675px) {
  .owl-carousel .owl-dots {
    position: static;
    width: 100%;
    margin-top: 15px;
  }
}
.owl-carousel .owl-dots button.owl-dot {
  margin: 0 5px;
  opacity: 1;
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: 0.45;
}
.owl-carousel .owl-dots button.owl-dot.active {
  opacity: 1;
}

div#back-to-top {
  position: fixed;
  left: auto;
  right: -100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  z-index: 11;
  bottom: 10px;
  background: #00978d;
  padding: 10px;
  cursor: pointer;
  transition: 700ms ease;
}
@media (max-width: 675px) {
  div#back-to-top {
    width: 45px;
    height: 45px;
    bottom: 60px;
    display: none;
  }
}
div#back-to-top.show {
  right: 10px;
}
div#back-to-top svg {
  color: #fff;
  max-width: 15px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 111;
  background: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: 700ms ease;
}

.overlay_active.overlay {
  opacity: 0.5;
  pointer-events: all;
}

.social_links ul li {
  display: inline-block;
  vertical-align: middle;
}
.social_links ul li a {
  display: block;
  width: 30px;
  line-height: 0;
  text-align: center;
  margin: 0;
}
.social_links ul li a svg {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.social_links ul li a svg path {
  fill: #fff;
  transition: 600ms ease;
}
.social_links ul li a:hover svg path {
  fill: #00978d;
}

.form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.form .form-group .form-control {
  max-width: 767px;
  width: 100%;
  height: 45px;
  border: 0;
  top: 16px;
  color: #000;
  padding-top: 15px;
  background: transparent;
  border-bottom: 1px solid #dbdbdb;
  transition: 700ms ease;
}
.form .form-group .form-control:-internal-autofill-selected {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.form .form-group .form-control option {
  color: #000;
}
.form .form-group .form-control:focus {
  outline: none;
  border-color: #000;
}
.form .form-group .form-control:focus ~ label {
  top: -6px;
  font-size: 14px;
}
.form .form-group.valid label {
  top: -6px;
  font-size: 14px;
}
.form .form-group .icondoro {
  position: absolute;
  right: 10px;
  line-height: 0;
  top: 15px;
}
@media (max-width: 675px) {
  .form .form-group .icondoro {
    top: 23px;
  }
}
.form .form-group .icondoro img {
  width: 100%;
  padding-top: 0px;
}
.form .form-group textarea.form-control {
  height: 85px;
  max-width: 100%;
  padding-top: 15px;
  resize: none;
}
.form .form-group label {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  line-height: normal;
  transition: 600ms ease;
  display: block;
  color: #fff;
  top: 10px;
  padding: 0 0 13px;
}

.text-center {
  text-align: center;
}

.video_icon {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .video_icon {
    width: 47px;
    height: 47px;
  }
}
.video_icon:before {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (max-width: 767px) {
  .video_icon:before {
    width: 47px;
    height: 47px;
  }
}
.video_icon img {
  width: auto;
  position: relative;
}
@keyframes pulse-border {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  opacity: 0.5;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
  opacity: 0;
}
@keyframes virotae {
  transform: rotate(0deg);
  transform: rotate(360deg);
}
.customscroll {
  position: relative;
}
.customscroll::-webkit-scrollbar {
  width: 5px;
}
.customscroll::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.customscroll::-webkit-scrollbar-thumb {
  background-color: #00978d;
}

.modelPop {
  position: fixed;
  z-index: 1111;
  transition: 0.5s ease;
}

.close_model {
  position: fixed;
  right: 15px;
  top: 15px;
  cursor: pointer;
  line-height: 0;
  width: 25px;
  height: 25px;
  z-index: 111;
}

.model.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 1111;
  transition: transform 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform-origin: top left;
  transform: translateY(100%);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.model.Model_Video .modelBody {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.model.Model_Video iframe {
  width: 100%;
  height: 85%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}
.model.Model_Video.is-open {
  pointer-events: all;
  transform: translateY(0%);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-delay: 0s;
  transition-duration: 500ms;
}

.img_hover {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .img_hover:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    transition: transform 1s;
    z-index: 11;
    opacity: 0.3;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    pointer-events: none !important;
  }
}

.img_hover:hover:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
@keyframes img_hovera {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
@keyframes bganimat {
  background-position: 0;
  ackground-position: 20px 10px;
}
.mob_strip {
  display: none;
}
@media (max-width: 767px) {
  .mob_strip {
    display: flex;
    justify-content: space-between;
    background: #00978c;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    height: 6vh;
    border-top: 1px solid rgba(255, 255, 255, 0.0901960784);
  }
  .mob_strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    font-size: 14px;
    font-family: "Century Gothic", sans-serif;
  }
}
@media only screen and (max-width: 767px) and (max-width: 420px) {
  .mob_strip a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .mob_strip a:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.2117647059);
  }
}
@media (max-width: 767px) {
  .mob_strip a img, .mob_strip a span {
    display: inline-block;
    vertical-align: middle;
  }
}
@media (max-width: 767px) {
  .mob_strip a img {
    margin-right: 10px;
  }
}

.tab-list:not(:first-child) {
  display: none;
}

.only_mob {
  display: none !important;
}
@media (max-width: 767px) {
  .only_mob {
    display: block !important;
  }
}

.ui-datepicker .ui-widget-header {
  background: #00978d;
  border-color: #00978d;
}
.ui-datepicker .ui-datepicker-title {
  color: #fff;
  font-family: "Century Gothic", sans-serif;
}

.ui-datepicker-calendar .ui-state-highlight, .ui-datepicker-calendar .ui-widget-content .ui-state-highlight, .ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  border: 1px solid #00978d !important;
  background: #00978d !important;
  color: #ffffff !important;
  text-align: center !important;
}
.ui-datepicker-calendar .ui-state-active, .ui-datepicker-calendar .ui-widget-content .ui-state-active {
  border: 1px solid #00978d !important;
  background: #00978d !important;
  color: #ffffff !important;
  text-align: center !important;
}
.ui-datepicker-calendar * {
  font-family: "Century Gothic", sans-serif;
  text-align: center !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  background: #00978d !important;
  border: 0 !important;
  top: 2px !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 1px !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 1px !important;
}

.ui-datepicker .ui-datepicker-prev span {
  background: url("../icons/prev.png");
  background-repeat: no-repeat;
}

.ui-datepicker .ui-datepicker-next span {
  background: url("../icons/next.png");
  background-repeat: no-repeat;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
  background: #000;
  border: 0;
  color: #fff;
  text-align: center;
}

span.ui-datepicker-year, span.ui-datepicker-month {
  font-family: "Century Gothic", sans-serif;
  font-weight: normal;
}

.ui-datepicker .ui-datepicker-title select {
  font-family: "Century Gothic", sans-serif;
}
@keyframes tada {
  transform: scale3d(1, 1, 1);
  transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  transform: scale3d(1, 1, 1);
}
.no-header {
  height: 64px;
  background: linear-gradient(to right, #0b0e4d, #1d448f);
}

main.fill-header {
  margin-top: 71px;
}
@media (max-width: 675px) {
  main.fill-header {
    margin-top: 45px;
  }
}

.therapists1 {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 675px) {
  .therapists1 {
    flex-wrap: wrap;
  }
}
.therapists1 .therapists-left {
  flex: 0 1 20%;
  max-width: 20%;
}
@media (max-width: 675px) {
  .therapists1 .therapists-left {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0px;
  }
  .therapists1 .therapists-left img {
    width: 50%;
  }
}
.therapists1 .therapists-right {
  flex: 0 1 80%;
  max-width: 70%;
  padding-left: 25px;
}
@media (max-width: 675px) {
  .therapists1 .therapists-right {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 15px 15px;
  }
  .therapists1 .therapists-right h5 {
    text-align: center;
    margin-bottom: 5px !important;
  }
  .therapists1 .therapists-right h6 {
    text-align: center;
    margin: 0 !important;
    margin-bottom: 15px !important;
  }
}

header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
}
@media (max-width: 767px) {
  header {
    padding: 6px 0;
  }
}
header .header-wrapper .flex {
  align-items: center;
}
header .header-wrapper .flex .col1 {
  flex: 0 1 300px;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  header .header-wrapper .flex .col1 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
header .header-wrapper .flex .col2 {
  flex: 1;
}
@media (max-width: 767px) {
  header .header-wrapper .flex .col2 {
    display: none;
  }
}
header .header-wrapper .logo {
  text-align: center;
}
header .header-wrapper .logo a {
  display: inline-block;
}
header .header-wrapper .logo a img {
  display: block;
}
@media (max-width: 767px) {
  header .header-wrapper .logo a img {
    max-width: 150px;
  }
}
header .header-wrapper .nav_wrapper {
  text-align: right;
  padding-right: 25px;
}
header .header-wrapper .nav_wrapper ul {
  display: inline-block;
}
header .header-wrapper .nav_wrapper ul li {
  display: inline-block;
}
header .header-wrapper .nav_wrapper ul li a {
  display: inline-block;
  padding: 5px 25px;
  color: #fff;
}
header .header-wrapper .nav_wrapper ul li a img, header .header-wrapper .nav_wrapper ul li a span {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .nav_wrapper ul li a img {
  margin-right: 10px;
}

.landing_banner {
  position: relative;
}
.landing_banner .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 80px;
  z-index: 2;
}
@media (max-width: 767px) {
  .landing_banner .logo {
    display: none;
  }
}
.landing_banner:before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #000, transparent);
  left: 0;
  right: 0;
  top: 0;
  height: 250px;
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}
.landing_banner:after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #000, transparent);
  left: 0;
  right: 0;
  height: 320px;
  bottom: 0;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.landing_banner .flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  .landing_banner .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .landing_banner .flex .col:nth-child(2) {
    height: 47vh;
  }
}
.landing_banner .video {
  overflow: hidden;
  position: relative;
}
.landing_banner .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing_banner .video .link a:hover {
  background: #00978d;
  border-color: #00978d !important;
}
.landing_banner .content_wrap {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
}
@media only screen and (max-width: 400px) {
  .landing_banner .content_wrap {
    bottom: 45px;
    padding: 15px;
  }
}
.landing_banner .content_wrap .content {
  text-align: center;
}
.landing_banner .content_wrap .content h2 {
  color: #fff;
  background: none;
}
@media (max-width: 767px) {
  .landing_banner .content_wrap .content h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 400px) {
  .landing_banner .content_wrap .content h2 {
    font-size: 20px;
  }
}
.landing_banner .content_wrap .content .link {
  margin-top: 25px;
}
@media only screen and (max-width: 400px) {
  .landing_banner .content_wrap .content .link {
    margin-top: 15px;
  }
}
.landing_banner .content_wrap .content .link a {
  display: inline-block;
  color: #fff;
  padding: 4px 30px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4588235294);
  transition: 0.5s ease;
}

.height_100 {
  height: 100vh;
}
@media (max-width: 767px) {
  .height_100 {
    height: 45vh;
  }
}

.slide_wrap {
  position: relative;
}
.slide_wrap .landing_slider .owl-stage-outer {
  height: 100%;
}
.slide_wrap .landing_slider .owl-stage-outer .owl-stage, .slide_wrap .landing_slider .owl-stage-outer .owl-item {
  height: 100%;
}
.slide_wrap .landing_slider .item {
  height: 100%;
}
.slide_wrap .landing_slider .item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide_wrap .custom_dots {
  position: absolute;
  top: 0;
  bottom: 10vh;
  left: 0;
  right: auto;
  width: 55px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  z-index: 2;
}
@media (max-width: 991px) {
  .slide_wrap .custom_dots {
    bottom: 0;
    justify-content: center;
    left: auto;
    right: 0;
  }
}
.slide_wrap .custom_dots button.owl-dot {
  opacity: 1;
  display: block;
  width: 11px;
  height: 11px;
  margin: 11px 0;
  border-radius: 25px;
  border: 0;
}
.slide_wrap .custom_dots button.owl-dot.active {
  background: #00978d;
}
.slide_wrap .link a:hover {
  background: #1f205a;
  border-color: #1f205a !important;
}/*# sourceMappingURL=style.css.map */