/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Inter-Regular";
  src: url("/assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("/assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "conthrax-sb";
  src: url("/assets/fonts/conthrax-sb.woff2") format("woff2"), url("/assets/fonts/conthrax-sb.woff") format("woff"), url("/assets/fonts/conthrax-sb.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html, body {
  height: 100%;
  font-size: 10px;
}
@media (max-width: 1680px) {
  html, body {
    font-size: 9px;
  }
}

body {
  margin: 0;
}

* {
  box-sizing: border-box;
  outline: none;
}

.wrapper {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  display: flex;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.container {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--mini {
  max-width: 1052px;
}

.button {
  border: 1px solid #456501;
  border-radius: 32px;
  background: none;
  font: 1.4rem "conthrax-sb";
  color: #456501;
  padding: 14px 16px;
  transition: 0.3s all ease;
}
.button:hover {
  opacity: 0.8;
}
.button--large {
  border-width: 2px;
  font: 1.6rem "conthrax-sb";
  padding: 16px 24px;
}
@media (max-width: 1680px) {
  .button--large {
    padding: 14px 20px;
  }
}
.button--green {
  border-color: #456501;
  color: #456501;
}
.button--dark-green {
  background: #456501;
  color: #fff;
}
.button--transparent {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.button--text-center {
  text-align: center;
}

.hallo {
  font: 1.4rem "conthrax-sb";
  color: #456501;
  padding: 7px 24px;
  border-radius: 16px;
  background: #E8F5C8;
  display: inline-block;
}
@media (max-width: 767px) {
  .hallo {
    font: 14px "conthrax-sb";
  }
}

.title {
  font: 4rem "conthrax-sb";
  color: #161616;
  text-align: center;
}
@media (max-width: 1199px) {
  .title {
    font: 3.4rem "conthrax-sb";
  }
}
@media (max-width: 767px) {
  .title {
    font: 32px "conthrax-sb";
  }
}
.title--green {
  color: #456501;
}

.header {
  padding: 26px 0;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  transition: 0.3s all ease;
}
@media (max-width: 1680px) {
  .header {
    padding: 20px 0;
    height: 85px;
  }
}
@media (max-width: 991px) {
  .header {
    height: 70px;
    padding: 16px 0;
  }
}
.header--fixed {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header--open {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #161616;
}
.header--open .header__actions {
  opacity: 1;
  visibility: visible;
}
.header--open .header__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header--open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header--open .header__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header__logo {
    max-width: 170px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    max-width: 140px;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .header__actions {
    position: fixed;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: #fff;
    top: 70px;
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
  }
}
.header__lang {
  margin-left: 24px;
}
@media (max-width: 991px) {
  .header__lang {
    margin-left: 0;
    margin-bottom: 14px;
    margin-top: auto;
  }
}
.header__button {
  margin-left: 24px;
}
@media (max-width: 991px) {
  .header__button {
    margin-left: 0;
  }
}
.header__hamburger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 7px 10px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  height: 2px;
  background: #456501;
  margin: 5px 0;
}

.nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav__item:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 991px) {
  .nav__item:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .nav__item {
    margin-bottom: 14px;
  }
}
.nav__link {
  font: 1.6rem "conthrax-sb";
  color: #161616;
  transition: 0.3s all ease;
}
.nav__link:hover {
  opacity: 0.8;
}

.headline {
  background: #F7FAF0;
  padding: 154px 0 186px;
  position: relative;
}
@media (max-width: 1680px) {
  .headline {
    padding: 125px 0 170px;
  }
}
@media (max-width: 767px) {
  .headline {
    padding: 102px 0 83px;
  }
}
.headline::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(127, 220, 0, 0.6);
  border-radius: 50%;
  filter: blur(157px);
  pointer-events: none;
}
.headline__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .headline__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1199px) {
  .headline__left {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .headline__left {
    max-width: 100%;
  }
}
.headline__right {
  margin-right: -55px;
}
@media (max-width: 1199px) {
  .headline__right {
    max-width: 420px;
    margin-right: -25px;
  }
}
@media (max-width: 767px) {
  .headline__right {
    margin-right: 0;
    max-width: 100%;
  }
}
.headline__hallo {
  margin-bottom: 24px;
}
.headline__title {
  font: 7.2rem "conthrax-sb";
  color: #161616;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1680px) {
  .headline__title {
    font: 5rem "conthrax-sb";
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .headline__title {
    font: 40px "conthrax-sb";
    margin-bottom: 23px;
  }
}
.headline__text {
  font: 1.8rem/2.4rem "Inter-Regular";
  color: #161616;
  margin: 0 0 67px;
}
@media (max-width: 1680px) {
  .headline__text {
    margin: 0 0 45px;
  }
}
@media (max-width: 1199px) {
  .headline__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .headline__text {
    font: 14px/24px "Inter-Regular";
    margin-bottom: 24px;
  }
}
.headline__button {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1680px) {
  .headline__button {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .headline__button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
}
.headline__button-icon {
  margin-left: 8px;
}
.headline__list {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .headline__list {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .headline__list {
    margin-bottom: 40px;
  }
}
.headline__item:not(:last-child) {
  margin-right: 72px;
}
@media (max-width: 1199px) {
  .headline__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.headline__count {
  font: 2.4rem "conthrax-sb";
  color: #456501;
  margin-bottom: 6px;
}
.headline__label {
  font: 1.3rem/1.9rem "Inter-Regular";
  color: #161616;
}

.about {
  background: #fff;
  padding: 50px 0 63px;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 36px 0 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 41px;
  background: url("/assets/images/vector.svg") center center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .about::before {
    background: url("/assets/images/vector-2.svg") center center no-repeat;
    background-size: cover;
    top: -33px;
    height: 33px;
  }
}
.about__hallo {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 144px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .about__hallo {
    margin-bottom: 25px;
  }
}
.about__title {
  margin: 0 0 26px;
}
@media (max-width: 1199px) {
  .about__title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .about__title {
    margin-bottom: 32px;
  }
}
.about__text {
  font: 1.6rem/2.4rem "Inter-Regular";
  color: #4A5A20;
  text-align: center;
  margin: 0 0 69px;
}
@media (max-width: 767px) {
  .about__text {
    font: 16px/24px "Inter-Regular";
    margin-bottom: 32px;
  }
}
.about__mission {
  background: url("/assets/images/mission.jpg") center center no-repeat;
  background-size: cover;
  height: 280px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__mission {
    min-height: 394px;
    background: url("/assets/images/mission-2.jpg") center center no-repeat;
    background-size: cover;
  }
}
.about__mission::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/container.png") center center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .about__mission::before {
    background: url("/assets/images/container-2.png") center center no-repeat;
    background-size: cover;
  }
}
.about__mission-in {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 64px;
}
@media (max-width: 767px) {
  .about__mission-in {
    padding: 56px 32px;
  }
}
.about__mission-text {
  font: 2rem/2.9rem "conthrax-sb";
  color: #fff;
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .about__mission-text {
    font: 18px/29px "conthrax-sb";
  }
  .about__mission-text br {
    display: none;
  }
}
.about__mission-label {
  font: 1.4rem/2rem "Inter-Regular";
  color: rgba(127, 220, 0, 0.9);
}
.about__steps {
  margin-bottom: 98px;
}
@media (max-width: 1199px) {
  .about__steps {
    margin-bottom: 40px;
  }
}

.steps__container {
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}
@media (max-width: 1199px) {
  .steps__container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .steps__container {
    flex-direction: column;
    align-items: center;
  }
}
.steps__item {
  padding-left: 12px;
  padding-right: 12px;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .steps__item {
    width: 50%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .steps__item {
    width: 100%;
    margin-bottom: 33px;
    max-width: 252px;
    padding: 0;
  }
}
.steps__title {
  font: 1.6rem "conthrax-sb";
  color: #161616;
  margin-bottom: 15px;
  text-align: center;
}
.steps__text {
  font: 1.4rem "Inter-Regular";
  color: #767676;
  text-align: center;
}
.steps__img-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #F0F8E0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.steps__number {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #7FDC00;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 12px "conthrax-sb";
  color: #1A2600;
  border-radius: 50%;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.coverage {
  background: #F7FAF0;
  padding: 72px 0 95px;
}
@media (max-width: 767px) {
  .coverage {
    padding: 72px 0;
  }
}
.coverage__hallo {
  max-width: 135px;
  margin: 0 auto 16px auto;
  display: block;
}
@media (max-width: 767px) {
  .coverage__hallo {
    margin-bottom: 24px;
  }
}
.coverage__title {
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .coverage__title {
    margin-bottom: 20px;
    font: 28px "conthrax-sb";
  }
}
.coverage__text {
  font: 1.7rem/2.9rem "Inter-Regular";
  color: #4A5A20;
  text-align: center;
  margin-bottom: 78px;
}
@media (max-width: 767px) {
  .coverage__text {
    font: 16px/24px "Inter-Regular";
    margin-bottom: 55px;
  }
  .coverage__text br {
    display: none;
  }
}
.coverage__image {
  display: block;
  margin: 0 auto 82px;
}
@media (max-width: 767px) {
  .coverage__image {
    margin-bottom: 55px;
  }
}
.coverage__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E8F5C8;
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 1199px) {
  .coverage__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.coverage__item {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .coverage__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.coverage__icon {
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  background: url("/assets/images/check.svg") center center no-repeat, #7FDC00;
  background-size: 10px auto;
}
.coverage__label {
  font: 16px "Inter-Regular";
  color: #456501;
}

.cooperation {
  padding: 104px 0 96px;
}
.cooperation__in {
  padding: 64px 30px 40px;
  background: linear-gradient(to right, #456501, #2D4200, #1A2600);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .cooperation__in {
    padding: 48px 28px;
  }
}
.cooperation__in::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(127, 220, 0, 0.1);
}
.cooperation__in::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(127, 220, 0, 0.1);
}
.cooperation__title {
  color: #fff;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .cooperation__title {
    font: 24px "conthrax-sb";
    margin-bottom: 32px;
  }
}
.cooperation__title--green {
  color: #7FDC00;
}
.cooperation__text {
  font: 1.6rem/2.4rem "Inter-Regular";
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 51px;
}
.cooperation__button {
  display: flex;
  align-items: center;
  max-width: 350px;
  margin: 0 auto 33px auto;
}
@media (max-width: 767px) {
  .cooperation__button {
    max-width: 100%;
    padding: 14px 10px;
  }
}
.cooperation__button-icon {
  min-width: 18px;
  max-width: 18px;
  margin-left: 10px;
}
.cooperation__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cooperation__item {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .cooperation__item {
    margin-bottom: 20px;
    justify-content: center;
  }
}
.cooperation__item:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.cooperation__item:nth-child(2) {
  margin-left: 21px;
}
@media (max-width: 767px) {
  .cooperation__item:nth-child(2) {
    margin-left: 0;
  }
}
.cooperation__icon {
  min-width: 16px;
  margin-right: 8px;
}
.cooperation__label {
  font: 1.4rem/2rem "Inter-Regular";
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .cooperation__label {
    flex-shrink: 0;
  }
}

.footer {
  background: #1A2600;
}
.footer__top {
  padding: 84px 0 64px;
}
@media (max-width: 767px) {
  .footer__top {
    padding: 64px 0 0;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer__container {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer__right {
    width: 100%;
  }
}
.footer__logo {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 140px;
  }
}
.footer__text {
  font: 1.4rem/2.3rem "Inter-Regular";
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 23px;
}
.footer__text--small {
  font: 1.3rem/1.9rem "Inter-Regular";
  margin-bottom: 0;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .footer__contacts {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .footer__contacts {
    margin-bottom: 32px;
  }
}
.footer__contact {
  display: flex;
  align-items: center;
}
.footer__contact:not(:last-child) {
  margin-bottom: 10px;
}
.footer__icon {
  min-width: 14px;
  margin-right: 10px;
}
.footer__menu {
  display: flex;
  align-items: flex-start;
  max-width: 725px;
}
@media (max-width: 1199px) {
  .footer__menu {
    max-width: 100%;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 157px;
}
@media (max-width: 1199px) {
  .footer__list {
    min-width: auto;
    width: 50%;
    padding: 0 16px;
    margin-bottom: 21px;
  }
}
.footer__list:not(:last-child) {
  margin-right: 32px;
}
@media (max-width: 1199px) {
  .footer__list:not(:last-child) {
    margin-right: 0;
  }
}
.footer__link {
  font: 1.3rem/1.9rem "Inter-Regular";
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 11px;
}
.footer__link--large {
  font: 1.4rem/2.1rem "Inter-Bold";
  color: #fff;
  margin-bottom: 16px;
}
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
  }
}
.footer__item {
  width: 33.33%;
}
@media (max-width: 767px) {
  .footer__item {
    width: 100%;
    justify-content: center;
  }
}
.footer__item--center {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__item--center {
    width: 100%;
    justify-content: center;
  }
}
.footer__item--flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__item--flex-end {
    width: 100%;
    justify-content: center;
  }
}
.footer__copyright {
  font: 1.3rem/1.9rem "Inter-Regular";
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    margin-bottom: 16px;
  }
}
.footer__system {
  fonmt: 12px/18px "Inter-Regular";
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  padding-left: 12px;
}
.footer__system::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7FDC00;
}
.footer__socials {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__socials {
    margin-bottom: 16px;
  }
}
.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social:not(:last-child) {
  margin-right: 12px;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  z-index: 30;
  text-align: center;
  overflow-y: auto;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .modal {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.modal--active {
  opacity: 1;
  visibility: visible;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
@media (max-width: 767px) {
  .modal::before {
    display: none;
  }
}
.modal__window {
  max-width: 650px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  margin: 30px auto;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
  border: 1px solid #E6E6E6;
  padding: 100px 30px;
}
@media (max-width: 767px) {
  .modal__window {
    padding: 30px;
  }
}
.modal__in {
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal__in {
    max-width: 100%;
  }
}
.modal__title {
  font: 2.4rem "conthrax-sb";
  color: #161616;
  margin-bottom: 32px;
}
.modal__field {
  margin-bottom: 12px;
}
.modal__button {
  margin-top: 20px;
  width: 100%;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .modal__close {
    width: 24px;
    height: 24px;
    right: 15px;
    top: 15px;
  }
}

.lang__item {
  font: 1.4rem "conthrax-sb";
  color: #161616;
  position: relative;
  padding-right: 28px;
}
@media (max-width: 991px) {
  .lang__item {
    display: flex;
    align-items: center;
    padding-right: 0;
  }
}
.lang__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/assets/images/chevron-down.svg") center center no-repeat;
  background-size: 20px auto;
}
@media (max-width: 991px) {
  .lang__item::after {
    display: none;
  }
}
.lang__item:hover .lang__list {
  opacity: 1;
  visibility: visible;
}
.lang__list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .lang__list {
    opacity: 1;
    visibility: visible;
    padding: 0;
    position: static;
    margin-left: 12px;
  }
}
.lang__link {
  font: 1.4rem "conthrax-sb";
  color: #161616;
}

.field {
  display: block;
  margin-bottom: 8px;
}
.field__label {
  padding-left: 12px;
  font: 11px/20px "Inter-Bold";
  color: #4D4D4D;
}
.field__input {
  display: block;
  width: 100%;
  border: 1px solid rgba(145, 158, 171, 0.2);
  padding: 11px 14px;
  border-radius: 8px;
  font: 14px "Inter-Regular";
  color: #4D4D4D;
}
.field__input::placeholder {
  font: 1.4rem "Inter-Regular";
  color: #919EAB;
}