/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-sxl: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

.steps {
  overflow: hidden;
}
.steps .sk-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 100px;
}
@media (min-width: 1024px) {
  .steps .sk-container {
    padding-top: 195px;
  }
}
.steps .sk-container::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--sk-color-grey);
  top: 0;
  right: 150px;
  z-index: -1;
  display: none;
}
@media (min-width: 1024px) {
  .steps .sk-container::after {
    display: block;
    right: 100px;
  }
}
@media (min-width: 1280px) {
  .steps .sk-container::after {
    right: 180px;
  }
}
.steps__title {
  text-align: center;
  color: var(--sk-color-salmon);
}
@media (min-width: 1024px) {
  .steps__title {
    position: absolute;
    top: 60%;
    right: 85px;
    width: -moz-fit-content;
    width: fit-content;
    transform: rotate(90deg);
    transform-origin: right;
  }
}
@media (min-width: 1280px) {
  .steps__title {
    right: 165px;
  }
}
.steps__image {
  margin: 30px auto 50px;
  max-width: 225px;
  max-height: 263px;
}
@media (min-width: 1024px) {
  .steps__image {
    position: absolute;
    left: 10px;
    top: 158px;
    max-width: 150px;
  }
}
@media (min-width: 1280px) {
  .steps__image {
    left: 80px;
    max-width: 225px;
  }
}
@media (min-width: 1440px) {
  .steps__image {
    left: 179px;
  }
}
.steps__links {
  max-width: 590px;
  margin: 0 auto 73px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (min-width: 512px) {
  .steps__links {
    justify-content: space-between;
  }
}
.steps__links a {
  width: 100%;
  margin: 0 0 25px;
  display: inline-block;
}
@media (min-width: 512px) {
  .steps__links a {
    width: 46%;
    max-width: 285px;
  }
}
@media (min-width: 768px) {
  .steps__links a {
    width: 50%;
    max-width: 285px;
  }
}
.steps__bottom {
  max-width: 590px;
  margin: 0 auto;
}
.steps__content {
  font-family: var(--sk-font-primary);
  font-style: normal;
  font-size: var(--sk-text--h5);
  line-height: var(--sk-line-height--h5);
  color: var(--sk-color-brown);
  font-weight: 300;
  padding-bottom: 12px;
}
