#contact .header-1 {
    padding: 0 30px;
}

#contact .header-1 .pretitle{
    margin: initial;
}

#contact-form > div{
    width: 50%;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 60px;
}

#contact-form form{
    width: 100%;
}

#contact-form form fieldset{
    border: none;
    font-size: 19px;
}

.contact-field{
    width: 100%;
    margin: 50px 0px;
}

.contact-field:hover > span{
    font-size: 15px;
    color: #9747FF;
}

.contact-field > span{
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
    transition: .2s all;
    height: 25px;
}

.input-text{
    width: 100%;
    height: 30px;
    border: none;
    border-bottom: 2px solid black;
    font-size: 18px;
    outline: none;
    transition: .2s all;
}

.input-text:focus{
    border-color: #9747FF;
}

.radio-field{
    display: inline-block;
    margin-right: 20px;
}

.radio-field > label{
    position: relative;
    top: 1px;
}

.radio-field > input[type='radio']{
    box-shadow: inset 0 0 0 2px #9747FF;
    transition: box-shadow 150ms cubic-bezier(.95,.15,.5,1.25);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 0;
    appearance: none;
    vertical-align: bottom;
}

.radio-field > input[type='radio']:checked{
    box-shadow: inset 0 0 0 6px #9747FF;
}

#submit-button{
    border: none;
    background-color: #9747FF;
    color: white;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    height: 50px;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    width: 240px;
    font-family: 'MontserratLight';
}


@media only screen and (max-width: 599px) {
    #contact{
        margin-bottom: 100px;
    }

    #contact-form > div{
        width: 90%;
    }

    #contact-form form fieldset{
        font-size: 15px;
    }

    .radio-field{
        display: block;
    }

    #submit-button{
        width: 100%;
    }

    .radio-field > label{
        width: 80px;
        display: inline-block;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #contact{
        margin-bottom: 100px;
    }

    #contact-form > div{
        width: 70%;
    }

    .radio-field{
        margin-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    #contact-form > div {
        width: 60%;
    }
}
