.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;
  }
}

.section {
  background-image: url('../images/bg_1440p.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}

.container {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}

.h1 {
  margin-top: 5rem;
}

.legal-container {
  background-color: #eeeae8;
  border-radius: .5rem;
  padding: 5rem 3rem;
  font-family: nimbus-sans, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.heading {
  color: #635539;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: nimbus-sans-extended, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.navigation {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 5rem;
  margin-right: 5rem;
  display: flex;
}

.button-text {
  font-weight: 700;
}

.button {
  color: #fff;
  white-space: nowrap;
  background-color: #000;
  border-radius: .25rem;
  padding: 1rem;
  font-family: nimbus-sans-extended, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.button:hover {
  background-color: #635539;
}

.body {
  color: #000;
  font-family: nimbus-sans, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.title {
  font-family: nimbus-sans-extended, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.copyright {
  color: #fff;
  font-family: nimbus-sans-extended, sans-serif;
}

.progress-bar {
  background-image: linear-gradient(#eeeae8, #eeeae8 48%, #eeeae800 104%);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  margin-bottom: 2rem;
  padding: 0 5px 50px;
  display: flex;
  position: sticky;
  top: 0;
}

.bar {
  background-color: #000;
  border-radius: 5px;
  flex: 1;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  height: 5px;
  display: flex;
}

.logo-nav {
  position: sticky;
  top: 5rem;
}

.logo {
  margin-right: 10rem;
}

@media screen and (max-width: 991px) {
  .section {
    background-image: url('../images/bg_mobile.webp');
    background-size: cover;
  }

  .container {
    flex-flow: column;
    margin-left: 7%;
    margin-right: 7%;
  }

  .navigation {
    flex-flow: column;
  }

  .logo-nav {
    margin-bottom: 5rem;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin-left: 5%;
    margin-right: 5%;
  }

  .legal-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .heading {
    font-size: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .paragraph {
    word-break: normal;
    font-size: .85rem;
  }

  .break {
    word-break: break-all;
  }

  .legal-container {
    padding: 3rem 2rem;
  }

  .heading {
    font-size: 1.5rem;
  }

  .navigation {
    margin-top: 3rem;
    margin-right: 0;
  }

  .title {
    font-size: 1rem;
  }
}


