* {
  box-sizing: border-box;
}
*::after, *::before {
  box-sizing: border-box;
}
* {
  /*outline: none;*/
}

body {
  color: var(--color-content-neutral-secondary);
  /* BodyLgRegular */
  font-variant-numeric: var(--font-variant-numeric-BodyLgRegular);
  font-family: var(--font-family-BodyLgRegular);
  font-size: var(--font-size-BodyLgRegular);
  font-style: var(--font-style-BodyLgRegular);
  font-weight: var(--font-weight-BodyLgRegular);
  line-height: var(--font-line-height-BodyLgRegular);
  letter-spacing: var(--font-letter-spacing-BodyLgRegular);
}

ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main {
  display: grid;
  padding-top: var(--header-height, 0);
}
.main_utter {
  padding-top: 0;
}

a {
  text-decoration: none;
}

p {
  display: block;
  margin: 0 0 1.5em 0;
  padding: 0;
}
p:last-child {
  margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-wrap: balance;
  font-style: normal;
  font-variant-numeric: lining-nums proportional-nums;
  margin: 0;
  padding: 0;
}

.column {
  display: grid;
}
.column_base, .column-base {
  width: var(--width-two-third);
  justify-self: end;
}
.column_one, .column-one {
  grid-template-columns: 1fr;
}
.column_one_third, .column_one-third, .column-one_third, .column-one-third {
  grid-template-columns: var(--column-one-third);
}
.column_two, .column-two {
  grid-template-columns: repeat(2, 1fr);
}
.column_two_third, .column_two-third, .column-two_third, .column-two-third {
  grid-template-columns: var(--column-two-third);
}
@media (max-width: 450px) {
  .column_mobile_one {
    grid-template-columns: 1fr;
  }
}
.column_three, .column-three {
  grid-template-columns: repeat(3, 1fr);
}
.column_asymmetric > *:nth-child(2), .column-asymmetric > *:nth-child(2) {
  grid-column: 2/4;
}
.column_spacing_md, .column_spacing-md, .column-spacing_md, .column-spacing-md {
  gap: var(--size-grids-gutter-md);
}
.column_spacing_lg, .column_spacing-lg, .column-spacing_lg, .column-spacing-lg {
  gap: var(--size-block-space-lg) var(--size-grids-gutter-md);
}
.column_spacing_xl, .column_spacing-xl, .column-spacing_xl, .column-spacing-xl {
  gap: var(--size-block-space-xl) var(--size-grids-gutter-md);
}
.column_spacing_2xl, .column-spacing_2xl {
  gap: calc(var(--size-grids-margin-horizontal-lg) * 2);
}
.column_spacing_none, .column_spacing-none, .column-spacing_none, .column-spacing-none {
  gap: unset;
}

