/* services */
.services {
  padding: 30px 0;
  background: #f3f3f3;
}

.services .title {
  margin-bottom: 0;
}

.services .sub-info {
  margin-bottom: 30px;
}

.services .item-wrap {
  padding: 20px 15px;
  background: #fff;
}

.services .item:not(:last-child) {
  margin-bottom: 30px;
}

.services .item-title {
  line-height: 1;
  display: flex;
  align-items: center;
  font-family: 'D-DIN-PRO-Bold';
  margin-bottom: 15px;
}

.services .num-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 50%;
  background: rgba(231, 216, 197, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .num-wrap span {
  color: #F94949;
}

.services .item-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
  margin-bottom: -20px;
}

.services .item-list li {
  width: 160px;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}

.services .item-list li img {
  width: 120px;
  border-radius: 8px;
  border: 1px solid #CDCDCD;
}

.services .item-list li.active img {
  border-color: #FABC75;
}

.services .sub-tit {
  margin-top: 13px;
  color: #333;
}

.services .check-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 10px auto 0;
  border: 2px solid #CDCDCD;
  position: relative;
  transition: border .3s;
}

.services .check-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FABC75;
  opacity: 0;
  transition: opacity .3s;
}

.services .item-list li.active .check-wrap {
  border-color: #FABC75;
}

.services .item-list li.active .check-wrap::before {
  opacity: 1;
}

.services .form-control {
  padding: 10px 16px 0;
  min-height: 79px;
  margin-left: 40px;
  border-color: #f5f5f5;
}

.services .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.services .form-control:-moz-placeholder {
  color: #ccc;
}

.services .form-control::-moz-placeholder {
  color: #ccc;
}

.services .form-control:-ms-input-placeholder {
  color: #ccc;
}

.services .btn {
  width: 100%;
  margin-top: 30px;
  max-width: 620px;
  padding: 7px 15px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .services .item-list {
    margin-bottom: -50px;
  }

  .services .item-list li {
    width: 210px;
    padding: 0 15px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .services {
    padding: 60px 0;
  }

  .services .sub-info {
    margin-bottom: 60px;
  }

  .services .item-wrap {
    padding: 32px 32px 43px;
  }

  .services .item:not(:last-child) {
    margin-bottom: 54px;
  }

  .services .item-title {
    margin-bottom: 24px;
  }

  .services .item-list {
    margin-left: 20px;
  }

  .services .item-list li img {
    border-width: 2px;
  }

  .services .form-control {
    margin-left: 64px;
  }

  .services .btn {
    margin-top: 54px;
  }
}

@media (min-width: 1640px) {
  .services {
    padding-top: 104px;
    padding-bottom: 80px;
  }

  .services .container {
    max-width: 1490px;
  }

  .services .sub-info {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
}