:root {
  --dark-blue: #112971;
  --black: #333;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.section-wrapper {
  background-image: url('../images/20211013_102606.avif');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px;
  display: flex;
}

.content-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.h1-blue {
  color: var(--dark-blue);
  text-align: center;
  text-transform: uppercase;
  font-family: grange-extended, sans-serif;
  font-size: 4.5vw;
  line-height: .9;
}

.blue-button {
  background-color: var(--dark-blue);
  text-align: center;
  border-radius: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 15px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.blue-button:hover {
  background-color: var(--black);
}

.h2-blue {
  color: var(--black);
  text-align: center;
  width: 70%;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.blue-button-facebook {
  background-color: var(--dark-blue);
  text-align: center;
  background-image: url('../images/facebook-logo-no-border.svg');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: auto 20px;
  border-radius: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 15px 20px 15px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.blue-button-facebook:hover {
  background-color: var(--black);
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.aje-footer-text {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

@media screen and (max-width: 991px) {
  .section-wrapper {
    padding: 40px;
  }

  .h1-blue {
    font-size: 6.5vw;
  }

  .h2-blue {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .h1-blue {
    font-size: 8.5vw;
  }

  .h2-blue {
    width: 100%;
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .section-wrapper {
    padding: 30px;
  }

  .h1-blue {
    font-size: 10.5vw;
  }

  .blue-button {
    font-size: 16px;
  }

  .h2-blue {
    font-size: 22px;
  }

  .blue-button-facebook {
    background-size: auto 17px;
    font-size: 16px;
  }
}


