body {
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.soon {
  position: relative;
}
.soon::after {
  content: "Soon";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 12px);
  background: linear-gradient(244.6deg, #766aff 20.64%, #9c84fd 94.89%);
  padding: 5.6px 11.2px 5.6px 11.2px;
  width: fit-content;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.5px;
  font-size: 10px;
  display: block;
}

.burger {
  width: 21px;
  height: 11px;
  position: relative;
  cursor: pointer;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #777e90;
  position: absolute;
  left: 0;
  transition: transform 0.3s, top 0.3s;
}

.burger-line:first-child {
  top: 0;
}

.burger-line:last-child {
  top: 10px;
}

.burger.active .burger-line:first-child {
  transform: rotate(45deg);
  top: 10px;
}

.burger.active .burger-line:last-child {
  transform: rotate(-45deg);
  top: 10px;
}

@media (min-width: 1440px) {
  .logo {
    margin-right: 40px;
    position: relative;
  }
  .logo::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    height: 100%;
    min-height: 40px;
    width: 1px;
    background: #353945;
  }
}

.separator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 20px);
}

@media (min-width: 1024px) {
  .separator {
    left: calc(100% - 60px);
  }
}

@media (max-width: 520px) {
  .slider-item {
    padding-left: 40px;
  }
}

.subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 166px;
  height: 2px;
  background: #353945;
}


footer {
  border-top: 1px solid #353945;
}

.btn-violet {
  background: linear-gradient(244.6deg, #766AFF 20.64%, #9C84FD 94.89%);
}