@charset "utf-8";
/* CSS Document */

/* ------------------------------- */
/* Title
/* ------------------------------- */

h2 {
 display: flex;
 align-items: center;
 margin: 20px 0 40px;
 padding: 15px 30px;
 color: #FFF;
 font-size: 1.8rem;
 font-weight: bold;
 background-color: #d8b167;
 border-radius: 5px;
}

h2 i {
 margin-right: 10px;
}

@media (max-width: 991px) {
 h2 {
  margin: 0 0 20px;
  font-size: 1.4rem;
 }

 h2 i {
  height: 25px;
 }
}



/* ------------------------------- */
/* Contact
/* ------------------------------- */

#contact .col-form-label {
 background-color: #DCDDDE;
}

#contact .form-group {
 margin-bottom: 5px;
}

#contact .form-group .radio label {
 padding-top: 6px;
}

#contact .link {
 margin-top: 30px;
 text-align: right;
}

#contact .link a,
#contact .link input[type="submit"] {
 display: inline-block;
 margin: 10px 5px;
 padding: 0.6rem 1.6rem;
 border-radius: 8px;
 color: #000;
 text-decoration: none;
}

#contact .link a {
 border: 1px solid #ccc;
 background: #f1e767;
 background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
 background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
 background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
 -webkit-box-shadow: inset 1px 1px 1px #fff;
 box-shadow: inset 1px 1px 1px #fff;
}

#contact .link input[type="submit"] {
 color: #FFF;
 border: 1px solid #e04f3e;
 background-color: #e04f3e;
}

@media (max-width: 767px) {
 #contact label {
  margin-bottom: 10px;
 }

 #contact .form-group {
  margin-bottom: 20px;
 }
}