@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca-VariableFont_wght.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #323437;
  font-family: "Lexend Deca";
  color: #d1d0c5;
  padding-top: calc(4rem + 36px);
}

i {
  font-style: italic;
}

.block > * {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
}

.block > * {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.6875rem;
}
.block__title {
  text-align: center;
  margin-bottom: 1.6875rem;
  font-size: 2.5rem;
}

b {
  font-weight: bold;
}

.text-link, .text-copy {
  color: #646669;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
}
.text-link:hover, .text-copy:hover {
  color: #d1d0c5;
}

.text-copy::after {
  content: "Copied!";
  position: absolute;
  padding: 0.75rem;
  border-radius: 5px;
  background: #2c2e31;
  font-weight: normal;
  color: #d1d0c5;
  line-height: 1rem;
  transition: 0.3s opacity;
  top: -0.2rem;
  left: 50%;
  transform: translate3d(-50%, -100%, 0);
  opacity: 0;
}
.text-copy-successful::after {
  opacity: 1;
}
.text-copy-successful-hidden::after {
  display: none;
}

.block-header {
  background: #2c2e31;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.scroll-transition .block-header {
  transition: transform 0.3s;
}

.scroll-down .block-header {
  transform: translate3d(0, -100%, 0);
}

.scroll-up .block-header {
  transform: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  margin-right: 0.75rem;
  height: 32px;
}
.logo__text {
  font-size: 32px;
  line-height: 32px;
}

.navigation {
  display: flex;
  gap: 0.75rem;
}
.navigation__item {
  color: #646669;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}
.navigation__item:hover {
  color: #d1d0c5;
}
.navigation__item-active {
  color: #d1d0c5;
}

.links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.links__item {
  height: 20px;
  text-decoration: none;
  transition: filter 0.3s;
}
.links__item:hover {
  filter: brightness(200%);
}
.links__item-text {
  color: #646669;
  font-size: 22px;
  line-height: 20px;
  font-weight: bold;
  transform: translateY(-1px);
}
.links__img {
  height: 20px;
}

.burger-menu {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.burger-menu__item {
  width: 80%;
  height: 20%;
  background: #646669;
  border-radius: 5px;
  transition: all 0.3s;
}
.burger-menu__item:nth-child(1) {
  transform-origin: right;
}
.burger-menu__item:nth-child(2) {
  width: 100%;
}
.burger-menu__item:nth-child(3) {
  transform-origin: right;
}
.burger-menu:hover .burger-menu__item {
  background: #d1d0c5;
}

.block-open .burger-menu__item {
  width: 80%;
}
.block-open .burger-menu__item:nth-child(1) {
  transform: rotate(-45deg);
}
.block-open .burger-menu__item:nth-child(2) {
  opacity: 0;
}
.block-open .burger-menu__item:nth-child(3) {
  transform: rotate(45deg);
}

.block-footer {
  background: #2c2e31;
}

.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.footer__link {
  text-decoration: none;
  color: #646669;
  transition: color 0.3s;
}
.footer__link:hover {
  color: #d1d0c5;
}

@media only screen and (max-width: calc(1080px + 4rem)) {
  html {
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 750px) {
  .burger-menu {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  html {
    font-size: 12px;
  }
  body {
    padding-top: calc(4rem + 24px);
  }
  .logo__img {
    margin-right: 0.75rem;
    height: 24px;
  }
  .logo__text {
    font-size: 24px;
    line-height: 24px;
  }
  .navigation {
    position: absolute;
    display: flex;
    width: 100%;
    flex-direction: column;
    background: #2c2e31;
    padding: 0 2rem;
    padding: 0 2rem;
    bottom: 0;
    left: 0;
    gap: 0;
    background: #2c2e31;
    transform: translate3d(0, 99%, 0);
    transition: padding 0.3s, gap 0.3s;
    overflow: hidden;
  }
  .navigation__item {
    overflow: hidden;
    transition: height 0.3s;
    height: 0;
  }
  .block-open .navigation {
    padding: 0 2rem 2rem 2rem;
  }
  .block-open .navigation__item {
    height: 32px;
  }
}/*# sourceMappingURL=global.css.map */