@media (min-width: 576px) and (max-width: 639px) {
  #slider .content {
    min-height: 950px;
  }
}
@media (min-width: 640px) and (max-width: 700px) {
  #slider .content {
    min-height: 1100px;
  }
}
@media (min-width: 701px) and (max-width: 1170px) {
  #slider .content {
    min-height: 1000px;
  }
}
@media (min-width: 1171px) and (max-width: 1250px) {
  #slider .content {
    min-height: 980px;
  }
}

.section.ticker {
  padding: 20px;
}

.subtitle {
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  font-weight: 500;
  text-align: center;
  color: var(--subtitle-color);
  opacity: 0.8;
}

.logo {
  height: 100%;
}

.ticker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: var(--bg-color);
}

.ticker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(270deg, #010314 0%, rgba(1, 3, 20, 0) 100%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  z-index: 3;
}

@media screen and (min-width: 768px) and (max-width: 1239.98px) {
  .ticker::before {
    width: 200px;
  }
}
@media screen and (max-width: 767.98px) {
  .ticker::before {
    width: 100px;
  }
}
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(270deg, #010314 0%, rgba(1, 3, 20, 0) 100%);
  z-index: 3;
}

@media screen and (min-width: 768px) and (max-width: 1239.98px) {
  .ticker::after {
    width: 200px;
  }
}
@media screen and (max-width: 767.98px) {
  .ticker::after {
    width: 100px;
  }
}
.ticker__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ticker__wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.ticker__content {
  flex: 0 0 auto;
  min-width: 100%;
  height: 35px;
  display: flex;
  animation: ticker 30s linear infinite;
}

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

/*# sourceMappingURL=custom.css.map */
