:root {
  --white: #fffffe;
  --white-off: #eff0f3;
  --black: #0d0d0d;
  --grey-light: #a7a9be;

  --purple: #994ff3;
  --red: #e53170;

  --orange: #ff8906;
  --teal: #419599;
  --burgundy: #9A4665;
}

body.quarto-light .alt-background {
  background-color: var(--white-off);
  border-top: 1px solid var(--white-off);
  border-bottom: 1px solid var(--white-off);
}

body.quarto-dark .alt-background {
  background-color: var(--grey-dark);
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
}


nav.page-navigation {
  display: none;
}

.nav-footer {
  border-top: none !important;
}


.hero-banner {
  position: relative;
  display: flex;
  justify-content: center;
}

/* body.quarto-light .hero-banner {
  background-color: var(--white-off);
} */

body.quarto-dark .hero-banner {
  background-color: var(--black);
}

.hero-banner h1 {
  font-size: 2.5rem;
}

/* body.quarto-light .hero-banner h1 {
  color: #2cb67d;
} */

/* body.quarto-dark .hero-banner h1 {
  color: #2cb67d;
} */

.hero-banner .hero-image {
  position: absolute;
  display: none;
  height: auto;
}

.hero-banner .content-block {
  display: flex;
  flex-direction: row;
}

.hero-banner .content-block .hero-text {
  width: 65%;
}

.hero-banner .content-block .hero-headshot {
  margin-left: 40px;
  margin-top: 45px;
  width: 350px;
  height: 455px;
}

.hero-banner .content-block .hero-headshot video {
  width: 350px;
  height: 455px;
}

@media (min-width: 1000px) {
  .hero-banner .hero-image {
    display: initial;
    width: 270px;
  }
}

@media (min-width: 1200px) {
  .hero-banner .hero-image {
    width: 340px;
  }
}

@media (min-width: 1400px) {
  .hero-banner .hero-image {
    width: 440px;
  }
}

.hero-banner .hero-image p {
  margin-bottom: 0;
}

.hero-banner .hero-image-left {
  left: 0;
  bottom: 0;
}

.hero-banner .hero-image-right {
  right: 0;
  bottom: 0;
}

.hero-banner .content-block {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner .content-block {
    max-width: 660px;
  }
  .hero-banner .content-block .hero-text {
    width: 100%;
  }

  .hero-banner .content-block .hero-headshot {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hero-banner .content-block {
    max-width: 660px;
  }
  .hero-banner .content-block .hero-text {
    width: 100%;
  }

  .hero-banner .content-block .hero-headshot {
    display: none;
  }
}

.hero-banner a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-banner h3 {
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
}

.hero-banner h4 {
  margin-top: 0;
}

.hero-banner a[role="button"] {
  margin-bottom: 0;
}

.hero-banner ul {
  padding-inline-start: 21px;
  font-size: 1.1rem;
}

.hero-banner ul li {
  padding-bottom: 0.4rem;
}

.content-block {
  padding-top: 20px;
  padding-bottom: 10px;
  margin-left: 30px;
  margin-right: 30px;
}

@media (min-width: 900px) {
  .content-block {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (min-width: 1200px) {
  .content-block {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.wave {
  animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s; /* Change to speed up or slow down */
  animation-iteration-count: infinite; /* Never stop waving :) */
  transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}


.what-teach {
  padding-bottom: 1rem;
}

@media (min-width: 715px) {
  .what-teach-banner {
    display: inline-flex;
  }

  .what-teach-banner h1 {
    margin-right: 40px;
  }
}

.what-teach-banner .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  border: none;
  border-bottom: 2px solid var(--purple);
  border-radius: 0%;
  padding: 0.5rem 1rem;
  color: var(--purple);
  background-color: transparent;
  -webkit-border-radius: 0%;
  -moz-border-radius: 0%;
  -ms-border-radius: 0%;
  -o-border-radius: 0%;
}

.what-teach-banner .nav-pills button {
  width: 150;
}
@media (max-width: 560px) {
  .what-teach-banner .nav-pills button {
    width: unset;
  }
}
.what-teach .tab-content {
  border: none;
  padding: 0;
}

/* body.quarto-light .what-teach .tab-content {
  color: rgb(84, 85, 85);
} */

/* body.quarto-dark .what-teach .tab-content {
  color: #fffffe;
} */

.what-teach .tab-content p {
  font-size: 1.1em;
}

/* body.quarto-light .what-teach div.sourceCode {
  background-color: white;
  border: 1px solid #dee2e6;
}

body.quarto-dark .what-teach div.sourceCode {
  background-color: #151515;
  border: 1px solid #3b3f47;
} */

body.quarto-light .what-teach .nav-link {
  color: #2a2a2a;
}


.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  /* color: #fff;
  background-color: #ff7518; */
  font-weight: bold;
}


.experiences {
  padding-bottom: 2em;
}

.experience {
  margin-top: 20px;
}

@media (min-width: 800px) {
  .experiences {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 0 0 -30px;
    width: calc(100% + 30px);
  }
  .experience {
    width: calc(50% - 30px);
    margin: 20px 0 0 30px;
  }
}

.experience h3 {
  margin-top: 0;
}

.experience p:first-of-type {
  margin-bottom: 0.2rem;
}

body.quarto-light .experience p:first-of-type {
  color: rgb(84, 85, 85);
}

body.quarto-dark .experience p:first-of-type {
  color: rgb(200, 200, 200);
}


.get-in-touch {
  text-align: center;
}

.get-in-touch h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

