.about-company-13-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-thierteen-block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 0;
}

.about-thierteen-block * {
  box-sizing: border-box;
}

.about-thierteen-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--bg-primary-main);
  z-index: -2;
}

.about-thierteen-block__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.about-thierteen-block__title .info_plate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0px 20px;
  background: var(--bg-primary-second);
  border-radius: 100px;
  width: fit-content;
}

.about-thierteen-block__title .info_plate svg path {
  fill: var(--colors-second);
  stroke: var(--colors-second);
}

.about-thierteen-block-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0px 22px;
  color: var(--text-primary-head);
  border: 1px solid var(--colors-main);
  border-radius: 5px;
  background: var(--bg-primary-main);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}

.about-thierteen-block-btn:hover {
  color: var(--bg-primary-main);
  background: var(--colors-main);
}

.about-thierteen-block img,
.about-thierteen-block svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thierteen-block-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}

.about-thierteen-block__top {
  max-height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.about-thierteen-block__bottom.flex {
  display: flex;
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}

.about-thierteen-block__bottom.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}

.about-thierteen-block__advantages.grid-1 {
  grid-template-columns: repeat(1, 1fr);
  max-width: 25%;
}

.about-thierteen-block__advantages.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.about-thierteen-block__advantages {
  display: grid;
  flex-shrink: 0;
  width: 100%;
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
}

.about-thierteen-block__advantages .advantage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--colors-main);
  height: 100%;
}

.about-thierteen-block__advantages .advantage:not(:first-child) {
  background: var(--bg-primary-second);
}

.about-thierteen-block__advantages .advantage:not(:first-child) .advantage__option {
  color: var(--colors-main);
}

.about-thierteen-block__advantages .advantage:not(:first-child) .advantage__name {
  color: var(--bg-alt-main);
}

.about-thierteen-block__advantages .advantage__name {
  color: var(--bg-primary-main);
}

.about-thierteen-block__advantages .advantage__option {
font-family: var(--font-family);
font-weight: 700;
font-size: 60px;
line-height: 120%;
  color: var(--bg-primary-main);
}

.about-thierteen-block__description {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-primary-main);
  border: 1px solid var(--bg-primary-stroke);
}

.about-thierteen-block__description .read-more-btn {
  margin-top: 10px;
font-family: var(--font-family);
font-weight: 500;
font-size: 18px;
line-height: 100%;
color: var(--colors-second);
  cursor: pointer;
}

.about-thierteen-block__description .description {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: fit-content;
}

.about-thierteen-block__description .description p {
  margin-bottom: 10px;
}

.about-thierteen-block__description .description * {
font-family: var(--font-family);
font-weight: 400;
font-size: 16px;
line-height: 130%;
color: var(--text-primary-main);
}

@media (max-width: 999.98px) {
  .about-thierteen-block__bottom.grid {
    display: flex;
    flex-direction: column;
  }

  .about-thierteen-block__advantages.grid-1 {
    grid-template-columns: repeat(1, 1fr);
    max-width: 35%;
  }
}

@media (max-width: 549.98px) {

  .about-thierteen-block__advantages,
  .about-thierteen-block__bottom.flex {
    display: flex;
    flex-direction: column;
  }

  .about-thierteen-block__advantages.grid-1 {
    max-width: unset;
  }
}

/*# sourceMappingURL=block.css.map */