#consulting {
    background-image: url('/static/theme/img/consult.webp');
    background-position: top left;
    background-repeat: no-repeat;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
    background-attachment: fixed;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5rem;
    min-height: 60svh;
}
#consulting form{
    max-width: 40vw;
}
#consulting form h2{
    margin-bottom: 2rem;
}
@media screen and (max-width: 1200px){
    #consulting {
        background-attachment: unset;
    }
}
@media screen and (max-width: 1000px){
    #consulting form {
        max-width: 100%;
    }
}
@media screen and (max-width: 800px){
    #consulting{
        padding: 2rem;
    }
}