.page-main {
  display: flex;
  flex-direction: column;
      overflow-x: hidden;
}

.about-hero {
  background: linear-gradient(180deg, #ffffff, #f6f9fe);
}
.section--blue {
  padding: 0 0 50px 0;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 52px;
  align-items: center;
}
.about-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  height: 100%;
  padding: 50px 5px 50px 20px;
}
.about-hero__copy:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid hsl(211, 100%, 18%);
  border-radius: 50%;
  bottom: -25px;
  right: -50px;
  opacity: 0.3;
}

.about-hero__image {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.about-hero__image:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-main);
  background-image: url(../../img/about-page-portrait.webp);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, white 20%, hsl(211, 100%, 18%));
  position: absolute;
}

.circle.one {
  width: 120px;
  height: 120px;
  bottom: 70px;
  right: -30px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 50px;
  left: 30px;
}

.big-circle {
    position: absolute;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--col-cir-main), var(--col-cir-second));
    bottom: 80px;
    left: 400px;
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 160px;
  aspect-ratio: 1;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
}

.about-hero__copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.about-hero__visual {
  min-height: 500px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-value {
  padding: 28px 22px;
  text-align: center;
  z-index: 1;
}

.about-value h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.about-value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.about-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-method article {
  padding: 26px;
}

.about-method h3 {
  margin: 14px 0 8px;
}

.about-method p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .about-values,
  .about-method {
    grid-template-columns: 1fr;
  }
}
