.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1024px;
  padding: 32px 32px 64px;
  position: relative;

  @media (max-width: 1024px) {
    padding: 32px 24px 64px;
  }

  @media (max-width: 480px) {
    padding: 32px 20px 60px;
  }
}

.page-header {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 544px;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
  margin: 0 0 64px;
}

.page-header__version {
  font-size: 18px;
  font-weight: normal;
  font-family:
    IBM Plex Mono,
    monospace;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: #ffffff;
  line-height: 27px;
  position: absolute;
  left: 32px;
  top: 26px;

  @media (max-width: 480px) {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-header__title {
  font-size: 119px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: #ffffff;
  line-height: 112px;
  position: absolute;
  left: 25px;
  top: 271px;

  @media (max-width: 1024px) {
    font-size: 59px;
    line-height: 64px;
    top: 300px;
  }

  @media (max-width: 480px) {
    font-size: 42px;
    line-height: 50px;
    top: 300px;
  }
}

.page-header__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 272px;

  @media (max-width: 1024px) {
    width: 150px;
    top: 20px;
    right: 20px;
  }

  @media (max-width: 480px) {
    width: 120px;
    top: 20px;
    right: 0px;
  }
}

.page-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.wrapper {
  width: 100%;
  height: 100%;
}

.box {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
}

.section-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  text-align: left;
  padding: 45px 32px 45px 30px;

  @media (max-width: 1024px) {
    grid-template-columns: 1fr;
  }
}

.section-overview__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-overview__text {
  font-size: 18px;
  text-decoration: none;
  text-transform: none;
  color: rgba(26, 26, 26, 1);
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
}

.section-overview__main {
  font-weight: 500;
}

/* Navigation */
.navigation {
  width: 225px;
  flex: none;
  height: 300px;
  position: sticky;
  top: 0px;
  align-self: flex-start;

  @media (max-width: 1024px) {
    display: none;
  }
}

.navigation__list {
  list-style: none;
  padding: 30px 0 0;
  margin: 0;
}

.navigation__item {
  padding: 15px 5px 14px 0;
  border-top: 1.5px solid rgba(26, 26, 26, 1);
}

.navigation__link {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: normal;
  font-family:
    IBM Plex Mono,
    monospace;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: rgba(26, 26, 26, 1);
}

/* Links */
a {
  cursor: pointer;
  text-decoration: none;
  background: none;
}

.external-link {
  font-family:
    IBM Plex Mono,
    monospace;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: rgba(26, 26, 26, 0.5);
  line-height: 27px;
}


.section-medium {
  padding: 40px 32px;
}

.section-small {
  display: grid;
  gap: 32px;

  @media (min-width: 1025px) {
    grid-template-columns: 1fr 1fr; /* ширины колонок */
    grid-template-rows: auto auto; /* две строки */
    grid-template-areas:
      "left-top right"
      "left-bottom right";
  }

  @media (max-width: 1024px) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "left-top" "left-bottom" "right";
  }
}

.section-small .left-top {
  grid-area: left-top;
}

.section-small .left-bottom {
  grid-area: left-bottom;
}

.section-small .right {
  grid-area: right;
}

.paragraph-medium {
  color: rgba(26, 26, 26, 1);
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 48px;
  text-align: left;
}

.paragraph-small {
  color: rgba(26, 26, 26, 1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 27px;
  text-align: left;
  padding: 32px 30px 40px 32px;
}

.paragraph-small__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border-width: 2px;
  border: 2px solid rgb(0, 0, 0);
  font-family:
    IBM Plex Mono,
    monospace;
  font-weight: 500;
  font-style: normal;
  color: rgb(26, 26, 26);
  font-size: 18px;
  letter-spacing: 0px;
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
}

.section-preview {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-preview--product {
  padding: 55px 0 17px;
}

.section-preview__image {
  object-fit: fill;
  opacity: 1;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 32px;

  @media (max-width: 480px) {
    padding: 32px;
  }
}

.section-header__title {
  font-size: 59px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);

  @media (max-width: 1024px) {
    font-size: 50px;
  }

  @media (max-width: 480px) {
    font-size: 38px;
  }
}

.common-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  font-family: IBM Plex Mono, monospace;
  color: rgba(26, 26, 26, 0.5);
  font-size: 18px;
  letter-spacing: 0px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 16px;
  font-weight: 700;
  padding: 7px 16px;

  @media (max-width: 1024px) {
    display: none;
  }
}

.common-button:hover {
  color: rgba(26, 26, 26, 1);
}

.common-button:hover .common-button__icon {
  opacity: 1;
}

