@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,700&display=swap");
body {
  font-family: "Ubuntu", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.h120 {
  font-size: 8rem;
  line-height: 1.3;
}

@media screen and (min-width: 48rem) {
  .h120 {
    font-size: calc(2.77778vw + 6.66667rem);
  }
}

@media screen and (min-width: 192rem) {
  .h120 {
    font-size: 12rem;
  }
}

.h80 {
  font-size: 6rem;
  line-height: 1.3;
}

@media screen and (min-width: 48rem) {
  .h80 {
    font-size: calc(1.38889vw + 5.33333rem);
  }
}

@media screen and (min-width: 192rem) {
  .h80 {
    font-size: 8rem;
  }
}

.h60 {
  font-size: 4.8rem;
  line-height: 1.3;
}

@media screen and (min-width: 48rem) {
  .h60 {
    font-size: calc(0.83333vw + 4.4rem);
  }
}

@media screen and (min-width: 192rem) {
  .h60 {
    font-size: 6rem;
  }
}

.h48 {
  font-size: 3.6rem;
  line-height: 1.5;
}

@media screen and (min-width: 48rem) {
  .h48 {
    font-size: calc(0.83333vw + 3.2rem);
  }
}

@media screen and (min-width: 192rem) {
  .h48 {
    font-size: 4.8rem;
  }
}

.h36 {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 48rem) {
  .h36 {
    font-size: calc(0.83333vw + 2rem);
  }
}

@media screen and (min-width: 192rem) {
  .h36 {
    font-size: 3.6rem;
  }
}

.h24 {
  font-size: 2rem;
  line-height: 1.7;
}

@media screen and (min-width: 48rem) {
  .h24 {
    font-size: calc(0.27778vw + 1.86667rem);
  }
}

@media screen and (min-width: 192rem) {
  .h24 {
    font-size: 2.4rem;
  }
}

.para {
  font-size: 2rem !important;
}

p:not(:last-child) {
  margin-bottom: 3rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 64em) {
  html {
    font-size: 56.25%;
  }
}

@media screen and (max-width: 48em) {
  html {
    font-size: 50%;
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #141414;
}

::-moz-selection {
  background-color: #574b90;
  color: #ffffff;
}

::selection {
  background-color: #574b90;
  color: #ffffff;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

a,
button {
  display: inline-block;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

input {
  color: #141414;
}

textarea {
  resize: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.primary {
  color: #574b90;
}

.hidden {
  display: none;
}

.nav {
  background-color: #ffffff;
  color: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5vw;
  -webkit-box-shadow: 0 20px 20px rgba(20, 20, 20, 0.1);
          box-shadow: 0 20px 20px rgba(20, 20, 20, 0.1);
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.nav--active .nav__hamburger-wrapper .nav__hamburger {
  background-color: transparent;
}

.nav--active .nav__hamburger-wrapper .nav__hamburger::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.nav--active .nav__hamburger-wrapper .nav__hamburger::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.nav--active .nav__list {
  overflow-y: auto;
  opacity: 1;
  pointer-events: initial;
}

.nav__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #141414;
}

.nav__logo {
  height: 8rem;
  display: block;
  margin-right: 1rem;
  border-radius: 50%;
}

.nav__hamburger-wrapper {
  height: 7rem;
  width: 5rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 82.1875em) {
  .nav__hamburger-wrapper {
    display: block;
  }
}

.nav__hamburger {
  background-color: #574b90;
  pointer-events: none;
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.nav__hamburger::before, .nav__hamburger::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #574b90;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.nav__hamburger::before {
  -webkit-transform: translateY(-10px) rotate(0deg);
          transform: translateY(-10px) rotate(0deg);
}

.nav__hamburger::after {
  -webkit-transform: translateY(10px) rotate(0deg);
          transform: translateY(10px) rotate(0deg);
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  list-style: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 82.1875em) {
  .nav__list {
    opacity: 0;
    pointer-events: none;
    padding-top: 10rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
  }
}

.nav__list-item {
  height: 100%;
}

@media screen and (max-width: 82.1875em) {
  .nav__list-item {
    height: auto;
    width: 100%;
  }
}

.nav__link {
  font-size: 1.8rem;
  display: block;
  text-decoration: none;
  padding: 1rem 2rem;
  color: #141414;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

@media screen and (max-width: 82.1875em) {
  .nav__link {
    padding: 3rem 2rem;
    font-size: 2.4rem;
    width: 100%;
    text-align: center;
  }
}

.nav__link--active {
  font-weight: 700;
  background-color: #1c0c6b;
  color: #ffffff;
}

.nav__link:hover {
  background-color: #10073d;
  color: #ffffff;
}

.footer {
  font-size: 1.6rem;
  padding: 2rem 5vw;
  text-align: center;
  border-top: 1px solid #f0ebff;
}

.header {
  min-height: 50rem;
  padding: 5rem 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.header--narrow {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header--narrow .header__content-wrapper {
  width: 100%;
}

.header__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.header__img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#574b90), to(transparent));
  background-image: linear-gradient(to top, #574b90, transparent);
}

.header__img {
  display: block;
  height: 100%;
  width: 100%;
}

.header__content-wrapper {
  color: #ffffff;
  max-width: 83rem;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

.sidebar--active {
  pointer-events: initial;
}

.sidebar--active .sidebar__background {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.sidebar--active .sidebar__wrapper {
  opacity: 1;
}

.sidebar--active .sidebar__btn {
  opacity: 1;
}

.sidebar__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #141414;
  opacity: 0.95;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.sidebar__wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 60rem;
  background-color: #ffffff;
  padding: 8rem 3rem 5rem;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.1s;
  transition: opacity 0.3s 0.1s;
}

.sidebar__header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d4d4d4;
}

.sidebar__btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  background-color: #574b90;
  height: 5rem;
  width: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.4s;
  transition: opacity 0.3s 0.4s;
}

.sidebar__btn:hover {
  background-color: #1c0c6b;
}

.sidebar__btn span {
  line-height: 1;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

.modal--active {
  pointer-events: initial;
}

.modal--active .modal__background {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.modal--active .modal__wrapper {
  opacity: 1;
}

.modal--active .modal__img {
  opacity: 1;
}

.modal--active .modal__btn {
  opacity: 1;
}

.modal__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #141414;
  opacity: 0.95;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.modal__btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  background-color: #574b90;
  height: 5rem;
  width: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.4s;
  transition: opacity 0.3s 0.4s;
}

.modal__btn:hover {
  background-color: #1c0c6b;
}

.modal__btn span {
  line-height: 1;
}

.modal__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.modal__img {
  max-width: 95%;
  max-height: 95%;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.4s;
  transition: opacity 0.3s 0.4s;
}

.link {
  color: #574b90;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0.5rem 0;
  background: none;
}

.link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.link .icon {
  margin-left: 1rem;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #574b90;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0.7);
          transform: scaleX(0.7);
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}

.btn {
  padding: 1rem 5rem;
  border-radius: 7px;
}

.btn--lg {
  font-size: 2.4rem;
}

.btn--primary {
  background-color: #574b90;
  color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn--primary:hover {
  background-color: #1c0c6b;
}

.btn--link {
  color: #ffffff;
}

.btn--full {
  display: block;
  width: 100%;
}

.btn--icon {
  padding: 1rem 2rem;
  background-color: transparent;
  border: 2px solid #f1f1f1;
  border-radius: 15px;
}

.btn--icon:hover {
  background-color: #574b90;
  border-color: #574b90;
}

.btn__icon {
  width: 2rem;
}

.input {
  margin-bottom: 3rem;
}

.input__label {
  display: block;
  font-weight: 700;
}

.input__control {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 2px solid #f1f1f1;
  -webkit-transition: border-bottom-color 0.3s;
  transition: border-bottom-color 0.3s;
}

.input__control:focus {
  border-bottom-color: #574b90;
}

.input__control--textarea {
  height: 16rem;
}

.card {
  border-radius: 7px;
}

.card--how {
  border: 2px solid #f0ebff;
}

.card--how .card__img-wrapper {
  height: 47.5rem;
}

@media screen and (max-width: 42.5em) {
  .card--how .card__img-wrapper {
    height: 25rem;
  }
}

.card--how .card__content-wrapper {
  background-color: #ffffff;
  padding: 2rem 5rem 3rem;
}

.card--how .card__title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4d4d4;
}

.card--how .card__instructions {
  margin-top: 2rem;
}

.card--unit {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card--unit .card__img-wrapper {
  height: 20rem;
}

@media screen and (max-width: 50em) {
  .card--unit .card__img-wrapper {
    height: 12rem;
  }
}

.card--unit .card__content-wrapper {
  padding: 0 5rem;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
}

@media screen and (max-width: 42.5em) {
  .card--unit .card__content-wrapper {
    padding: 0 1rem;
  }
}

.card--unit .card__content-wrapper .btn {
  margin-top: 1rem;
}

.card--unit .card__title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1rem 2rem;
  background-color: #ffffff;
}

.card--unit .card__instructions {
  padding: 0 2rem;
}

.card__img-wrapper {
  position: relative;
}

.card__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.card__content-wrapper {
  padding: 3rem 5rem;
}

@media screen and (max-width: 31.25em) {
  .card__content-wrapper {
    padding: 3rem;
  }
}

.hero {
  padding: 7vw;
  margin-top: -60vh;
  height: 100%;
  min-height: 95vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  border-bottom: 4px solid #f0ebff;
}

@media screen and (max-width: 55em) {
  .hero {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: -25vh;
  }
}

.hero__name {
  display: inline-block;
  padding: 2rem;
  background-color: #1c0c6b;
  color: #ffffff;
}

.hero__quote {
  margin-bottom: 2rem;
  padding-right: 3rem;
}

.hero__padded {
  background-color: rgba(87, 75, 144, 0.7);
  padding: 2rem;
  color: #ffffff;
}

.hero__brand-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12.5rem 1fr;
      grid-template-columns: 12.5rem 1fr;
  grid-gap: 2rem;
  margin: 3rem 0;
  padding-right: 3rem;
  background-color: #f1f1f1;
}

@media screen and (max-width: 42.5em) {
  .hero__brand-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding-right: unset;
  }
}

.hero__logo-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 42.5em) {
  .hero__logo-wrapper {
    height: 20rem;
  }
}

.hero__logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 42.5em) {
  .hero__logo {
    -o-object-position: center 12%;
       object-position: center 12%;
  }
}

.hero__brand-name {
  margin-bottom: 2rem !important;
}

.hero__btn-wrapper {
  padding: 4rem 0 3rem;
  border-top: 7px solid #574b90;
}

.hero__btn-wrapper .btn {
  margin-bottom: 3rem;
}

.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__info .icon {
  margin-left: 1rem;
}

.hero__img-wrapper {
  position: relative;
}

@media screen and (max-width: 55em) {
  .hero__img-wrapper {
    display: none;
  }
}

.hero__img-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90%;
  width: 90%;
  background-color: #f0ebff;
}

@media screen and (max-width: 55em) {
  .hero__img-wrapper::before {
    width: 100%;
  }
}

@media screen and (max-width: 42.5em) {
  .hero__img-wrapper::before {
    height: 100%;
  }
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 90%;
  width: 90%;
  -o-object-position: top !important;
     object-position: top !important;
}

@media screen and (max-width: 55em) {
  .hero__img {
    width: 100%;
    height: 100%;
  }
}

.hospital {
  -webkit-box-shadow: 0 10px 30px rgba(87, 75, 144, 0.3);
          box-shadow: 0 10px 30px rgba(87, 75, 144, 0.3);
}

.hospital__img {
  display: block;
  width: 100%;
  height: 80rem;
}

.what {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.15fr 1fr;
      grid-template-columns: 1.15fr 1fr;
}

@media screen and (max-width: 50em) {
  .what {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    position: relative;
    background-color: #f0ebff;
    z-index: 1;
  }
}

.what__content-wrapper {
  padding: 9rem 0 9rem 7vw;
  background-color: #f0ebff;
}

@media screen and (max-width: 56.25em) {
  .what__content-wrapper {
    padding: 5rem 5vw;
  }
}

@media screen and (max-width: 50em) {
  .what__content-wrapper {
    background-color: transparent;
    z-index: 3;
  }
}

.what__header {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.what__header .h80 {
  max-width: 63.7rem;
}

.what__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: #574b90;
}

.what__content {
  padding-right: 7vw;
}

@media screen and (max-width: 56.25em) {
  .what__content {
    padding: 0;
  }
}

.what__img-wrapper {
  position: relative;
}

@media screen and (max-width: 50em) {
  .what__img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 30rem;
    height: 100%;
    z-index: 2;
    opacity: 0.15;
  }
}

.what__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.why {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.15fr 1fr;
      grid-template-columns: 1.15fr 1fr;
}

@media screen and (max-width: 50em) {
  .why {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    position: relative;
    background-color: #f0ebff;
    z-index: 1;
  }
}

.why__content-wrapper {
  padding: 9rem 0 9rem;
  background-color: #f1f1f1;
}

@media screen and (max-width: 56.25em) {
  .why__content-wrapper {
    padding: 5rem 5vw 7rem;
  }
}

@media screen and (max-width: 50em) {
  .why__content-wrapper {
    background-color: transparent;
    z-index: 3;
  }
}

.why__header {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.why__header .h80 {
  max-width: 65rem;
  padding-left: 7rem;
}

@media screen and (max-width: 56.25em) {
  .why__header .h80 {
    padding: 0 5vw;
  }
}

@media screen and (max-width: 50em) {
  .why__header .h80 {
    padding: unset;
    max-width: auto;
  }
}

.why__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: #574b90;
}

.why__content {
  padding-left: 7rem;
  padding-right: 7vw;
}

@media screen and (max-width: 56.25em) {
  .why__content {
    padding: 0 5vw;
  }
}

@media screen and (max-width: 50em) {
  .why__content {
    padding: unset;
  }
}

.why__img-wrapper {
  position: relative;
}

@media screen and (max-width: 50em) {
  .why__img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 30rem;
    height: 100%;
    z-index: 2;
    opacity: 0.15;
  }
}

.why__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.how {
  padding: 8rem 5vw;
  margin: 3rem;
  position: relative;
}

@media screen and (max-width: 65em) {
  .how {
    margin: 0;
  }
}

@media screen and (max-width: 50em) {
  .how {
    border-top: 4px solid #574b90;
  }
}

.how::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 85%;
  width: 100%;
  background-color: #f0ebff;
  z-index: -1;
}

