/* ===========================
 * About - Landing page
 * =========================== */
@keyframes helicopterAnimation {
  0% {
    opacity: 0;
    transform: translateY(-150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.helicopterAnimation {
  animation-name: helicopterAnimation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes ambulanceAnimation {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.ambulanceAnimation {
  animation-name: ambulanceAnimation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.star-1 {
  opacity: 0;
  animation-name: star-1;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.star-2 {
  opacity: 0;
  animation-name: star-2;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

.star-3 {
  opacity: 0;
  animation-name: star-3;
  animation-fill-mode: forwards;
  animation-delay: 0.9s;
}

.star-4 {
  opacity: 0;
  animation-name: star-4;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

.star-5 {
  opacity: 0;
  animation-name: star-5;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}

@keyframes star-1 {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes star-2 {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes star-3 {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes star-4 {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes star-5 {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.about-img img {
  object-fit: cover;
  width: 100%;
}

.about-title {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.about-section + .about-section {
  margin-top: 35px;
}

.about-sidebar__module {
  padding: 15px 20px;
  color: #fff !important;
  border-radius: 12px;
  text-align: center;
}
.about-sidebar__module + .about-sidebar__module {
  margin-top: 15px;
}
.about-sidebar__module .about-number {
  color: #fff !important;
}

.about-sidebar__transport-module {
  background: #0277b3 !important;
  position: relative;
  overflow: hidden;
}
.about-sidebar__transport-module::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #339900 !important;
  left: 0;
  right: 0;
}

.transport-module__title {
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 7px;
  color: #fff !important;
}

.transport-module__helicopter {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 25px;
  padding-bottom: 10px;
}
.transport-module__helicopter > img {
  width: 126px;
  height: auto;
  margin-bottom: 3px;
}

.transport-module__ambulance {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 25px;
  position: relative;
  z-index: 20;
}
.transport-module__ambulance > img {
  width: 105px;
  height: auto;
}

.about-number {
  font-size: 30px;
  line-height: 1em;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #000 !important;
}

.about-mini-title {
  font-size: 13px;
  line-height: 1.1538461538em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff !important;
  white-space: normal;
  word-wrap: break-word;
}
.about-mini-title.black {
  color: #000 !important;
}

.about-sidebar__generic-module > img {
  width: 83px;
}
.about-sidebar__generic-module.purple {
  background: #7b2a83 !important;
}
.about-sidebar__generic-module.light-blue {
  background: #0277b3 !important;
}

.about-subtitle {
  font-size: 20px;
  color: #fff !important;
  text-transform: uppercase;
  text-align: center;
  background: #004b8d !important;
  border-radius: 12px;
  margin-bottom: 30px;
}
.about-subtitle > span {
  display: block;
  padding: 6px;
  color: #fff !important;
}

.about-visits-admission {
  text-align: center;
}
.about-visits-admission .about-mini-title {
  color: #000 !important;
}
.about-visits-admission .about-admissions__row {
  margin-bottom: 45px;
}

.about-visits {
  margin-bottom: 45px;
}

.about-visits__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 50px;
}
.about-visits__row + .about-visits__row {
  margin-top: 30px;
}

.about-visits__item.red .about-visits__item-circle {
  background: #cb1c63 !important;
}
.about-visits__item.light-green .about-visits__item-circle {
  background: #00853e !important;
}
.about-visits__item.blue .about-visits__item-circle {
  background: #004b8d !important;
}
.about-visits__item.orange .about-visits__item-circle {
  background: #c34202 !important;
}
.about-visits__item.purple .about-visits__item-circle {
  background: #7b2a83 !important;
}
.about-visits__item.light-blue .about-visits__item-circle {
  background: #0277b3 !important;
}
.about-visits__item-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-visits__item-circle > img {
  width: 85px;
  height: auto;
}

.about-admissions__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 50px;
}

.about-admissions__item.blue .about-admissions__item-circle {
  background: #004b8d !important;
}
.about-admissions__item.pink .about-admissions__item-circle {
  background: #cb1c63 !important;
}
.about-admissions__item.turquoise .about-admissions__item-circle {
  background: #028280 !important;
}
.about-admissions__item.light-red .about-admissions__item-circle {
  background: #cb1c63 !important;
}
.about-admissions__item-circle {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-admissions__item-circle > img {
  width: 55px;
  height: auto;
}

.about-patient__row {
  display: flex;
  justify-content: space-between;
  padding: 0 70px;
  text-align: center;
}

.about-stars > img {
  height: 41px;
  width: auto;
}

.about-stars__desc {
  margin-top: 5px;
  font-size: 15px;
  font-style: italic;
  color: #004b8d !important;
}

.about-patient__desc .about-number {
  margin-top: 20px;
}

.about-people__row {
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
  text-align: center;
}

.about-people__item > img {
  width: auto;
  height: 120px;
}
.about-awards__row {
  display: flex;
  justify-content: center;
}

.about-awards__item {
  padding: 0 25px;
}

@media (max-width: 1199px) {
  .about-number {
    font-size: 24px;
  }

  .about-visits__row {
    padding: 0 20px;
  }

  .about-admissions__row {
    padding: 0 20px;
  }

  .about-sidebar__transport-module::after {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .about-sidebar__transport-module::after {
    height: 86px;
  }

  .transport-module__helicopter > img {
    width: 70px;
  }

  .transport-module__ambulance > img {
    width: 70px;
  }

  .about-sidebar__generic-module > img {
    width: 70px;
  }

  .about-visits__item {
    max-width: 120px;
  }

  .about-visits__item-circle {
    width: 120px;
    height: 120px;
  }
  .about-visits__item-circle > img {
    width: 65px;
  }

  .about-admissions__item {
    max-width: 90px;
  }

  .about-admissions__item-circle {
    width: 90px;
    height: 90px;
  }
  .about-admissions__item-circle > img {
    width: 45px;
  }

  .about-stars > img {
    height: 20px;
  }

  .about-patient__desc .about-number {
    margin-top: 10px;
  }

  .about-people__item > img {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .about-sidebar {
    margin-bottom: 45px;
  }

  .about-subtitle {
    margin-bottom: 20px;
  }

  .about-number {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .about-sidebar__transport-module::after {
    height: 65px;
  }

  .about-visits__row {
    flex-wrap: wrap;
    padding: 0;
  }

  .about-visits__row + .about-visits__row {
    margin-top: 20px;
  }

  .about-visits__item {
    max-width: 100%;
    width: 100%;
  }
  .about-visits__item + .about-visits__item {
    margin-top: 20px;
  }

  .about-admissions__row {
    flex-wrap: wrap;
    padding: 0;
  }

  .about-admissions__item {
    max-width: 100%;
    width: 100%;
  }
  .about-admissions__item + .about-admissions__item {
    margin-top: 20px;
  }

  .about-admissions__item-circle {
    width: 120px;
    height: 120px;
  }

  .about-admissions__item-circle > img {
    width: 65px;
  }

  .about-patient__row {
    flex-wrap: wrap;
    padding: 0;
  }

  .about-patient__item {
    width: 100%;
  }
  .about-patient__item + .about-patient__item {
    margin-top: 20px;
  }

  .about-people__row {
    flex-wrap: wrap;
    padding: 0;
  }

  .about-people__item {
    width: 100%;
  }
  .about-people__item + .about-people__item {
    margin-top: 20px;
  }

  .about-awards__row {
    flex-wrap: wrap;
  }

  .about-awards__item {
    width: 100%;
  }
  .about-awards__item > img {
    margin: 0 auto;
  }
  .about-awards__item + .about-awards__item {
    margin-top: 20px;
  }
}