.common-button__icon {
  width: 17px;
  height: 18px;
  background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220.00025010108947753906%200.00025010108947753906%2099.99950408935547%2099.99974822998047%22%20style%3D%22width%3A%20100%25%3B%20height%3A%20100%25%3B%22%20xml%3Aspace%3D%22preserve%22%20preserveAspectRatio%3D%22xMidYMid%20meet%22%20fill%3D%22currentColor%22%20fill-opacity%3D%221%22%3E%3Cpath%20style%3D%22%22%20d%3D%22M98.169%2C1.831c-2.441-2.441-6.433-2.441-8.874%2C0L76.574%2C14.562%20%20c-5.212-3.467-11.193-5.188-17.199-5.188c-7.996%2C0-16.095%2C3.052-22.095%2C9.155L18.53%2C37.28C7.837%2C47.961%2C6.519%2C64.478%2C14.551%2C76.6%20%20L1.831%2C89.331c-2.441%2C2.441-2.441%2C6.396%2C0%2C8.838C3.052%2C99.39%2C4.651%2C100%2C6.25%2C100c1.6%2C0%2C3.198-0.61%2C4.419-1.831l12.72-12.731%20%20c5.213%2C3.467%2C11.23%2C5.188%2C17.236%2C5.188c7.892%2C0%2C15.991-3.052%2C22.095-9.155l18.714-18.75C92.127%2C52.039%2C93.445%2C35.522%2C85.412%2C23.4%20%20l12.757-12.731C100.61%2C8.228%2C100.61%2C4.272%2C98.169%2C1.831z%20M78.088%2C40.625c0%2C5.005-1.953%2C9.717-5.492%2C13.257l-18.714%2C18.75%20%20c-3.552%2C3.54-8.355%2C5.493-13.257%2C5.493c-2.832%2C0-5.542-0.695-8.032-1.88l9.223-9.326c2.441-2.441%2C2.441-6.396%2C0-8.838%20%20c-2.338-2.441-6.293-2.441-8.734%2C0l-9.326%2C9.326c-1.196-2.478-1.88-5.188-1.88-8.032c0-5.005%2C1.953-9.717%2C5.493-13.257l18.646-18.75%20%20c3.54-3.54%2C8.355-5.493%2C13.36-5.493c2.832%2C0%2C5.529%2C0.695%2C8.02%2C1.88l-9.509%2C9.521c-2.441%2C2.441-2.441%2C6.396%2C0%2C8.838%20%20c1.221%2C1.221%2C2.819%2C1.831%2C4.419%2C1.831c1.587%2C0%2C3.186-0.61%2C4.406-1.831l9.498-9.521C77.404%2C35.07%2C78.088%2C37.781%2C78.088%2C40.625z%22/%3E%3C/svg%3E') no-repeat center;
  opacity: 0.5;
}

.section-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 45px 32px 30px;

  @media (max-width: 1024px) {
    grid-template-columns: 1fr;
  }
}

.section-text__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.section-text__number {
  background-color: rgb(26, 26, 26);
  border-radius: 16px;
  border-width: 0px;
  border-color: rgb(0, 0, 0);
  font-family: IBM Plex Mono;
  font-weight: 400;
  font-style: normal;
  color: rgb(255, 255, 255);
  font-size: 18px;
  letter-spacing: 0px;
  padding: 7px 21px;
  margin: 0 0 9px;
}

.section-text__title {
  font-size: 29px;
  line-height: 32px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}

.section-text__text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(26, 26, 26);
  line-height: 27px
}

.section-text__text p {
  padding-bottom: 15px;
}

.page-footer {
  padding: 48px 24px 40px 32px;
  margin-top: 100px;
}

.page-footer__image {
  max-height: 48px;
  object-fit: cover;
  margin-bottom: 24px;

  @media (max-width: 1024px) {
    max-width: 100%;
  }
}

.page-footer__text {
  color: rgba(26, 26, 26, 1);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 27px;
}

.page-footer__contacts {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding-top: 28px;
  margin-top: 92px;
}

.page-footer__avatars {
  position: relative;
  width: 100%;
  display: flex;
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-bottom: 24px;

  @media (max-width: 1024px) {
    flex-wrap: wrap;
  }
}

.page-footer__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: -10px;
  z-index: 0;
  width: 42px;
  height: 42px;
  transition: opacity 0.25s ease-in-out;
  border-radius: 21px;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px;
  border: 0px;
  overflow: hidden;

  @media (max-width: 1024px) {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-right: -9px;
  }
}

.page-footer__avatar  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
