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

/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.content-with-background {
  margin-bottom: clamp(30px, 22.3529411765px + 0.0196078431 * 100vw, 60px);
}
@media (max-width: 768px) {
  .content-with-background .sk-container {
    padding: 0;
  }
  .content-with-background .sk-container .title-wrapper {
    padding: 0 var(--sk-container-padding);
  }
  .content-with-background .sk-container .title-wrapper .lines {
    left: 5px;
  }
}
.content-with-background .content-wrapper {
  position: relative;
  background: var(--bg);
  padding: clamp(30px, 24.9019607843px + 0.0130718954 * 100vw, 50px) clamp(10px, -16.7647058824px + 0.068627451 * 100vw, 115px);
}
@media (max-width: 768px) {
  .content-with-background .content-wrapper {
    padding: clamp(30px, 27.4509803922px + 0.0065359477 * 100vw, 40px) clamp(10px, 2.3529411765px + 0.0196078431 * 100vw, 40px);
  }
}
.content-with-background .content-wrapper .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.content-with-background .content-wrapper .background picture {
  width: inherit;
  height: inherit;
}
.content-with-background .content-wrapper .background picture img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.content-with-background .content-wrapper .inside {
  position: relative;
  z-index: 1;
}
.content-with-background .content-wrapper .svg-logo {
  margin-bottom: clamp(10px, 7.4509803922px + 0.0065359477 * 100vw, 20px);
  height: clamp(23px, 20.1960784314px + 0.0071895425 * 100vw, 34px);
  width: auto;
}
.content-with-background .content-wrapper .sub-title {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(10px, 7.4509803922px + 0.0065359477 * 100vw, 20px);
}
.content-with-background .content-wrapper .sub-title img {
  display: block;
}
.content-with-background .content-wrapper .sub-title span {
  font-size: clamp(16px, 14.9803921569px + 0.0026143791 * 100vw, 20px);
  font-family: var(--font-primary);
}
.content-with-background .content-wrapper .title {
  margin-bottom: clamp(20px, 14.9019607843px + 0.0130718954 * 100vw, 40px);
  font-size: clamp(20px, 15.9215686275px + 0.0104575163 * 100vw, 36px);
  font-weight: 600;
  line-height: normal;
  font-family: var(--font-secondary);
}
