.my-slider {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 15%,
    var(--theme) 20%,
    var(--theme) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-slider:nth-child(1) {
  background-color: transparent;
}

.my-slider__body {
  position: relative;
}

.my-slider__image {
  width: 480px;
}

.my-slider__description {
  position: absolute;
  top: 50%;
  width: 320px;
  text-align: left;

  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.my-slider__description-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 590;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.my-slider__description--right {
  right: -60%;
}

.my-slider__description--left {
  left: -60%;
}

@media screen and (max-width: 479px) {
  .my-slider__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .my-slider__image {
    width: 80%;
  }

  .my-slider__description {
    position: static;

    color: var(--white);
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    min-height: 150px;
  }

  .my-slider__description-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 590;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.5;
  }
}

.get-started {
  width: 140px;
  font-size: 20px;
  line-height: 57px;
  color: white;
  background: black;
  border-radius: 12px;
  display: block;
  font-weight: normal;
}

@media screen and (min-width: 479px) {
  .get-started {
    width: 186px;
    font-size: 24px;
    line-height: 69px;
  }
}

.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 479px) {
  .hide-on-mobile {
    display: block;
  }
}

.hide-on-desktop {
  display: block;
}

@media screen and (min-width: 479px) {
  .hide-on-desktop {
    display: none;
  }
}
