body { overflow-x: hidden;}

.page-wrapper {
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

header {
    height: 530px;
    width: 100%;
    background-image: url('../images/image-banner.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
header .container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

header .container h1 {
    font-size: 22px;
    line-height: 32px;
    max-width: 550px;
    margin-bottom: 50px;
    font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
    font-weight: 400;
}


.page-main {
    flex: 1 0 auto;
    padding: 80px 0;
}

.title {
    font-size: 54px;
    line-height: 50px;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
}



footer {
    border-top: solid 1px #eee;
    flex-shrink: 0;
}

footer .container {
    padding-top: 40px;
    padding-bottom: 30px;
    display: flex;
}
footer .left-col {
    flex-basis: 40%;
    padding-right: 40px;
}
footer .right-col {
    flex-basis: 60%;
}
footer .right-col h4 {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}
footer .right-col .box {
    display: flex;
}
footer .right-col .box .col {
    flex-basis: 33.33%;
    padding: 0 20px;
}
footer .right-col .box .col h5{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 400;
    opacity: .7;
}
footer .right-col .box .col p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

footer .right-col .box .col:nth-child(2) {
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
}

.copyright {
    border-top: solid 1px #eee;
}

.copyright .container {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.copyright .container ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.copyright .container ul li svg {
    width: 100%;
    max-width: 25px;
    height: auto;
}
.copyright .container ul li svg:hover {
    opacity: .6;
}
.copyright a {
    color: #222;
}