*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

img:where(:not([class])) {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1%;
}

.container, [class*=__container] {
  max-width: 1272px;
  margin: 0 auto;
  padding-right: 12px;
  padding-left: 12px;
}
.container-fluid, [class*=__container-fluid] {
  width: 100%;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

[class*=grid-] {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.header {
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header--active {
  color: #333;
  background: #fff;
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.navigation__link {
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1%;
  color: inherit;
}
.navigation__burger {
  width: 28px;
  height: 16px;
  display: none;
}

.logo {
  text-decoration: none;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1%;
  color: inherit;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger:before, .burger:after {
  content: "";
}
.burger:before, .burger:after, .burger span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background: #326A2F;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger span {
  top: 50%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}
.burger:before {
  top: 0;
}
.burger:after {
  bottom: 0;
}
.burger.active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
}
.burger.active::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}
.burger.active::after {
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0px, -50%);
      -ms-transform: rotate(45deg) translate(0px, -50%);
          transform: rotate(45deg) translate(0px, -50%);
}

.section {
  padding: 32px 0;
}
.section__title, .footer__title, .section--header > .section__container h1 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1%;
  color: #326A2F;
}
.section--background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.section--header {
  margin-top: -74px;
  margin-bottom: 32px;
  padding: 100px 0 100px;
}
.section--header > .section__container {
  display: grid;
  grid-template-columns: 9fr 7fr;
}
.section--header > .section__container h1 {
  margin: 0;
  color: inherit;
}
.section--sidebar > .section__container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
}

.card {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fffefe;
  border-radius: 8px;
}
.card__image {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-decoration: none;
  color: #fff;
  margin: 0;
  padding: 70px 0 10px;
  background: #000000;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.card:hover .card__image {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.card:hover .card__title {
  padding: 60px 0 20px;
}

.footer {
  padding: 48px 0 86px;
  background: #ccc;
  background-image: url(../img/footer-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.footer__container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
}
.footer__content {
  padding: 0 0 0 300px;
}
.footer__content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0;
  padding: 5px 0 0;
  text-decoration: none;
  color: #010101;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__content a:hover {
  color: #326A2F;
}