@font-face {
    font-family: "kpmglight";
    src: url("./kpmg-light/KPMG-Light.eot");
    /* IE9 Compat Modes */
    src: url("./kpmg-light/KPMG-Light.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("./kpmg-light/KPMG-Light.woff2") format("woff2"), /* Super Modern Browsers */
    url("./kpmg-light/KPMG-Light.woff") format("woff"), /* Pretty Modern Browsers */
    url("./kpmg-light/KPMG-Light.ttf") format("truetype");
    /* Safari, Android, iOS */
}

body, html {
    margin: 0px;
    height: 100vh;
    overflow: hidden;
    background: #717f94;
}

.interactive {
    /*position: relative;    */
    position: fixed;
    width: 100%;
    bottom: 0px;
}

.header {
    position: relative;
    height: 50px;
    width: 100%;
    box-shadow: 2px 2px 4px rgba(64, 73, 91, 0.3);
    z-index: 99;
    background: #fff;
}

.header .logo {
    margin-left: 5px;
    margin-top: 5px;
    width: 107px;
    height: 37px;
    background: url(./kpmg-logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    float: left;
}

.buttons {
    float: right;
    cursor: pointer;
    height: 50px;
}

.social {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url(./share.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.menu {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url(./menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.list.show {
    display: block;
}

.list {
    display: none;
    position: absolute;
    background: #fff;
    font-size: 18px;
    line-height: 25px;
    font-family: "Roboto";
    top: 50px;
    right: 0px;
    cursor: pointer;
    box-shadow: -1px 1px 1px 1px rgba(64, 73, 91, 0.3);
}

.list .list-item {
    padding: 5px 20px;
    box-shadow: inset 0px 0px 1px rgba(64, 73, 91, 0.3);
}

.desktoplist {
    float: right;
}

.desktopHeader {
    font-size: 38px;
    text-align: center;
    line-height: 50px;
    font-family: "kpmglight";
    color: #00338D;
    cursor: default;
}

.desktoplist .list-item {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding-right: 8px;
    font-size: 19px;
    font-weight: 600;
    font-family: "Roboto";
}

.list-item a {
    text-decoration: none;
    color: #00338D;
}

.list-item:hover {
    opacity: 0.7;
}

.footer {
    display: none;
}

#social.show {
    display: block;
}

#social {
    display: none;
    position: absolute;
    background: #fff;
    font-family: "Roboto";
    top: 50px;
    right: 0px;
    cursor: pointer;
    box-shadow: -1px 1px 1px 1px rgba(64, 73, 91, 0.3);
    height: 38px;
}

#social .facebook {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(./fb.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 4px;
}

#social .linkedin {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(./linkedin.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 4px;
}

.copyright {
    font-size: 14px;
    background: #dedede;
    font-family: Arial, Helvetica, sans-serif;
    padding: 24px 16px 32px 16px;
}

#interactive {
    border-bottom: 1px solid #dedede;
}

@media (max-width: 600px) {
    .desktoplist, .desktopHeader {
        display: none;
    }
    .menu {
        display: inline-block;
    }
}

@media screen and (min-width: 600px) {
    .desktoplist, .desktopHeader {
        display: block;
    }
    .menu {
        display: none;
    }
}