@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #000313;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background-color: #f8f8f8;
}

h1 {
  font-family: "Muli", sans-serif;
  font-size: 7rem;
  font-weight: 200;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-style: italic;
}

button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}

.is-active {
  font-weight: bold;
}

a {
  cursor: pointer;
}

/* Switched this to be above and below to add more flexibility */
.app {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.error,
.success {
  font-style: italic;
  padding: 0 0 48px 0;
}

.error {
  color: #ff9393 !important;
}

.success {
  color: #92ed94 !important;
}

.button {
  background: #193549;
  border: 1px solid #f8f8f8;
  color: #f8f8f8;
  display: inline-block;
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1;
  padding: 18px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.button:hover {
  background: #004172;
}

.button--link {
  background: none;
}

.button--secondary {
  background: #888888;
}

.content-container {
  margin: 0 auto;
  padding: 0 18px;
  max-width: 80rem;
}
@media (max-width: 900px) {
  .content-container {
    margin: 0 70px;
  }
}

.form__error {
  margin: 0 0 18px 0;
  font-style: italic;
}

.header {
  height: 100vh;
}

.header__container {
  background: #000313;
  height: 100vh;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  width: 100vw;
}

.header__content {
  position: relative;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
}

.header__title {
  color: white;
  letter-spacing: 0;
  padding: 0 0 60px 0;
}
@media (max-width: 900px) {
  .header__title {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  .header__title {
    font-size: 26px;
  }
}

.header__sub-title {
  margin: 0;
  color: white;
  display: block;
  font-size: 3rem;
  letter-spacing: 7px;
  line-height: 42px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 100;
}
@media (max-width: 900px) {
  .header__sub-title {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .header__sub-title {
    font-size: 17px;
  }
}

.header__video {
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

.header__line {
  height: 2px;
  background: #fff;
  margin: 0 0 45px 0;
  animation-delay: 1s;
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  animation-delay: 3s;
  animation-fill-mode: backwards;
  animation: expandWidth 2s;
}
@media (max-width: 900px) {
  .header__line {
    top: 42%;
  }
}
@media (max-width: 400px) {
  .header__line {
    top: 28%;
  }
}

input:focus {
  outline: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #193549 inset;
  -webkit-text-fill-color: #f8f8f8 !important;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  position: relative;
}
@media (min-width: 45rem) {
  .input-group {
    flex-direction: row;
    margin-bottom: 32px;
  }
}

.input-text {
  background: none;
  border: none;
  border-bottom: #607f95 1px solid;
  color: inherit;
  line-height: 1.2rem;
  padding: 18px;
  transition: all 0.2s ease;
  width: 100%;
  z-index: 2;
}

.input-label {
  font-size: 18px;
  position: absolute;
  transition: all 0.2s ease;
  bottom: 28px;
  left: 15px;
  z-index: 1;
  padding: 4px;
  color: inherit;
}

.input-text:focus + .input-label,
.input-text:valid + .input-label {
  font-size: 15px;
  bottom: 60px;
  z-index: 3;
}

.text-input, .textarea, .select {
  border: 1px solid #cacccd;
  height: 50px;
  font-size: 7rem;
  font-weight: 300;
  padding: 12px;
}

.textarea {
  height: 10rem;
}

/* Customize the label (the container) */
.checkbox-label {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox--hidden {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #193549;
  border: 1px solid #607f95;
  transition: all 0.2s ease;
}

/* On mouse-over, add a grey background color */
.checkbox-label:hover input ~ .checkbox,
.checkbox-label input:checked ~ .checkbox {
  background-color: #005596;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkbox:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #f8f8f8;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.instructor {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 900px) {
  .instructor {
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .instructor__heading {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .instructor__heading {
    font-size: 25px;
  }
}

.instructor p {
  margin-top: 0;
}

.instructor a,
.instructor a:link {
  color: inherit;
}

.instructor__photo img {
  width: 200px;
  float: left;
  margin-top: 50px;
  margin-right: 50px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 35px 5px #607f95;
  -moz-box-shadow: 0px 0px 35px 5px #607f95;
  box-shadow: 0px 0px 35px 5px #607f95;
}
@media (max-width: 900px) {
  .instructor__photo img {
    margin: 0 0 50px 0;
  }
}

.instructor__name {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.instructor__social-media {
  text-align: center;
}

.instructor__social-media a.social {
  display: inline-block;
  font-size: 3rem;
  margin: 0 7px;
  transition: transform 0.2s ease;
}

.instructor__social-media a:hover {
  transform: scale(1.3);
}

.loader {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  width: 100vw;
}

.loader__image {
  height: 6rem;
  width: 6rem;
}

.location {
  text-align: center;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 900px) {
  .location {
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }
}

.location__label {
  display: block;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.location__detail {
  display: block;
  padding-bottom: 20px;
}

.location__label--large {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

@media (max-width: 500px) {
  .location__map iframe {
    margin-top: 40px;
    width: 300px;
  }
}

.navigation {
  color: #f8f8f8;
  position: fixed;
  width: 100%;
  background: none;
  line-height: 1;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  transition-delay: 0.2s;
  transition: padding 0.4s ease;
}

.navigation a {
  color: inherit;
  text-decoration: none;
}

.navigation__scrolled {
  background-color: #f8f8f8;
  color: #005596;
  padding: 12px 48px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.33);
}

.navigation--dark {
  color: #005596;
}

@media (max-width: 400px) {
  .navigation__brand {
    display: none;
  }
}

.navigation__brand {
  font-size: 1.8rem;
}

@media (max-width: 900px) {
  .navigation__links {
    position: absolute;
    background-color: #f8f8f8;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
}

.navigation.open .navigation__links {
  transform: translateX(0);
}

.navigation__links a {
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: all 0.3s ease;
}
.navigation__links a:hover {
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .navigation__links a {
    display: block;
    color: #005596;
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .navigation__links a {
    font-size: 22px;
  }
}

.navigation__mobile {
  font-size: 34px;
  display: none;
  cursor: pointer;
}
.navigation__mobile i {
  display: block;
}
@media (max-width: 900px) {
  .navigation__mobile {
    display: block;
    z-index: 100;
  }
}

.navigation__mobile.open {
  color: #005596;
}

.panel {
  background-color: #f8f8f8;
  color: #005596;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.panel--dark {
  background-color: #193549;
  color: #607f95;
}

.panel__content {
  padding: 96px 0;
}
@media (max-width: 900px) {
  .panel__content {
    padding: 48px 0;
  }
}

.panel h2 {
  margin-bottom: 70px;
}

.workshop {
  font-size: 16px;
}

.workshop__button {
  padding-top: 70px;
  text-align: center;
}

.workshop__subtitle {
  font-size: 2.5rem;
  font-family: "Playfair Display";
  display: block;
  margin-top: -40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.workshop__list {
  margin: 50px 0;
}
@media (max-width: 400px) {
  .workshop__list {
    list-style: none;
    padding: 0;
  }
}

.workshop__list li {
  margin-bottom: 20px;
}

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