:root {
  --site-page: 1140px;
  --green: #338d11;
  --green-accent: #31ad42;
  --text: #000000;
  --muted: #bfbfbf;
  --white: #ffffff;
  --soft: #f6f6f6;
  --border: #bfbfbf;
  --body-font: "Roboto", "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-page {
  margin: 0 auto;
  max-width: var(--site-page);
  padding: 0 20px;
  width: 100%;
}

.site-header {
  background: var(--white);
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 143px;
}

.site-brand {
  display: inline-flex;
  text-decoration: none;
}

.site-brand__logo {
  width: 250px;
}

@media (max-width: 1100px) {
  .site-header__inner {
    min-height: 122px;
  }
}

@media (max-width: 767px) {
  .site-page {
    padding: 0 20px;
  }

  .site-header__inner {
    min-height: 104px;
  }

  .site-brand__logo {
    width: min(210px, 70vw);
  }
}
