.project {
  padding: 30px 0;
}

.project .title {
  margin-bottom: 10px;
}

.project .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.project .item:not(:last-child) {
  margin-bottom: 30px;
}

.project .lt {
  margin-bottom: 20px;
}

.project .tit {
  font-weight: bold;
  margin-bottom: 15px;
}

.project .info {
  line-height: 2;
  margin-bottom: 20px;
}

.project .btn {
  width: 163px;
  color: #fff;
  border-radius: 0;
  padding: 4px 15px;
  background: var(--style-color);
  border-color: var(--style-color);
}

@media (min-width: 992px) {
  .project .item {
    display: flex;
    align-items: center;
  }

  .project .item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .project .lt {
    flex: 0 0 52%;
    max-width: 52%;
    margin-bottom: 0;
  }

  .project .rt {
    flex: 1;
  }

  .project .item:nth-child(odd) .rt {
    padding-left: 30px;
  }

  .project .item:nth-child(even) .rt {
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .project {
    padding: 60px 0;
  }

  .project .title {
    margin-bottom: 18px;
  }

  .project .sub-info {
    margin-bottom: 50px;
  }

  .project .item:nth-child(odd) .rt {
    padding-left: 70px;
  }

  .project .item:nth-child(even) .rt {
    padding-right: 70px;
  }

  .project .item:not(:last-child) {
    margin-bottom: 60px;
  }

  .project .tit {
    margin-bottom: 32px;
  }

  .project .tit:hover {
    color: var(--style-color);
  }

  .project .info {
    margin-bottom: 37px;
  }

  .project .btn {
    transition: all .3s;
  }

  .project .btn:hover {
    color: var(--style-color);
    background: none;
  }
}

@media (min-width: 1640px) {
  .project {
    padding-top: 74px;
    padding-bottom: 110px;
  }

  .project .item:not(:last-child) {
    margin-bottom: 80px;
  }

  .project .rt {
    transform: translateY(-30px);
  }
}