@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}

.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  transition: all 0.2s ease-in-out 0s;
  padding: 15px 30px;
}
.btn-primary:hover {
  background-color: #3498db;
  border-color: #3498db;
  scale: 1.01;
}

h2 {
  color: #333;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 70px;
  height: 1px;
  background: #3498db;
}

h3 {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

p {
  color: #666;
  font-size: 18px;
}
@media only screen and (max-width: 1199px) {
  p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 15px;
  }
}

.main-header {
  position: fixed;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
  top: 20px;
  left: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
.main-header .navbar-brand {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  padding: 15px;
}
.main-header .navbar-brand span {
  color: #3498db;
}
.main-header .inner-header {
  padding: 0 15px;
}
.main-header .inner-header .nav li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  padding: 30px 15px;
}
.main-header.sticky {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  top: 0;
}
.main-header.sticky .inner-header {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .main-header {
    top: 0;
    background-color: #fff;
  }
  .main-header .container {
    padding: 0;
  }
  .main-header .container .inner-header .toggle-menu {
    transition-duration: 0.5s;
    position: relative;
    height: 36px;
    width: 36px;
    cursor: pointer;
  }
  .main-header .container .inner-header .toggle-menu .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 3px;
    width: 36px;
    top: 20px;
    background-color: #3498db;
  }
  .main-header .container .inner-header .toggle-menu .icon::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 36px;
    height: 3px;
    background-color: #3498db;
    content: "";
    top: -10px;
  }
  .main-header .container .inner-header .toggle-menu .icon::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 36px;
    height: 3px;
    background-color: #3498db;
    content: "";
    top: 10px;
  }
  .main-header .container .inner-header .toggle-menu.open .icon {
    background-color: transparent;
  }
  .main-header .container .inner-header .toggle-menu.open .icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  .main-header .container .inner-header .toggle-menu.open .icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .main-header .container .inner-header ul.nav {
    position: absolute;
    height: calc(100vh - 78px);
    width: 100%;
    top: 90px;
    background-color: #fcfdfe;
    flex-direction: column;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
    left: 0;
  }
  .main-header .container .inner-header ul.nav.show {
    opacity: 1;
    visibility: visible;
    top: 78px;
  }
  .main-header .container .inner-header ul.nav li {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  .main-header .container .inner-header ul.nav li:first-child {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
  }
  .main-header .container .inner-header ul.nav li a {
    font-size: 20px;
    padding: 10px 15px;
    margin: 5px 0;
  }
  .main-header.sticky .inner-header {
    padding: 0 15px;
  }
  .main-header .navbar-brand {
    padding: 15px 0;
  }
}

.banner-sec .banner-slider .slide-box {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 850px;
  width: 100vw;
}
@media only screen and (max-width: 767px) {
  .banner-sec .banner-slider .slide-box {
    height: 600px;
  }
}
.banner-sec .banner-slider .slide-box .text-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .banner-sec .banner-slider .slide-box .text-box {
    text-align: center;
  }
}
.banner-sec .banner-slider .slide-box .text-box h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.25;
}
@media only screen and (max-width: 1399px) {
  .banner-sec .banner-slider .slide-box .text-box h1 {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-sec .banner-slider .slide-box .text-box h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-sec .banner-slider .slide-box .text-box h1 {
    font-size: 36px;
    line-height: 1.4;
  }
}
.banner-sec .banner-slider .slide-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner-sec .banner-slider .slide-box .sub-txt {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .banner-sec .banner-slider .slide-box .sub-txt {
    font-size: 20px;
  }
}
.banner-sec .banner-slider .slick-dots {
  bottom: 30px;
}
.banner-sec .banner-slider .slick-dots li button::before {
  color: #fff;
  font-size: 36px;
}

.services-sec {
  background-color: #fafafa;
  padding: 75px 0 90px 0;
}
.services-sec .service-box {
  text-align: center;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.services-sec h2::after {
  right: 0;
  margin: 0 auto;
}

.bg-primary {
  background-color: #3498db !important;
}

.contact-sec {
  background-color: #fafafa;
  padding: 90px 0;
}
.contact-sec .contact-inner-box {
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact-sec textarea {
  height: 100px;
  resize: none;
}
.contact-sec input,
.contact-sec select {
  height: 50px;
}
.contact-sec .contact-dtail-box i {
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  font-size: 20px;
  margin-right: 10px;
}
.contact-sec .contact-dtail-box a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.contact-sec .follow-us a {
  text-decoration: none;
  color: #fff;
}
.contact-sec .follow-us a i {
  color: #3498db;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
}

.testimonial-sec {
  padding: 75px;
}
@media only screen and (max-width: 767px) {
  .testimonial-sec {
    padding-left: 0;
    padding-right: 0;
  }
}
.testimonial-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  background-image: url(../../images/banner1.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media only screen and (max-width: 991px) {
  .testimonial-sec::after {
    width: 100%;
    z-index: -1;
    opacity: 0.25;
  }
}
.testimonial-sec .testimonial-inner {
  max-width: 560px;
}
@media only screen and (max-width: 991px) {
  .testimonial-sec .testimonial-inner {
    max-width: none;
  }
}
.testimonial-sec .client-slider .testimonial-bx {
  border-radius: 40px 0 40px 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  margin: 50px 20px 20px;
  padding: 50px;
  background-color: #3498db !important;
  position: relative;
}
.testimonial-sec .client-slider .testimonial-bx p {
  color: #fff;
  font-style: italic;
  margin: 30px 0;
}
.testimonial-sec .client-slider .testimonial-bx .client-info .name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .testimonial-sec .client-slider .testimonial-bx .client-info .name {
    font-size: 18px;
  }
}
.testimonial-sec .client-slider .testimonial-bx .client-info p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.testimonial-sec .client-slider .testimonial-bx .quote-icon {
  left: 50px;
  position: absolute;
  top: -36px;
}
.testimonial-sec .client-slider .testimonial-bx .quote-icon i {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px 0 rgba(31, 34, 120, 0.1);
  color: #3498db;
  font-size: 44px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  width: 75px;
}
.testimonial-sec .client-slider .testimonial-bx::after {
  bottom: 20px;
  color: #fff;
  content: "\f10e";
  font-family: FontAwesome;
  font-size: 92px;
  font-weight: 900;
  line-height: 92px;
  opacity: 0.3;
  position: absolute;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .testimonial-sec .client-slider .testimonial-bx::after {
    font-size: 48px;
  }
}

.about-sec .why-data {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.about-sec .why-data::after {
  background: #3498db;
  border-radius: 0px 22px 22px 0px;
  content: "";
  height: 100%;
  width: 5px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
}

.dr-sec {
  padding: 90px 0;
  background-image: url(../../images/top-view-stethoscope.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-color: rgba(52, 152, 219, 0.1);
  background-size: auto 100%;
}
@media only screen and (max-width: 991px) {
  .dr-sec {
    background-image: none;
  }
}
.dr-sec p {
  margin: 0;
}
@media only screen and (max-width: 1799px) {
  .dr-sec p {
    padding: 0 120px 0 0;
  }
}
@media only screen and (max-width: 1599px) {
  .dr-sec p {
    padding: 0 150px 0 0;
  }
}
@media only screen and (max-width: 1499px) {
  .dr-sec p {
    padding: 0 180px 0 0;
  }
}
@media only screen and (max-width: 1399px) {
  .dr-sec p {
    padding: 0 210px 0 0;
  }
  .contact-sec .contact-dtail-box a
  {
      font-size: 12px;
  }
}
@media only screen and (max-width: 1299px) {
  .dr-sec p {
    padding: 0 280px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .dr-sec p {
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */