.section-stats {
  background: linear-gradient(180deg, #53A3FF -50.33%, #002476 144.83%);
  color: rgb(var(--color-white));
  padding: 2.77778vw;
  min-height: 110.55556vw;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .section-stats {
    padding: 20px;
    border-radius: 20px;
    min-height: 200px;
    gap: 24px;
  }
}
.section-stats::before {
  content: "";
  position: absolute;
  top: -13.88889vw;
  right: -4.72222vw;
  width: 68.05556vw;
  height: 75vw;
  background: url(../../../assets/img/logo-icon.svg) no-repeat center/68.05556vw 75vw;
  opacity: 0.05;
  transform: rotate(-5deg);
  transform-origin: center center;
}
@media (min-width: 1200px) {
  .section-stats::before {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 368px;
    height: 353px;
    background-size: 368px 353px;
  }
}
.section-stats > * {
  position: relative;
  z-index: 2;
}
.section-stats .section__title {
  color: rgb(var(--color-white));
  font-size: 6.66667vw;
  line-height: 1.16667;
  padding: 2.77778vw;
}
@media (min-width: 1200px) {
  .section-stats .section__title {
    font-size: 24px;
    padding: 10px;
  }
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .stats {
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stats__item {
  padding: 4.16667vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.38889vw;
  font-size: 2.77778vw;
  fill: rgb(var(--color-white));
  stroke: rgb(var(--color-white));
  background: rgb(var(--color-white)/0.1);
  border-radius: 2.77778vw;
  -webkit-backdrop-filter: blur(2.77778vw);
          backdrop-filter: blur(2.77778vw);
  min-width: calc(50% - 0.69444vw);
  min-height: 22.22222vw;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .stats__item {
    padding: 10px 20px;
    gap: 5px;
    font-size: 12px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    min-height: 80px;
    min-width: auto;
  }
  .stats__item:nth-child(n+5) {
    display: none;
  }
}
.stats__header {
  display: flex;
  align-items: center;
  gap: 2.77778vw;
  font-size: 5vw;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .stats__header {
    gap: 10px;
    font-size: 18px;
  }
}
.stats__icon {
  width: 6.66667vw;
  aspect-ratio: 1;
}
@media (min-width: 1200px) {
  .stats__icon {
    width: 24px;
  }
}
.stats__text {
  margin: 0;
}

.section-info {
  padding: 4.16667vw;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-info {
    padding: 20px;
    gap: 20px;
  }
}

.info {
  display: flex;
  flex-direction: column;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .info {
    gap: 20px;
  }
}
.info__text {
  font-size: 3.88889vw;
  line-height: 1.42857;
  color: rgb(var(--color-gray));
}
@media (min-width: 1200px) {
  .info__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.info__list {
  display: flex;
  flex-direction: column;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .info__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
.info__item {
  background: rgb(var(--color-bg-blue));
  border-radius: 2.77778vw;
  padding: 5.55556vw;
  font-size: 3.88889vw;
  line-height: 5.55556vw;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .info__item {
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    min-height: 326px;
  }
}
.info__item-text {
  margin: 0;
  position: relative;
  z-index: 2;
}
.info__item-icon {
  width: 27.77778vw;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  right: -5.55556vw;
  bottom: -5.55556vw;
  fill: rgb(var(--color-primary));
  stroke: rgb(var(--color-primary));
  opacity: 0.2;
}
@media (min-width: 1200px) {
  .info__item-icon {
    width: 200px;
    right: -20px;
    bottom: -20px;
  }
}

.card-user {
  border: clamp(1px, 0.27777vw, 0.27777vw) solid rgb(var(--color-line-super-light-blue));
  border-radius: 3.33333vw;
  padding: clamp(1px, 0.27777vw, 0.27777vw);
  display: flex;
  flex-direction: column;
  gap: 0.55556vw;
}
@media (min-width: 1200px) {
  .card-user {
    border-width: 1px;
    padding: 11px;
    border-radius: 24px;
    gap: 8px;
  }
}
.card-user__img {
  width: 100%;
  height: auto;
  border-radius: 2.77778vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) {
  .card-user__img {
    border-radius: 16px;
  }
}
.card-user__content {
  background: rgb(var(--color-bg-main));
  border-radius: 2.77778vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
  padding: 2.77778vw;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .card-user__content {
    border-radius: 16px;
    padding: 10px;
    gap: 12px;
  }
}
.card-user__name {
  font-size: 4.44444vw;
  font-weight: 500;
  line-height: 1.1875;
  width: 30.55556vw;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .card-user__name {
    width: 110px;
    font-size: 16px;
  }
}
.card-user__prof {
  font-size: 3.88889vw;
  line-height: 1.21429;
  color: rgb(var(--color-gray));
  margin: 0;
}
@media (min-width: 1200px) {
  .card-user__prof {
    font-size: 14px;
  }
}
.card-user__socials {
  display: flex;
  justify-content: center;
  gap: 1.38889vw;
  margin-top: auto;
}
@media (min-width: 1200px) {
  .card-user__socials {
    gap: 5px;
  }
}
.card-user__socials-link {
  width: 11.11111vw;
  aspect-ratio: 1;
  display: block;
  border-radius: 3.33333vw;
  background: rgb(var(--color-white));
  padding: 2.22222vw;
  fill: rgb(var(--color-primary));
  stroke: rgb(var(--color-primary));
}
@media (min-width: 1200px) {
  .card-user__socials-link {
    width: 40px;
    border-radius: 12px;
    padding: 8px;
  }
}
.card-user__socials-icon {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .card-user--small {
    padding: 1.94444vw;
    gap: 1.66667vw;
    border-radius: 4.44444vw;
  }
  .card-user--small .card-user__img {
    height: 39.44444vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 3.33333vw;
  }
  .card-user--small .card-user__content {
    border-radius: 3.33333vw;
    padding: 2.22222vw;
    gap: 2.22222vw;
  }
  .card-user--small .card-user__name {
    font-size: 3.54722vw;
    line-height: 1.17463;
  }
  .card-user--small .card-user__prof {
    font-size: 3.33333vw;
  }
  .card-user--small .card-user__socials {
    gap: 1.11111vw;
  }
  .card-user--small .card-user__socials-link {
    width: 8.88889vw;
    padding: 1.66667vw;
    border-radius: 2.77778vw;
  }
}

.section-team {
  padding: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-team {
    padding: 20px;
    gap: 16px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
}

.section-quote {
  padding: 4.16667vw;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-quote {
    padding: 20px;
    gap: 20px;
  }
}

.quote-slider {
  margin: 0 -4.16667vw;
  padding: 0 4.16667vw;
}
@media (min-width: 1200px) {
  .quote-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

.quote-slide {
  width: 66.66667vw;
}
@media (min-width: 1200px) {
  .quote-slide {
    width: 384px;
  }
}

.card-quote {
  background: rgb(var(--color-bg-main));
  border-radius: 2.77778vw;
  padding: 4.16667vw;
  display: flex;
  flex-direction: column;
  gap: 4.16667vw;
  font-size: 3.88889vw;
  line-height: 1.42857;
  font-style: italic;
}
@media (min-width: 1200px) {
  .card-quote {
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.card-quote__img-container {
  height: 11.38889vw;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .card-quote__img-container {
    height: 65px;
  }
}
.card-quote__img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.card-quote__text {
  margin: 0;
}

.blogs-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3.3333vw;
  border-radius: 4.4444vw;
  row-gap: 4.4444vw;
  border: 1px solid var(--line-gray);
  background: var(--background-secondary);
  text-decoration: none;
}
@media (min-width: 1200px) {
  .blogs-card {
    padding: 10px;
    border-radius: 20px;
    row-gap: 16px;
  }
}
.blogs-card__image {
  display: block;
  position: relative;
  width: 100%;
}
.blogs-card__image:before {
  content: "";
  display: block;
  padding-top: 74.2%;
}
.blogs-card__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 3.3333vw;
}
@media (min-width: 1200px) {
  .blogs-card__image img {
    border-radius: 12px;
  }
}
.blogs-card__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 12.7778vw;
  padding: 0 0 0 12.7778vw;
  row-gap: 0.5556vw;
}
@media (min-width: 1200px) {
  .blogs-card__author {
    min-height: 36px;
    padding: 0 0 0 46px;
    row-gap: 2px;
  }
}
.blogs-card__author_photo {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 10vw;
  height: 10vw;
}
@media (min-width: 1200px) {
  .blogs-card__author_photo {
    width: 36px;
    height: 36px;
  }
}
.blogs-card__author_photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 50%;
}
.blogs-card__author_name {
  color: var(--text-black);
  font-size: 3.8889vw;
  font-weight: 500;
  line-height: 4.7222vw;
}
@media (min-width: 1200px) {
  .blogs-card__author_name {
    font-size: 14px;
    line-height: 17px;
  }
}
.blogs-card__meta {
  color: var(--text-L-gray);
  font-size: 3.3333vw;
  font-weight: 400;
  line-height: 3.8889vw;
}
@media (min-width: 1200px) {
  .blogs-card__meta {
    font-size: 12px;
    line-height: 14px;
  }
}
.blogs-card__title {
  color: var(--text-black);
  font-size: 3.8889vw;
  font-weight: 500;
  line-height: 4.7222vw;
}
@media (min-width: 1200px) {
  .blogs-card__title {
    font-size: 14px;
    line-height: 17px;
  }
}
.blogs-card__tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.2222vw;
}
@media (min-width: 1200px) {
  .blogs-card__tags {
    gap: 8px;
  }
}
.blogs-card__tag {
  --color: var(--text-gray);
  --background-color: var(--background-blue);
  padding: 0.6944vw 2.7778vw;
  color: var(--color);
  font-size: 3.0556vw;
  font-weight: 400;
  line-height: 3.6111vw;
  border-radius: 2.2222vw;
  background: var(--background-color);
}
.blogs-card__tag.blue {
  --color: var(--colors-light-blue);
  --background-color: var(--colors-light-blue-10);
}
.blogs-card__tag.red {
  --color: var(--colors-red);
  --background-color: var(--colors-red-10);
}
.blogs-card__tag.green {
  --color: var(--colors-green);
  --background-color: var(--colors-green-10);
}
.blogs-card__tag.purple {
  --color: var(--colors-purple);
  --background-color: var(--colors-purple-10);
}
.blogs-card__tag.yellow {
  --color: var(--colors-yellow);
  --background-color: var(--colors-yellow-10);
}
@media (min-width: 1200px) {
  .blogs-card__tag {
    padding: 2.5px 10px;
    font-size: 11px;
    line-height: 13px;
    border-radius: 8px;
  }
}

.section-news-slider {
  padding: 4.16667vw;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-news-slider {
    padding: 20px;
    gap: 16px;
  }
}

.news-slider {
  margin: 0 -4.16667vw;
  padding: 0 4.16667vw;
}
@media (min-width: 1200px) {
  .news-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

.news-slide {
  width: 87.77778vw;
  height: auto;
}
@media (min-width: 1200px) {
  .news-slide {
    width: 384px;
  }
}

.section-links {
  padding: 4.16667vw;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-links {
    padding: 20px;
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .section-links .section__header {
    padding: 10px 0;
  }
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .links {
    gap: 8px;
  }
}
.links__item {
  font-weight: 400;
  min-height: 10vw;
  padding: 1.94444vw 3.88888vw;
  border-radius: 2.22222vw;
}
@media (min-width: 1200px) {
  .links__item {
    padding: 9px 14px;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 500;
  }
}

.section-contacts {
  padding: 4.16667vw;
  gap: 4.16667vw;
}
@media (min-width: 1200px) {
  .section-contacts {
    padding: 20px;
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .section-contacts .section__header {
    padding: 10px 0;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
.contacts__item {
  padding: 4.16667vw;
  border-radius: 2.77778vw;
  background: rgb(var(--color-bg-main));
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .contacts__item {
    padding: 20px;
    gap: 10px;
    border-radius: 10px;
  }
}
.contacts__info {
  font-size: 3.88889vw;
  font-weight: 500;
  line-height: 1.21429;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .contacts__info {
    font-size: 16px;
    line-height: 1.1875;
  }
}
.contacts__name {
  margin: 0;
}
.contacts__link {
  text-decoration: none;
  color: rgb(var(--color-primary));
}
.contacts__link:hover {
  color: #3D8CE7;
}
.contacts__link:active {
  color: #003C80;
}
.contacts__position {
  font-size: 3.33333vw;
  line-height: 1.16667;
  color: rgb(var(--color-gray));
  margin: 0;
}
@media (min-width: 1200px) {
  .contacts__position {
    font-size: 14px;
    line-height: 1.21429;
  }
}
.contacts__phone {
  color: rgb(var(--color-text-black));
  text-decoration: none;
}

.card-bk {
  background: rgb(var(--color-bg-main));
  padding: 1.11111vw;
  border-radius: 2.22222vw;
  font-size: 2.5vw;
  display: flex;
  flex-direction: column;
  gap: 1.11111vw;
}
@media (min-width: 1200px) {
  .card-bk {
    padding: 8px;
    border-radius: 16px;
    font-size: 14px;
    gap: 8px;
  }
}
.card-bk.active {
  background: rgb(var(--color-bg-blue));
}
.card-bk.active .card-bk__more {
  margin-top: 0;
}
.card-bk.active .card-bk__more-icon {
  transform: rotate(180deg);
}
.card-bk__inner {
  display: flex;
  border-radius: 1.66667vw;
  background: rgb(var(--color-bg-secondary));
  padding: 0 1.11111vw;
  min-height: 8.88889vw;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .card-bk__inner {
    padding: 0 12px;
    min-height: 52px;
    border-radius: 12px;
  }
}
@media (min-width: 1200px) {
  .card-bk__inner--big {
    min-height: 60px;
    padding: 0 16px;
  }
  .card-bk__inner--big > * {
    margin-left: auto;
    margin-right: auto;
  }
  .card-bk__inner--big > *:first-child {
    margin-left: 0;
  }
  .card-bk__inner--big > *:last-child {
    margin-right: 0;
  }
  .card-bk__inner--big .card-bk__logo {
    margin-right: 42px;
  }
  .card-bk__inner--big .card-bk__actions {
    margin-left: 12px;
  }
  .card-bk__inner--big .card-bk__bonus {
    width: 120px;
  }
}
.card-bk__logo {
  width: 17.77778vw;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0.83333vw 0;
  margin-right: 2.77778vw;
}
@media (min-width: 1200px) {
  .card-bk__logo {
    width: 95px;
    padding: 7px 0;
    margin-right: 17px;
  }
}
.card-bk__logo-img {
  max-width: 100%;
  max-height: 100%;
}
.card-bk__short-rating {
  width: 9.72222vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .card-bk__short-rating {
    width: 58px;
  }
}
@media (min-width: 1200px) {
  .card-bk__full-rating {
    width: 120px;
    display: flex;
  }
}
.card-bk__rating {
  display: flex;
  align-items: center;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .card-bk__rating {
    gap: 5px;
  }
}
@media (min-width: 1200px) {
  .card-bk__reviews {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.card-bk__divider {
  margin: 0 auto;
  flex: 0 0 clamp(1px, 0.27777vw, 0.27777vw);
  background: rgb(var(--color-bg-main));
}
@media (min-width: 1200px) {
  .card-bk__divider {
    flex-basis: 2px;
  }
}
.card-bk__stats {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 0.83333vw 0 clamp(1px, 0.27777vw, 0.27777vw);
  padding: 0.55556vw 0;
  gap: 0.55556vw;
}
@media (min-width: 1200px) {
  .card-bk__stats {
    gap: 4px;
    padding: 3px 0 5px;
  }
}
.card-bk__stats-label {
  line-height: 1.22222;
}
.card-bk__stats-value {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: rgb(var(--color-gray));
  fill: rgb(var(--color-gray));
  stroke: rgb(var(--color-gray));
  gap: 1.33333vw;
}
@media (min-width: 1200px) {
  .card-bk__stats-value {
    gap: 8px;
    font-weight: 500;
  }
}
.card-bk__stats-value--color-accident {
  color: rgb(var(--color-accident));
  fill: rgb(var(--color-accident));
  stroke: rgb(var(--color-accident));
}
.card-bk__stats-icon {
  width: 4.44444vw;
  aspect-ratio: 1;
  margin: -0.55556vw 0;
}
@media (min-width: 1200px) {
  .card-bk__stats-icon {
    width: 20px;
    margin: -2px 0;
  }
}
.card-bk__stats-icon--small {
  width: 3.33333vw;
  margin: 0;
}
@media (min-width: 1200px) {
  .card-bk__stats-icon--small {
    width: 16px;
  }
}
.card-bk__stats-icon--center {
  margin-left: auto;
  margin-right: auto;
}
.card-bk__bonus {
  width: 19.44444vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .card-bk__bonus {
    width: 110px;
  }
}
.card-bk__actions {
  display: flex;
  justify-content: flex-end;
  align-self: center;
  gap: 1.11111vw;
  padding: 0.83333vw 0;
  width: 30.55556vw;
  margin-left: 1.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__actions {
    gap: 10px;
    padding: 8px 0;
    width: 150px;
    margin-left: 10px;
  }
}
.card-bk__btn {
  padding: 1.38889vw 3.05556vw;
  font-size: 2.77778vw;
  min-height: 6.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__btn {
    min-height: 36px;
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 400;
  }
}
.card-bk__more {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  margin-top: -1.11111vw;
}
@media (min-width: 1200px) {
  .card-bk__more {
    margin-top: -4px;
  }
}
.card-bk__more-btn {
  display: flex;
  align-items: center;
  gap: 1.11111vw;
  background: none;
  padding: 0;
  border: none;
  font-size: 2.77778vw;
  line-height: 1.2;
  color: rgb(var(--color-primary));
  fill: rgb(var(--color-black));
  stroke: rgb(var(--color-black));
  margin-left: auto;
  margin-right: 1.11111vw;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .card-bk__more-btn {
    stroke: rgb(var(--color-primary));
    fill: rgb(var(--color-primary));
    font-size: 12px;
    gap: 8px;
    margin-right: 0;
  }
}
.card-bk__more-icon {
  width: 3.88889vw;
  aspect-ratio: 1;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .card-bk__more-icon {
    width: 14px;
  }
}
.card-bk__content {
  background: rgb(var(--color-bg-secondary));
  border-radius: 1.66667vw;
  padding: 2.22222vw;
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
}
@media (min-width: 1200px) {
  .card-bk__content {
    gap: 0;
    padding: 0;
    border-radius: 12px;
  }
}
.card-bk__features {
  display: flex;
  flex-direction: column;
  gap: 6.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__features {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card-bk__features > * {
  position: relative;
}
.card-bk__features > *:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -3.33333vw;
  left: 0;
  width: 100%;
  height: clamp(1px, 0.27777vw, 0.27777vw);
  background: rgb(var(--color-bg-main));
}
.card-bk__features-title {
  font-size: 2.77778vw;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .card-bk__features-title {
    font-size: 14px;
    line-height: 1.21429;
    text-align: center;
  }
}
.card-bk__features-list {
  display: flex;
  flex-direction: column;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .card-bk__features-list {
    gap: 12px;
  }
}
.card-bk__features-item {
  display: flex;
  align-items: center;
  gap: 2.22222vw;
  font-size: 2.77778vw;
  line-height: 1.2;
  color: rgb(var(--color-gray));
}
@media (min-width: 1200px) {
  .card-bk__features-item {
    gap: 8px;
    font-size: 12px;
    line-height: 1.16667;
  }
}
.card-bk__features-icon {
  width: 2.77778vw;
  aspect-ratio: 1;
  flex-shrink: 0;
  stroke: rgb(var(--color-accident));
}
@media (min-width: 1200px) {
  .card-bk__features-icon {
    width: 16px;
  }
}
.card-bk__pros, .card-bk__cons {
  display: flex;
  flex-direction: column;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .card-bk__pros, .card-bk__cons {
    gap: 8px;
    padding: 16px;
  }
}
@media (min-width: 1200px) {
  .card-bk__pros {
    padding-left: 27px;
    padding-right: 27px;
  }
}
.card-bk__cons .card-bk__features-icon {
  stroke: rgb(var(--color-red));
}
.card-bk__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1200px) {
  .card-bk__info {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.card-bk__info > * {
  padding: 3.05556vw 1.66667vw;
  border-top: clamp(1px, 0.27777vw, 0.27777vw) solid rgb(var(--color-bg-main));
}
@media (min-width: 1200px) {
  .card-bk__info > * {
    padding: 16px 12px;
    border-top-width: 1px;
    border-right: 1px solid rgb(var(--color-bg-main));
  }
}
@media (max-width: 1199.98px) {
  .card-bk__info > *:nth-child(2n+1) {
    border-right: clamp(1px, 0.27777vw, 0.27777vw) solid rgb(var(--color-bg-main));
  }
}
@media (min-width: 1200px) {
  .card-bk__info > *:last-child {
    border-right: 0;
  }
}
.card-bk__info-label {
  text-align: center;
  color: rgb(var(--color-gray));
  font-size: 3.33333vw;
  line-height: 1.16667;
}
@media (min-width: 1200px) {
  .card-bk__info-label {
    font-size: 12px;
    line-height: 1.16667;
  }
}
.card-bk__info-item {
  display: flex;
  flex-direction: column;
  gap: 3.61111vw;
}
@media (min-width: 1200px) {
  .card-bk__info-item {
    gap: 14px;
  }
}
.card-bk__info-value {
  text-align: center;
  font-size: 5vw;
  font-weight: 500;
  line-height: 1.16667;
}
@media (min-width: 1200px) {
  .card-bk__info-value {
    font-size: 18px;
  }
}
.card-bk__promo {
  display: flex;
  flex-direction: column;
  gap: 1.11111vw;
}
@media (min-width: 1200px) {
  .card-bk__promo {
    gap: 4px;
  }
}
.card-bk__promo-btn {
  display: flex;
  align-items: center;
  gap: 2.77778vw;
  padding: 2.22222vw 3.33333vw;
  border-radius: 3.33333vw;
  background: rgb(var(--color-bg-gray));
  border: none;
  fill: rgb(var(--color-primary));
  font-size: 5vw;
  font-weight: 500;
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .card-bk__promo-btn {
    gap: 10px;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 12px;
  }
}
.card-bk__promo-icon {
  width: 6.66667vw;
  aspect-ratio: 1;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .card-bk__promo-icon {
    width: 24px;
  }
}
.card-bk__promo-text {
  text-overflow: ellipsis;
  overflow: hidden;
}
.card-bk__apps {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-bk__apps-links {
  display: flex;
  align-items: center;
  gap: 3.61111vw;
  margin-top: 1.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__apps-links {
    gap: 8px;
    margin-top: 0;
  }
}
.card-bk__apps-link {
  width: 13.33333vw;
  height: 11.11111vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-bg-gray));
  border-radius: 2.22222vw;
}
.card-bk__apps-link--thin {
  width: 11.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__apps-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}
.card-bk__apps-icon {
  display: block;
  width: 6.66667vw;
  height: 6.66667vw;
}
@media (min-width: 1200px) {
  .card-bk__apps-icon {
    width: 24px;
    height: 24px;
  }
}
.card-bk__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.22222vw;
  padding-bottom: 0.55556vw;
}
@media (min-width: 1200px) {
  .card-bk__footer {
    padding-bottom: 4px;
    gap: 12px;
  }
}
.card-bk__award {
  display: flex;
  align-items: center;
  color: rgb(var(--color-gray));
  fill: rgb(var(--color-gray));
  stroke: rgb(var(--color-gray));
  gap: 0.83333vw;
  font-size: 2.77778vw;
  line-height: 1.2;
  font-weight: 400;
  margin-left: 0.83333vw;
}
@media (min-width: 1200px) {
  .card-bk__award {
    font-size: 12px;
    margin-left: 11px;
    gap: 7px;
  }
}
.card-bk__award-icon {
  width: 3.05556vw;
  height: 2.77778vw;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .card-bk__award-icon {
    width: 15px;
    height: 14px;
  }
}

.section-bk-list {
  padding: 3.33333vw 1.66667vw;
}
@media (min-width: 1200px) {
  .section-bk-list {
    gap: 20px;
    padding: 20px;
  }
}
.section-bk-list--small-padding {
  padding: 1.66667vw;
}
@media (min-width: 1200px) {
  .section-bk-list--small-padding {
    padding: 20px;
  }
}

.bk-list {
  display: flex;
  flex-direction: column;
  gap: 1.11111vw;
}
@media (min-width: 1200px) {
  .bk-list {
    gap: 8px;
  }
}
@media (min-width: 1200px) {
  .bk-list--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/*# sourceMappingURL=main.css.map */