html {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Cormorant Garamond', Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 16px;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #2E3ACE;
  -webkit-font-smoothing: antialiased;
  color: #FFF;
}

.debug {
  border: 1px solid #FF0000;
}

h1, h2 {
  font-family: 'DM Sans', Helvetica Neue, Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.25vw;
  line-height: 1.35em;
  margin-bottom: 0.5rem;
  padding-left: 3vw;
  padding-right: 3vw;
}

@media (max-width: 812px) {

  h1, h2 {
    font-size: 5.875vw;
    padding-left: 0;
    padding-right: 0;
  }

}

p {
}

strong {
  font-family: 'Cormorant Garamond', Helvetica Neue, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.container {
  width: 75vw;
}

.video-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  object-fit: cover;
  object-position: center center;
}

.super-wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  z-index: 200;
}

.super-wrapper-fade {
  position: absolute;
  bottom: 0;
  height: 65%;
  width: 100%;
  left: 0;
  right: 0;
  background: rgb(34, 43, 168);
  background: -moz-linear-gradient(180deg, rgba(46,58,206,0) 0%, rgba(34, 43, 168,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(46,58,206,0) 0%, rgba(434, 43, 168,1) 100%);
  background: linear-gradient(180deg, rgba(46,58,206,0) 0%, rgba(34, 43, 168,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e3ace",endColorstr="#2e3ace",GradientType=1);
  z-index: 250;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 3vw;
  width: 100%;
  z-index: 300;
}

.header .top-logo svg {
  width: 12rem;
}

@media (max-width: 812px) {
  .header .top-logo svg {
    width: 12rem;
  }
}

.content {
  display: flex;
  margin-bottom: 4rem;
  z-index: 350;
}

.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40vw;
  margin-top: 2rem;
}

.columns {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.column-1, .column-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 8%;
  width: 100%;
}

.column-1 .top-logo, .column-2 .top-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 6.5rem;
}

.column-1 .logo, .column-2 .logo {
  display: flex;
  max-width: 24rem;
  height: auto;
}

.content-box {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 350;
}

.content-box .title {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

@media (max-width: 812px) {
  .content-box .title {
    text-align: center;
  }
}

.content-box p {
    font-size: 1.15rem;
    margin-top: 2.5rem;
    line-height: 1.6em;
    text-align: center;
}

.content-box p a {
  font-weight: 700;
}

.content-box p a:hover {
    text-decoration: underline;
}

@media (max-width: 812px) {
  .content-box p {
    text-align: center;
  }
}

.content-box .link {
    display: inline-block;
    text-align: left;
    margin-top: 0.75rem;
    font-family: 'Roboto', Helvetica Neue, Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #000;
}

.content-box .link:hover {
  text-decoration: underline;
}

.logos-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 5rem;
  padding: 0 4%;
  z-index: 350;
}

.logos-wrapper a {
  display: flex;
  align-items: center;
  padding: 0 4%;
}

@media (max-width: 812px) {
  .logos-wrapper a {
    max-width: 25%;
  }
}

.logos-wrapper .logo-img {
  display: flex;
  width: 100%;
}

.logos-wrapper svg {
  opacity: 0.55;
  transition: all .25s ease-in-out;
}

@media (max-width: 812px) {

  .logos-wrapper svg {
    opacity: 1;
  }

}

.logos-wrapper svg:hover {
  opacity: 1;
  transform: scale(1.15);
}

.footer {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 350;
}

.footer .item-row {
  display: flex;
  margin: .25rem 0;
  justify-content: center;
  padding: 0 4%;
}

@media (max-width: 812px) {
  .footer .item-row {
    margin: 1rem 0;
  }
}

.footer .text {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.6em;
  word-break: break-word; /* new */
}

.footer .text a {
}

.footer .text a:hover {
  text-decoration: underline;
}

.footer .text .spacer {
  display: flex;
  color: rgba(255,255,255,0.55);
}

.footer .text .spacer:after {
  content: "\007C";
  padding: 0 1rem;
}


@media (min-width: 1920px) {

  html {
    font-size: 125%;
  }

}

@media (max-width: 1920px) {

  html {
    font-size: 100%;
  }

}

@media (max-width: 1366px) {

  html {
    font-size: 75%;
  }

  .container {
    width: 90vw;
  }

  .logos-wrapper.container {
    width: 50vw;
  }

  .logos-wrapper svg {
    width: 90%;
  }

}

@media (max-width: 1080px) {

  html {
    font-size: 80%;
  }

  .container {
    width: 100%;
  }

  .logos-wrapper.container {
    width: 100vw;
  }

  .logos-wrapper svg {
    width: 100%;
  }

  .super-wrapper {
    justify-content: flex-start;
    padding-top: 8vh;
    padding-bottom: 8vh;
  }

  .columns {
    flex-wrap: wrap;
  }

  .column-1, .column-2 {
    width: 100%;
  }

}

@media (max-width: 812px) {

  .super-wrapper {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }

  .footer .text {
    display: inline-block;
    flex-direction: column;
    line-height: 1.6em;
    font-size: 1.15rem;
    word-break: break-word; /* new */
  }

  .footer .text .spacer:after {
    display: none;
  }

}
