/* lato-regular - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/lato-v17-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('fonts/lato-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/lato-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/lato-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('fonts/lato-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/lato-v17-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/lato-v17-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('fonts/lato-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/lato-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/lato-v17-latin-700.woff') format('woff'), /* Modern Browsers */
    url('fonts/lato-v17-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/lato-v17-latin-700.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-900 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/lato-v17-latin-900.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('fonts/lato-v17-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/lato-v17-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/lato-v17-latin-900.woff') format('woff'), /* Modern Browsers */
    url('fonts/lato-v17-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/lato-v17-latin-900.svg#Lato') format('svg'); /* Legacy iOS */
}



html, body {
    font-family: Lato;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px 0 15px;
    box-sizing: border-box;
}

.logo {
    width: 75%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 80px;
    position: relative;
}

.logo img {
    width: 100%;
}


.linkElement {
    background-color: #0C6AB2;
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.linkElementInner {
    padding: 20px 22px 20px 22px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.linkElement:before {
    content: ' ';
    border-top: 65px solid transparent;
    border-right: 65px solid white;
    position: absolute;
    right: 0;
}

.footer {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #EBEBEB;
}

.footerInner {
    padding: 15px 100px 15px 100px;
   display: inline-flex;
}

.footerElement {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    color: #0C6AB2;
    text-transform: uppercase;
    float: left;
    position: relative;
    margin-left: 20px;
}

.footer:before {
    content: ' ';
    border-bottom: 45px solid transparent;
    border-left: 45px solid white;
    position: absolute;
    left: 0;
}


@media only screen and (max-width: 767px) {

    .logo {
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .linkElement {
        margin-bottom: 17px;
    }
    .linkElementInner {
        font-size: 0.8rem;
    }

    .footerInner {
        padding: 15px 20px 15px 45px;
    }

}