<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.checkup-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0 128px;
}
.checkup-h2{
    font: 900 40px "Museo Sans Cyrl";
    color: #242624;
    border-top: unset !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.checkup-item {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  max-width: 588px;
  width: 48%;
  justify-content: space-between;
}

.checkup-item-text-cont {
  width: 100%;
  max-width: 43%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.checkup-item-text-cont .checkup-more {
  margin-top: 20px;
}

.checkup-item-title {
  font-family: 'Museo Sans Cyrl';
  font-size: 18px;
  font-weight: 900;
  color: var(--black, #242624);
}

.checkup-item-title span {
  color: #E31E24;
}

.checkup-item-text {
  color: #666666;
  line-height: 140%;
  padding-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* limit to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkup-item-price {
  font-family: 'Museo Sans Cyrl';
  font-weight: 700;
  padding-top: 8px;
}

.checkup-item img {
    width: 100%;
    height: 205px;
    max-width: 280px;
    object-fit: cover;
    border-radius: 24px;
}

@media(max-width: 1200px) {
  /*.checkup-item img {*/
  /*  max-width: 200px;*/
  /*  object-fit: cover;*/
  /*}*/
}

@media(max-width: 992px) {
  .checkup-item {
    max-width: unset;
    width: 100%;
  }
}

@media(max-width: 576px) {
    .checkup-item-text-cont {
        max-width: unset;
    }
  .checkup-item {
    flex-direction: column-reverse;
  }
  .checkup-item img {
      height: auto;
      max-height: 240px;
      max-width: unset;
  }
  .checkup-cont {
    padding-bottom: 50px;
  }
  .services h2 {
    font-size: 24px;
  }

}
</pre></body></html>