projects.scss 1.96 KB
@import "../../vars";
@import "../../mixins";

.projects {
  padding-top: 80px;

  &__container {
    position: relative;
    text-align: center;

    .projects__title {
      font-weight: 600;
      font-size: 36px;
      line-height: 42px;
      letter-spacing: -0.01em;
      color: $vmainGrey;
      margin-bottom: 42px;
      text-align: left;
    }

    .swiper-button-next_projects, .swiper-button-prev_projects {
      position: absolute;
    }

    .swiper-button-prev_projects {
      top: 40px;
      left: 1239px;
      width: 20px;
      height: 20px;
    }

    .swiper-button-next_projects {
      top: 40px;
      right: 15px;
      width: 20px;
      height: 20px;
    }

    .projects__line {
      margin-top: 64px;
      width: 205px;
      height: 1px;
      background-color: #ABB2BF;
    }

    .projects__bottom-text {
      margin-top: 12px;
      line-height: 22px;
      letter-spacing: -0.01em;
      color: #ABB2BF;
      max-width: 680px;
      width: 100%;
      text-align: left;
    }

    .projects__btn {
      @include btn-orange-hover;
      width: 180px;
      height: 48px;
      margin-top: 64px;

      &:hover {
        @include btn-orange;
      }
    }
  }
}

.swiper-slide-projects {

  .slide-projects-img {
    max-width: 427px;
    width: 100%;
    max-height: 228px;
    height: 100%;
  }

  .slide-projects-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: $vmainGrey;
    margin-top: 24px;
    text-align: left;
  }

  .projects-title-2 {
    max-width: 315px;
    width: 100%;
  }


  .slide-projects_info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;

    .info-1, .info-2 {
      display: flex;
      justify-content: space-between;
    }

    .info-2 {
      margin-top: 12px;
    }

    .projects_info-main {
      line-height: 22px;
      color: $vmainGrey;
    }

    .info-name {
      font-weight: 600;
    }
  }
}




.projects__container [class^="swiper-button-"]::after {
  content: "";
}