.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/contact.jpg) center center/cover;
  height: 40vh;
}
.contact-header h1 {
  color: #cc2936;
  padding-top: 80px;
  font-size: 3em;
}
.contact-info h2,
.send-message h2 {
  padding: 10px 0 30px;
  font-size: 2.5em;
}
.contact-info i {
  font-size: 1.5em;
}
.contact-info a {
  font-size: 1.5em;
  color: #cc2936;
}
.contact-info a:hover {
  color: rgb(182, 36, 48);
}

/*--------------------
    Send-message
--------------------*/
.send-message {
  background-color: rgb(231, 231, 231);
}
.send-message input,
.send-message textarea {
  display: block;
  border: 1px solid #cc2936;
  border-radius: 5px;
  padding: 10px;
  color: #cc2936;
}
.send-message label {
  margin-top: 20px;
  color: #cc2936;
}

.send-message button {
  color: black;
  border: 1px solid #cc2936;
  background-color: #cc2936;
  padding: 10px;
  display: inline-block;
  border-radius: 5px;
  transition: all 1s ease;
}
.send-message button:hover {
  color: #cc2936;
  border: 1px solid #cc2936;
  background-color: transparent;
}
.send-message textarea {
  width: 100%;
  height: 250px;
}
