.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  color: #fff;
  text-decoration: none;
}

.section.hero {
  background-color: #7092a6;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: clip;
}

.image-background {
  filter: grayscale();
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% 50%;
}

.overlay {
  opacity: .3;
  background-color: #123548;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.container {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1240px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.waiting-wrapper {
  z-index: 5;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 44%;
  padding: 0;
  display: flex;
  position: relative;
}

.logo {
  width: 180px;
  margin-bottom: 8px;
  position: absolute;
  inset: 4% auto auto;
}

.legals {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.link-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  transition: all .2s;
  display: flex;
}

.link-wrapper:hover {
  color: #dbc59b;
}

.link-wrapper.margin-bottom-4px {
  margin-bottom: 4px;
}

.link-wrapper.margin-bottom-4px:hover {
  color: #dbc59b;
}

.icon-24px {
  width: 24px;
  height: 24px;
}

.horrizontal-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-bottom-24 {
  margin-bottom: 16px;
}

.quote {
  text-align: left;
  flex: 1;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.is-large, .flex-block {
  flex: 1;
}

.gap-8px {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.absolute-bottom {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff0 9%, #fff6);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Oswald, sans-serif;
  font-size: 17vw;
  font-weight: 600;
  line-height: .9;
  position: absolute;
  inset: auto 0% -8px;
}

.margin-top-16px {
  margin-top: 16px;
}

.icon-32px {
  filter: grayscale();
  object-fit: cover;
  border-radius: 50px;
  width: 72px;
  height: 72px;
}

.text-large {
  font-size: 18px;
  line-height: 1.5;
}

.icon-22px {
  width: 22px;
  height: 22px;
}

.italic-text {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  .image-background {
    width: 100%;
    height: 35%;
    top: auto;
    left: 0%;
  }

  .container {
    justify-content: flex-start;
    align-items: stretch;
    max-width: 670px;
  }

  .waiting-wrapper {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    width: 100%;
  }

  .logo {
    width: 80px;
    margin-top: 24px;
    margin-bottom: 32px;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 59px;
    padding-right: 59px;
  }

  .gap-8px {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .image-background {
    height: 31vh;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .waiting-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .no-margin {
    font-size: 24px;
    line-height: 1.2;
  }
}


