.bl {
  background-color: #171717;
}

.bl__banner {
  position: relative;
  width: 100%;
  height: 973px;
  padding-top: 200px;
}

.bl__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 90%;
  margin-top: 55px;
}

.bl__banner-logo {
  max-width: 404px;
}

.bl__banner-logo-image {
  width: 100%;
  height: auto;
  display: block;
}

.bl__banner-buttons {
  display: flex;
  gap: 33px;
}

.bl__banner-button {
  width: 187px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.bl__banner-button--buy,
.bl__banner-button--demo {
  color: white;
}

.bl__banner-button--buy:hover,
.bl__banner-button--demo:hover {
  color: rgb(142, 142, 142);
}

.bl__banner-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bl__banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl__ticker {
  position: absolute;
  bottom: -35px;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 97px;
  overflow: hidden;
  display: list-item;
  color: white;
  padding: 10px 0;
}

.bl__ticker-track {
  display: flex;
  position: absolute;
  will-change: transform;
  animation: ticker 20s linear infinite;
}

.bl__ticker-content {
  white-space: nowrap;
  padding-right: 50px;
}

.bl__banner-net-image {
  width: 100%;
}

.bl__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.bl__list-title {
  color: #ffffff;
  margin-bottom: 72px;
}

.bl__list-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1314px;
}

.bl__list-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bl__list-item:first-child {
  margin-bottom: 34px;
}

.bl__list-item-img {
  max-width: 36px;
  margin-bottom: 24px;
}

.bl__list-item-title {
  color: #ffffff;
  margin-bottom: 24px;
}

.bl__list-item-text {
  color: #ffffff;
}

.bl__tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl__tabs-content {
  position: relative;
  min-height: 531px;
  width: 100%;
  max-width: 1280px;
  background-color: #4f495866;
  margin-top: 72px;
}

.bl__tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.bl__tab-content.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
  pointer-events: auto;
  position: relative;
}

.bl__slider {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.bl__slide {
  display: flex;
  justify-content: center;
}

.bl__character {
  display: flex;
  gap: 32px;
  max-width: 1000px;
  width: 100%;
  align-items: flex-start;
  margin: 32px auto 0;
}

.bl__character-left {
  flex-shrink: 0;
}

.bl__image {
  max-width: 280px;
  border-radius: 12px;
  cursor: pointer;
}

.bl__character-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 672px;
  margin-left: auto;
}

.bl__title {
  margin: 0;
}

.bl__description {
  color: #fff;
  height: 120px;
}

.bl__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.bl__gallery-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.bl__gallery-image {
  height: auto;
  object-fit: cover;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.bl__gallery-indicators {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

.bl__gallery-tile {
  width: 29px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  -moz-transition: background 0.3s, box-shadow 0.3s;
  -ms-transition: background 0.3s, box-shadow 0.3s;
  -o-transition: background 0.3s, box-shadow 0.3s;
}

.bl__gallery-tile--active {
  background-color: #adaab1;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.bl__slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.bl__slider-button svg {
  width: 22px;
  height: 26px;
  pointer-events: none;
}

.bl__slider-button--prev {
  left: 12px;
}

.bl__slider-button--prev svg {
  transform: scaleX(-1);
}

.bl__slider-button--next {
  right: 12px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
