/*Resets*/
html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
}

/*Styles*/
.page-wrapper {
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    padding: 50px 25px;

    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-justify-content: space-between;
    justify-content: space-between;

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    @media (min-width: 768px) {
    .page-wrapper {
        padding: 50px;
    }
}


.page-wrapper::before {
    display: block;
    width: 100%;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content:'';
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

header.logo-header h1 {
    font-size: 0;
}

header.logo-header h1 a.logo {
    display: block;
    text-align: center;
}

header.logo-header h1 a.logo::after {
    display: block;
    content: '';
    margin: 0 auto;
    background: url('../images/aluprime_sprite.png') no-repeat 0 0;
    width: 300px;
    height: 67px;
    -webkit-transform-origin: center;
    transform-origin: center;
    transform: scale(.7);
}

    @media (min-width: 768px) {
    header.logo-header h1 a.logo::after {
        -webkit-transform-origin: center;
        transform-origin: center;
        transform: scale(1);
    }
}

    @media (max-width: 320px) {
        header.logo-header h1 a.logo::after {
            -webkit-transform-origin: center;
            transform-origin: 35%;
            transform: scale(.7);
        }
    }


section.content {
    text-align: center;
}

section.content header h2 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
}

    @media (min-width: 768px) {

    section.content header h2 {
        font-size: 50px;
    }

}


section.content p {
    margin-top: 0;
    color: #ff8e37;
}

aside .contacts ul {
    width: 250px;
    margin: 0 auto;
}

    @media (min-width: 768px) {
    aside .contacts ul {
        width: 250px;
    }
}


aside .contacts ul li {
    list-style: none;
    margin-bottom: 8px;
    line-height: 20px;
    color: #fff;
}

aside .contacts ul li.email::before {
    display: inline-block;
    content:"";
    margin-right: 5px;
    background: url('../images/aluprime_sprite.png') no-repeat -1px -71px;
    width: 17px;
    height: 14px;

}

aside .contacts ul li.telephone::before {
    display: inline-block;
    content:"";
    margin-right: 5px;
    background: url('../images/aluprime_sprite.png') no-repeat -19px -70px;
    width: 17px;
    height: 16px;

}

aside .contacts ul li.fax::before {
    display: inline-block;
    content:"";
    margin-right: 5px;
    background: url('../images/aluprime_sprite.png') no-repeat -37px -70px;
    width: 17px;
    height: 17px;

}

aside .contacts ul li.address::before {
    display: inline-block;
    content:"";
    margin-right: 5px;
    background: url('../images/aluprime_sprite.png') no-repeat -56px -69px;
    width: 12px;
    height: 18px;

}