@import url(https://fonts.googleapis.com/css?family=Libre+Franklin:500&display=swap);
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

html,
body {
  line-height: 1;
  height: 100%;
}

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

button,
select {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff") format("woff"), url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
body {
  color: #FFF;
  font-family: "Satoshi";
  font-weight: 400;
  line-height: normal;
}
body.no-scroll {
  overflow: hidden;
}

.main {
  background: #040707;
  overflow: hidden;
}

[class$=__container] {
  width: 1412px;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  [class$=__container] {
    padding-left: 22px;
    padding-right: 22px;
  }
}

html::-webkit-scrollbar {
  display: none;
}

/* ::-webkit-scrollbar {
    width: 3px; 
    height: 1px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px; 
}

::-moz-scrollbar {
    width: 3px;
    height: 1px;
}

::-moz-scrollbar-track {
    background: #f1f1f1;
}

::-moz-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-ms-scrollbar {
    width: 3px;
    height: 1px;
}

::-ms-scrollbar-track {
    background: #f1f1f1;
}

::-ms-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
} */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header__container {
  width: 100%;
  max-width: 100%;
  padding: 16px 25px;
  margin: 0 auto;
  z-index: 1;
}

.box-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-header__button-header {
  padding: 12px 32px;
  border-radius: 6px;
  background: #DF2D2D;
  color: #FFF;
  text-align: center;
  font-family: "Satoshi";
  font-weight: 500;
  line-height: 1.5;
  z-index: 50;
}
@media (max-width: 576px) {
  .box-header__button-header {
    display: none;
  }
}
.box-header__button-header:hover {
  background: #BE0000;
  color: beige;
}
.box-header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.logo-header {
  width: auto;
  height: 50px;
}

.menu-header {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .menu-header {
    position: fixed;
    top: -120%;
    left: 0;
    background-color: brown;
    padding: 140px 20px;
    height: 100vh;
    width: 100%;
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .menu-header.active {
    top: 0;
  }
}
.menu-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .menu-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.custom-logo-link {
  position: relative;
  width: 100%;
  height: 50px;
  z-index: 50;
}

.custom-logo {
  width: 100%;
  height: 50px;
}

.menu-item {
  font-size: 18px;
}
@media (max-width: 992px) {
  .menu-item {
    font-size: 28px;
  }
}

.menu-item:hover a {
  color: beige;
  text-decoration: underline;
}

.box-header__burger {
  position: relative;
  z-index: 50;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  display: none;
  -webkit-transition: 0.3s 0.2s;
  transition: 0.3s 0.2s;
}
@media (max-width: 992px) {
  .box-header__burger {
    display: block;
  }
}
.box-header__burger span {
  height: 2px;
  width: 20px;
  position: absolute;
  display: block;
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.box-header__burger span:first-child {
  top: 6px;
}
.box-header__burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.box-header__burger span:last-child {
  top: calc(100% - 8px);
}
.box-header__burger.active {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.box-header__burger.active span:first-child {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  top: calc(50% - 1px);
}
.box-header__burger.active span:last-child {
  top: calc(50% - 1px);
}

.footer {
  padding: 32px 0;
  background: rgb(4, 7, 7);
}
.footer__container {
  width: 1412px;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 992px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.wrapper-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .wrapper-footer {
    width: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.wrapper-footer__logo {
  width: auto;
  height: 50px;
}
@media (max-width: 992px) {
  .wrapper-footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.custom-logo-link {
  width: 100%;
  height: 50px;
}

.custom-logo {
  width: 100%;
  height: 50px;
}

.wrapper-footer__info-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .wrapper-footer__info-block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper-footer__info-block {
    font-size: 16px;
  }
}

.info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
.info-list__item:first-child {
  font-weight: 700;
}
.info-list__item {
  color: #FFF;
  font-family: "Satoshi";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .info-list__item {
    font-size: 16px;
  }
}
.info-list__item:not(:first-child):hover {
  color: beige;
}

.wrapper-footer__contacts h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .wrapper-footer__contacts h3 {
    font-size: 16px;
  }
}

.contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
.contacts-list__item {
  color: #FFF;
  font-family: "Satoshi";
  font-weight: 500;
  line-height: 1.5;
  font-size: 18px;
}
@media (max-width: 768px) {
  .contacts-list__item {
    font-size: 16px;
  }
}
.contacts-list__item:not(:first-child):hover {
  color: beige;
}
.contacts-list__item:first-child {
  font-weight: 700;
}
.contacts-list__item:nth-child(3) {
  margin-bottom: 12px;
}
.contacts-list__email-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.contacts-list__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.email:hover {
  color: beige;
}

.menu-item a {
  font-size: 18px;
}
@media (max-width: 768px) {
  .menu-item a {
    font-size: 16px;
  }
}

.not-found .error {
  width: 100%;
}
.not-found .error__content {
  width: 100%;
  max-width: 1440px;
  height: 100vh;
  padding: 96px 64px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .not-found .error__content {
    padding: 72px 42px;
  }
}
@media (max-width: 375px) {
  .not-found .error__content {
    padding: 48px 20px;
    height: auto;
  }
}
.not-found .error__title {
  color: #F60000;
  font-family: "Satoshi";
  font-size: 320px;
  font-weight: 300;
  line-height: 0.75;
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .not-found .error__title {
    font-size: 250px;
  }
}
@media (max-width: 375px) {
  .not-found .error__title {
    font-size: 200px;
    line-height: 0.8;
  }
}
.not-found .error__text {
  color: #FFF;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .not-found .error__text {
    font-size: 22px;
    line-height: 1.5;
  }
}
@media (max-width: 375px) {
  .not-found .error__text {
    font-size: 20px;
    line-height: 1.6;
  }
}
.not-found .error__link {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  padding: 16px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background: #F60000;
  text-align: center;
  font-family: "Satoshi";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}
.not-found .error__link:hover {
  background: #b11818;
}

html {
  position: relative;
}