* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  background: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  min-height: 100vh;
  color: #383838;
}

body {
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content-block {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  margin: 0 auto;
}

.content-block .logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.content-block .content-txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-block .title-subtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
}

.content-block .title-subtitle h1 {
  width: 100%;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 36px;
  text-transform: uppercase;
  color: #447ca1;
}

.content-block .title-subtitle .subtitle {
  width: 100%;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.286rem;
  line-height: normal;
  color: #383838;
}

.content-block .body-text {
  width: 100%;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  color: #383838;
}

.content-block .body-text a {
  color: inherit;
  font: inherit;
}

.offline-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 0 20px 40px;
  text-align: center;
}

.offline-footer p {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.857rem;
  line-height: 22px;
  color: #383838;
}

.offline-footer a {
  color: inherit;
  font: inherit;
}

@media only screen and (max-width: 600px) {
  .content-block {
    gap: 32px;
  }

  .content-wrapper {
    padding: 32px 16px;
  }
}
