@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700,800,900");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;900&display=swap");
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  height: 100%;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: #495057;
  background-color: #f9fbfd;
}

.backdrop {
  position: fixed;
  opacity: 0;
  transition: opacity 0.2s linear;
  display: none;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.link {
  color: #002b46;
  line-height: 2rem;
  padding: 0.375rem 1rem;
  vertical-align: middle;
  font-weight: 600;
  margin-right: 3rem;
  font-size: 1.4rem;
  width: 100%;
  text-align: left;
  display: block;
}
@media (min-width: 40rem) {
  .link {
    display: inline;
    text-align: center;
    color: white;
    line-height: 1.5rem;
  }
}

.link:hover {
  background-color: #002b46;
  color: white;
}
@media (min-width: 40rem) {
  .link:hover {
    border-bottom: 5px solid white;
  }
}

.link-selected {
  background-color: #002b46;
  color: white;
}
@media (min-width: 40rem) {
  .link-selected {
    border-bottom: 2px solid white;
  }
}

.btn {
  display: inline-block;
  line-height: 1.5rem;
  text-align: center;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.375rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
}

.btn-secondary {
  color: #002b46;
  background-color: #fff;
  border-color: #fff;
  width: 10.72rem;
}

.btn-secondary:hover {
  color: white;
  background-color: #002b46;
  border-color: #fff;
}

.btn-highlighted {
  color: #000c13;
  background-color: #50BFA4;
  border-color: #50BFA4;
  width: 10.72rem;
}

.btn-highlighted:hover {
  color: #50BFA4;
  background-color: #00253c;
  border-color: #50BFA4;
}

.container {
  width: 100%;
  display: grid;
  grid-template-rows: 7rem auto fit-content(8rem);
  grid-template-areas: "header" "main" "footer";
}
.container header {
  background-color: #002b46;
  grid-area: header;
  display: flex;
  padding: 1rem 3rem 1rem 1.5rem;
  flex-flow: row nowrap;
  align-items: center;
}
@media (min-width: 40rem) {
  .container header {
    justify-content: space-between;
  }
}
.container header .toggle-button {
  width: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
}
@media (min-width: 40rem) {
  .container header .toggle-button {
    display: none;
  }
}
.container header .brand-box {
  margin-left: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.container header .brand-box img {
  height: 4.3rem;
  width: 4.3rem;
  display: none;
}
@media (min-width: 40rem) {
  .container header .brand-box img {
    display: inline-block;
  }
}
.container header .main-nav {
  display: none;
}
@media (min-width: 40rem) {
  .container header .main-nav {
    display: flex;
  }
}
.container header .main-nav__items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.container .mobile-nav {
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(0.5, 0, 0.75, 0);
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  background: white;
  width: 80%;
  height: 100vh;
}
.container .mobile-nav ul li {
  padding-bottom: 0;
}
@media (min-width: 40rem) {
  .container .mobile-nav {
    display: none;
  }
}
.container .mobile-nav__items {
  width: 90%;
  height: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-top: 4rem;
}
.container .mobile-nav__item {
  width: 100%;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.container .mobile-nav__item .link {
  padding: 0.8rem;
}

.open {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

a {
  text-decoration: none;
}
a .btn {
  color: #002b46;
}

.content {
  grid-area: main;
  display: flex;
  flex-flow: column;
}

.content-box {
  padding: 1rem;
}
@media (min-width: 40rem) {
  .content-box {
    padding: 4.6rem;
  }
}
.content-box {
  font-weight: 400;
  font-size: 1.3rem;
}

.row {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 40rem) {
  .row {
    flex-flow: row nowrap;
  }
}

.bg-primary {
  background-color: #002b46;
}

.main {
  overflow: hidden;
}

.main-area {
  width: 100%;
  padding: 20px;
}
@media (min-width: 40rem) {
  .main-area {
    width: 60%;
    min-height: 600px;
    padding: 100px 136px;
  }
}

.artwork {
  display: none;
}
@media (min-width: 40rem) {
  .artwork {
    display: block;
    width: 40%;
    background-image: url("/images/front.svg");
    opacity: 0.4;
    background-position: bottom left;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
}

.main-area-header {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3rem;
}
@media (min-width: 40rem) {
  .main-area-header {
    font-size: 4.3rem;
  }
}
.main-area-header {
  color: #fff;
}

.main-area-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #a3aeb7;
  width: 100%;
  font-style: italic;
}
@media (min-width: 40rem) {
  .main-area-subtitle {
    width: 800px;
  }
}

.main-area-text {
  font-size: 18px;
  color: #EAF0F6;
  width: 100%;
  padding-top: 50px;
}
@media (min-width: 40rem) {
  .main-area-text {
    width: 800px;
  }
}

.logo__brand {
  display: inline-block;
  font-size: 30px;
  padding-left: 1rem;
  vertical-align: middle;
  font-weight: 700;
  color: #fff;
}

.bleak {
  opacity: 0.4;
  height: 100%;
}

.card-title {
  font-weight: bold;
}

.cookies {
  z-index: 100;
  width: 100%;
  position: fixed;
  top: calc(100vh - 70px);
  height: 170px;
  transform: translateY(100px);
  transition: transform 600ms ease-in-out;
  border: 2px #002b46 solid;
  background-color: #002b46;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding-bottom: 3rem;
}
@media (min-width: 40rem) {
  .cookies {
    width: 80%;
    height: 100px;
    left: 10%;
    padding: 30px;
    top: 100vh;
  }
}
.cookies div {
  position: relative;
  width: 100%;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
}
.cookies .text {
  flex: 0 0 75%;
  padding-top: 1rem;
}
@media (min-width: 40rem) {
  .cookies .text {
    max-width: 75%;
  }
}
.cookies .control {
  margin-left: auto;
  flex: 0 0 25%;
  padding-bottom: 1rem;
}
@media (min-width: 40rem) {
  .cookies .control {
    max-width: 25%;
  }
}
.cookies .control .btn {
  width: 100%;
  height: 4rem;
}
@media (min-width: 40rem) {
  .cookies .control .btn {
    width: auto;
  }
}

.visible {
  transform: translateY(-100px);
  transition: transform 600ms ease-in-out;
}

.highlighted {
  background-color: #fff;
  color: #002b46;
  padding: 20px;
  font-weight: bold;
}

.high-line {
  line-height: 30px;
}

.input-group {
  position: relative;
  width: 100%;
}
.input-group .invalid-feedback {
  width: 100%;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(220, 53, 69, 0);
}
.input-group .invalid-feedback-visible {
  color: #dc3545;
}
@media (min-width: 40rem) {
  .input-group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

.input-group > .form-control {
  position: relative;
  width: 100%;
}
@media (min-width: 40rem) {
  .input-group > .form-control {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
  }
}

.form-control {
  display: block;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  font-size: 1rem;
  font-weight: 300;
  border: 1px solid #c1ccd3;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border-radius: 0.5rem;
  height: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 40rem) {
  .form-control {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1rem;
  }
}
.form-control:focus {
  border-color: #4d90fe;
  outline: 0;
}

.input-group-append {
  margin-left: -1px;
  display: flex;
}
.input-group-append .btn {
  position: relative;
  z-index: 2;
  height: 4rem;
  width: 100%;
}
@media (min-width: 40rem) {
  .input-group-append .btn {
    height: calc(1.5em + 0.75rem + 2px);
  }
}
.input-group-append .font-weight-bold {
  font-weight: 700;
}

@media (min-width: 40rem) {
  .input-group > .input-group-append > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.with-button {
  margin-bottom: 2rem;
}
@media (min-width: 40rem) {
  .with-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.is-invalid {
  border-color: #dc3545;
  color: #dc3545;
}
.is-invalid:focus {
  border-color: #dc3545;
}

.is-invalid::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #dc3545;
}

.is-invalid:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #dc3545;
  opacity: 1;
}

.is-invalid::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #dc3545;
  opacity: 1;
}

.is-invalid:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #dc3545;
}

.is-invalid::-ms-input-placeholder { /* Microsoft Edge */
  color: #dc3545;
}

.is-invalid::placeholder {
  color: #dc3545;
}

.card-container {
  flex: 0 0 25%;
  margin: 20px;
  align-content: center;
}
@media (min-width: 40rem) {
  .card-container {
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
    height: 100%;
  }
  .card-container:first-of-type {
    margin-left: 16.66667%;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.5rem;
}

.card-header {
  background-color: #EAF0F6;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  line-height: 1.2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
  font-size: 1.4rem;
}
.card-body h4 {
  font-size: 1.8rem;
  margin-top: 0;
}
.card-body p {
  margin-top: 0;
}
@media (min-width: 40rem) {
  .card-body {
    font-size: 1rem;
  }
  .card-body h4 {
    font-size: 1.5rem;
  }
}

.card-title {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background-color: #002b46;
  border-color: #002b46;
}

.btn-primary:hover {
  color: #fff;
  background-color: #001420;
  border-color: #000c13;
}

.btn-outline-secondary {
  color: #95a3a0;
  border-color: #95a3a0;
}

.btn-outline-secondary:hover {
  color: #29323a;
  background-color: #95a3a0;
}

.footer {
  grid-area: footer;
}

.padded-top {
  padding-top: 1rem;
}

@media (min-width: 40rem) {
  .padded-top-wide {
    padding-top: 3rem;
  }
}

.padded-bottom {
  padding-bottom: 1rem;
}

.margin-top {
  margin-top: 3rem;
}

.confirmation .title {
  margin-bottom: 3rem;
}
.confirmation {
  border: 1px solid #002b46;
  border-radius: 0.5rem;
  margin: 3rem 10%;
}
@media (min-width: 40rem) {
  .confirmation {
    margin: 0 30%;
  }
}
.confirmation .btn {
  margin-top: 3rem;
}
.confirmation p {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 1rem;
}

.controls {
  width: 100%;
  text-align: center;
}

.btn-lg {
  width: 400px;
  height: 60px;
  font-size: 24px;
  font-weight: bold;
}

.mb-5 {
  margin-bottom: 3rem;
}

@media (min-width: 40rem) {
  .card {
    height: 62rem;
  }
}
@media (min-width: 1140px) {
  .card {
    height: 54rem;
  }
}
@media (min-width: 1280px) {
  .card {
    height: 46rem;
  }
}
@media (min-width: 1500px) {
  .card {
    height: 40rem;
  }
}
@media (min-width: 1740px) {
  .card {
    height: 33rem;
  }
}

.presentation-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.presentation-container .presentation-title {
  position: relative;
  width: 100%;
}
@media (min-width: 1000px) {
  .presentation-container .presentation-title {
    max-width: 1000px;
    width: 1000px;
  }
}
.presentation-container .presentation-title {
  margin: 0 auto 4rem auto;
  aspect-ratio: 16/9;
}
.presentation-container .presentation-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5em;
}
.presentation-container .presentation-title .card-title-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.presentation-container .presentation-title .card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4rem;
  text-align: center;
  padding: 0.5em 1em;
  width: 100%;
}
.presentation-container .presentation-body {
  display: flex;
  flex-direction: column;
}
.presentation-container .presentation-body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  list-style-type: none;
}
.presentation-container .presentation-body ul li {
  width: 400px;
  height: 200px;
  text-align: center;
  margin: 0 10px;
}
.presentation-container .presentation-body ul li .li-title {
  font-size: 1.4rem;
  font-weight: 800;
  padding-bottom: 1rem;
}
.presentation-container .presentation-body ul li .li-text {
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.buttons {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.large {
  width: 300px;
  font-size: 1.5rem;
  padding: 1rem 0;
  vertical-align: middle;
}

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