:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot');
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Roboto Condensed', 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;
  background: #fff url('../images/background.jpg') no-repeat 0 0;
}

h1 {
  margin: 40px 0;
  font-size: 46px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

h1 small {
  font-size: 15px;
  line-height: 1;
  text-align: right;
  display: block;
  color: #F6B71A;
}

h2 {
  margin: 0 0 9px 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
  color: #F6B71A;
}

h4 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #A1C048;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  display: none;
}

article {
  padding: 74px 14px 20px 28px;
  position: relative;
}

.content {
  padding: 0 0 29px 23px;
  margin: 69px 0 0 0;
}

.car {
  margin-top: 76px;
}

footer {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  /* background-color: #F4B625; */
  margin-bottom: 17px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0px 0 18px 10px;
  list-style: none;
  font-weight: 700;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "\2022";
  color: #000;
  float: left;
  margin-top: -3px;
  font-size: 20px;
  line-height: 1em;
  text-indent: -20px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.info {
  font-size: 12px;
  text-align: right;
  line-height: 1.25;
  font-weight: 700;
  position: absolute;
  bottom: 26px;
  right: 12px;
}

.logo {
  margin-right: -15px;
}

@media all and (max-width:800px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  .info {
    width: 30%;
  }

  .info br {
    display: none;
  }
}

@media all and (max-width:767px) {
  #wrapper {
    background: #fff url('../images/background-mobile.jpg') no-repeat center center;
    background-size: cover;
    padding-bottom: 1px;
  }

  header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }

  header img {
    max-width: 60%;
  }

  h4 {
    text-align: center;
    margin: 16px;
    width: 100%;
  }

  article {
    padding: 16px;
  }

  footer {
    padding: 16px;

    justify-content: center;
    gap: 12px;
    font-size: 13px;
    background-color: #F4B625;
    margin-bottom: 16px;
  }

  h1 {
    margin: 16px 0;
    font-size: 32px;
  }

  .content {
    padding: 16px;
    margin: 16px -16px;
    background-color: #f6b71a;
  }

  .info {
    position: static;
    margin: 16px -16px 0;
    width: auto;
    padding: 16px;
    background-color: #f6b71a;
  }

  ul {
    margin-left: 0;
  }

  .car {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  br {
    display: none;
  }
}

@media all and (max-width:478px) {
  header img {
    max-width: 100%;
  }
}