@charset "UTF-8";
:root {
  --grey: #a9a9a9;
  --color-placeholder: gray;
}

.dark-theme,
body {
  --theme-color-text: #FEFEFE;
  --theme-color-bg-main: #0E0F11;
  --theme-color-bg-top-menu-link: #212122;
  --theme-color-text-top-menu-link: #fff;
}

.light-theme,
body.light-theme {
  --theme-color-text: #0E0F11;
  --theme-color-bg-main: #FEFEFE;
  --theme-color-bg-top-menu-link: #F8F8F8;
  --theme-color-text-top-menu-link: #0E0F11;
}

/*
$type -- для условия
         1 -- только если ширина окна меньше контейнера
         2 -- только если ширина окна больше контейнера
         0 -- всегда
*/
.wrap-table-radius {
  --radius: calc(16rem / 16);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 1728px) {
  .wrap-table-radius {
    --radius: calc(4rem / 16 + 12 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (max-width: 767px) {
  .wrap-table-radius {
    border: 1.5px solid #353ab0;
  }
}

.table-service {
  table-layout: fixed;
  text-align: left;
  width: 100%;
  background-color: #fcf9fe;
  color: #121185;
}
@media only screen and (min-width: 768px) {
  .table-service .for-mobile {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .table-service .for-desktop {
    display: none;
  }
}
.table-service__wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .table-service__wrap {
    margin-inline: -20px;
  }
}
.table-service caption {
  font-size: 0;
}
.table-service .col-head {
  width: 16.115%;
}
.table-service .col-first {
  width: 27.44%;
}
.table-service .col-medium {
  width: 28.125%;
  background: rgba(164, 147, 255, 0.12);
}
.table-service .col-premium {
  width: 28.32%;
  background: rgba(164, 147, 255, 0.25);
}
.table-service tbody:not(:last-child),
.table-service thead {
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  border-bottom: 1px solid #353ab0;
}
.table-service thead {
  font-size: calc(22rem / 16);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.05em;
}
@media (max-width: 1728px) {
  .table-service thead {
    font-size: calc(12rem / 16 + 10 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (min-width: 768px) {
  .table-service thead {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.table-service thead th {
  padding-top: calc(25rem / 16);
  padding-bottom: calc(22rem / 16);
  padding-left: calc(23rem / 16);
  padding-right: calc(45rem / 16);
}
@media (max-width: 1728px) {
  .table-service thead th {
    padding-top: calc(8rem / 16 + 17 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service thead th {
    padding-bottom: calc(6rem / 16 + 16 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service thead th {
    padding-left: calc(8rem / 16 + 15 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service thead th {
    padding-right: calc(8rem / 16 + 37 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (max-width: 767px) {
  .table-service thead th {
    width: 33.33%;
  }
  .table-service thead th span {
    display: inline-block;
    width: min-content;
  }
  .table-service thead th:not(:first-child) {
    border-left: 1px solid #353ab0;
  }
}
.table-service tbody {
  font-size: calc(18rem / 16);
}
@media (max-width: 1728px) {
  .table-service tbody {
    font-size: calc(14rem / 16 + 4 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.table-service tbody th {
  font-size: calc(22rem / 16);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.05em;
  padding-block: 8px;
}
@media (max-width: 1728px) {
  .table-service tbody th {
    font-size: calc(12rem / 16 + 10 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (min-width: 768px) {
  .table-service tbody th {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.table-service tbody tr td[rowspan] {
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .table-service tbody tr td[rowspan] {
    border-right: 1px solid rgba(204, 204, 204, 0.5);
    border-right: 1px solid #353ab0;
  }
}
@media only screen and (max-width: 767px) {
  .table-service tbody tr:first-child {
    background: #f6f5ff;
  }
}
.table-service tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
@media only screen and (min-width: 768px) {
  .table-service tbody tr:not(:last-child) {
    border-bottom: 1px solid #E5E7FF;
  }
}
.table-service tbody tr:last-child td {
  vertical-align: baseline;
}
.table-service tbody:last-child tr:last-child td {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .table-service tbody:last-child tr:last-child td {
    border-bottom: none;
  }
}
.table-service tbody tr th + td + td,
.table-service tbody tr td:nth-child(2):not(th + td),
.table-service tbody tr td:last-child {
  padding-inline: calc(45rem / 16);
}
@media (max-width: 1728px) {
  .table-service tbody tr th + td + td,
  .table-service tbody tr td:nth-child(2):not(th + td),
  .table-service tbody tr td:last-child {
    padding-inline: calc(8rem / 16 + 37 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (min-width: 768px) {
  .table-service tbody tr th + td + td,
  .table-service tbody tr td:nth-child(2):not(th + td),
  .table-service tbody tr td:last-child {
    padding-inline: calc(45rem / 16);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1728px) {
  .table-service tbody tr th + td + td,
  .table-service tbody tr td:nth-child(2):not(th + td),
  .table-service tbody tr td:last-child {
    padding-inline: calc(0rem / 16 + 45 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.table-service th {
  padding-left: calc(24rem / 16);
}
@media (max-width: 1728px) {
  .table-service th {
    padding-left: calc(8rem / 16 + 16 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.table-service td {
  font-size: calc(20rem / 16);
  padding-inline: calc(24rem / 16);
  padding-top: calc(12rem / 16);
  padding-bottom: calc(12rem / 16);
  line-height: 1.26;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media (max-width: 1728px) {
  .table-service td {
    font-size: calc(12rem / 16 + 8 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service td {
    padding-inline: calc(8rem / 16 + 16 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service td {
    padding-top: calc(10rem / 16 + 2 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .table-service td {
    padding-bottom: calc(6rem / 16 + 6 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (max-width: 767px) {
  .table-service td {
    border-block: 1px solid #353ab0;
  }
  .table-service td:not(:first-child):not(th + td) {
    border-left: 1px solid #353ab0;
  }
  .table-service td span {
    display: inline-block;
    width: min-content;
  }
}
@media only screen and (min-width: 768px) {
  .table-service td {
    line-height: 1.35;
    letter-spacing: 0.02em;
  }
}
.table-service td img {
  --size: calc(28rem / 16);
  --size: 28px;
  width: var(--size);
  height: var(--size);
}
@media (max-width: 1728px) {
  .table-service td img {
    --size: calc(20rem / 16 + 8 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (max-width: 767px) {
  .table-service td img {
    margin-inline: auto;
  }
}
.table-service .wrap-icon-text {
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  margin-inline: auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .table-service .wrap-icon-text {
    flex-direction: row;
    align-items: center;
  }
}

.section-table-support {
  padding-top: calc(90rem / 16);
  padding-bottom: calc(140rem / 16);
  background-color: #f6f5ff;
}
@media (max-width: 1728px) {
  .section-table-support {
    padding-top: calc(60rem / 16 + 30 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media (max-width: 1728px) {
  .section-table-support {
    padding-bottom: calc(65rem / 16 + 75 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .section-title {
  font-size: calc(62rem / 16);
  color: #121185;
}
@media (max-width: 1728px) {
  .section-table-support .section-title {
    font-size: calc(32rem / 16 + 30 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .wrap-table-support {
  margin-top: calc(60rem / 16);
}
@media (max-width: 1728px) {
  .section-table-support .wrap-table-support {
    margin-top: calc(30rem / 16 + 30 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .table-service .col-head {
  width: 17.92%;
}
.section-table-support .table-service .col-first {
  width: 29.58%;
}
.section-table-support .table-service .col-medium {
  width: 26.25%;
  background: rgba(164, 147, 255, 0.12);
}
.section-table-support .table-service .col-premium {
  width: 26.25%;
  background: rgba(164, 147, 255, 0.25);
}
.section-table-support .table-service thead th {
  padding: calc(32rem / 16);
}
@media (max-width: 1728px) {
  .section-table-support .table-service thead th {
    padding: calc(8rem / 16 + 24 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .table-service th {
  padding-left: calc(32rem / 16);
}
@media (max-width: 1728px) {
  .section-table-support .table-service th {
    padding-left: calc(8rem / 16 + 24 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .table-service td {
  padding-inline: calc(45rem / 16);
}
@media (max-width: 1728px) {
  .section-table-support .table-service td {
    padding-inline: calc(8rem / 16 + 37 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-table-support .table-service tbody tr:last-child td {
  vertical-align: top;
}
/*# sourceMappingURL=section-table-support.min.css.map */
