@charset "UTF-8";

html {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.wrapper {
  max-width: 956px;
  margin: 0 auto;
  padding-top: 100px;
  
}

.content {
  display: flex;
  padding: 0 16px;
  gap: 80px;
}

.content h1 {
  font-size: 1.5rem;
  color: #1F1F1F;
}

.content-left {
  flex-basis: 66%;
  color: #464749;
}

.content-left > div {
  padding-bottom: 50px;
}

.logo {
  padding: 0 16px;
  margin-bottom: 50px;
}

.logo img {
  height: 32px;
}

.footer {
  font-size: 0.865rem;
  color
}

.footer .contacts{
  display: flex;
}
.footer .contacts, .footer .contacts a {
  color: #859595;
}
.footer .contacts > div {
  padding-right: 24px;
}

.banner img {
  width: 333px;
  height: auto;
}


@media only screen and (max-width: 600px) {
  .content {
    flex-direction: column-reverse;
  }
  .banner img {
    width: 200px;
  }
  .content {
    gap: 30px;
  }
}