about.scss 2.25 KB
@import "../../vars";

.about {
  padding-top: 70px;
}

    .about-top {
      display: flex;
      justify-content: space-between;
      align-items: center;

      &__title {
        font-weight: 700;
        font-size: 48px;
        line-height: 100%;
        letter-spacing: -0.01em;
        color: $vmainGrey;
      }

      &__link {
        font-family: 'Muller';
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 22px;
        color: $vactiveOrange;
        position: relative;
        margin-right: 38px;

        &:after {
          position: absolute;
          content: "";
          background-image: url("../../../img/main/link.svg");
          background-repeat: no-repeat;
          background-size: cover;
          width: 24px;
          height: 13px;
          margin-left: 14px;
          margin-top: 5px;
        }
      }
    }

    .about-main {
      margin-top: 40px;
      display: flex;
    }

    .about-main-text {
        letter-spacing: -0.01em;
        font-size: 16px;
        color: $vmainGrey;
        max-width: 658px;
        width: 100%;

        &__title {
          font-weight: 600;
          font-size: 16px;
          line-height: 20px;
          max-width: 580px;
          width: 100%;
        }

        &__par {
          line-height: 22px;
          margin-top: 24px;
          max-width: 1063px;
          width: 100%;
        }
    }

    .about-main-numbers {
        display: flex;
        flex-wrap: wrap;
        margin-left: 117px;
        padding-top: 20px;

        &:not(:nth-child(2n)) {
            margin-right: 133px;
          }

        > :nth-child(-n + 2) {
            margin-bottom: 97px;
        }
    }

    .about-main-numbers-block {

          &__num {
            font-family: 'Muller';
            font-weight: 700;
            font-size: 48.75px;
            line-height: 22px;
            color: $vactiveOrange;
          }

          &__def {
            max-width: 192px;
            width: 100%;
            margin-top: 24px;
            font-family: 'Muller';
            font-weight: 500;
            font-size: 15px;
            line-height: 19px;
            color: $vmainGrey;
          }
        }

        .second, .four {
          margin-left: 52px;
        }