@import url("https://use.typekit.net/jxw4lgn.css");
@-webkit-keyframes fadeInFromRight {
  0% {
    opacity: 0;
    right: -40px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    right: -40px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@-webkit-keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    left: -40px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    left: -40px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-webkit-keyframes fadeOutFromRight {
  10% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: -40px;
  }
}
@keyframes fadeOutFromRight {
  10% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: -40px;
  }
}
@-webkit-keyframes fadeOutFromLeft {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: -40px;
  }
}
@keyframes fadeOutFromLeft {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: -40px;
  }
}
@-webkit-keyframes fadeInGrow {
  0% {
    opacity: 0;
    padding: 20px 26.6666666667px;
  }
  100% {
    opacity: 1;
    padding: 20px;
  }
}
@keyframes fadeInGrow {
  0% {
    opacity: 0;
    padding: 20px 26.6666666667px;
  }
  100% {
    opacity: 1;
    padding: 20px;
  }
}
@-webkit-keyframes fadeOutShrink {
  0% {
    opacity: 1;
    padding: 20px;
  }
  100% {
    opacity: 0;
    padding: 20px 26.6666666667px;
  }
}
@keyframes fadeOutShrink {
  0% {
    opacity: 1;
    padding: 20px;
  }
  100% {
    opacity: 0;
    padding: 26.6666666667px;
  }
}
@keyframes wave-scale-1 {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(1) scaleY(0.75);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
@keyframes wave-scale-2 {
  0% {
    transform: scaleX(1) scaleY(0.75);
  }
  50% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(1) scaleY(0.75);
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: ivyjournal, serif;
  margin: 0;
  height: auto;
  min-height: 100%;
  line-height: 1.5;
  background: #2d243c;
}

h1, h2, h3, h4 {
  font-family: ivyjournal, serif;
}

h1 {
  font-weight: 900;
  line-height: 1.3;
  color: #e59200;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3.2rem;
    margin: 50px 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  h1 {
    font-size: 2.7rem;
    margin: 50px 0 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
    margin: 30px 0 20px;
  }
}

h2 {
  color: #e59200;
  font-weight: 900;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.4rem;
    margin: 40px 0 30px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.8rem;
    line-height: 2.25rem;
    margin: 20px 0 13.3333333333px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin: 10px 0;
  }
}