@media screen and (max-width: 65em) {
  .how::before {
    height: 100%;
  }
}

.how__header {
  max-width: 67.6rem;
  margin: 0 auto 7rem;
  text-align: center;
}

@media screen and (max-width: 50em) {
  .how__header {
    max-width: auto;
    text-align: left;
  }
}

.how__cards-wrapper {
  padding-top: 4rem;
  border-top: 7px solid #574b90;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

@media screen and (max-width: 50em) {
  .how__cards-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.mental-health {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2fr;
      grid-template-columns: 1fr 1.2fr;
}

@media screen and (max-width: 50em) {
  .mental-health {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.mental-health__img-wrapper {
  position: relative;
}

.mental-health__img-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 80%;
  background-color: #f1f1f1;
}

.mental-health__img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mental-health__content-wrapper {
  padding: 8rem 7vw 8rem 0;
}

@media screen and (max-width: 50em) {
  .mental-health__content-wrapper {
    padding: 8rem 5vw;
  }
}

.mental-health__header {
  padding-left: 5rem;
  max-width: 68rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 7px solid #574b90;
}

@media screen and (max-width: 50em) {
  .mental-health__header {
    padding-left: unset;
    max-width: auto;
  }
}

.mental-health__content {
  padding-left: 5rem;
  max-width: 68rem;
}

@media screen and (max-width: 50em) {
  .mental-health__content {
    padding-left: unset;
    max-width: auto;
  }
}

.success {
  padding: 9rem 5vw;
  background-color: #f0ebff;
}

.success__header {
  margin-bottom: 3rem;
  text-align: center;
}

.success__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.2rem;
}

@media screen and (max-width: 83.125em) {
  .success__cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 42.5em) {
  .success__cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.success__card {
  border-radius: 7px;
  border: 2px solid #574b90;
  background-color: #ffffff;
  padding: 4rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.success__card-title {
  margin-bottom: 1rem;
}

.success__card-link-wrapper {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: auto;
}

.units {
  padding: 8rem 5vw;
}

.units__header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 7px solid #574b90;
  margin-bottom: 5rem;
}

.units__category {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f1f1;
}

.units__divider {
  height: 7px;
  background-color: #574b90;
}

.units__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.5rem;
}

@media screen and (max-width: 50em) {
  .units__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact {
  background-color: #f0ebff;
}

.contact__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  padding: 8rem 5vw 0;
  border-bottom: 3px solid #574b90;
}

@media screen and (max-width: 50em) {
  .contact__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact__img-wrapper {
  position: relative;
}

@media screen and (max-width: 50em) {
  .contact__img-wrapper {
    height: 20rem;
  }
}

.contact__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.contact__form-wrapper {
  background-color: #ffffff;
  padding: 5rem 7rem;
}

@media screen and (max-width: 42.5em) {
  .contact__form-wrapper {
    padding: 5rem 3rem;
  }
}

.contact__info {
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.contact__info p {
  margin-bottom: 1rem !important;
}

.contact__logo {
  display: block;
  margin: 1rem 0;
}

.contact__form-btn-wrapper {
  text-align: right;
}

.contact__whatsapp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3rem 1fr;
      grid-template-columns: 3rem 1fr;
  padding-top: 1rem;
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__whatsapp-img {
  display: block;
  margin-top: 5px;
  width: 100%;
  height: auto;
}

.donate {
  padding: 5rem 8rem;
}

.donate__title {
  margin-bottom: 3rem;
  max-width: 120rem;
}

.donate .link {
  display: inline-block;
}

.donate p:not(:last-child) {
  margin-bottom: 1rem;
}

.mission {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
      grid-template-columns: 1.5fr 1fr;
  grid-gap: 2rem;
  margin-top: 2rem;
}

@media screen and (max-width: 76.875em) {
  .mission {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.mission__content-wrapper {
  padding: 8rem 5vw;
  background-color: #f0ebff;
}

.mission__title {
  margin-bottom: 1rem;
}

.mission__list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 35.9375em) {
  .mission__list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.mission__list-item {
  border-left: 4px solid #574b90;
  padding-left: 1rem;
}

.mission__list-item:not(:last-child) {
  margin-bottom: 2rem;
}

.mission__img-wrapper {
  position: relative;
}

@media screen and (max-width: 76.875em) {
  .mission__img-wrapper {
    height: 30rem;
  }
}

.mission__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.vision {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5fr;
      grid-template-columns: 1fr 1.5fr;
  grid-gap: 2rem;
  margin: 2rem 0;
}

@media screen and (max-width: 76.875em) {
  .vision {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.vision__content-wrapper {
  padding: 8rem 5vw;
  background-color: #f0ebff;
}

.vision__title {
  margin-bottom: 1rem;
}

.vision__img-wrapper {
  position: relative;
}

@media screen and (max-width: 76.875em) {
  .vision__img-wrapper {
    height: 30rem;
  }
}

.vision__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.events__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  padding: 5rem 5vw;
}

@media screen and (max-width: 56.25em) {
  .events__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 37.5em) {
  .events__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 27.5em) {
  .events__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.events__grid-item {
  background-color: #ffffff;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.events__grid-item:hover {
  background-color: #574b90;
  color: #ffffff;
}

.events__grid-item:hover .events__grid-img-wrapper {
  opacity: 0.7;
}

.events__grid-img-wrapper {
  height: 25.6rem;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.events__grid-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.events__grid-content {
  padding: 1rem;
  text-align: center;
}

.department__container {
  padding: 5rem 0;
  max-width: 83rem;
  margin: 0 auto;
}

@media screen and (max-width: 51.875em) {
  .department__container {
    padding: 5rem 5vw;
  }
}

.department__container h2 {
  margin-bottom: 2rem;
}

.department__container hr {
  margin: 5rem 0;
}

.department__facilities {
  padding: 5rem 0;
  max-width: 83rem;
  margin: 0 auto;
}

@media screen and (max-width: 51.875em) {
  .department__facilities {
    padding: 5rem 5vw;
  }
}

.department__facilities-header {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 3px solid #574b90;
}

.department__list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #f1f1f1;
}

.department__list-item {
  padding-left: 1rem;
  border-left: 2px solid #574b90;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(20, 20, 20, 0.15);
          box-shadow: 0 0 20px rgba(20, 20, 20, 0.15);
}

.facility {
  padding: 5rem 5vw;
  margin-bottom: 1rem;
  background-color: #f0ebff;
}

.facility__content-wrapper:first-child {
  border-bottom: 3px solid #574b90;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.facility__title {
  margin-bottom: 1rem;
  border-bottom: 1px solid #574b90;
}

.facility__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.facility__list-item {
  padding: 1rem 3rem;
  border-radius: 7px;
  background-color: #f0ebff;
  color: #141414;
  margin: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(20, 20, 20, 0.15);
          box-shadow: 0 0 10px rgba(20, 20, 20, 0.15);
}

.doctor {
  background-color: #f0ebff;
}

.doctor__wrapper {
  padding: 5rem 0;
  max-width: 60rem;
  margin: 0 auto 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content 1fr;
      grid-template-columns: -webkit-max-content 1fr;
      grid-template-columns: max-content 1fr;
  grid-gap: 3rem;
}

@media screen and (max-width: 51.875em) {
  .doctor__wrapper {
    padding: 5rem 5vw;
  }
}

.doctor__img-wrapper {
  height: 15rem;
  width: 15rem;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.doctor__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.doctor__content-wrapper p {
  margin-bottom: 0 !important;
}

.doctor__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #574b90;
}

.consultation {
  padding: 5rem 5vw;
}

.consultation__doctors {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  margin-bottom: 5rem;
}

@media screen and (max-width: 40em) {
  .consultation__doctors {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 5rem;
  }
}

.consultation__doctor-img {
  display: block;
  width: 15rem;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100px;
}

.consultation__content p {
  margin-bottom: 1rem;
}

.consultation__inner-wrapper {
  padding-top: 1rem;
  border-top: 2px solid #574b90;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
/*# sourceMappingURL=main.css.map */