.wrapper{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header{
    height: 70px;
    background-color: #666;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
}
section{
    flex: 1;
    background-color: #ccc;
    display: flex;
}
.columns{
    display: flex;
    flex: 1;
    background-color: #fff;
}
footer{
    height: 70px;
    background-color: #666;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.main{
    flex: 1;
    background-color: #eee;
    order: 2;
    align-items: center;
    justify-content: center;
    display: flex;
}
.sidebar-first{
    width: 20%;
    background: #ccc;
    order: 1;
}
.sidebar-second{
    width: 20%;
    background-color: #ddd;
    order: 3;
}
.block-logo, .block-contact-info, .block-form{
    background-color: red;
    color: white;
    padding: 20px;
}