.contact {
  display: flex;
  padding: 50px 0px;
  font-size: 24px;
}
.contact .info {
  flex: 1;
}
.contact .info .title {
  font-weight: bold;
  text-align: left;
}
.contact .info ul.method {
  list-style-type: none;
  padding-left: 0;
}
.contact .info ul.method li {
  margin-bottom: 20px;
}
.contact .info ul.method li .icon {
  width: 30px;
  margin-right: 15px;
  position: relative;
  top: 8px;
}
.contact .map {
  flex: 1;
}
.contact .map .map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.contact .map .map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.form {
  background-color: #8C0000;
  border-radius: 25px;
  padding: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
.form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* with the :focus here, we show grey when using the element */
}
.form form .title {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  padding: 7px 49px;
  color: black;
  font-weight: normal;
}
.form form .error-block {
  color: white;
}
.form form .header {
  margin-bottom: 10px;
  width: 200px;
}
.form form option,
.form form option:first-of-type,
.form form select:focus {
  color: black;
}
.form form ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}
.form form :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}
.form form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}
.form form :-ms-input-placeholder,
.form form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}
.form form input,
.form form select,
.form form textarea {
  width: 100%;
  border: none;
  margin: 10px 0px;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0px;
  font-size: 16px;
  color: black;
}
.form form textarea {
  text-align: left;
  padding: 10px 20px;
  box-sizing: border-box;
}
.form form button[type=submit] {
  background-color: white;
  border: none;
  padding: 7px 37px;
  border-radius: 10px;
  color: black;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 480px) {
  .contact {
    flex-direction: column;
    padding: 0px;
  }
  .form {
    box-sizing: border-box;
    width: 90%;
  }
}

