:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v12-latin-regular.eot');
  src: url('../fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), url('../fonts/inter-v12-latin-regular.woff') format('woff'), url('../fonts/inter-v12-latin-regular.ttf') format('truetype'), url('../fonts/inter-v12-latin-regular.svg#Inter') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v12-latin-700.eot');
  src: url('../fonts/inter-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v12-latin-700.woff2') format('woff2'), url('../fonts/inter-v12-latin-700.woff') format('woff'), url('../fonts/inter-v12-latin-700.ttf') format('truetype'), url('../fonts/inter-v12-latin-700.svg#Inter') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Inter', Arial, sans-serif;
  color: #585851;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 800px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  background: #fff url('../images/banner.png') no-repeat center center;
  background-size: cover;
  padding: 200px 16px;
  text-align: center;
  color: #fff;
}

h1 strong {
  display: block;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

h1 span {
  margin-top: 6px;
  display: inline-block;
  text-align: center;
  font-weight: 400;
  padding: 6px 16px;
  background-color: #2B65AF;
  font-size: 80%;
}

h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #2B65AF;
}

h3 {
  background-color: #2B65AF;
  padding: 8px;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.color {
  color: #2B65AF !important;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  padding: 16px;
  background-color: #F5F5F5;
}


footer {
  padding: 0 16px 16px;
}

.content {
  padding: 16px 16px 0;
}

.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.flex>div {
  flex: 1 1 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "\2012";
  color: #2B65AF;
  float: left;
  margin-top: -3px;
  font-size: 22px;
  line-height: 1em;
  text-indent: -20px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}



@media all and (max-width:800px) {
  #wrapper {
    margin: 0;
    padding: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }

  h1 {
    padding: 120px 16px;
  }
}

@media all and (max-width:375px) {
  #wrapper {
    font-size: 14px;
  }
}