#contact-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 50px 0;
  background: black url('../images/home/contact/contact-bg.jpg') no-repeat;
  background-size: cover;
  width: 100%;
}
#contact-form:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(83,152,223,0.6), rgba(88,177,113,0.6));
}

.contact-info {
  background-size: cover;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

form{
  width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
#contact-form label {
  color: white;
  margin-top: 20px;
  font-weight: 300;
  font-size: 18px;
}
#contact-form input,
#contact-form textarea {
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  margin-top: 7px;
  border: 1px solid white;
  padding: 7px;
  font-size: 17px;
  font-weight: 300;
  color: white;
}
#contact-form button {
  margin-top: 40px;
  padding: 10px 12px;
  font-size: 19px;
  font-weight: 300;
  border-radius: 5px;
  cursor: pointer;
  color: #eaeaea;
  /*background: #63ca6d;*/
  background: rgba(0,0,0,0.5);
  border: 1px solid black;
}

.contact-blurb{
  background: #63ca6d;
  padding: 40px 0;
}
.contact-info {
  text-align: center;
  color: white;
}

.contact-info p{
  font-size: 22px;
  font-weight: 200;
}
.contact-info p span{
  font-weight: 600;
  border-bottom: 1px dotted white;
}

.contactform-form-head {
  margin-top: 50px;
  margin-bottom: 0;
  padding: 0 15px;
}
.contactform-form-head > span {
  font-weight: 400;
}

.contacform-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contacform-icons span {
  font-size: 18px;
  margin: 0 15px;
}
.contacform-icons a {
  color: white;
}


@media(max-width: 600px) {
  .contact-info {
    width: 100%;
  }
  .contact-info p{
    font-size: 20px;
  }
  .contacform-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    height: 80px;
  }
  .contacform-icons span img{
    position: relative;
    top: 2px;
  }
  .contacform-icons span a{
    margin-left: 10px;
  }
}


@media(max-width: 440px){
  .contact-info{
    width: 100%;
    padding: 0 20px;
  }

  form{
    width: 100%;
    padding: 0 25px;
  }
}  