@media (max-width: 1024px) {
  .column_base {
    width: 100%;
    justify-self: start;
  }
  .column_one_third, .column_one-third, .column-one_third, .column-one-third {
    grid-template-columns: 1fr;
  }
  .column_three, .column-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .column_asymmetric > *:nth-child(2), .column-asymmetric > *:nth-child(2) {
    grid-column: 1/3;
    order: -1;
  }
}
@media (max-width: 490px) {
  .column_three, .column-three {
    grid-template-columns: 1fr;
  }
  .column_asymmetric > *:nth-child(2), .column-asymmetric > *:nth-child(2) {
    grid-column: 1/2;
  }
}
.table {
  border-collapse: separate;
  border-spacing: var(--size-grids-gutter-md) 0;
  margin: 0 calc(-1 * var(--size-grids-gutter-md));
}
.table .table__description, .table td {
  color: var(--color-content-neutral-primary);
  /* BodyLgRegular */
  font-variant-numeric: var(--font-variant-numeric-BodyLgRegular);
  font-family: var(--font-family-BodyLgRegular);
  font-size: var(--font-size-BodyLgRegular);
  font-style: var(--font-style-BodyLgRegular);
  font-weight: var(--font-weight-BodyLgRegular);
  line-height: var(--font-line-height-BodyLgRegular);
  letter-spacing: var(--font-letter-spacing-BodyLgRegular);
}
.table td, .table th {
  margin: 0 var(--size-grids-gutter-md);
  padding: var(--size-content-space-1xl) 0;
  border-bottom: solid 1px var(--color-border-neutral-sm);
}
.table th {
  color: var(--color-content-neutral-primary);
  /* BodyLgSemiBold */
  font-variant-numeric: var(--font-variant-numeric-BodyLgSemiBold);
  font-family: var(--font-family-BodyLgSemiBold);
  font-size: var(--font-size-BodyLgSemiBold);
  font-style: var(--font-style-BodyLgSemiBold);
  font-weight: var(--font-weight-BodyLgSemiBold);
  line-height: var(--font-line-height-BodyLgSemiBold);
  letter-spacing: var(--font-letter-spacing-BodyLgSemiBold);
}
.table th h3 {
  color: var(--color-content-neutral-primary, #1E1E1E);
  /* Heading2xlMd */
  font-family: var(--font-family-Heading2xlMd);
  font-size: var(--font-size-Heading2xlMd);
  font-style: var(--font-style-Heading2xlMd);
  font-weight: var(--font-weight-Heading2xlMd);
  line-height: var(--font-line-height-Heading2xlMd);
}
.table thead th {
  padding: 0;
  padding-bottom: var(--size-block-space-lg);
}
.table td svg {
  display: block;
}
.table__heading-container {
  display: grid;
  gap: var(--size-content-space-lg);
  max-width: var(--size-block-text-third-body-max);
}
.table__description {
  text-wrap: balance;
}

@media (max-width: 1024px) {
  .table_price {
    display: none;
  }
}
.list-mark {
  display: grid;
  gap: var(--size-content-space-lg);
}
.list-mark_size_xl {
  gap: var(--size-content-space-2xl);
}
.list-mark_size_lg {
  gap: var(--size-content-space-lg);
}
.list-mark_size_md {
  gap: var(--size-content-space-md);
}
.list-mark_size_sm {
  gap: var(--size-content-space-sm);
}
.list-mark__item {
  display: grid;
  max-width: var(--size-block-text-big-max-body);
  gap: var(--size-content-space-lg);
  grid-template-columns: max-content 1fr;
  color: var(--color-content-neutral-secondary);
}
.list-mark__item_size_xl + .list-mark__item_size_xl {
  padding-top: var(--size-content-space-2xl);
}
.list-mark__item_size_lg + .list-mark__item_size_lg {
  padding-top: var(--size-content-space-lg);
}
.list-mark__item_size_md + .list-mark__item_size_md {
  padding-top: var(--size-content-space-md);
}
.list-mark__item_size_sm + .list-mark__item_size_sm {
  padding-top: var(--size-content-space-sm);
}
.list-mark__item_style_bordered + .list-mark__item_style_bordered {
  border-top: solid 1px var(--color-border-neutral-sm);
}
.list-mark__item {
  /* BodyLgRegular */
  font-variant-numeric: var(--font-variant-numeric-BodyLgRegular);
  font-family: var(--font-family-BodyLgRegular);
  font-size: var(--font-size-BodyLgRegular);
  font-style: var(--font-style-BodyLgRegular);
  font-weight: var(--font-weight-BodyLgRegular);
  line-height: var(--font-line-height-BodyLgRegular);
  letter-spacing: var(--font-letter-spacing-BodyLgRegular);
}
.list-mark__item::before {
  content: "";
  position: relative;
  top: calc(var(--font-line-height-BodyLgRegular) / 2);
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--color-content-neutral-secondary);
}
/* System Styles */
.messages__wrapper:has(.messages) {
  padding: var(--size-block-space-xl) var(--size-grids-margin-horizontal-lg);
}/*# sourceMappingURL=style.css.map */