#about {
  background: url("/images/about_benefits_sections.webp") no-repeat center center;
  background-size: cover;
}

.about {
  .container {
    padding: 0 56px;
  }
  .about__wrapper {
    box-sizing: border-box;
    padding: 40px 0;
  }

  .about-work {
    margin-top: 56px;
    .about-work__title {
      font-family: Halvar Breitschrift;
      font-size: 46px;
      color: #1b1b1b;
      font-weight: 700;
      text-transform: uppercase;
    }
    .about-work__subtitle {
      margin-top: 16px;
      font-family: Halvar Breitschrift;
      font-size: 32px;
      font-weight: 500;
      color: #1b1b1b;
    }
    .about-work__list {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .about-work__item {
      height: 272px;
      background: white;
      box-shadow: 0 7px 29px 0 rgba(100, 100, 111, 0.2);
      box-sizing: border-box;
      padding: 32px 24px 32px 40px;
      gap: 24px;
      display: flex;
      min-width: 692px;
      flex-shrink: 0;
      flex: 1;
      align-items: center;
      .about-work__item__image {
        width: 164px;
        height: 164px;
        img {
          width: 100%;
          height: 100%;
        }
      }
      .about-work__item__text {
        .about-work__item__title {
          font-family: Halvar Breitschrift;
          font-size: 32px;
          font-weight: 500;
          color: #1b1b1b;
        }
        .about-work__item__list {
          ul {
            li {
              font-family: Onest;
              font-size: 18px;
              color: #1b1b1b;
            }
          }
        }
      }
    }
  }

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

    .about-us__content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .about-us__image {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 598px;
      .about-us__image__text {
        font-family: Onest;
        font-size: 12px;
        font-weight: 400;
        color: #3e464f;
      }
      img {
        width: 100%;
      }
    }

    .about-us__title {
      font-family: Halvar Breitschrift;
      color: #1b1b1b;
      font-weight: 700;
      font-size: 46px;
    }

    .about-us__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }

    .about-us__cards__item {
      display: flex;
      flex-direction: column;
      .about-us__cards__item__title {
        font-family: Halvar Breitschrift;
        color: #008dd2;
        font-size: 54px;
        font-weight: 700;
        span {
          font-size: 18px;
        }
      }
      .about-us__cards__item__descr {
        font-family: Onest;
        font-size: 18px;
        font-weight: 400;
        color: #1b1b1b;
      }
    }
  }

  .about-slider {
    margin-top: 40px;

    @media (min-width: 1075px) {
      display: none;
    }

    .about-work-swiper {
      .swiper-slide {
        height: auto;
      }

      .about-work__item {
        height: auto;
        min-height: 272px;
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;

        .about-work__item__image {
          width: 120px;
          height: 120px;
          margin: 0 auto 24px;
        }

        .about-work__item__text {
          .about-work__item__title {
            font-size: 24px;
            margin-bottom: 16px;
          }

          .about-work__item__list {
            ul {
              li {
                font-size: 16px;
                margin-bottom: 8px;
              }
            }
          }
        }
      }
    }

    .swiper-pagination {
      position: static;
      margin-top: 24px;

      .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ccc;
        opacity: 1;
        margin: 0 6px;

        &.swiper-pagination-bullet-active {
          background: #008dd2;
        }
      }
    }
  }

  @media (max-width: 1075px) {
    .about-work__list {
      display: none;
    }

    .about-slider {
      display: block;
    }
  }
}
