/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v49-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v49-latin-regular.ttf") format("truetype");
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v49-latin-500.woff2") format("woff2"), url("../fonts/roboto-v49-latin-500.ttf") format("truetype");
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v49-latin-700.woff2") format("woff2"), url("../fonts/roboto-v49-latin-700.ttf") format("truetype");
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-condensed-v31-latin-regular.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-regular.ttf") format("truetype");
}
* {
  margin: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

input:focus-visible::placeholder {
  font-size: 0;
}

button {
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #A8A8A8;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body.no-scroll {
  overflow: hidden;
}

.h2 {
  font-family: "SF Pro Display", sans-serif;
  font-size: 40px;
  line-height: normal;
  font-weight: 900;
  color: #FFF;
}
@media (max-width: 1024px) {
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 24px;
  }
}

.h3 {
  font-family: "SF Pro Display", sans-serif;
  font-size: 36px;
  line-height: 100%;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .h3 {
    font-size: 24px;
  }
}

.h4 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #FFF;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .h4 {
    font-size: 20px;
  }
}

.h5 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #FFF;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .h5 {
    font-size: 16px;
  }
}

.container {
  width: 1384px;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.small-container {
  width: 1210px;
}

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

.header {
  position: absolute;
  padding-top: 20px;
  width: 100%;
  top: 0;
  left: 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.header__menu .menu {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.header__menu .menu .menu-item a {
  font-family: "Roboto Condensed", sans-serif;
  color: #FFFFFF;
}

.btn-primary {
  display: block;
}