:root {
  font-size: 16px;
}

@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 {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 960px;
  margin: 16px auto;
  border: 1px solid #000;
  padding: 16px;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #FCB422;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

.content {
  max-width: 790px;
  padding: 16px;
  margin: 60px auto;
}

.text-justify {
  text-align: justify;
}


article {
  margin: 16px 0 24px;
}

.logo-main {
  padding: 0 0 30px;
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer {
  margin: 0;
  padding: 0;
}

.logo p {
  flex: 1 1 0;
  font-size: 14px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 48px;
}

ul li:before {
  content: "\2022";
  color: #000;
  float: left;
  margin: -3px 0 0 -23px;
  font-size: 23px;
  line-height: 1em;
  font-family: Arial, Helvetica, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

@media all and (max-width:960px) {
  #wrapper {
    margin: 0;
    padding: 0;
    border: none;
  }

  .text-justify {
    text-align: left;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width:767px) {
  .content {
    margin: 0 auto;
  }

  ul li {
    padding-left: 23px;
  }

  .logo-main {
    padding: 0 0 16px;
  }
}

@media all and (max-width:478px) {
  .logo {
    flex-direction: column;
  }
}