.logotype {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.logotype a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: var(--bg-secondary);
  padding: 4rem;
  border-radius: 32px;
}

.hero__content h2 {
  color: var(--text-primary);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.hero__image {
  max-width: 420px;
}

@media(max-width: 991px) {
  .hero__content {
    flex-wrap: wrap;
    padding: 2rem;
    text-align: center;
  }

  .hero__text {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
  }
}

.exchanges__item {
  cursor: pointer;
}

.exchanges__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-align: left;
}

.exchanges__title img {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: contain;
}

.exchanges__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.exchanges__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: #ffffff;
  border: 1px solid var(--border-color);
  gap: .5rem;
  padding: 10px 20px;
  font-size: 1.4rem;
  FONT-WEIGHT: 600;
  border-radius: 16px;
  flex: 1;
  max-width: 200px;
  transition: 0.2s;
}

.exchanges__tab:hover,
.exchanges__tab.active {
  cursor: pointer;
  border-color: #9691af;
}

.exchanges__tab img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.graph-block {
  height: 400px;
}

.features__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.features__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 32px;
  min-width: 40%;
  flex: 1;
}

.features__item img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

@media(max-width: 991px) {
  .features__item {
    width: 100%;
    flex: auto;
  }
}

#formGroup {
  text-align: center;
}