.contact-wrap {
  padding: 3% 5%;
  background-color: #e6e6e6;
}

.contact-wrap .content {
  display: flex;
  align-items: stretch;
}

.contact-wrap .map {
  flex: 1;
}

.contact-wrap .info {
  background-color: #fff;
  padding: 20px 15px;
  overflow: hidden;
}

.contact-wrap .title {
  font-size: 20px;
  color: #e77b1a;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 8px;
}

.contact-wrap .way {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}

.contact-wrap .qr {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}

.contact-wrap .qr .img {
  width: 114px;
  float: left;
  margin-right: 12px;
}

.contact-wrap .qr .img img {
  width: 100%;
  height: 100%;
}

.contact-wrap .comments {
  padding: 15px 0;
}

.contact-wrap .comments .comments-title {
  font-size: 20px;
  color: #e77b1a;
}

.contact-wrap .send-btn {
  width: 100%;
  height: 33px;
  background-color: #007cc3;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  line-height: 33px;
  cursor: pointer;
}

.comments input {
  display: block;
  border: 1px solid #eeeeee;
  width: 100%;
  margin: 10px 0;
  height: 33px;
  padding: 0 8px;
  color: #cecece;
}

#textarea {
  height: 200px;
  width: 100%;
  padding: 4px 8px;
  border: 1px solid #eeeeee;
  overflow: auto;
  color: #cecece;
}

#textarea:empty:before {
  content: attr(placeholder);
  color: #a09f9f;
}

@media screen and (max-width: 768px) {
  .contact-wrap .content {
    display: block;
  }

  .contact-wrap .map {
    width: 100%;
    height: 300px;
  }

  .contact-wrap .info {
    width: 100%;
  }
}