@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/Titillium-Web-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Titillium-Web-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Titillium-Web-Bold.woff2') format('woff2');
}

body {
    font-family: 'Titillium Web';
    letter-spacing: 0.12em;
    line-height: 1.1;
    font-weight: 300;
}

img {
    max-width: 100%;
}

a {
    display: block;
    text-decoration: none;
    color: #000;
}

.wrapper {
    width: 900px;
    height: 600px;
    display: flex;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 100%;
}

.left,
.right {
    width: 50%;
    float: left;
    padding: 0px;
    overflow: hidden;
}

.left {
    padding-right: 0;
}

.right {
    padding-left: 0;
}

.heading,
.footing {
    text-align: left;
    padding: 25px;
    background: #000;
    color: #fff;
    font-size: 1.6em;
    height: 15%;
    display: flex;
    align-items: center;
    align-content: center;
    font-weight: 300;
}

.contact {
    margin: 40px 0 0 0;
}

.logo-wrapper {
    border: 1px solid #000;
    border-right-width: 0px;
    padding: 25px;
    font-size: 1.15em;
    height: 70%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.logo-wrapper .name {
    margin-bottom: 24px;
    font-weight: 700;
}

.logo-wrapper a {
    margin: 8px 0;
}

.footing {
    text-transform: uppercase;
}

@media screen and (max-width: 920px) {
    .wrapper {
        display: block;
        height: auto;
        margin: 10px 0;
        position: static;
        transform: none;
    }

    .logo-wrapper {
        height: auto;
        display: block;
    }

    .left,
    .right {
        float: none;
        width: 100%;
        padding: 10px;
    }

    .logo-wrapper {
        border-right-width: 1px;
    }
}