body {
  font-family: var(--font-family-400);
  background-color: #ffffff;
}
h1,
h2 {
  font-family: var(--font-family-600);
}
.item__link {
  display: inline;
  border-radius: 16px;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 64px;
}
.logo {
  display: flex;
  align-items: center;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  cursor: pointer;
}

.button-disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media screen and (max-width: 1440px) {
  body {
    width: 1440px;
  }
}
