@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot');
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 400;
}

#wrapper {
  max-width: 556px;
  margin: 16px auto;
  border: 1px solid #000;
  background-color: #fff;
  position: relative;
}

article {
  padding: 0 32px;
}

article>section {
  padding: 32px;
  margin: 0 -32px 20px;
  background: #007E60;
}

article>section :is(h1, p) {
  color: #fff;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: #FFC919;
  margin: 10px -32px 0;
  padding: 28px 32px 22px;
}

.flex section {
  width: calc(100% - 154px);
}

.flex section :is(p, p a) {
  color: #007E60 !important;
}

.margin-left{
  margin-left: 41px;
}

.margin-left-top{
  margin-left: 15px;
}

footer {
  padding: 26px 32px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  background: #E5E5E5;
}

footer p {
  margin: 0 !important;
  font-size: 14px;
}

p:not(article section p) {
  margin: 0 0 10px;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 16px 0;
  font-weight: 700;
  font-size: 21px;
  line-height: 30px;
}

h2 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FDCA1A;
  letter-spacing: 3px;
}

h3 {
  margin: 16px 0 10px;
  font-weight: 700;
  font-size: 23px;
  line-height: 24px;
}

h4 {
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  color: #007E60;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 16px;
}

li:before {
  content: '\2022';
  color: #007E60;
  float: left;
  font-size: 24px;
  text-indent: -16px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}


@media all and (max-width: 555px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  article {
    padding: 0 16px;
  }

  :is(article>section, .flex) {
    margin: 0 -16px;
    padding: 16px;
  }

  :is(.margin-left, .margin-left-top){
    margin-left: 0;
  }

  :is(h1, p, ul) {
    hyphens: auto;
  }

  :is(a, :is(p,li) span) {
    white-space: nowrap;
  }

  br:not(footer br, br.mobile-block) {
    display: none;
  }

  footer {
    padding: 16px;
  }
}

@media all and (max-width: 480px) {
  :is(.flex, footer) {
    flex-direction: column;
    align-items: center;
  }

  .flex section {
    width: 100%;
  }

  footer p {
    text-align: center;
  }
}