.about{
  padding-bottom: var(--section-pad-bottom);
}

.about__container{
  padding-top: var(--section-pad-top);
}

.about__results{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-items: center;
}

.about__bottom{
  margin-top: clamp(32px, 8vw, 54px);
  display: grid;
  grid-template-columns: 1fr 455px;
  gap: 40px;
  align-items: start;
}

.about__copy{
  max-width: 560px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about__paragraph{
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 152%;
  color: var(--text-mormal);
}

.about__paragraph + .about__paragraph{
  margin-top: 18px;
}

.about-director{
  margin-top: auto;
}

.about-director__name {
  font-family: var(--font-family);
  font-weight: 500;

  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;

  color: var(--main-dark);
}

.about-director__role {
  margin-top: clamp(4px, 0.6vw, 6px);

  font-family: var(--font-family);
  font-weight: 300;

  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.4;

  color: var(--main-normal);
}

.about__image{
  position: relative;
  width: 455px;
  height: 449px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, .10);
}

.about__image::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(11, 95, 255, .10) 0%, rgba(11, 95, 255, .02) 100%),
    linear-gradient(135deg, rgba(11, 95, 255, .22) 0%, rgba(2, 6, 23, .04) 60%);
  background-position: center, center;
  background-repeat: no-repeat;
}

.about__img{
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-result{
  text-align: center;
}

.about-result__value {
  font-family: var(--font-family);
  font-weight: 600;

  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;

  color: var(--main--blue);
}

.about-result__label {
  margin-top: clamp(6px, 1vw, 10px);

  font-family: var(--font-family);
  font-weight: 500;

  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.4;

  color: var(--main-dark);
}

.about-result__value--years {
  color: var(--main-light);
}

.about-result__value--projects {
  color: var(--main-normal);
}

.about-result__value--energy {
  color: var(--main--blue);
}


@media (max-width: 768px){
  .about__results{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-result{
    text-align: left;
    padding: 16px 16px;
  }

  .about__bottom{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .about__image{
    width: 100%;
    max-width: 455px;
    height: auto;
    aspect-ratio: 455 / 449;
  }
}

