/* 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;
}

/* stylelint-disable */
.sk-list {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.sk-list > li {
  position: relative;
  padding-left: 50px;
  font-weight: 300;
  margin-bottom: 15px;
}
.sk-list > li::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: var(--sk-color-turquoise);
  position: absolute;
  top: 10px;
  left: 0;
}
@media (min-width: 768px) {
  .sk-list > li {
    padding-left: 75px;
  }
  .sk-list > li::before {
    width: 50px;
  }
}
.sk-list li:last-of-type {
  margin-bottom: 0;
}

ol {
  list-style-position: inside;
  padding: 0;
}

.sk-apple-device .subtitle h2.subtitle__title {
  line-height: 2;
}

.subtitle {
  position: relative;
  z-index: 1;
}
.subtitle__wrapper {
  max-width: 620px;
  background: var(--sk-color-white);
  padding: 25px 15px 0 15px;
}
@media (min-width: 1024px) {
  .subtitle__wrapper {
    max-width: 790px;
    padding: 50px 100px 0 100px;
  }
}
.subtitle__title-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .subtitle__title-wrapper {
    font-size: 30px;
  }
  .subtitle__title-wrapper::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background: var(--sk-color-grey);
    left: -100px;
    top: 50%;
  }
  .subtitle__title-wrapper::after {
    position: absolute;
    content: "";
    width: 50vw;
    height: 1px;
    background: var(--sk-color-white);
    left: calc((100vw - 100%) / 2 * -1);
    top: 50%;
    z-index: -1;
  }
}
.subtitle h2.subtitle__title {
  color: var(--sk-color-turquoise);
  position: relative;
  font-size: 30px;
  margin-bottom: 0;
}
