#content {
  margin-top: 75px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#info-section {
  width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
  font-weight: 500;
}

#info-section div:first-of-type {
  margin-top: 0;
}

#info-section > div {
  margin: 45px 0;
}

#contact-banner {
  width: 100%;
  height: 180px;
  text-align: center;
  border-bottom: 6px solid #3a3e4f;
}

#contact-banner > img {
  max-width: 100%;
  max-height: 100%;
  min-width: 310px;
  position: relative;
  top: 10px;
}

#contact-intro > h2 {
  margin-bottom: 10px;
}

#contact-social {
  margin-bottom: 0 !important;
}

#contact-social > h2 {
  margin-bottom: 20px;
}

#contact-social > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.social-account {
  margin: 0 20px 20px 0;
}

.social-account > a {
  display: flex;
  flex-direction: row;
  align-content: center;
  text-decoration: none;
  max-width: 245px;
  color: #515151;
}

.social-account > a:hover > h3 {
  color: #F58E23;
}

.social-account > a > h3 {
  margin: 0;
}

.social-icon {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}

.social-icon.tumblr-icon {
  margin-right: 5px;
}

#form-section {
  width: 50%;
  padding: 25px 30px;
  background-color: #e9e9e9;
  border-radius: 5%;
  box-sizing: border-box;
}

#contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#contact-form > * {
  margin: 10px 0;
  height: 50px;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  box-sizing: border-box;
}

::placeholder {
  color: #b6b6b6;
  opacity: 1; /* Firefox */
}

#input-message {
  height: 160px;
  max-width: 100%;
  padding-top: 15px;
}

#submit-button {
  width: 100px;
  background-color: #F58E23;
  border-radius: 20px;
  height: 40px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4rem;
  margin-bottom: 0; 
}

#submit-button:hover {
  cursor: pointer;
}

@media (max-width: 800px) {
  #content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }

  #info-section {
    width: 100%;
    padding-right: 0;
  }

  #form-section {
    width: 100%;
  }

  #contact-social {
    margin-bottom: 15px !important;
  }

  #submit-button {
    margin: 10px auto 0 auto;
  }
}

@media (max-width: 500px) {
  #content {
    margin-top: 20px;
  }
}

@media (max-width: 450px) {
  #form-section {
    padding: 10px 15px;
  }

  #contact-form > * {
    margin: 5px 0;
    padding: 5px 15px;
  }

  #input-message {
    padding-top: 14px;
  }

  #submit-button {
    margin: 5px auto 0 auto;
    height: 34px;
  }
}
