/* contact */
.contact {
  padding: 30px 0;
  background: #F8F8F8;
}

.contact .title {
  text-align: left;
  margin-bottom: 14px;
}

.contact .sub-info {
  margin-bottom: 20px;
}

.contact .item {
  margin-bottom: 30px;
}

.contact .item:nth-child(odd) {
  background: #FFF;
}

.contact .item:nth-child(even) {
  background: #F1FBFF;
}

.contact .lt {
  padding: 20px;
}

.contact .sub-title {
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  line-height: calc(24 / 36);
  font-family: 'Afacad-Regular';
}

.contact .tit {
  color: #333;
  line-height: calc(27 / 20);
}

.contact .info {
  line-height: calc(27 / 20);
}

.contact .rt img {
  width: 100%;
  aspect-ratio: 680 / 400;
}

.contact .row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -10px;
}

.contact .row>div {
  padding: 0 5px;
  margin-bottom: 10px;
}

.contact .block {
  padding: 20px;
  border-radius: 40px;
  background: #FFF;
}

@media (min-width: 768px) {}

@media (min-width: 1200px) {
  .contact {
    padding: 60px 0;
  }

  .contact .item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
  }

  .contact .item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .contact .lt {
    padding: 40px;
    width: calc(50% - 15px);
  }

  .contact .rt {
    width: calc(50% - 15px);
  }

  .contact .sub-info {
    margin-bottom: 50px;
  }

  .contact .cont-list li a:hover {
    color: var(--style-color);
  }

  .contact .info a:hover {
    color: var(--style-color);
  }
}

@media (min-width: 1440px) {
  .contact {
    padding: 120px 0;
  }

  .contact .item {
    gap: 40px;
  }

  .contact .lt {
    width: calc(50% - 20px);
  }

  .contact .rt {
    width: calc(50% - 20px);
  }

  .contact .block {
    padding: 40px;
  }
}



/* contact-form */
.contact-form {
  padding: 30px 0;
}

.contact-form .rt {
  padding: 30px 20px;
  border-radius: 0 0 20px 20px;
  border: 1px solid #EEE;
  border-top: none;
  background: linear-gradient(180deg, #009B4C 6.74%, #078042 95.81%);
}

.contact-form .lt img {
  border-radius: 20px 20px 0 0;
}

.contact-form .title {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
}

.contact-form .sub-info {
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 30px;
}

.contact-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.contact-form .row>div {
  padding: 0 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-color: #E1E1E1;
}

.contact-form textarea.form-control {
  padding-top: 19px;
  min-height: 104px;
}

.contact-form .btn {
  font-size: 18px;
  padding: 7px 20px;
  line-height: 1.25;
  margin-top: 20px;
  border-radius: 30px;
  color: var(--style-color);
  background: #fff;
  transition: background .3s;
}

.contact-form .form-control::-webkit-input-placeholder {
  color: rgba(40, 40, 40, 0.40);
}

.contact-form .form-control:-moz-placeholder {
  color: rgba(40, 40, 40, 0.40);
}

.contact-form .form-control::-moz-placeholder {
  color: rgba(40, 40, 40, 0.40);
}

.contact-form .form-control:-ms-input-placeholder {
  color: rgba(40, 40, 40, 0.40);
}

@media (min-width: 1200px) {
  .contact-form {
    padding: 60px 0;
  }

  .contact-form .container {
    display: flex;
  }

  .contact-form .container>* {
    flex: 0 0 50%;
  }

  .contact-form .lt img {
    height: 100%;
    border-radius: 20px 0 0 20px;
  }

  .contact-form .rt {
    border-left: none;
    border-top: 1px solid #EEE;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0 20px 20px 0;
  }

  .contact-form .title {
    margin-bottom: 20px;
  }

  .contact-form .sub-info {
    margin-bottom: 40px;
  }

  .contact-form .btn {
    width: 200px;
    font-size: 20px;
    margin-top: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .contact-form .btn:hover {
    color: #fff;
    background: var(--sub-color);
  }
}

@media (min-width: 1440px) {
  .contact-form {
    padding: 100px 0;
  }

  .contact-form .rt {
    padding: 60px;
  }

  .contact-form input.form-control {
    height: 60px;
  }

  .contact-form .btn {
    width: 243px;
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}