
.contact-page{
    margin-top:120px
}
.contact-page .container{
    max-width:1050px!important;
}
.contact-heading{
    color: #555;
    width: 100%;
    margin-top: 0;
    margin-bottom: .5em;
    text-rendering: optimizeSpeed;
    font-size: 1.25em;
}
.contact-heading a{
    color: #919191;
}
.contact-desc{
    color: #800080;
    font-size:16px
}
.contact-form{
    margin-top:40px
}
.form-title{
    color: #c240c2;
    font-size: 20px;
    font-weight:600;
    margin-bottom:0;
}

form{
    display:flex;
    flex-direction:column;

}
label {
    color: #222;
    font-size: 14px;
    font-weight:600
}
form input{
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 0 .75em;
    height: 2.507em;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color .3s, border .3s, background .3s, opacity .3s;
    margin-bottom:10px;
    outline: none;
}
form textarea{
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 5px .75em;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color .3s, border .3s, background .3s, opacity .3s;
    outline: none;
    height:110px
}
form button{
    background-color: #a58feb;
    width:86px;
    text-align: center;
    padding:10px 0;
    color:#FFF;
    border:none;
    outline:none;
    transition:.3s all;
    margin-top:40px;
    font-size:18px;
    text-transform:uppercase;
    font-weight:600;
    cursor:pointer;
}
form button:hover{
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}
.flex-form-success-message{
    color:green
}
.flex-form-error-message{
    color:red
}


@media (max-width:425px){
    .contact-heading {
        font-size: 1rem;
        opacity: .8;
    }
}