:root {
  --content-font: 15px;
  --container-padding: 50px;
}
@media screen and (max-width: 1024px) {
  :root {
    --content-font: 14px;
    --container-padding: 1.5rem;
  }
}
@media screen and (max-width: 428px) {
  :root {
    --container-padding: 1rem;
  }
}
/*
	https://paletton.com/
	Для главного цвета (@color__primary) и основного вспомогательного цвета (@color__secondary) определяем оттенки:

	@color__{type}    -- основной оттенок
	@color__{type}-l1 -- посветлее
	@color__{type}-l2 -- совсем светлый
	@color__{type}-d1 -- потемнее
	@color__{type}-d2 -- совсем темный
*/
/* Main Primary color */
/* Main Primary color */
:root {
  --ue: 1rem;
  --ue-strong: var(--ue);
  --ue-weak: var(--ue);
}
@media screen and (max-width: 1280px) {
  :root {
    --ue-strong: calc(var(--ue) * 0.8);
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --ue-strong: calc(var(--ue) * 0.6);
    --ue-weak: calc(var(--ue) * 0.8);
  }
}
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.radius-inner {
  border-radius: calc(0 - (0 * 0));
}
h1,
.h1 {
  margin: 0;
  margin-bottom: calc(var(--ue-strong) * 3);
  text-transform: none;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
  position: relative;
}
@media screen and (max-width: 1280px) {
  h1,
  .h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 428px) {
  h1,
  .h1 {
    font-size: 1.8rem;
  }
}
h2,
.h2 {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    margin-bottom: 0.9rem;
  }
}
@media screen and (max-width: 428px) {
  h2,
  .h2 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
  }
}
h3,
.h3 {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.5rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    margin-bottom: 0.85rem;
  }
}
@media screen and (max-width: 428px) {
  h3,
  .h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 428px) {
  h3,
  .h3 {
    margin-bottom: 0.65rem;
  }
}
.--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.--disabled * {
  filter: grayscale(1);
}
.button-height {
  height: 2.25rem;
  line-height: initial;
}
.button-height-tall {
  height: 2.8rem;
  line-height: initial;
}
.button-nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.button {
  height: 2.25rem;
  line-height: initial;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: #182033;
  border: 0;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  padding: 0 1em;
  cursor: pointer;
  position: relative;
  gap: 0.5em;
}
.button:hover,
.button:focus {
  background-color: #080a10;
}
.button .icon {
  color: #fff;
  margin: 0;
}
.button .button__dots {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button .button__dots span {
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 0.1em;
  opacity: 0;
}
.button .button__dots span:nth-child(2) {
  animation-delay: 0.25s;
}
.button .button__dots span:nth-child(3) {
  animation-delay: 0.5s;
}
.button.--active {
  pointer-events: none;
}
.button.--active .button__icon,
.button.--active .button__text {
  visibility: hidden;
}
.button.--active .button__dots {
  display: flex;
}
.button.--tall {
  height: 2.8rem;
  line-height: initial;
}
.button.--secondary {
  background-color: #D71717;
}
.button.--secondary:hover,
.button.--secondary:focus {
  background-color: #c01515;
}
.button.--light {
  color: black;
  background-color: #ecedf0;
}
.button.--light:hover,
.button.--light:focus {
  background-color: #dde0e5;
}
.button.--light .icon {
  color: black;
}
.button-border {
  height: 2.25rem;
  line-height: initial;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 3px solid #070D1C;
  border-color: #7E879D;
  border-radius: 0;
  color: #182033;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition-property: color, border-color;
  transition-duration: 0.3s;
  padding: 0 1em;
  cursor: pointer;
  position: relative;
}
.button-border:hover,
.button-border:focus {
  border-color: #182033;
}
.link-mixin {
  transition: 0.3s;
  text-decoration: none;
}
.link-mixin:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em solid #182033;
}
.link:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link:hover {
  border-bottom-color: transparent;
}
.link-colored {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0;
}
.link-colored:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-colored:hover {
  color: #080a10;
}
.link-dashed {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em dashed #182033;
}
.link-dashed:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-dashed:hover {
  border-bottom-style: solid;
}
.link-underline {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em solid #182033;
}
.link-underline:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-underline:hover {
  color: #080a10;
  border-bottom-color: #080a10;
}
.link-shy {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom-color: transparent;
}
.link-shy:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-shy:hover {
  border-bottom-color: #182033;
  color: #182033;
}
.link-shy-colored {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: 0;
}
.link-shy-colored:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-shy-colored:hover {
  color: #182033;
}
.link-blind {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
.link-blind:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-blind:hover {
  border-bottom: none;
}
.link-title {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom-color: transparent;
  font-weight: 600;
  line-height: normal;
  border-bottom: 0.1em solid transparent;
}
.link-title:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-title:hover {
  border-bottom-color: #182033;
  color: #182033;
}
.link-title:hover {
  color: #182033;
  border-bottom-color: #182033;
}
.link-title:not([href]):hover {
  color: inherit;
  border-bottom: 0.1em solid transparent;
}
.link-title-dashed {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom-color: transparent;
  font-weight: 600;
  line-height: normal;
  border-bottom: 0.1em solid transparent;
  border-bottom-style: dashed;
}
.link-title-dashed:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-title-dashed:hover {
  border-bottom-color: #182033;
  color: #182033;
}
.link-title-dashed:hover {
  color: #182033;
  border-bottom-color: #182033;
}
.link-title-dashed:not([href]):hover {
  color: inherit;
  border-bottom: 0.1em solid transparent;
}
.link-icon {
  color: inherit;
  border-bottom: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  color: #182033;
}
.link-icon:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-icon:hover {
  border-bottom: none;
}
.link-icon:hover {
  color: #080a10;
  transition: 0.3s;
}
.link-icon:hover .icon {
  transition: 0.3s;
  color: #080a10;
}
.link-icon span {
  margin-left: 5px;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
.link-icon span:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-icon span:hover {
  border-bottom: none;
}
.link-icon .icon {
  position: relative;
  top: 0px;
  margin: 0 0px;
  color: #182033;
}
.link-icon-red {
  color: inherit;
  border-bottom: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  color: #E81010;
}
.link-icon-red:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-icon-red:hover {
  border-bottom: none;
}
.link-icon-red:hover {
  color: #b80d0d;
  transition: 0.3s;
}
.link-icon-red:hover .icon {
  transition: 0.3s;
  color: #b80d0d;
}
.link-icon-red span {
  margin-left: 5px;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
.link-icon-red span:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-icon-red span:hover {
  border-bottom: none;
}
.link-icon-red .icon {
  position: relative;
  top: 0px;
  margin: 0 0px;
  color: #E81010;
}
.text-small {
  font-size: max(12px, calc(var(--content-font) * 0.85)) !important;
}
.text-large {
  font-size: calc(var(--content-font) * 1.2) !important;
}
.text-bold {
  font-weight: 700 !important;
}
.text-semibold {
  font-weight: 600 !important;
}
.text-normal {
  font-weight: 500 !important;
}
.text-main {
  color: #182033 !important;
}
.text-alt {
  color: #D71717 !important;
}
.text-pale {
  color: #777 !important;
}
.ratio-24-1 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 2.4/1;
}
.ratio-18-9 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 18/9;
}
.ratio-16-9 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 16/9;
}
.ratio-4-3 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 4/3;
}
.ratio-3-2 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 3/2;
}
.ratio-1-1 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 1/1;
}
.ratio-a4 {
  box-sizing: content-box;
  position: relative;
  aspect-ratio: 210/297;
}
.ratio-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.counter {
  display: inline-block;
  border-radius: 1em;
  height: 1.5em;
  line-height: 1.5em;
  padding: 0 0.5em;
  min-width: 1.5em;
  background-color: #182033;
  color: white;
  font-size: max(12px, calc(var(--content-font) * 0.85));
  flex: 0 0 auto;
}
.shield {
  display: inline-block;
  border-radius: 0;
  height: 1.8em;
  line-height: 1.8em;
  padding: 0 0.5em;
  background-color: #182033;
  color: white;
  flex: 0 0 auto;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}
