:root {
  --white: #fff;
  --black: #000;
  --green: #557d4e;
  --grey: #3d3e3d;
  --orange: #ca6033;
  --red: #f00;
  --hover-transition: 0.3s ease-in-out;
  --font-kharkiv: 'Kharkiv Tone', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-gothic: 'Century Gothic', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@font-face {
  font-family: "Kharkiv Tone";
  src: url("../fonts/KharkivTone.woff2") format("woff2"), url("../fonts/KharkivTone.woff2") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic.woff2") format("woff2"), url("../fonts/CenturyGothic.woff2") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic-Bold.woff2") format("woff2"), url("../fonts/CenturyGothic-Bold.woff2") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

details, main {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  feight: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

* {
  padding: 0;
  margin: 0;
  border: none;
}

a, a:link, a:visited {
  text-decoration: none;
}

aside, footer, header, main, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: 0 0;
  cursor: pointer;
}

button:active, button:focus, input:active, input:focus {
  outline: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button, label {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 77.5rem;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-gothic);
  font-size: max(1rem, 12px);
  line-height: 130%;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
  backdrop-filter: blur(20px);
  background-color: rgba(162, 169, 169, 0.7);
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .header__burger::before {
  opacity: 0;
  visibility: hidden;
}
body.menu-open .header__burger::after {
  opacity: 1;
  visibility: visible;
}
body.menu-open::before {
  opacity: 1;
  visibility: visible;
}

.title-1 {
  font-size: max(3.4375rem, 12px);
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 36px;
  }
}
.title-2 {
  font-size: max(3rem, 12px);
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 36px;
  }
}
.title-1, .title-2, .title-3, .title-4, .title-5, .title-6 {
  font-family: var(--font-kharkiv);
  line-height: 100%;
}
.title-1 *, .title-2 *, .title-3 *, .title-4 *, .title-5 *, .title-6 * {
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: none;
  text-align: center;
  -webkit-transition: -webkit-transform var(--hover-transition);
  transition: -webkit-transform var(--hover-transition);
  transition: transform var(--hover-transition);
  transition: transform var(--hover-transition), -webkit-transform var(--hover-transition);
  font-size: max(1.125rem, 14px);
  line-height: 100%;
  color: var(--white);
  padding: 1.09375rem 1.5rem;
  border-radius: 0.625rem;
  background-color: var(--green);
}
.btn.disabled, .btn[disabled] {
  opacity: 0.32;
  cursor: not-allowed;
}
.btn.btn--big {
  font-size: max(1.875rem, 12px);
  padding: 1.75rem;
}
@media (any-hover: hover) {
  .btn:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
    padding-top: 18.5px;
    padding-bottom: 18.5px;
  }
  .btn.btn--big {
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
/*# sourceMappingURL=critical.css.map */
/*# sourceMappingURL=critical.css.map */