.about-seven-block .holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
}

.about-seven-block .top-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  gap: 15px;
}

.about-seven-block .mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background: var(--bg-primary-second);
  border-radius: 100px;
  padding: 10px 20px;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

.about-seven-block .text {
  color: var(--text-primary-main);
  white-space: nowrap;
}

.about-seven-block .desc{
	display:flex;
	flex-direction:column;
	gap:15px;
}
.about-seven-block .desc ul,.about-seven-block .desc ol{
	list-style-position: inside;
}

.about-seven-block .desc ul li,.about-seven-block .desc ol li{
	font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
    line-height: 130%;
    font-weight: 400;
    color: var(--text-primary-main);
}

.about-seven-block .desc ul li::marker, ,.about-seven-block .desc ol li::marker{
    color: var(--hover-main);
}
.about-seven-block .desc p{
	font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
    line-height: 130%;
    font-weight: 400;
    color: var(--text-primary-main);
}

.about-seven-block .icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.about-seven-block .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-seven-block .holder .side {
  width: 48%;
  flex-grow: 1;
	position: relative;
    background: var(--bg-primary-second);
    border-radius: 30px;
    padding: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    width: 100%;
    flex-shrink: 0;
    transition: all .3s ease-in-out, max-height 1s ease-in-out;
}

.about-seven-block .holder .left-side {
  display: flex;
  flex-direction: column;
  height: auto;
}

.about-seven-block .file-holder {
  width: 100%;
  position: sticky;
  top: 30px;
}

.about-seven-block .block-image,
.about-seven-block .block-video {
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.about-seven-block .block-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--second);
  margin-bottom: 10px;
}

/* .about-seven-block .desc p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
} */

.about-seven-block h2.block-title {
  margin-bottom: 60px;
}

.about-seven-block .quote {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.about-seven-block .quote__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-seven-block .quote__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-seven-block .quote__desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--bg-alt-main);
}

.about-seven-block .advants {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.about-seven-block .advant {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}

.about-seven-block .advant__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: var(--colors-second);
}

.about-seven-block .advant__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
  word-break: break-word;
}

.about-seven-block .buttons-holder {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 40px;
  flex-wrap: wrap;
}

.about-seven-block .link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: var(--colors-main);
}

@media (max-width: 1025px) {
  .about-seven-block .holder {
    gap: 30px;
  }

  .about-seven-block .advant__title {
    font-size: 40px;
  }
}

@media (max-width: 769px) {
  .about-seven-block h2.block-title {
    margin-bottom: 30px;
  }

  .about-seven-block .holder {
    flex-direction: column;
  }

  .about-seven-block .holder .side {
    width: 100%;
  }
}

@media (max-width: 498px) {
  .about-seven-block .block-subtitle {
    font-size: 18px;
  }

  .about-seven-block .advants {
    grid-template-columns: 1fr;
  }

  .about-seven-block .advant {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
}

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