:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v15-latin-regular.eot');
  src: url('../fonts/outfit-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'),
    url('../fonts/outfit-v15-latin-regular.woff') format('woff'),
    url('../fonts/outfit-v15-latin-regular.ttf') format('truetype'),
    url('../fonts/outfit-v15-latin-regular.svg#Outfit') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-v15-latin-700.eot');
  src: url('../fonts/outfit-v15-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/outfit-v15-latin-700.woff2') format('woff2'),
    url('../fonts/outfit-v15-latin-700.woff') format('woff'),
    url('../fonts/outfit-v15-latin-700.ttf') format('truetype'),
    url('../fonts/outfit-v15-latin-700.svg#Outfit') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Outfit', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 910px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
  position: absolute;
  bottom: 31px;
  left: 315px;
  color: #fff;
  margin: 0 27px 0 0;
}

h1 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

h1 strong {
  font-size: 43px;
  line-height: 1.3;
}

h2 {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #009AC6;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  padding: 29px 45px 23px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.content {
  margin: 55px 60px;
  position: relative;
  font-size: 15px;
  line-height: 18px;
}

.intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.font {
  text-align: justify;
  hyphens: auto;
  font-size: 16px;
  line-height: 1.4;
}

.flex div:nth-of-type(1) {
  width: 48%;
}

.flex div:nth-of-type(2) {
  width: 45%;
}

.banner {
  background: #009BC7 url('../images/background.jpg') no-repeat 0 0;
  position: relative;
}


footer {
  margin: 69px 60px 23px;
  border-top: 2px solid #002E62;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
}

footer p {
  margin-bottom: 0 !important;
}

footer div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 21px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 31px;
  list-style: none;
}

ul li {
  padding-left: 18px;
  margin-bottom: 1px;
}

ul li:before {
  content: "\2010";
  color: #000;
  float: left;
  margin: -5px 0 0 -18px;
  font-size: 25px;
  line-height: 1em;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

.margin {
  margin-bottom: 0;
}

@media all and (max-width:910px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }

  .font {
    text-align: left;
  }
}

@media all and (max-width:767px) {
  .content {
    margin: 16px;
  }

  h1 strong {
    font-size: 32px;
  }

  footer {
    margin: 16px;
    border-top: 2px solid #002E62;
    padding: 16px 0;
    gap: 16px;
  }

  ul {
    margin: 0 0 16px;
  }
}

@media all and (max-width:638px) {
  .intro {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .margin {
    margin-bottom: 16px;
  }

  .flex {
    flex-direction: column;
  }

  .flex>div {
    width: 100% !important;
  }

  .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  img {
    max-width: 100%;
    vertical-align: middle;
  }

  h1 {
    position: static;
    padding: 16px;
  }
}