body::before {
  display: block;
  content: '';
  height: 64px;
}

@media(min-width: 768px) {

}

.header {
  background-color: white;
  width: auto;
  height: 80px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
}

.animated-text-container {
  min-height: calc(1.625rem + 4.5vw);
}

.animated-hero-text {
  opacity: 0;
  position: absolute;
}

.why-card {
  background-color: #dcece7 !important;
}

.badge {
  cursor: pointer;
}

.doctor-image {
  height: 28vw;
  width: auto;
  max-height: 200px;
}

/* Animation classes */

div.fade-in {
  animation: fade-in 0.7s ease-in forwards;
}

div.fade-out {
  animation: fade-out 0.7s ease-out forwards;
}

/* Animation classes */

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}