main article section{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
main article section h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}
main article section h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 960px) {
    main article section h2{
        font-size: 1.3rem;
    }
    main article section h2::before{
        width: 30px;
        height: 18px;
    }
}

main article section > p{
    text-align: center;
}
main article section > p a{
    color: rgba(30,58,76,1);
}


main article section > div{
    margin: 0 auto;
    max-width: 960px;
    width: 90%;
}
main article section > div form p{
    margin-bottom: 2rem;
}
input,
textarea {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
input[type="text"],
input[type="email"],
input[type="tel"]{
    border: 2px solid rgba(51,51,51,.4);
    height: 2.5rem;
    box-shadow: none;
    font-size: 1.3rem;
    padding-left: 10px;
    width: 100%;
}
textarea{
    border: 2px solid rgba(51,51,51,.4);
    box-shadow: none;
    font-size: 1.3rem;
    padding-left: 10px;
    width: 100%;
}
input[type="submit"] {
    background-color: rgba(22,156,88,1);
    color: rgba(255,255,255,1);
    border: none;
    -webkit-appearance: none;
    width: 12rem;
    font-size: 1.2rem;
    border-radius: 5px;
    line-height: 45px;
    margin-top: 2rem;
}