﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

#wrapper {
  max-width: 750px;
  margin: 16px auto;
  border: 2px solid #4f7936;
  padding: 12px;
  background-color: #fff;
  position: relative;
}

header {
  padding: 0 150px 0 0;
}

figure {
  position: absolute;
  top: -2px;
  right: -2px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box {
  width: 49%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 4px;
  padding: 0 0 4px;
  border-bottom: 1px solid #4f7936;
}

footer p {
  text-align: center;
  margin: 0;
}

footer p :is(strong, strong a) {
  color: #4f7936;
}

p {
  margin: 0 0 4px;
  position: relative;
}

h1 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  color: #4f7936;
}

h1 span {
  font-size: 36px;
  line-height: 40px;
}

h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: #4f7936;
}

h2 small {
  display: block;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  margin: 10px 0 0;
  color: #000;
}

h3 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #4f7936;
}

a {
  color: #000;
  text-decoration: none;
}

ul {
  margin: 0 0 4px;
  list-style: none;
}

ul li {
  padding-left: 10px;
}

li:before {
  content: '\2010';
  float: left;
  font-size: 18px;
  text-indent: -10px;
  margin: -4px 0 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media all and (max-width: 750px) {
  #wrapper {
    padding: 16px;
    margin: 0;
    border: none;
    hyphens: auto;
    text-wrap: pretty;
  }

  header {
    padding: 0 160px 0 0;
  }

  figure {
    top: 0;
    right: 0;
  }

  span {
    white-space: nowrap;
  }

  br {
    display: none;
  }
}

@media all and (max-width: 620px) {
  header {
    padding: 0;
  }

  figure {
    position: static;
    display: flex;
    justify-content: center;
  }

  .flex {
    flex-direction: column;
  }

  .box {
    width: 100%;
  }
}