@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: #727781;
}

h1 {
  font-size: 4.375vw;
  line-height: 5vw;
  font-weight: 600;
}

h3 {
  font-weight: 600;
  font-size: 2.1875vw;
  line-height: 2.8125vw;
}

.text-primary {
  color: #361374 !important;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition: all ease-in .24s;
  transition: all ease-in .24s;
}

header .navbar-light.bg-light {
  background-color: transparent !important;
}

header .navbar-light .navbar-brand {
  font-weight: 600;
  color: #fff;
  font-size: 1.8rem;
}

header .navbar-light .nav-link {
  color: #fff !important;
  opacity: .7;
  text-transform: uppercase;
  font-size: .9375vw;
  line-height: .9375vw;
  padding: 0 1.3rem !important;
}

header.header-fixed {
  background-color: #361374;
  position: fixed;
}

header.header-fixed .navbar-light .navbar-brand {
  font-size: 1.1rem;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-section img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-section .hero-bottom {
  width: 100%;
  position: absolute;
  height: 240px;
  z-index: 2;
  background: url(../images/wave-bg-white.svg) no-repeat;
  background-size: 100%;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.hero-section .hero-bottom img {
  width: auto;
  height: auto;
  position: initial;
}

.hero-section::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(transparent));
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent 100%);
  content: '';
  width: 100%;
  position: absolute;
  z-index: 1;
  height: 100%;
}

.hero-section h1,
.hero-section h3 {
  color: #fff;
}

.hero-section .container {
  position: relative;
  z-index: 4;
}

.tag {
  border-radius: 1.5625vw;
  background-color: rgba(255, 255, 255, 0.16);
  font-size: .9rem;
  color: #fff;
  padding: 0.23438vw 0.78125vw;
  display: inline-block;
}

.btn {
  padding: 15px 35px;
  border-radius: 25px;
}

.btn.btn-primary {
  background-color: #361374;
  border-color: #361374;
}

.btn.btn-primary:hover {
  background-color: #fff;
  color: #361374;
}

.btn.btn-outline-primary {
  border-color: #361374;
  color: #361374;
}

.btn.btn-outline-primary:hover {
  background-color: #361374;
  color: #fff;
}

.feature-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  -webkit-box-shadow: 0 12px 40px 0 rgba(156, 156, 156, 0.09);
          box-shadow: 0 12px 40px 0 rgba(156, 156, 156, 0.09);
  padding: 2.34375vw 2.1875vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature-list li + li {
  margin-top: 35px;
}

.feature-list li div svg {
  margin-right: 15px;
  fill: #361374;
  float: left;
}

.section {
  padding: 4rem 0;
}

.position-stickyed {
  top: 100px;
  position: -webkit-sticky;
  position: sticky;
}

footer {
  background-color: #361374;
  padding: 80px;
  color: #fff;
}

.appointment-modal .modal-body {
  background-color: #361374;
  color: #fff;
}

.appointment-modal .modal-header {
  border: none;
}

.appointment-modal img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.appointment-modal .form-control {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(../images/menu.svg);
}

@media (max-width: 575.98px) {
  .hero-section img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    height: 100%;
  }
  .hero-section .hero-bottom {
    height: 100px;
  }
  h1 {
    font-size: 9.375vw;
    line-height: 12vw;
  }
  h3 {
    font-size: 6.1875vw;
  }
  .feature-list li + li {
    margin-top: 15px;
  }
  footer {
    padding: 40px 20px;
  }
  header .navbar-light .navbar-brand {
    font-size: 1.3rem;
  }
  header .navbar-light .nav-link {
    font-size: 16px;
    line-height: 1.5;
    padding: 15px !important;
  }
  .navbar-collapse {
    background-color: #361374;
  }
}
/*# sourceMappingURL=styles.css.map */