/* 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, .text ul {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.sk-list > li, .text ul > li {
  position: relative;
  padding-left: 50px;
  font-weight: 300;
  margin-bottom: 15px;
}
.sk-list > li::before, .text ul > 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, .text ul > li {
    padding-left: 75px;
  }
  .sk-list > li::before, .text ul > li::before {
    width: 50px;
  }
}
.sk-list li:last-of-type, .text ul li:last-of-type {
  margin-bottom: 0;
}

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

.sk-apple-device .text__wrapper p {
  line-height: 1.3;
}
.sk-apple-device .text__wrapper p::before, .sk-apple-device .text__wrapper p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.sk-apple-device .text__wrapper p::before {
  margin-bottom: calc(-0.12em + 0px);
}
.sk-apple-device .text__wrapper p::after {
  margin-top: calc(-0.4em + 0px);
}

.text__wrapper {
  max-width: 620px;
  background: var(--sk-color-white);
  padding: 25px 15px;
  line-height: 1.28;
}
@media (min-width: 1024px) {
  .text__wrapper {
    max-width: 790px;
    padding: 50px 100px;
  }
}
.text__wrapper::before, .text__wrapper::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.text__wrapper::before {
  margin-bottom: calc(-0.2em + 0px);
}
.text__wrapper::after {
  margin-top: calc(-0.24em + 0px);
}
.text__wrapper > * {
  font-size: var(--sk-text--h5);
  line-height: var(--sk-line-height--h5);
}
.text p a:not([class]) {
  color: var(--sk-color-turquoise);
}
.text p a:not([class]) span::after {
  bottom: 2px;
}
.text p:last-child,
.text .sk-text--h5:last-child {
  margin: 0;
}
.text ul {
  margin: 0;
  font-weight: 300;
  line-height: 1.38;
}
.text ul::before, .text ul::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.text ul::before {
  margin-bottom: calc(-0.2777777778em + 0px);
}
.text ul::after {
  margin-top: calc(-0.2777777778em + 0px);
}
.text p:not(:last-child),
.text ul:not(:last-child) {
  margin-bottom: 30px;
}