p {
  margin: 0;
  color: #f5f5f5;
}
p + p {
  margin-top: 20px;
}
@media (min-width: 768px) {
  p {
    font-size: 1.2rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a {
  color: #e59200;
  cursor: pointer;
  font-style: normal;
}
@media (prefers-reduced-motion: no-preference) {
  a {
    transition: all 0.25s ease;
  }
}
a:hover, a:focus {
  background: #e59200;
  color: #2d243c;
  text-decoration: none;
}

.button {
  border: none;
  outline: none;
  display: inline-block;
  background: linear-gradient(#e59200 0%, #e59200 50%, #e51800 50%, #e51800 100%) no-repeat;
  background-size: 100% 200%;
  background-position: 0% -0.5%;
  color: #2d243c;
  text-transform: uppercase;
  font-family: ivyjournal, serif;
  text-decoration: none;
  padding: 13.3333333333px 40px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .button {
    transition: all 0.25s ease;
  }
}
.button:hover, .button:focus {
  background-position: 0% 100%;
  color: white;
  font-style: normal;
  text-decoration: none;
}
@media (max-width: 600px) {
  .button {
    width: 100%;
    text-align: center;
  }
}

hgroup h2 {
  font-family: ivyjournal, serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.25rem;
}

pre {
  margin: 0;
  position: relative;
  counter-reset: linenumber;
}
pre > code {
  white-space: pre-line;
}
@media (max-width: 767px) {
  pre {
    font-size: 14px;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.waves {
  width: 100%;
}
.waves svg {
  display: block;
}
.waves.waves-down {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .desktop-container {
    padding-right: 25%;
  }
}

.toggle-menu {
  appearance: none;
  font-family: ivyjournal, serif;
  font-weight: 800;
  color: #e59200;
  background: transparent;
  border: 0;
  padding: 10px;
  font-size: 0.9rem;
}
@media (min-width: 600px) {
  .toggle-menu {
    display: none;
  }
}

@media (max-width: 599px) {
  .site-menu {
    display: none;
  }
  .show-nav .site-menu {
    display: block;
    position: fixed;
    right: 0;
    top: 61px;
  }
  .show-nav .site-menu li {
    display: block;
  }
  .show-nav .site-menu li + li {
    margin-top: 10px;
  }
  .show-nav .site-menu li a {
    background: #2d243c;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 1px solid #45375c;
    border-right: 0;
  }
}

header {
  position: relative;
  overflow: hidden;
}
header .hero-text {
  padding-bottom: 40px;
}
header .hero-text p {
  line-height: 1.5;
  font-weight: bold;
  color: #e59200;
}
@media (min-width: 1200px) {
  header .hero-text p {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .hero-text p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  header .hero-text p {
    font-size: 1.25rem;
  }
}
header .hero-text .button {
  margin-top: 40px;
}
header .site-header li {
  list-style-type: none;
}
header .site-header a {
  color: #e59200;
  font-weight: 900;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  header .site-header a {
    transition: all 0.25s ease;
  }
}
header .site-header a:hover, header .site-header a:focus {
  border-color: #e59200;
  text-decoration: none;
  border-radius: 12px 0 12px 0;
}
header .site-header .site-menu a:hover, header .site-header .site-menu a:focus {
  color: #2d243c;
  background: #e59200;
  text-decoration: none;
}
header .waves .wave-1 path {
  fill: #e51800;
}
@media (prefers-reduced-motion: no-preference) {
  header .waves .wave-1 path {
    animation: wave-scale-1 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
header .waves .wave-2 {
  position: absolute;
  bottom: -1px;
  left: 0;
}
header .waves .wave-2 path {
  fill: #e59200;
}
@media (prefers-color-scheme: dark) {
  header .waves .wave-2 path {
    fill: #2c201a;
  }
}
@media (prefers-reduced-motion: no-preference) {
  header .waves .wave-2 path {
    animation: wave-scale-2 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
@media (min-width: 768px) {
  header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  header .hero-text {
    width: 75%;
  }
  header .site-header {
    text-align: right;
    float: right;
    width: 25%;
    padding-top: 50px;
    z-index: 99;
  }
  header .site-header.fix {
    margin-top: 0;
  }
  header .site-header img {
    width: 60px;
  }
  header .site-header .site-menu {
    margin-top: 20px;
  }
  header .site-header li + li {
    margin-top: 10px;
  }
  header .site-header a {
    padding: 10px 20px;
    background: #2d243c;
  }
}
@media (min-width: 1200px) {
  header .site-header.fix {
    right: calc(50vw - 560px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .site-header.fix {
    right: 40px;
  }
}
@media (max-width: 767px) {
  header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #2d243c;
  }
  header .site-header img {
    width: 60px;
  }
  header .site-header ul {
    text-align: right;
    padding-left: 0;
  }
  header .site-header ul li {
    display: inline-block;
  }
  header .site-header ul a {
    padding: 5px 10px;
  }
  header .hero {
    padding: 0 40px;
  }
  header .hero-text {
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 479px) {
  header .site-header {
    padding: 10px 20px;
  }
  header .hero {
    padding: 0 20px;
  }
}

.cloud-border {
  width: 100%;
  height: 80px;
  display: block;
  left: 0;
}

.container, hgroup {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 479px) {
  .container, hgroup {
    padding: 40px 20px;
  }
}

img {
  max-width: 100%;
}

@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-left: 0;
}
.cards li {
  list-style-type: none;
}
@media (min-width: 1024px) {
  .cards {
    margin-left: -10px;
    margin-right: -10px;
  }
  .cards .card {
    width: 33.3333%;
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cards {
    margin-left: -10px;
    margin-right: -10px;
  }
  .cards .card {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cards .card {
    width: 100%;
  }
  .cards .card + .card {
    margin-top: 10px;
  }
}

.card {
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.with-link a {
  padding: 30px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border: 1px solid transparent;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .card.with-link a {
    transition: all 0.25s ease;
  }
}
.card.with-link a .svg-inline--fa {
  position: absolute;
  top: 13.332px;
  right: 13.332px;
  opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) {
  .card.with-link a .svg-inline--fa {
    transition: all 0.25s ease;
  }
}
.card.with-link a:hover, .card.with-link a:focus {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px 0 12px 0;
  border-color: #e59200;
  text-decoration: none;
}
.card.with-link a:hover .svg-inline--fa, .card.with-link a:focus .svg-inline--fa {
  opacity: 1;
}
.card img {
  width: auto;
  max-width: 100%;
  max-height: 70px;
  filter: brightness(0) invert(1);
}
.card p {
  padding-top: 20px;
  font-family: ivyjournal, serif;
  font-weight: 900;
  font-size: 0.9rem;
}

.about-me {
  padding-top: 20px;
  background: #e59200;
}
@media (prefers-color-scheme: dark) {
  .about-me {
    background: #2c201a;
  }
}
.about-me h2 {
  color: #2d243c;
}
@media (prefers-color-scheme: dark) {
  .about-me h2 {
    color: #e59200;
  }
}
.about-me p {
  color: #2d243c;
}
@media (prefers-color-scheme: dark) {
  .about-me p {
    color: #f5f5f5;
  }
}
.about-me .profile-img {
  width: 200px;
  border-radius: 50%;
  margin-top: -140px;
  position: relative;
  z-index: 3;
}
.about-me .certification-img {
  width: 100px;
  display: inline-block;
}
.about-me .badge-link {
  display: inline-block;
  position: relative;
  left: -40px;
  z-index: 3;
  padding-right: 0 !important;
}
.about-me .badge-link svg {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .about-me {
    padding-bottom: 20px;
  }
  .about-me .container > *:not(img) {
    padding-right: 25%;
  }
}
@media (max-width: 767px) {
  .about-me .profile-img {
    width: 150px;
    margin-top: -100px;
  }
  .about-me .certification-img {
    width: 80px;
  }
  .about-me .badge-link {
    left: -30px;
  }
}

.my-work {
  padding-top: 0;
  padding-bottom: 0;
  background: #2c201a;
}
@media (prefers-color-scheme: dark) {
  .my-work {
    background: #2d243c;
  }
}
.my-work .card img {
  margin: 0 auto;
  text-align: center;
}
.my-work .waves .wave-1 path {
  fill: #e51800;
}
@media (prefers-reduced-motion: no-preference) {
  .my-work .waves .wave-1 path {
    animation: wave-scale-1 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
.my-work .waves .wave-2 {
  position: absolute;
  bottom: -1px;
  left: 0;
}
.my-work .waves .wave-2 path {
  fill: #e59200;
}
@media (prefers-color-scheme: dark) {
  .my-work .waves .wave-2 path {
    fill: #2c201a;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .my-work .waves .wave-2 path {
    animation: wave-scale-2 20s linear 0s infinite;
    transform-origin: bottom;
  }
}

.speaking {
  position: relative;
  padding-top: 0;
  background: #2d243c;
}
@media (prefers-color-scheme: dark) {
  .speaking {
    background: #2c201a;
  }
}
.speaking .waves {
  transform: scaleX(-1) rotate(180deg);
}
.speaking .waves path {
  fill: #2c201a;
}
@media (prefers-color-scheme: dark) {
  .speaking .waves path {
    fill: #2d243c;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .speaking .waves path {
    animation: wave-scale-1 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
.speaking .card {
  width: 100%;
}
.speaking .card img {
  width: 120px;
  padding-right: 20px;
}
.speaking .card p {
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
}

.writing {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  background: #2c201a;
}
@media (prefers-color-scheme: dark) {
  .writing {
    background: #2d243c;
  }
}
.writing .waves-down path {
  fill: #2d243c;
}
@media (prefers-color-scheme: dark) {
  .writing .waves-down path {
    fill: #2c201a;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .writing .waves-down path {
    animation: wave-scale-1 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
.writing .waves-up {
  transform: scaleX(-1);
}
.writing .waves-up .wave-1 path {
  fill: #e59200;
}
@media (prefers-color-scheme: dark) {
  .writing .waves-up .wave-1 path {
    fill: #e51800;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .writing .waves-up .wave-1 path {
    animation: wave-scale-1 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
.writing .waves-up .wave-2 {
  position: absolute;
  bottom: -1px;
  left: 0;
}
.writing .waves-up .wave-2 path {
  fill: #e51800;
}
@media (prefers-color-scheme: dark) {
  .writing .waves-up .wave-2 path {
    fill: #2c201a;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .writing .waves-up .wave-2 path {
    animation: wave-scale-2 20s linear 0s infinite;
    transform-origin: bottom;
  }
}
.writing .card {
  width: 100%;
}
.writing .card img {
  width: 120px;
  padding-right: 20px;
}
.writing .card p {
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
}

.panel-section {
  position: relative;
  background: white;
}
.panel-section .container {
  padding: 0 40px;
}
.panel-section .container::after {
  content: "";
  display: table;
  clear: both;
}
.panel-section .panel-graphic {
  position: relative;
}
.panel-section.section-hidden.odd .panel-graphic {
  animation: fadeOutFromRight 0.5s ease;
  animation-fill-mode: forwards;
}
.panel-section.section-hidden.even .panel-graphic {
  animation: fadeOutFromLeft 0.5s ease;
  animation-fill-mode: forwards;
}
.panel-section.section-visible.odd .panel-graphic {
  animation: fadeInFromRight 0.5s ease;
  animation-fill-mode: forwards;
}
.panel-section.section-visible.even .panel-graphic {
  animation: fadeInFromLeft 0.5s ease;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  .panel-section.odd .panel-text {
    float: left;
    padding-right: 20px;
  }
  .panel-section.odd .panel-graphic {
    float: right;
    padding-left: 20px;
  }
  .panel-section.even .panel-text {
    float: right;
    padding-left: 20px;
  }
  .panel-section.even .panel-graphic {
    float: left;
    padding-right: 20px;
  }
  .panel-section .panel-text {
    width: 66.6666%;
  }
  .panel-section .panel-graphic {
    width: 33.3333%;
  }
}
@media (max-width: 767px) {
  .panel-section {
    text-align: center;
  }
  .panel-section .panel-text {
    margin-top: 40px;
  }
  .panel-section .panel-graphic img {
    max-width: 300px;
  }
}

.footer {
  background: #e51800;
}
@media (prefers-color-scheme: dark) {
  .footer {
    background: #2c201a;
  }
}
.footer .container {
  padding: 20px 40px 40px;
}
.footer a {
  cursor: pointer;
  color: white;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .footer a {
    transition: all 0.25s ease;
  }
}
.footer a:hover, .footer a:focus {
  color: #2d243c;
}
.footer .copyright {
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: white;
}
.footer img {
  display: block;
  width: 40px;
  height: 40px;
}
@media (prefers-color-scheme: light) {
  .footer img {
    filter: brightness(0) invert(1);
  }
}
@media (min-width: 768px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }
  .footer .contact-info img {
    margin-bottom: 10px;
  }
  .footer .contact-info p {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer img {
    text-align: center;
    margin: 0 auto 10px;
  }
  .footer .container {
    position: relative;
    padding-bottom: 40px;
  }
  .footer p {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .footer .copyright {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
