* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  background: none;
}

#wrapper {
  max-width: 973px;
  margin: 12px auto;
  border: 4px solid #000;
  background-color: #fff;
  overflow: hidden;
  color: #000;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

#wrapper .hide {
  display: none;
}

#wrapper .header {
  padding: 20px 50px;
  display: flex;
  justify-content: end;
}

#wrapper .article {
  padding: 20px 50px 0;
}

#wrapper .footer {
  padding: 20px 50px;
  background: #2E75B6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid #000;
  gap: 12px;
  flex-wrap: wrap;
}

#wrapper p {
  margin-bottom: 20px;
}

#wrapper p.big {
  font-size: 20px;
}

#wrapper strong {
  font-weight: 700;
}

#wrapper h1 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

#wrapper h2 {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

#wrapper h2 span.small {
  display: block;
  font-size: 20px;
  padding-top: 16px;
}

#wrapper h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

#wrapper h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#wrapper a {
  color: #fff;
  text-decoration: none;
}

#wrapper ul {
  margin-bottom: 20px;
  list-style: none;
}

#wrapper ul li {
  padding-left: 28px;
  position: relative;
}

#wrapper ul li:before {
  content: '\2022';
  color: #000;
  font-size: 25px;
  position: absolute;
  top: -3px;
  left: 0;
  font-family: Arial, sans-serif;
  line-height: 1;
}

#wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#wrapper .nobr,
#wrapper .nobr-1 {
  white-space: nowrap;
}

#wrapper .line {
  width: auto;
  height: 1px;
  background: #5B9BD5;
  margin: 0 -25px 20px;
}

#wrapper .footer p,
#wrapper .footer h4,
#wrapper .footer h2 {
  font-family: "Open Sans", Arial, sans-serif;
}

#wrapper .footer p {
  color: #fff;
  margin: 0;
}

@media all and (max-width: 972px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  #wrapper .nobr-1 {
    white-space: normal;
  }
}

@media all and (max-width: 903px) {
  #wrapper .footer {
    justify-content: space-around;
  }

  #wrapper h4,
  #wrapper .footer p {
    text-align: center;
  }
}

@media all and (max-width: 499px) {
  #wrapper .header,
  #wrapper .article,
  #wrapper .footer {
    padding: 16px;
  }

  #wrapper .line {
    margin: 0 -8px 20px;
  }

  #wrapper .header {
    justify-content: center;
  }

  #wrapper ul li {
    padding-left: 16px;
  }
}