section#contactsection{
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section#contactsection:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff85;
    content: '';
}

section#contactsection .contactform{
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 30px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 3px;
}

section#contactsection .contactform h2{
    color: #000;
    font-size: 45px;
    line-height: 50px;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}

section#contactsection .contactform > p{
    text-align: center;
}

section#contactsection .contactform > p i{
    color: #4bba5a;
    margin-right: 5px;
    margin-top: 2px;
}

@media only screen and (max-width: 1000px) {
    section#contactsection{
        padding: 40px 0;
    }

    section#contactsection .contactform h2{
        font-size: 30px;
        line-height: 30px;
    }
}