/* title-wrap */
.title-wrap {
  text-align: center;
}

.title-wrap .title {
  display: inline-block;
  position: relative;
}

.title-wrap .title::after {
  content: '';
  width: calc(100% - 40px);
  max-width: 278px;
  height: 4px;
  margin-top: 6px;
  border-radius: 4px;
  background: var(--style-color);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 1200px) {
  .title-wrap .title::after {
    height: 8px;
    margin-top: 12px;
  }
}


/* contact */
.contact {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact .lt {
  margin-bottom: 30px;
}

.contact .title-wrap {
  text-align: left;
}

.contact .item {
  padding-right: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DFDFDF;
}

.contact .item:not(:last-child) {
  margin-bottom: 20px;
}

.contact .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.contact .icon {
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 14px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .icon-title {
  opacity: .7;
}

.contact .item-info {
  margin-left: 45px;
}

.contact .rt {
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.contact .rt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--style-color);
  opacity: 0.9;
}

.contact .rt>* {
  position: relative;
  z-index: 1;
}

.contact .rt-title {
  text-align: left;
}

.contact .form-info {
  line-height: calc(30 / 16);
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact .form-title {
  padding-top: 20px;
  margin-bottom: 15px;
  border-top: 1px solid rgba(214, 214, 214, .8);
}

.contact .form-control {
  color: #fff;
  box-shadow: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
}

.contact .btn-wrap {
  margin-top: 20px;
}

.contact .btn {
  width: 100%;
  font-size: 18px;
  border-radius: 6px;
  background: #fff;
}

.contact .form-control::-webkit-input-placeholder {
  color: #333;
}

.contact .form-control:-moz-placeholder {
  color: #333;
}

.contact .form-control::-moz-placeholder {
  color: #333;
}

.contact .form-control:-ms-input-placeholder {
  color: #333;
}

@media (min-width: 992px) {
  .contact .container {
    display: flex;
    align-items: center;
  }

  .contact .lt {
    flex: 1;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .contact .rt {
    flex: 0 0 calc((780 / 1440) * 100%);
    max-width: calc((780 / 1440) * 100%);
  }
}

@media (min-width: 1200px) {
  .contact {
    padding-top: 53px;
    padding-bottom: 60px;
  }

  .contact .lt {
    padding-right: 60px;
  }

  .contact .title {
    margin-bottom: 42px;
  }

  .contact .item {
    padding-bottom: 26px;
  }

  .contact .item:not(:last-child) {
    margin-bottom: 30px;
  }

  .contact .icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-right: 20px;
  }

  .contact .item-info {
    margin-left: 64px;
  }

  .contact .item-info a:hover {
    text-decoration: underline;
  }

  .contact .rt {
    border-width: 2px;
    padding: 56px 50px 61px;
  }

  .contact .form-info {
    margin-bottom: 24px;
  }

  .contact .form-title {
    padding-top: 25px;
    margin-bottom: 18px;
  }

  .contact .form-group {
    margin-bottom: 20px;
  }

  .contact .form-control {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact input.form-control {
    height: 50px;
  }

  .contact textarea.form-control {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .contact .btn-wrap {
    margin-top: 30px;
  }

  .contact .btn {
    font-size: 20px;
    padding: 11px 15px;
    transition: color .3s;
  }

  .contact .btn:hover {
    color: var(--style-color);
  }
}

@media (min-width: 1440px) {
  .contact {
    padding-bottom: 107px;
  }

  .contact .lt {
    padding-right: 120px;
  }

  .contact .title::after {
    width: 238px;
  }

  .contact .item:not(:last-child) {
    margin-bottom: 42px;
  }

  .contact .rt {
    padding-left: 70px;
    padding-right: 70px;
  }

  .contact .btn {
    font-size: 24px;
  }
}


/* map */
.map {
  padding: 30px 0;
  background: #EBEAEA;
}

.map .title-wrap {
  margin-bottom: 20px;
}

.map .title::after {
  width: 160px;
}

.map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 671;
  display: block;
}

@media (min-width: 1200px) {
  .map {
    padding: 60px 0;
  }

  .map .title-wrap {
    margin-bottom: 40px;
  }

  .map .title::after {
    width: 200px;
  }
}

@media (min-width: 1440px) {
  .map {
    padding-top: 93px;
    padding-bottom: 100px;
  }

  .map .title-wrap {
    margin-bottom: 50px;
  }

  .map .title::after {
    width: 278px;
  }
}


/* faq */
.faqs {
  padding: 30px 0;
}

.faqs .title-wrap {
  margin-bottom: 20px;
}

.faqs .title::after {
  width: 160px;
}

.faqs .item:not(:last-child) {
  margin-bottom: 30px;
}

.faqs .item-title {
  padding: 7px 15px;
  background: #F1F1F1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all .3s;
}

.faqs .item-title.active {
  color: #fff;
  background: var(--style-color);
}

.faqs .item-title i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 15px;
  border-radius: 50%;
  background: var(--style-color);
  border: 1px solid var(--style-color);
  position: relative;
}

.faqs .item-title.active i {
  background: transparent;
  border-color: #fff;
}

.faqs .item-title i::before,
.faqs .item-title i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.faqs .item-title.active i::before,
.faqs .item-title.active i::after {
  background: #fff;
}

.faqs .item-title i::before {
  width: 2px;
  height: 50%;
  transition: height .3s;
}

.faqs .item-title.active i::before {
  height: 0;
}

.faqs .item-title i::after {
  width: 50%;
  height: 2px;
}

.faqs .item-info {
  color: #DADADA;
  padding: 2px 15px 12px;
  line-height: calc(30 / 16);
  background: var(--style-color);
  display: none;
}

@media (min-width: 1200px) {
  .faqs {
    padding: 60px 0;
  }

  .faqs .title-wrap {
    margin-bottom: 40px;
  }

  .faqs .title::after {
    width: 200px;
  }

  .faqs .item-title {
    padding: 12px 30px;
  }

  .faqs .item-title i {
    border-width: 2px;
  }

  .faqs .item-info {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 23px;
  }
}

@media (min-width: 1440px) {
  .faqs {
    padding-top: 93px;
    padding-bottom: 100px;
  }

  .faqs .title-wrap {
    margin-bottom: 50px;
  }

  .faqs .title::after {
    width: 278px;
  }
}