:root {
  --white: white;
  --black: black;
}

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@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: #fff;
  text-transform: uppercase;
  background-color: #031845;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

.grid {
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr;
}

.container {
  text-align: center;
  max-width: 783px;
  padding: 25px 15px 40px;
}

.text-block {
  background-color: #ba025a;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  display: flex;
}

.image {
  max-height: 80px;
}

.text-block-1 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 45px;
  display: flex;
}

.link-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  color: #fff;
  text-decoration: none;
  display: flex;
}

.logo-image {
  width: 280px;
  margin-top: 10px;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .text-block {
    font-size: 45px;
  }

  .text-block-1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .body {
    font-size: 32px;
    line-height: 30px;
  }

  .text-block {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    font-size: 32px;
  }

  .image {
    max-height: 60px;
  }

  .text-block-1 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 26px;
  }

  .link-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .logo-image {
    width: 160px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    font-size: 20px;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  }

  .text-block {
    font-size: 17px;
    line-height: 17px;
  }

  .image {
    max-height: 40px;
  }

  .text-block-1 {
    font-size: 17px;
    line-height: 17px;
  }

  .link-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .logo-image {
    width: 140px;
    margin-top: 5px;
    margin-bottom: 25px;
  }
}
