/*
  Theme Name : Elite
  version    : 0.1
  */
/*==========================
  Common Styles
  ==========================*/
:root {
  --section_padding: 150px 0;
}

@media (max-width: 992px) {
  :root {
    --section_padding: 80px 0;
  }
}
@media (max-width: 767px) {
  :root {
    --section_padding: 60px 0;
  }
}
section,
header,
footer,
main {
  height: auto;
  float: left;
  clear: both;
}

section,
header,
footer,
main {
  width: 100%;
  position: relative;
}

h1,
h2,
h3 {
  font-weight: 600;
}

body {
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  font-family: "Hanken Grotesk", sans-serif;
}

p {
  color: #828282;
  line-height: 30px;
}

section,
header,
footer,
main {
  position: relative;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

b,
strong {
  font-weight: bold;
}

a {
  text-decoration: none !important;
  color: #000;
}

html {
  scroll-behavior: initial !important;
}

.container {
  max-width: 1400px;
}
@media (max-width: 1700px) {
  .container {
    padding: 0 3%;
  }
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}

.p-sec {
  padding: 150px 0;
}
@media (max-width: 993px) {
  .p-sec {
    padding: 60px 0;
  }
}

/*---------------------------------Button Style----------------------*/
.btn_book {
  background: #fff;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px 4px 10px 4px;
  transition: all 0.3s;
}
.btn_book span img {
  position: relative;
  top: -2px;
  transition: all 0.3s;
  width: 17px;
  height: 20px;
}
.btn_book:hover {
  background: #00b7bf;
  color: #fff;
}
.btn_book:hover span img {
  filter: brightness(0) invert(1);
}

.btn_theme {
  background: #00b7bf;
  color: #fff;
  box-shadow: none;
  border: none;
  padding: 10px 25px;
  border-radius: 10px 4px 10px 4px;
  font-size: 17px;
  transition: all 0.3s;
}
.btn_theme.white {
  background: #fff;
  color: #00b7bf;
}
.btn_theme.white:hover {
  background: #00b7bf;
  color: #fff;
}
.btn_theme:hover {
  opacity: 0.9;
}

/*------------------------Header Style----------------------------*/
header {
  position: relative;
  z-index: 9;
}
header .row {
  padding: 15px 0;
}
header .menu_col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 575px) {
  header .menu_col {
    flex-direction: column;
    gap: 20px;
  }
}
header .logo_col img {
  width: 300px;
}
header .social {
  display: flex;
  gap: 20px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  header .social {
    padding-right: 0px;
  }
}
header .social a {
  transition: all 0.3s;
}
header .social a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  header .logo_col,
  header .menu_col {
    flex: 0 0 100%;
    justify-content: space-between;
  }
  header .logo_col {
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 400px) {
  .logo_col img {
    max-width: 200px;
    padding-bottom: 10px;
  }
}
section.banner {
  margin-top: -100px;
  height: 100vh;
  min-height: 870px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  section.banner {
    max-height: 900px;
  }
}
@media (max-width: 767px) {
  section.banner {
    margin-top: -170px;
  }
}
@media (max-width: 575px) {
  section.banner {
    margin-top: -210px;
    height: auto;
  }
  section.banner .col_cont_banner {
    margin-top: 250px;
  }
  section.banner .form_box {
    min-width: auto !important;
  }
}
section.banner::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #00b7bf;
  background: linear-gradient(176deg, #00b7bf 0%, #016b78 53%);
  opacity: 1;
  top: 0;
}
section.banner .banner_bg {
  position: absolute;
  opacity: 0.8;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  top: 0;
}
section.banner .banner_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.banner .container {
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
section.banner h2 {
  color: #000;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
section.banner h2 span {
  display: block;
  color: #00b7bf;
  font-size: 33px;
  line-height: 21px;
}
section.banner .form_box {
  background-color: #fff;
  padding: 30px 45px 45px 45px;
  border-radius: 50px 10px 50px 10px;
  min-width: 430px;
}
@media (max-width: 767px) {
  section.banner .form_box {
    width: 100%;
    padding: 20px 20px 50px 20px;
  }
}
section.banner .form_box .form-group {
  margin-bottom: 15px;
}
section.banner .form_box .form-group:last-child {
  margin-bottom: 0px !important;
}
section.banner .form_box .form-group input {
  width: 100%;
}
section.banner .form_box .form-group input:focus {
  box-shadow: 0 0 0 0.25rem rgb(213, 213, 213);
}
section.banner .form_box .form-group select:focus {
  box-shadow: 0 0 0 0.25rem rgb(213, 213, 213);
}
section.banner .col_img_banner {
  display: flex;
  justify-content: end;
  align-items: end;
}
@media (max-width: 767px) {
  section.banner .col_img_banner {
    display: none;
  }
}
section.banner .col_img_banner img {
  position: absolute;
}
@media (max-width: 993px) {
  section.banner .col_img_banner img {
    max-width: 410px;
  }
}
section.banner .col_cont_banner {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  section.banner .col_cont_banner {
    padding-bottom: 60px;
  }
}
section.banner:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  left: 0;
  bottom: -2px;
  background: url(../images/banner_svg.svg) no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: 2;
}

.form-control {
  border-radius: 10px 4px 10px 4px;
  min-height: 45px;
}

select.form-control {
  background: url(../images/arrow_select.svg) no-repeat #fff;
  background-position: 96%;
}

.about_section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .about_section {
    padding: 50px 0;
  }
}
.about_section .about_cont {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about_section .btn_theme {
  margin-top: 15px;
  display: inline-flex;
}
.about_section .count_wrap {
  background: #f8f8f8;
  border-radius: 30px 10px 30px 10px;
  border: 1px solid #ededed;
  padding: 30px;
}
.about_section span.count {
  font-size: 60px;
  display: block;
  color: #00b7bf;
}
.about_section .count_section.row {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .about_section .count_section.row {
    margin-top: 40px;
  }
}
@media (max-width: 993px) {
  .about_section .count_section.row .count_col {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 993px) and (max-width: 575px) {
  .about_section .count_section.row .count_col {
    width: 100%;
  }
}

.title {
  font-size: 50px;
  font-weight: 800;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .title {
    font-size: 27px;
  }
}
.title span {
  color: #00b7bf;
}
.title:before {
  content: "";
  position: absolute;
  display: block;
  background: #e1e1e1;
  height: 1px;
  width: 500px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .title:before {
    width: 250px;
  }
}
.title:after {
  content: "";
  position: absolute;
  display: block;
  background: #00b7bf;
  height: 8px;
  width: 100px;
  bottom: -4px;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.service_section {
  background-color: #ecfeff;
  padding: 100px 0 50px 0;
  margin-top: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service_section {
    padding: 50px 0;
    margin-top: 0;
  }
}
.service_section:before {
  content: "";
  position: absolute;
  display: block;
  top: -72px;
  width: 105%;
  background: url(../images/service_shape.svg) no-repeat;
  height: 80px;
  left: -4%;
  background-size: 105%;
  background-size: cover;
  background-position: center bottom;
}
.service_section .title:before {
  background: #fff;
}
.service_section .slide_wrap {
  background: linear-gradient(-70deg, #00b7bf 0%, #016b78 83%);
  margin: 12px;
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.service_section .slide_wrap:hover {
  opacity: 0.8;
}
.service_section .slide_wrap:hover img {
  transform: scale(1.02);
}
.service_section .slide_wrap .img_slide {
  overflow: hidden;
}
.service_section .slide_wrap .img_slide img {
  width: 100%;
  transition: all 1s;
}
.service_section .slide_wrap .cont_slide {
  padding: 20px;
  justify-content: space-between;
  display: flex;
  padding-right: 25px;
}
.service_section .slide_wrap .cont_slide span {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 575px) {
  .service_section .slide_wrap .cont_slide span {
    font-size: 18px !important;
  }
}
.service_section button.slick-arrow {
  border: none;
  box-shadow: none;
  background: transparent;
  font-size: 0;
  width: 50px;
  height: 50px;
  background: url(../images/next.svg) no-repeat;
  background-size: contain;
  top: 50%;
  position: absolute;
  transform: translateY(-100%);
  left: -50px;
}
.service_section button.slick-arrow.slick-next {
  right: -50px;
  transform: rotate(180deg) translateY(100%);
  left: auto;
}
.service_section .slick-dots {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-top: 30px;
  justify-content: center;
}
.service_section .slick-dots li button {
  background: transparent;
  border: none;
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #b2e7e7;
  border-radius: 50px;
  transition: all 0.3s;
}
.service_section .slick-dots li.slick-active button {
  width: 30px;
  background: #00b7bf;
  outline: none;
}
@media (max-width: 1560px) {
  .service_section .slick-slider {
    max-width: 80%;
    margin: 0 auto;
  }
}

footer {
  background: #00b7bf;
  overflow: hidden;
  color: #fff;
  padding-top: 30px;
}
footer .container {
  position: relative;
  z-index: 2;
}
footer .ft_appointment {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 35px;
  align-items: center;
  padding: 60px 0;
  padding-top: 210px;
}
@media (min-width: 575px) {
  footer .ft_appointment {
    text-align: left;
  }
}
@media (max-width: 575px) {
  footer .ft_appointment {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
footer h3 {
  font-size: 37px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  footer h3 {
    font-size: 27px;
  }
}
footer .location_sec {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 993px) {
  footer .location_sec {
    flex-direction: column;
    gap: 20px;
  }
}
footer:before {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/bg_footer.svg);
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.2;
}
footer:after {
  content: "";
  position: absolute;
  display: block;
  background: #00b7bf;
  background: linear-gradient(176deg, #016b78 0%, #00b7bf 100%);
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.7;
}
footer .loc_wrap {
  text-align: center;
  width: 33.33%;
}
footer .loc_wrap h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
footer .loc_wrap p {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
}
footer .loc_wrap a {
  color: #fff;
  transition: all 0.3s;
}
footer .loc_wrap a:hover {
  color: #44e7f0;
}
@media (max-width: 993px) {
  footer .loc_wrap {
    width: 100%;
  }
}
footer .copyright {
  display: flex;
  justify-content: end;
}
footer .social a {
  background: #018e99;
  width: 45px;
  height: 45px;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}
footer .ft_bottom {
  padding-top: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1176470588);
  margin-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  footer .ft_bottom {
    margin-top: 30px;
  }
}
footer .ft_bottom .copyright {
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 350px) {
  footer .ft_bottom .copyright {
    text-align: center;
  }
}
@media (max-width: 575px) {
  footer .ft_bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  footer .ft_bottom .social,
  footer .ft_bottom .copyright {
    display: flex;
    justify-content: center;
  }
}
footer h3.title_loc {
  text-align: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  footer h3.title_loc {
    margin-bottom: 40px;
  }
}
footer h3.title_loc:before {
  content: "";
  position: relative;
  display: inline-flex;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1176470588);
}
footer h3.title_loc:after {
  content: "";
  position: relative;
  display: inline-flex;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1176470588);
}
footer h3.title_loc span {
  min-width: 300px;
}
@media (max-width: 350px) {
  footer h3.title_loc span {
    min-width: 100%;
  }
}
footer .ft_shape {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 2;
  width: 101%;
}
footer .ft_shape img {
  width: 100%;
}

label.error {
  display: none !important;
}

input.error,
select.error {
  border: 1px solid #f35790;
}

.dr-details {
  background-color: #ecfeff;
  padding-top: 0px;
  text-align: center;
}
.dr-details h3 {
  margin: 25px 0 15px;
}
.dr-details ul {
  padding: 0;
}
.dr-details ul li {
  list-style-position: inside;
  margin-bottom: 8px;
}
.dr-details .box {
  background-color: #e1f6f7;
  padding: 50px;
  border-radius: 30px;
  margin: 50px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .dr-details .box {
    padding: 25px;
    border-radius: 15px;
  }
}
.dr-details .box p {
  line-height: 22px;
}
.dr-details .box h2 {
  font-weight: 800;
  font-size: 36px;
}
@media (max-width: 767px) {
  .dr-details .box h2 {
    font-size: 24px;
  }
}
.dr-details .box a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px 0 10px 0;
  background-color: #018e99;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}/*# sourceMappingURL=style.css.map */