html,
body {
    min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background {
    background: transparent url('images/main.jpg') no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: absolute;
    display: block;
    top: -5%;
    left: -5%;
    z-index: 0;
    margin: 0;
    padding: 0;
    width: 110%;
    height: 110%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -ms-transform: perspective(1000px);
    -o-transform: perspective(1000px);
    transform: perspective(1000px);
}

.logo {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 400px;
    -webkit-transform: translate(0, -50%) translateZ(150px);
    -moz-transform: translate(0, -50%) translateZ(150px);
    -ms-transform: translate(0, -50%) translateZ(150px);
    -o-transform: translate(0, -50%) translateZ(150px);
    transform: translate(0, -50%) translateZ(150px);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.logo img {
    position: absolute;
    top: 0;
    height: 400px;
    width: 400px;
    right: -webkit-calc(50% + 60px);
    right: -moz-calc(50% + 60px);
    right: calc(50% + 60px);
}

.logo h1,
.logo h2 {
    font-family: "Montserrat", Helvetica, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    position: absolute;
    top: 160px;
    left: 50%;
}

.logo h1 strong {
    color: #313131;
    font-weight: 600;
}

.logo h2 {
    font-size: 26px;
    line-height: 26px;
    font-weight: 300;
    top: 260px;
    left: -webkit-calc(50% + 340px);
    left: -moz-calc(50% + 340px);
    left: calc(50% + 340px);
}

@media all and (max-width: 1600px) {
    .logo {
        height: 350px;
    }

    .logo img {
        height: 350px;
        width: 350px;
    }

    .logo h1 {
        font-size: 70px;
        line-height: 70px;
        top: 140px;
    }

    .logo h2 {
        font-size: 24px;
        line-height: 24px;
        top: 220px;
        left: -webkit-calc(50% + 295px);
        left: -moz-calc(50% + 295px);
        left: calc(50% + 295px);
    }
}

@media all and (max-width: 1366px) {
    .logo {
        height: 300px;
    }

    .logo img {
        height: 300px;
        width: 300px;
        right: -webkit-calc(50% + 40px);
        right: -moz-calc(50% + 40px);
        right: calc(50% + 40px);
    }

    .logo h1 {
        font-size: 64px;
        line-height: 64px;
        top: 118px;
    }

    .logo h2 {
        font-size: 21px;
        line-height: 21px;
        top: 185px;
        left: -webkit-calc(50% + 255px);
        left: -moz-calc(50% + 255px);
        left: calc(50% + 255px);
    }
}