.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}

.flex-container.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-container.row.items-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-container.row.items-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-container.row.items-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-container.row.items-bot {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-container.row.items-center-y {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-container.row.items-center-x {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-container.row.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-container.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-container.col.items-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-container.col.items-bot {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-container.col.items-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-container.col.items-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-container.col.items-center-x {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-container.col.items-center-y {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-container.col.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-container.items-space-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-container.items-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-container.items-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.full-height {
  height: 100vh;
}

.bold-text {
  font-weight: bold;
}

@-webkit-keyframes carouselAnimation {
  from {
    max-width: auto;
  }
  to {
    max-width: auto;
  }
}

@keyframes carouselAnimation {
  from {
    max-width: auto;
  }
  to {
    max-width: auto;
  }
}

section.carousel {
  position: relative;
}

section.carousel .carousel-container {
  width: 100%;
  overflow: hidden;
}

section.carousel .carousel-container .carousel-inner {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

section.carousel .carousel-container .carousel-inner .carousel-item {
  -webkit-transition: opacity 1.2s ease-in-out, -webkit-transform 1.5s;
  transition: opacity 1.2s ease-in-out, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 1.2s ease-in-out;
  transition: transform 1.5s, opacity 1.2s ease-in-out, -webkit-transform 1.5s;
  -webkit-animation-name: carouselAnimation;
          animation-name: carouselAnimation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

section.carousel .carousel-container .carousel-inner .carousel-item.no-transition {
  -webkit-transition: none;
  transition: none;
}

section.carousel .carousel-container .carousel-inner.single .carousel-item {
  width: 100%;
}

section.carousel .button {
  position: absolute;
  top: 50%;
  background: transparent;
  color: #5B9DD6;
  font-size: 1.25rem;
  opacity: .7;
  padding: 0;
  margin: 0;
}

section.carousel .button:hover {
  color: #D6ECFF;
  opacity: 1;
}

section.carousel .button.prev-button {
  left: 0;
}

section.carousel .button.next-button {
  right: 0;
}

.nav-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 3;
  border: 2px solid #5B9DD6;
  border-radius: 5px;
}

.nav-button .bar-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 5px;
  height: 30px;
  width: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.nav-button .bar {
  height: 2px;
  -webkit-transition: width 0s, opacity .2s ease-in-out, -webkit-transform .2s;
  transition: width 0s, opacity .2s ease-in-out, -webkit-transform .2s;
  transition: width 0s, transform .2s, opacity .2s ease-in-out;
  transition: width 0s, transform .2s, opacity .2s ease-in-out, -webkit-transform .2s;
  opacity: 1;
  width: 100%;
  background-color: #5B9DD6;
}

.nav-button:hover {
  cursor: pointer;
  border-color: #D6ECFF;
}

.nav-button:hover .bar {
  background-color: #D6ECFF;
}

.nav-button:active, .nav-button.active {
  border-color: #D6ECFF;
}

.nav-button:active .bar, .nav-button.active .bar {
  width: 80%;
  background-color: #D6ECFF;
}

.nav-button:active .bar:nth-child(1), .nav-button.active .bar:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-animation: navButtonBars .2s ease-in-out;
          animation: navButtonBars .2s ease-in-out;
}

.nav-button:active .bar:nth-child(2), .nav-button.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-button:active .bar:nth-child(3), .nav-button.active .bar:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-animation: navButtonBars .2s ease-in-out;
          animation: navButtonBars .2s ease-in-out;
}

@-webkit-keyframes navButtonBars {
  form {
    width: 50%;
  }
  to {
    width: 100%;
  }
}

@keyframes navButtonBars {
  form {
    width: 50%;
  }
  to {
    width: 100%;
  }
}

.dark-bg {
  overflow: hidden;
  position: relative;
}

.dark-bg section {
  z-index: 3;
}

.dark-bg .blob {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: 700px;
  -webkit-transition: all 4s ease-in-out;
  transition: all 4s ease-in-out;
  z-index: 1;
}

.dark-bg .blob .blob-path {
  -webkit-transition: 3s;
  transition: 3s;
}

.dark-bg .blob.xs {
  width: 34%;
}

.dark-bg .blob.sm {
  width: 52%;
}

.dark-bg .blob.md {
  width: 70%;
}

.dark-bg .blob.lg {
  width: 80%;
}

.form-message {
  width: auto;
  max-width: 700px;
  border-radius: 20px;
  padding: 2em;
  text-align: left;
}

.form-message.success {
  background-color: #2a7653;
}

.form-message.failed {
  background-color: #954a4a;
}

.form-message p.message-content {
  font-size: 0.375rem;
  line-height: 1.7;
  font-weight: bold;
}

.form-message p.message-content.title {
  font-size: 0.45rem;
}

.form-message ul {
  margin-top: 20px;
}

.form-message ul li {
  font-size: 0.375rem;
  margin-bottom: 7px;
}

.form-message ul li:last-child {
  margin: 0;
}
/*# sourceMappingURL=style.css.map */