.modal-dialog {
    max-width: 650px;
    margin: 1.75rem auto;
  }
  textarea.form-control {
  height: 70px !important;
}
.modal-header {
	background-color: #792c77;
  color: #fff;
}
label {
  margin-bottom: .1rem;
}
.form-control::placeholder {
  font-size: 13px;
}
.dark-back-footer
{
	background-color: #000;
  color: #CCC;
  font-size: 12px;
  padding: 20px 0;
}
.dark-back-footer a
{
  color: #8c8b8b;
}
/* Top Section of Form */
.topSection {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Labels */
.topSection label {
    font-weight: 600;
	font-size: 0.8rem;
}

.topSection label.col-sm-3 {
    width: 25%;
    text-align: left;
}

.topSection label.col-sm-1 {
    width: 5%;
    text-align: center;
}

/* Input & Textarea */
.topSection .col-sm-7 {
    width: 70%;
}

.topSection input,
.topSection textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d7b0c4;
    border-radius: 3px;
    background-color: #fff9e6;
    font-size: 1em;
    box-sizing: border-box;
}

.topSection textarea {
    min-height: 100px;
}

/* Submit Button */

input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}
.btn-purple {
    color: #fff;
    background-color: #895784 !important;
    border-color: #895784 !important;
	padding: 10px 25px;
    border-radius: 5px;
	font-size: 1em;
}
/*.btn-purple {
    background-color: #8c5a8c;
    color: #fff;
    border: none;
    
    cursor: pointer;
    
}*/

.btn-purple:hover {
    background-color: #99044a;
}

/* Contact Info Section */
.col-sm-6 h3 {
    font-size: 1.5em;
    color: #99044a;
    margin-bottom: 20px;
}

.col-sm-6 p {
    font-size: 1em;
    margin-bottom: 15px;
}

.col-sm-6 a {
    color: #99044a;
    text-decoration: none;
}

.col-sm-6 a:hover {
    text-decoration: underline;
}

/* Icons */
.fas, .fab {
    margin-right: 5px;
}
.headerSubTitle {
    width: 100%;
    float: left;
    color: #2d2d2d;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    .topSection {
        flex-direction: column;
        align-items: flex-start;
    }

    .topSection label,
    .topSection .col-sm-7 {
        width: 100%;
    }

    .col-sm-6 {
        margin-bottom: 30px;
    }
}