section#contactsection{
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section#contactsection .contactform{
    max-width: 915px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

section#contactsection .contactform h2 strong{
    font-weight: bold!important;
        --from: #bf362e;
    --to: #7a2871;
    background-image: linear-gradient(90deg, var(--from), var(--to), var(--from));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: sweep 6s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

section#contactsection .contactform > p{
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
}

section#contactsection .contactform > p i{
    color: while;
    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;
    }
}