* {
  box-sizing: border-box;
}
html {
    background-color:#e85125;
}
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-size:0px;
    font-family: 'Roboto', sans-serif;
    display: table;
}
.wrapper {
    display: table-row;
    height:100%;
}
.main,.header,.footer {
    display:table-cell;
    width: 33.33%;
    width: calc(100%/3);
}
.main,.footer {
    padding:50px;
    background-color:white;
}
.header {
    background-image:url(assets/logo-horizontal-03.svg);
    background-position:center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.main {
    font-size:20px;
    vertical-align: middle;
}
.footer {
    text-align:center;
    font-size:14px;
    color:#808080;
    vertical-align: bottom;
}

a {
    color:#e85125;
    font-weight:700;
    text-decoration:none;
}
a:hover {
    text-decoration:underline;
}
.footer a {
    color: #808080;
}
h1 {
    font-weight:100;
    font-style:italic;
    color:#e85125;
}
@media (max-width:1249px) {
    .main,.header,.footer {
        width:50%;   
    }
    .main {
        padding-bottom: 132px;
    }
    .footer {
        display:block;
        height:auto;
        width:50vw;
        position:fixed;
        right:0;
        bottom: 0px;
        right: 0;
        height: 132px;
    }
}
@media (max-width:900px) {
    .main,.header,.footer {
        width:100%;  
        display:block;
    }
    .header {
        height: 100vh;
    }
    .main {
        padding-bottom: 82px;
    }
    .footer {
        position:static; 
        height:132px;
        margin-top:-132px;
        overflow-y: hidden;
    }
}