.nowrap {
  white-space: nowrap;
}
.hidden {
  display: none !important;
}
.link-template {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0;
}
.link-template:hover {
  transition: 0.3s;
  text-decoration: none;
}
.link-template:hover {
  color: #D71717;
}
.icon-contact {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.icon-contact svg {
  width: 1.5em;
  height: 1.5em;
  flex: 0 0 auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
}
* {
  min-height: 0;
  min-width: 0;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: 1.15;
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol {
  padding: 0;
  margin: 0;
}
input,
textarea,
button,
select {
  transition: border-color 0.3s;
}
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
}
img {
  vertical-align: top;
  max-width: 100%;
}
*::selection {
  background: #182033;
  color: #fff;
}
body {
  height: 100%;
}
html {
  overflow-y: scroll;
  background-color: white;
  color: #000;
  font-family: 'Golos Text', Arial, Helvetica, sans-serif;
  font-size: var(--content-font);
  font-weight: 500;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 0.5;
  font-size: inherit;
}
button {
  padding: 0;
}
small {
  font-size: smaller;
}
.is-picture {
  image-rendering: -webkit-optimize-contrast;
}
.ymaps-2-1-79-balloon__content {
  font-family: 'Golos Text', Arial, Helvetica, sans-serif !important;
}
.custom-select-open .custom-select {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-select-open .custom-select-items {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-select-open .custom-select-scroll li:last-child {
  border-bottom-left-radius: calc(0 - (0.3 * 0));
  border-bottom-right-radius: calc(0 - (0.3 * 0));
}
.growl .growl-message {
  font-size: max(12px, calc(var(--content-font) * 0.85));
}
.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.slick-disabled * {
  filter: grayscale(1);
}
.grid-basic {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
}
@media screen and (max-width: 428px) {
  .grid-basic {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .grid-basic.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.grid-basic.--grid-equal {
  gap: var(--ue-weak);
}
.content .m-grid {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media screen and (max-width: 428px) {
  .content .m-grid {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid.--grid-equal {
  gap: var(--ue-weak);
}
.content .m-grid.--grid-catalog {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.content .m-grid-1 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-1 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-1.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-1.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-1 .content .m-grid-1 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-2 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-2 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-2.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-2.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-2 .content .m-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-3 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-3 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-3.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-3.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-3 .content .m-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-4 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-4 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-4.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-4.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-4 .content .m-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-5 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-5 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-5.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-5.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-5 .content .m-grid-5 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-6 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-6 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-6.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-6.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-6 .content .m-grid-6 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-7 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(7, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-7 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-7.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-7.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-7 .content .m-grid-7 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-8 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-8 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-8.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-8.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-8 .content .m-grid-8 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-9 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(9, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-9 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-9.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-9.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-9 .content .m-grid-9 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-10 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(10, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-10 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-10.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-10.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-10 .content .m-grid-10 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-11 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(11, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-11 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-11.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-11.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-11 .content .m-grid-11 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.content .m-grid-12 {
  display: grid;
  row-gap: calc(var(--ue-weak) * 2);
  column-gap: var(--ue-weak);
  grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 428px) {
  .content .m-grid-12 {
    row-gap: calc(var(--ue-weak) * 1.5);
  }
  .content .m-grid-12.--grid-catalog {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.content .m-grid-12.--grid-equal {
  gap: var(--ue-weak);
}
@container content (max-width: 1179px) {
  .content .m-grid-12 .content .m-grid-12 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.strip-vertical-margins > *:first-child {
  margin-top: 0;
}
.strip-vertical-margins > *:first-child > *:first-child {
  margin-top: 0;
}
.strip-vertical-margins > *:first-child > *:first-child > *:first-child {
  margin-top: 0;
}
.strip-vertical-margins > *:last-child {
  margin-bottom: 0;
}
.strip-vertical-margins > *:last-child > *:last-child {
  margin-bottom: 0;
}
.strip-vertical-margins > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}
.content {
  container: content / inline-size;
  line-height: 1.4;
  font-size: var(--content-font);
}
.content h1 {
  margin: 0;
  margin-bottom: calc(var(--ue-strong) * 3);
  text-transform: none;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .content h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .content h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 428px) {
  .content h1 {
    font-size: 1.8rem;
  }
}
.content .table__wrap {
  width: 100%;
  overflow: auto;
  margin: calc(1rem + (1rem / 3) * 2) 0;
}
.wysiwyg h1 {
  margin-bottom: calc(var(--ue-strong) * 1.3);
}
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: 500;
  line-height: 1.3;
}
.wysiwyg h2 {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  .wysiwyg h2 {
    margin-bottom: 0.9rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg h2 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
  }
}
.wysiwyg h3 {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.5rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  .wysiwyg h3 {
    margin-bottom: 0.85rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg h3 {
    margin-bottom: 0.65rem;
  }
}
.wysiwyg p,
.wysiwyg .pi {
  margin: 1rem 0;
}
.wysiwyg .pi-block-half {
  margin: calc(1rem + (1rem / 3)) 0;
}
.wysiwyg .pi-block-full {
  margin: calc(1rem + (1rem / 3) * 2) 0;
}
.wysiwyg ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 1rem 0;
}
.wysiwyg ul li {
  position: relative;
  padding-left: 1.8rem;
}
.wysiwyg ul li:before {
  content: "—";
  font-size: calc(var(--content-font) * 1.2);
  font-weight: 500;
  position: absolute;
  display: block;
  top: 0.1rem;
  left: 0;
  color: #182033;
  line-height: 1;
}
.wysiwyg ol {
  list-style: none;
  margin: 1rem 0;
  counter-reset: listCounter;
}
.wysiwyg ol li {
  position: relative;
  padding-left: 1.8rem;
}
.wysiwyg ol li:before {
  counter-increment: listCounter;
  content: counter(listCounter);
  position: absolute;
  left: 0;
  top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 1;
  color: white;
  background-color: #182033;
  border-radius: 50%;
}
body.firefox .wysiwyg ol li:before {
  top: 3px;
}
.wysiwyg .ck-list-margin li {
  margin: 1rem 0;
}
.wysiwyg ol.ck-list-margin li:before {
  top: 1px;
  width: 1.4rem;
  height: 1.4rem;
  font-size: max(12px, calc(var(--content-font) * 0.85));
}
.wysiwyg table {
  border-collapse: collapse;
}
.wysiwyg a {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em solid #182033;
}
.wysiwyg a:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a:hover {
  border-bottom-color: transparent;
}
.wysiwyg a.link-dashed {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em dashed #182033;
}
.wysiwyg a.link-dashed:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a.link-dashed:hover {
  border-bottom-style: solid;
}
.wysiwyg a.link-underline {
  transition: 0.3s;
  text-decoration: none;
  color: #182033;
  border-bottom: 0.1em solid #182033;
}
.wysiwyg a.link-underline:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a.link-underline:hover {
  color: #080a10;
  border-bottom-color: #080a10;
}
.wysiwyg a.link-shy {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom-color: transparent;
}
.wysiwyg a.link-shy:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a.link-shy:hover {
  border-bottom-color: #182033;
  color: #182033;
}
.wysiwyg a.link-shy-colored {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: 0;
}
.wysiwyg a.link-shy-colored:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a.link-shy-colored:hover {
  color: #182033;
}
.wysiwyg a.link-blind {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
.wysiwyg a.link-blind:hover {
  transition: 0.3s;
  text-decoration: none;
}
.wysiwyg a.link-blind:hover {
  border-bottom: none;
}
.wysiwyg a.button {
  height: 2.25rem;
  line-height: initial;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: #182033;
  border: 0;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  padding: 0 1em;
  cursor: pointer;
  position: relative;
  gap: 0.5em;
}
.wysiwyg a.button:hover,
.wysiwyg a.button:focus {
  background-color: #080a10;
}
.wysiwyg a.button .icon {
  color: #fff;
  margin: 0;
}
.wysiwyg a.button .button__dots {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wysiwyg a.button .button__dots span {
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 0.1em;
  opacity: 0;
}
.wysiwyg a.button .button__dots span:nth-child(2) {
  animation-delay: 0.25s;
}
.wysiwyg a.button .button__dots span:nth-child(3) {
  animation-delay: 0.5s;
}
.wysiwyg a.button.--active {
  pointer-events: none;
}
.wysiwyg a.button.--active .button__icon,
.wysiwyg a.button.--active .button__text {
  visibility: hidden;
}
.wysiwyg a.button.--active .button__dots {
  display: flex;
}
.wysiwyg a.button.--tall {
  height: 2.8rem;
  line-height: initial;
}
.wysiwyg a.button.--secondary {
  background-color: #D71717;
}
.wysiwyg a.button.--secondary:hover,
.wysiwyg a.button.--secondary:focus {
  background-color: #c01515;
}
.wysiwyg a.button.--light {
  color: black;
  background-color: #ecedf0;
}
.wysiwyg a.button.--light:hover,
.wysiwyg a.button.--light:focus {
  background-color: #dde0e5;
}
.wysiwyg a.button.--light .icon {
  color: black;
}
.wysiwyg .ck-float-p {
  margin: 0;
}
.wysiwyg .ck-float-p + p {
  margin-top: 0;
}
.wysiwyg img.--height-auto {
  height: auto !important;
}
.wysiwyg .ck-image {
  float: none;
  margin: calc(1rem / 3) 1rem calc(1rem / 3) 0;
  padding: 3px;
  max-width: 100%;
  border: 3px solid #070D1C;
  border-radius: 0;
  background: none;
  clear: both;
}
.wysiwyg .ck-image:last-of-type {
  margin-right: 0;
}
.wysiwyg .ck-image-left {
  float: left;
  margin: 0.3em calc(1rem + (1rem / 3) * 2) calc(1rem + (1rem / 3)) 0 !important;
}
.wysiwyg .ck-image-right {
  float: right;
  margin: 0.3em 0 calc(1rem + (1rem / 3)) calc(1rem + (1rem / 3) * 2) !important;
}
.wysiwyg .ck-image.--width-100 {
  width: 100% !important;
  height: auto !important;
}
.wysiwyg .ck-image.--borderless {
  border: 0;
  padding: 0;
}
.wysiwyg .ck-image-left.mb-none,
.wysiwyg .ck-image-right.mb-none {
  margin-bottom: 0 !important;
}
.wysiwyg .ck-image-left.resize,
.wysiwyg .ck-image-right.resize {
  margin-bottom: 1.5rem !important;
}
.wysiwyg .ck-table-user th {
  padding: 10px 10px;
  border: 1px solid #070D1C;
  background: #ecedf0;
}
.wysiwyg .ck-table-user td {
  padding: 5px 10px;
  border: 1px solid #070D1C;
}
.wysiwyg .ck-table-invisible {
  border: none;
  border-collapse: collapse;
}
.wysiwyg .ck-table-invisible td,
.wysiwyg .ck-table-invisible th {
  padding: 0;
  border: none;
  background: none;
}
.wysiwyg .ck-hidden {
  display: none;
}
.wysiwyg .ck-youtube {
  margin: calc(1rem + (1rem / 3) * 2) 0;
}
.wysiwyg {
  --ck-blocks-gap: calc(var(--ue-strong) * 2);
  --ck-blocks-bg: #ecedf0;
}
@media screen and (max-width: 428px) {
  .wysiwyg {
    --ck-blocks-gap: 1rem;
  }
}
.wysiwyg *[class^="ratio-"] {
  display: block;
}
.wysiwyg .ck-block__title {
  font-size: calc(var(--content-font) * 1.2);
  line-height: 1.2;
}
.wysiwyg .ck-block__title-big {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.5rem;
  text-rendering: optimizeLegibility;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .wysiwyg .ck-block__title-big {
    margin-bottom: 0.85rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__title-big {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__title-big {
    margin-bottom: 0.65rem;
  }
}
.wysiwyg .ck-block__button {
  font-size: calc(var(--content-font) * 1.2);
  line-height: 1.2;
  line-height: calc(var(--content-font) * 3);
  height: calc(var(--content-font) * 3);
  padding: 0 2rem;
  background-color: #D71717;
  color: white;
  border: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.wysiwyg .ck-block__button:hover {
  transition: all 0.3s;
  background-color: #a91212;
}
.wysiwyg .ck-block__input {
  font-size: calc(var(--content-font) * 1.2);
  line-height: 1.2;
  line-height: calc(var(--content-font) * 3);
  height: calc(var(--content-font) * 3);
  padding: 0 1rem;
  background-color: white;
  border: 1px solid #182033;
}
.wysiwyg .ck-block__photo .ratio-inner {
  object-fit: cover;
}
.wysiwyg .ck-block__photo.--contain .ratio-inner {
  object-fit: contain;
}
.wysiwyg .ck-block__review {
  border: 1px solid #182033;
  padding: 1rem;
}
.wysiwyg .ck-block__review .review__title {
  font-weight: bold;
}
.wysiwyg .ck-block__review .review__date {
  margin-bottom: 1rem;
}
.wysiwyg .ck-block__logo {
  border: 1px solid #182033;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__logo {
    padding: 0.5rem;
  }
}
.wysiwyg .ck-block__logo div[class^="ratio"] {
  width: 100%;
}
.wysiwyg .ck-block__logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.wysiwyg .ck-clock__spoiler {
  margin-top: 1em;
}
.wysiwyg .ck-clock__spoiler p {
  margin-top: 0;
  margin-bottom: 1em;
}
.wysiwyg .ck-clock__spoiler-show {
  margin: 0 !important;
}
.wysiwyg .ck-block__images-row .mCSB_container {
  display: flex;
  gap: 0.5rem;
}
.wysiwyg .ck-block__images-row .mCSB_container * {
  flex-shrink: 0;
}
.wysiwyg .ck-block__images-row .mCSB_container a {
  border: 0 !important;
}
.wysiwyg .ck-block__images-row .mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #182033;
}
.wysiwyg .ck-block__images-row .mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 20px;
}
.wysiwyg .ck-block__two-col {
  display: flex;
  flex-flow: row nowrap;
  gap: calc(var(--ue-strong) * 3);
}
.wysiwyg .ck-block__two-col.--center {
  align-items: center;
}
.wysiwyg .ck-block__two-col.--gap3 {
  gap: calc(var(--ue-strong) * 3);
}
.wysiwyg .ck-block__two-col.--gap2 {
  gap: calc(var(--ue-strong) * 2);
}
.wysiwyg .ck-block__two-col.--gap1 {
  gap: calc(var(--ue-strong) * 1);
}
.wysiwyg .ck-block__two-col .two-col__auto {
  flex: 1 1 auto;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:first-child > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:last-child > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__auto > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed {
  flex: 0 0 auto;
  width: 25%;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:first-child > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:last-child > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__two-col .two-col__fixed.--w50 {
  width: 50%;
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w50 {
    width: 100%;
  }
}
.wysiwyg .ck-block__two-col .two-col__fixed.--w33 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w33 {
    width: 50%;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w33 {
    width: 100%;
  }
}
.wysiwyg .ck-block__two-col .two-col__fixed.--w25 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w25 {
    width: 50%;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w25 {
    width: 100%;
  }
}
.wysiwyg .ck-block__two-col .two-col__fixed.--w20 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w20 {
    width: 50%;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--w20 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--then50 {
    width: 50% !important;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--then75 {
    width: 75% !important;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col .two-col__fixed.--then100 {
    width: 100% !important;
  }
}
.wysiwyg .ck-block__two-col .ck-image {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__two-col {
    flex-flow: column;
    gap: calc(1rem + (1rem / 3) * 2);
  }
}
.wysiwyg .ck-block__inset {
  border-top: 3px solid #070D1C;
  border-bottom: 3px solid #070D1C;
  padding: calc(var(--ue-strong) * 1.5) 0;
  font-size: calc(var(--content-font) * 1.2);
}
.wysiwyg .ck-block__inset.--italic {
  font-style: oblique;
}
.wysiwyg .ck-block__inset.--additional {
  border-top-color: #D71717;
  border-bottom-color: #D71717;
}
.wysiwyg .ck-block__mesh {
  display: grid;
  gap: var(--ck-blocks-gap);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.wysiwyg .ck-block__mesh.--narrow {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.wysiwyg .ck-block__mesh.--wide {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__mesh.--double-on-phone {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wysiwyg .ck-block__advantages {
  background-color: var(--ck-blocks-bg);
  padding: var(--ck-blocks-gap);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wysiwyg .ck-block__advantages .ck-block__title {
  margin-top: 1rem;
}
.wysiwyg .ck-block__advantages .advantages-image {
  width: 150px;
}
.wysiwyg .ck-block__advantages .advantages-digit {
  color: white;
  background-color: #182033;
  width: 100px;
  height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: calc(var(--content-font) * 4);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__advantages .advantages-digit {
    font-size: calc(var(--content-font) * 2.5);
    width: 75px;
    height: 75px;
  }
}
.wysiwyg .ck-block__advantages .ratio-inner {
  object-fit: cover;
}
.wysiwyg .ck-block__advantages p {
  margin: 1.2rem 0 0 0;
}
.wysiwyg .ck-block__image-text {
  display: flex;
  gap: var(--ck-blocks-gap);
  background-color: var(--ck-blocks-bg);
  padding: var(--ck-blocks-gap);
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__image-text {
    flex-direction: column;
  }
}
.wysiwyg .ck-block__image-text .image-text__image {
  width: calc(100% / 3);
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__image-text .image-text__image {
    width: 50%;
    order: 1;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__image-text .image-text__image {
    width: 100%;
  }
}
.wysiwyg .ck-block__image-text .image-text__image img {
  width: 100%;
}
.wysiwyg .ck-block__image-text .image-text__content {
  width: calc(100% / 3 * 2);
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__image-text .image-text__content {
    width: 100%;
    order: 2;
  }
}
.wysiwyg .ck-block__image-text .image-text__content > *:not(:last-child) {
  margin-bottom: 1rem;
}
.wysiwyg .ck-block__order {
  background-color: var(--ck-blocks-bg);
  padding: 1.5rem;
  border-radius: 0;
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__order {
    padding: 1rem;
  }
}
.wysiwyg .ck-block__order.--center {
  text-align: center;
}
.wysiwyg .ck-block__order > *:not(:last-child) {
  margin-bottom: 1rem;
}
.wysiwyg .ck-block__order > *:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__order .order-fields {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__order .order-fields {
    flex-direction: column;
  }
}
.wysiwyg .ck-block__order .order-agreement {
  color: #999;
}
.wysiwyg .ck-block__order .order-link {
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #999;
  transition: 0.3s;
}
.wysiwyg .ck-block__order .order-link:hover {
  transition: 0.3s;
  color: #182033;
  border-bottom: 1px solid #182033;
}
.wysiwyg .ck-block__order input[type="text"] {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__order input[type="text"] {
    width: 100%;
  }
}
.wysiwyg .ck-block__order input[type="text"]::placeholder {
  font-size: inherit;
}
.wysiwyg .ck-block__checkmark ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wysiwyg .ck-block__checkmark ul li {
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}
.wysiwyg .ck-block__checkmark ul li:last-child {
  margin-bottom: 0;
}
.wysiwyg .ck-block__checkmark ul li:before {
  content: "";
  position: absolute;
  display: block;
  top: -5px;
  left: -2px;
  width: 2rem;
  height: 2rem;
  border-radius: unset;
  background-color: white;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg fill='%2333691e' width='800px' height='800px' viewBox='0 0 32 32' id='icon' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='14 21.414 9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414'/%3E%3Cpath d='M16 2A14 14 0 1 0 30 16 14 14 0 0 0 16 2Zm0 26A12 12 0 1 1 28 16 12 12 0 0 1 16 28Z'/%3E%3Crect fill='none' width='32' height='32'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.wysiwyg .ck-block__checkmark.--big ul {
  font-size: calc(var(--content-font) * 1.2);
  line-height: 1.2;
}
.wysiwyg .ck-block__checkmark.--big ul li {
  padding-left: 3rem;
  margin-bottom: 1.7rem;
}
.wysiwyg .ck-block__checkmark.--big ul li:before {
  top: -8px;
  left: -2px;
  width: 2.5rem;
  height: 2.5rem;
}
.wysiwyg .ck-block__carousel .slick-track {
  display: flex !important;
}
.wysiwyg .ck-block__carousel .slick-slide {
  height: inherit !important;
}
.wysiwyg .ck-block__carousel .carousel__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--ue-strong);
}
.wysiwyg .ck-block__carousel .carousel__title {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  text-transform: none;
  font-size: 1.5rem;
  text-rendering: optimizeLegibility;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .wysiwyg .ck-block__carousel .carousel__title {
    margin-bottom: 0.85rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__carousel .carousel__title {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 428px) {
  .wysiwyg .ck-block__carousel .carousel__title {
    margin-bottom: 0.65rem;
  }
}
.wysiwyg .ck-block__carousel .carousel__arrows {
  display: flex;
  flex-shrink: 0;
}
.wysiwyg .ck-block__carousel .carousel__arrow {
  height: 3rem;
  width: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ck-blocks-bg);
  border-radius: 50%;
  margin-right: 0.5rem;
  cursor: pointer;
  border: 0;
  flex-shrink: 0;
}
.wysiwyg .ck-block__carousel .carousel__arrow:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__carousel .carousel__arrow {
    height: 2.5rem;
    width: 2.5rem;
  }
  .wysiwyg .ck-block__carousel .carousel__arrow svg {
    height: 1rem;
    width: 1rem;
  }
}
.wysiwyg .ck-block__carousel .carousel__body {
  margin: 0 -0.5rem;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__carousel .carousel__body {
    margin: 0 -0.25rem;
  }
}
.wysiwyg .ck-block__carousel .carousel__body [class^="ck-block__"] {
  margin: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__carousel .carousel__body [class^="ck-block__"] {
    margin: 0 0.25rem;
  }
}
.wysiwyg .ck-block__fancy-tabs .fancy-tabs__tabs {
  font-size: calc(var(--content-font) * 1.2);
  line-height: 1.2;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--ck-blocks-gap);
}
@media screen and (max-width: 767px) {
  .wysiwyg .ck-block__fancy-tabs .fancy-tabs__tabs {
    gap: 0.5rem;
  }
}
.wysiwyg .ck-block__fancy-tabs .fancy-tabs__tab {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: var(--ck-blocks-bg);
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}
.wysiwyg .ck-block__fancy-tabs .fancy-tabs__tab:hover {
  background-color: #D71717;
  color: white;
  transition: 0.3s;
}
.wysiwyg .ck-block__fancy-tabs .fancy-tabs__tab.--active {
  background-color: #D71717;
  color: white;
}
.wysiwyg .ck-block__fancy-tabs .fancy-tabs__el:not(:first-child) {
  display: none;
}
.wysiwyg > *:first-child {
  margin-top: 0;
}
.wysiwyg > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg > *:first-child > *:first-child > *:first-child {
  margin-top: 0;
}
.wysiwyg > *:last-child {
  margin-bottom: 0;
}
.wysiwyg > *:last-child > *:last-child {
  margin-bottom: 0;
}
.wysiwyg > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}
