.contact-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 12px;
  border-top: 1px solid #000;
  align-items: center;
}

.contact-title {
  font-size: 40px;
  font-weight: 500;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-text {
  font-size: 18px;
}

.contact-form {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.form-button {
  width: 100%;
}

.contact-center {
  padding: 16px;
}

.contact-item {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.5s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-item.address:before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/address.svg");
}

.contact-item.tel:before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/tel.svg");
}

.contact-item:hover {
  color: #808080;
}

@media (max-width: 767px) {
  .contact-form {
    flex-direction: column;
  }
}
