.services {
  padding: 30px 0;
}

.services .title {
  margin-bottom: 20px;
}

.services .item:not(:last-child) {
  margin-bottom: 30px;
}

.services .lt {
  margin-bottom: 20px;
}

.services .lt img {
  width: 100%;
  aspect-ratio: 784 / 496;
  border-radius: 40px;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.services .bottom-img {
  display: none;
}

.services .tit {
  margin-bottom: 10px;
}

.services .info {
  font-size: 18px;
  line-height: 1.8;
  max-height: 227px;
}

@media (min-width: 992px) {
  .services .item:not(:last-child) {
    margin-bottom: 0;
  }

  .services .info-group {
    display: flex;
  }

  .services .item:nth-child(even) .info-group {
    flex-direction: row-reverse;
  }

  .services .lt {
    flex: 0 0 51.75%;
    max-width: 51.75%;
    padding-bottom: 18px;
    margin-bottom: 0;
    position: relative;
  }

  .services .item:nth-child(odd) .lt {
    padding-left: 28px;
  }

  .services .item:nth-child(even) .lt {
    padding-right: 28px;
  }

  .services .lt::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 90.5%;
    height: auto;
    aspect-ratio: 724 / 392;
    background: #F98145;
    z-index: -1;
  }

  .services .item:nth-child(odd) .lt::before {
    left: 0;
  }

  .services .item:nth-child(even) .lt::before {
    right: 0;
  }

  .services .lt::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 30px solid #FDA074;
    z-index: -1;
  }

  .services .item:nth-child(odd) .lt::after {
    right: -30px;
    transform: translateX(10%);
  }

  .services .item:nth-child(even) .lt::after {
    left: -30px;
    transform: translateX(-10%);
  }

  .services .item:nth-child(odd) .lt img {
    border-radius: 80px 0px 80px 0px;
  }

  .services .item:nth-child(even) .lt img {
    border-radius: 0px 80px 0px 80px;
  }

  .services .rt {
    flex: 1;
  }

  .services .item:nth-child(odd) .rt {
    padding-left: 30px;
  }

  .services .item:nth-child(even) .rt {
    padding-right: 30px;
  }

  .services .bottom-img {
    width: 56.7%;
    display: block;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
  }

  .services .item:nth-child(even) .bottom-img {
    transform: rotateX(180deg);
  }
}

@media (min-width: 1200px) {
  .services {
    padding: 60px 0;
  }

  .services .title {
    margin-bottom: 40px;
  }

  .services .item:nth-child(odd) .rt {
    padding-left: 60px;
  }

  .services .item:nth-child(even) .rt {
    padding-right: 60px;
  }

  .services .tit {
    margin-bottom: 20px;
  }

  .services .info {
    font-size: 20px;
    max-height: 288px;
  }
}

@media (min-width: 1440px) {
  .services .info {
    max-height: 360px;
  }
}

@media (min-width: 1640px) {
  .services {
    padding-bottom: 84px;
  }

  .services .title {
    margin-bottom: 59px;
  }

  .services .lt::after {
    width: 180px;
    height: 180px;
  }

  .services .item:nth-child(odd) .lt::after {
    right: -60px;
  }

  .services .item:nth-child(even) .lt::after {
    left: -60px;
  }

  .services .bottom-img {
    margin-top: -30px;
  }

  .services .rt {
    padding-top: 14px;
  }

  .services .tit {
    margin-bottom: 30px;
  }

  .services .info {
    font-size: 24px;
    line-height: 1.5;
    max-height: 374px;
  }

  .services .info>*:not(:last-child) {
    margin-bottom: 10px;
  }
}


/* bottom-form */
.bottom-form {
  padding-bottom: 30px;
}

.bottom-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.bottom-form .row>div {
  padding: 0 10px;
}

.bottom-form .form-control {
  font-size: 18px;
  border-radius: 0;
  border-color: #666666;
}

.bottom-form .form-control::-webkit-input-placeholder {
  color: #333;
}

.bottom-form .form-control:-moz-placeholder {
  color: #333;
}

.bottom-form .form-control::-moz-placeholder {
  color: #333;
}

.bottom-form .form-control:-ms-input-placeholder {
  color: #333;
}

.bottom-form .btn-wrap {
  margin-top: 25px;
}

.bottom-form .btn {
  color: #fff;
  font-size: 18px;
  border-radius: 0;
  font-weight: bold;
  background: var(--style-color);
}

@media (min-width: 1200px) {
  .bottom-form {
    padding-bottom: 60px;
  }

  .bottom-form .form-group {
    margin-bottom: 30px;
  }

  .bottom-form .form-control {
    height: 65px;
    font-size: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .bottom-form textarea.form-control {
    height: 152px;
    padding-top: 16px;
  }

  .bottom-form .btn-wrap {
    margin-top: 40px;
  }

  .bottom-form .btn {
    width: 228px;
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 7px;
    transition: all .6s;
  }

  .bottom-form .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  }
}

@media (min-width: 1640px) {
  .bottom-form {
    padding-bottom: 100px;
  }

  .bottom-form .form-control {
    font-size: 24px;
  }

  .bottom-form input.form-control {
    height: 84px;
  }

  .bottom-form textarea.form-control {
    padding-top: 24px;
  }

  .bottom-form .btn {
    font-size: 22px;
  }
}