/* Contact-Us */
.contact-us {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* title-box */
.contact-us .title-box {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us .title-box .title {
  width: 260px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact-us .title h1 {
  font-family: thin;
  font-size: 45px;
}
.contact-us .title span {
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--light_yellow);
  z-index: -1;
  clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}
.contact-us .item-box {
  width: 1140px;
  display: flex;
  justify-content: space-between;
}
.contact-us .item-box .item {
  width: 49.5%;
  height: 500px;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--white);
  border: var(--border);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us .item iframe {
  width: 100%;
  height: 100%;
}
.contact-us .item h1 {
  font-family: thin;
  text-align: center;
  margin-bottom: 30px;
}
.contact-us .item input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: var(--border);
  border-radius: 5px;
  box-sizing: border-box;
}
.contact-us .item .message {
  height: 150px;
}
.contact-us .item a {
  text-align: center;
  padding: 5px 20px;
  border-radius: 20px;
  color: var(--white);
  background-color: var(--red);
  font-size: 12px;
  transition: all 0.3s;
  box-sizing: border-box;
}
.contact-us .item a:hover {
  border: 2px solid var(--red);
  background-color: var(--black);
}