@import "fonts.css";
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 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%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

legend {
  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] {
  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;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.title {
  font-family: "RedOctober", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }
}

.text {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 1100px) {
  .text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .text {
    font-size: 16px;
  }
}

.caption .text {
  font-size: 28px;
}
@media (max-width: 1100px) {
  .caption .text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .caption .text {
    font-size: 16px;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  z-index: 6;
  background: #fff;
}
.header__filling {
  max-width: 1700px;
  position: relative;
  padding: 32px 40px 32px 40px;
  z-index: 2;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header__filling {
    padding: 20px 15px 20px 15px;
  }
}
.header__content {
  display: flex;
  justify-content: space-between;
  z-index: 6;
}
@media (max-width: 768px) {
  .header__content {
    height: 25px;
  }
}
.header__link {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  transition: color 0.5s ease-in-out;
}
.header__link:hover {
  color: #0057FF;
}
@media (max-width: 1100px) {
  .header__link {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .header__link {
    display: none;
  }
}
.header__logo {
  display: none;
}
@media (max-width: 768px) {
  .header__logo {
    display: flex;
    width: 198px;
    height: 80.677px;
    animation: appearance 0.5s linear;
    position: relative;
    top: -56px;
  }
  @keyframes appearance {
    from {
      transform: translateY(-56px);
    }
    to {
      transform: translateY(0);
    }
  }
}
.header .burger {
  width: 40px;
  position: relative;
  transition: 0.5s all ease-in-out;
  opacity: 0;
  display: none;
  z-index: 6;
}
.header .burger__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
}
.header .burger__line_first {
  top: 0;
}
.header .burger__line_second {
  top: 50%;
  transform: translateY(-50%);
}
.header .burger__line_third {
  top: 50%;
  transform: translateY(-50%);
}
.header .burger__line_fourth {
  bottom: 0;
}
@media (max-width: 768px) {
  .header .burger {
    display: flex;
    opacity: 1;
    animation: opacity 0.5s linear;
    position: relative;
  }
  @keyframes opacity {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .header .burger--active .burger__line_first {
    opacity: 0;
  }
  .header .burger--active .burger__line_second {
    transform: translateY(-50%) rotate(45deg);
  }
  .header .burger--active .burger__line_third {
    transform: translateY(-50%) rotate(-45deg);
  }
  .header .burger--active .burger__line_fourth {
    opacity: 0;
  }
}
.header .menu {
  max-width: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transform: translateY(-30px);
  left: 0;
  top: 65px;
  padding: 0 15px;
  background: #FFFFFF;
}
.header .menu__link {
  padding: 3px 0 7px 15px;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #000;
}
.header .menu--active {
  transition: all 0.5s linear;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer__list {
  margin-top: 61px;
  padding-top: 28px;
  border-top: 1px solid #000;
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .footer__list {
    margin-top: 53px;
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .footer__list {
    margin-top: 90px;
  }
}
.footer__link {
  transition: color 0.5s ease-in-out;
}
.footer__link:hover {
  color: #0057FF;
}
.footer__logo {
  margin: 97px auto 0 auto;
}
@media (max-width: 1100px) {
  .footer__logo {
    margin-top: 80px;
    width: 561.859px;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    margin-top: 44px;
    width: 344px;
  }
}

* {
  margin: 0;
  padding: 0;
  line-height: normal;
  box-sizing: border-box;
  scrollbar-width: thin;
  font-family: inherit;
  transition: inherit;
  scroll-behavior: smooth;
  scroll-padding-top: 13rem;
}

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

*::-webkit-scrollbar {
  height: 0.3rem;
  width: 0.3rem;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #717985;
}

*::-webkit-scrollbar-thumb:vertical {
  min-height: 1.5rem;
}

*::-webkit-scrollbar-thumb:horizontal {
  min-width: 1.5rem;
}

html {
  scrollbar-width: thin;
  min-height: 100vh;
  background: #FFF;
  font-size: 16px;
  line-height: normal;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: #000;
  line-height: normal;
  font-weight: 300;
  max-width: 100%;
  width: 100%;
  position: relative;
  scrollbar-width: thin;
  min-height: 100vh;
}

input {
  padding: 0;
  margin: 0;
  border: 0;
  border: none;
  outline: none;
  resize: none;
  text-align: left;
  background: none;
  font-size: 1rem;
}

input::placeholder {
  opacity: 1;
  color: #000;
}

label {
  padding: 0;
  margin: 0;
}

button {
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
  transition: opacity 1s ease;
  display: inline-block;
  cursor: pointer;
}

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

p a {
  text-decoration: underline;
}

p span {
  text-decoration: underline;
}

a {
  text-decoration: none;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  display: inline;
  color: inherit;
}

p a {
  text-decoration: underline;
  color: inherit;
}

textarea {
  resize: none;
  scrollbar-width: thin;
}

ul {
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

input::placeholder {
  color: #000;
}

input:disabled {
  opacity: 0.4;
  pointer-events: none;
}

textarea:focus {
  outline: none;
}

pre {
  font-family: "Inter", sans-serif;
  white-space: pre-wrap;
}

.container {
  padding: 0 40px;
  margin: 0 auto;
  max-width: 1700px;
  width: 100%;
}

.page {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .page {
    margin-top: 1.75rem;
  }
}

/* elements */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  button:hover {
    opacity: 1;
  }
  a:hover {
    opacity: 1;
  }
}

/*# sourceMappingURL=all.css.map */
