.cards__body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cards__card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
.cards__card > * {
  margin-bottom: 16px;
}
.cards__card > :last-child {
  margin-bottom: 0;
}
.cards__card::before {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none"><path fill="%23F28C1C" d="M5.462 3v2.884h6.614L3 14.96 5.04 17l9.076-9.076v6.614H17V3H5.462Z"/></svg>')
  no-repeat 0 0;
  position: absolute;
  top: 20px;
  right: 20px;
}
.cards__title {
  font-size: 30px;
  line-height: 36px;
  padding-right: 32px;
}
.cards__list > p {
  font-size: 16px;
  line-height: 20px;
  color: #f28c1c;
  margin-bottom: 8px;
}
.cards__list > ul {
  padding: 0 40px 0 60px;
}
.cards__list > ul > li {
  list-style-type: disc;
  font-size: 16px;
  line-height: 20px;
  color: #5f5f5f;
  margin-bottom: 4px;
}
.cards__list > ul > li:last-child {
  margin-bottom: 0;
}
.cards__text {
  font-size: 16px;
  color: #5f5f5f;
  padding: 0 40px;
}
.cards__pics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cards__pic {
  display: block;
  overflow: hidden;
  height: 268px;
  border-radius: 20px;
  width: 30%;
  flex: 1 1 auto;
}
.cards__pic > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.cards__slider {
  display: none;
}
.cards__table {
  padding-left: 40px;
}
.cards__table > table > caption {
  text-align: left;
  color: #000;
  font-size: 16px;
  line-height: 30px;
}
.cards__table > table > tbody > tr > td {
  color: #5f5f5f;
  font-size: 16px;
  line-height: 30px;
  vertical-align: top;
}
.cards__table > table > tbody > tr > td > span {
  color: #000;
}
.cards__table > table > tbody > tr > td:first-child {
  width: 200px;
}
.cards--masonry .cards__body {
  display: block;
  -moz-column-count: 2;
  column-count: 2;
  gap: unset;
  -moz-column-gap: 20px;
  column-gap: 20px;
  counter-reset: grid;
}
.cards--masonry .cards__card {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
}
.cards--no-arrow .cards__card::before {
  display: none;
}
.cards-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 100%;
}
.cards-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  height: 267px;
}
.cards-slider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  background: gray;
  border-radius: 20px;
  overflow: hidden;
}
.cards-slider__slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.cards-slider__pagination {
  z-index: 1;
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 12px;
}
.cards-slider__pagination > .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #d9d9d9;
  cursor: pointer;
  border-radius: 50%;
}
.cards-slider__pagination > .swiper-pagination-bullet-active {
  background: #00549b;
}
.menu > .menu__content-wrap > .menu__content > .menu__group > a {
  font-size: 16px;
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
  height: 34px;
  display: flex;
  align-items: center;
}
.menu > .menu__content-wrap > .menu__content > .menu__group > a:hover {
  color: var(--button-dark-blue);
  border-color: var(--button-dark-blue);
}
@media (max-width: 1279px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 100% !important;
  }
}
@media screen and (max-width: 991px) {
  .cards__title {
    font-size: 20px;
    line-height: 24px;
  }
  .cards__list > ul {
    padding-left: 18px;
  }
  .cards__pic {
    width: 45%;
  }
  .cards--masonry .cards__body {
    -moz-columns: unset;
    columns: unset;
  }
}
@media screen and (max-width: 770px) {
  .cards__text {
    padding-left: 0;
  }
  .cards__pics {
    display: none;
  }
  .cards__pic {
    width: 100%;
  }
  .cards__slider {
    display: block;
  }
  .cards__table {
    padding-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .cards__table > table > tbody > tr > td:first-child {
    width: auto;
    min-width: 100px;
  }
}