:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-sans-v15-latin-regular.eot');
  src: url('../fonts/nunito-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'),
    url('../fonts/nunito-sans-v15-latin-regular.woff') format('woff'),
    url('../fonts/nunito-sans-v15-latin-regular.ttf') format('truetype'),
    url('../fonts/nunito-sans-v15-latin-regular.svg#NunitoSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nunito-sans-v15-latin-700.eot');
  src: url('../fonts/nunito-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nunito-sans-v15-latin-700.woff2') format('woff2'),
    url('../fonts/nunito-sans-v15-latin-700.woff') format('woff'),
    url('../fonts/nunito-sans-v15-latin-700.ttf') format('truetype'),
    url('../fonts/nunito-sans-v15-latin-700.svg#NunitoSans') format('svg');
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 800px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
}

header figure {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
}

header figure img {
  vertical-align: bottom;
}

@keyframes slidy {
  0% {
    opacity: 0;
  }

  3.2% {
    opacity: 1;
  }

  16.67% {
    opacity: 1;
  }

  19.87% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

header figure img:nth-of-type(1) {
  position: relative;
}

header figure img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  animation: slidy 30s linear 0s infinite normal forwards;
}

header figure img:nth-child(2) {
  animation-delay: 5s;
}

header figure img:nth-child(3) {
  animation-delay: 10s;
}

header figure img:nth-child(4) {
  animation-delay: 15s;
}

header figure img:nth-child(5) {
  animation-delay: 20s;
}

header figure img:nth-child(6) {
  animation-delay: 25s;
}

.center,
.title {
  text-align: center;
}

.title {
  color: #2E2C2F;
}

.link {
  color: #17346A !important;
  text-decoration: underline !important;
}

h1 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #17346A;
}

h1 .block {
  margin-top: 6px;
  display: block;
}

h2 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #17346A;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  flex: 1 1 0;
  text-align: center;
}

h3 strong {
  font-size: 19px;
  display: block;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 50px;
}

article {
  padding: 0 50px;
}

footer {
  margin: 16px 0 0;
  padding: 0 50px 50px;
  font-style: italic;
  color: #60616A;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


ul {
  margin: 16px 0 16px 24px;
  list-style: none;
}

ul li {
  padding-left: 24px;
}

ul li:before {
  content: "\2022";
  color: #17346A;
  float: left;
  margin-top: -3px;
  font-size: 23px;
  line-height: 1em;
  text-indent: -24px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

p span {
  white-space: nowrap;
}

@media all and (max-width:800px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width:767px) {
  article {
    padding: 0 16px;
  }

  footer {
    padding: 0 16px 16px;
  }

  h3 {
    order: 3;
    width: 100%;
    flex: 1 1 100%;
  }

  ul {
    margin-left: 0;
  }
}