@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);

@font-face{font-family: "Trebuchet MS"; src: url("fonts/trebuc.ttf");}
@font-face{font-family: "Trebuchet MS"; src: url("fonts/trebucbd.ttf"); font-weight: bold;}
@font-face{font-family: "Trebuchet MS"; src: url("fonts/trebucit.ttf"); font-style: italic;}

@keyframes hover {
    from { margin-top: 0; }
    to { margin-top: 20px; }
}

@keyframes diagonal-slide {
    from {
        -webkit-transform: translate(400px, 400px);
        -moz-transform: translate(400px, 400px);
        -ms-transform: translate(400px, 400px);
        -o-transform: translate(400px, 400px);
        transform: translate(400px, 400px);
        opacity: 0;
        visibility: visible;
    }
}

@keyframes slide-from-left {
    from {
        -webkit-transform: translate(-100vw);
        -moz-transform: translate(-100vw);
        -ms-transform: translate(-100vw);
        -o-transform: translate(-100vw);
        transform: translate(-100vw);
        visibility: visible;
    }
}

@keyframes slide-from-right {
    from {
        -webkit-transform: translate(100vw);
        -moz-transform: translate(100vw);
        -ms-transform: translate(100vw);
        -o-transform: translate(100vw);
        transform: translate(100vw);
        visibility: visible;
    }
}

@keyframes creepy {
    0% {
        -webkit-transform: translate(0, 750px);
        -moz-transform: translate(0, 750px);
        -ms-transform: translate(0, 750px);
        -o-transform: translate(0, 750px);
        transform: translate(0, 750px);
        visibility: visible;
    }
    10% {
        -webkit-transform: translate(0, 750px);
        -moz-transform: translate(0, 750px);
        -ms-transform: translate(0, 750px);
        -o-transform: translate(0, 750px);
        transform: translate(0, 750px);
    }
    15% {
        -webkit-transform: translate(0, 400px);
        -moz-transform: translate(0, 400px);
        -ms-transform: translate(0, 400px);
        -o-transform: translate(0, 400px);
        transform: translate(0, 400px);
    }
    45% {
        -webkit-transform: translate(0, 400px);
        -moz-transform: translate(0, 400px);
        -ms-transform: translate(0, 400px);
        -o-transform: translate(0, 400px);
        transform: translate(0, 400px);
    }
    65% {
        -webkit-transform: translate(0, 500px);
        -moz-transform: translate(0, 500px);
        -ms-transform: translate(0, 500px);
        -o-transform: translate(0, 500px);
        transform: translate(0, 500px);
    }
    85% {
        -webkit-transform: translate(0, 750px);
        -moz-transform: translate(0, 750px);
        -ms-transform: translate(0, 750px);
        -o-transform: translate(0, 750px);
        transform: translate(0, 750px);
    }
    95% {
        -webkit-transform: translate(0, 750px);
        -moz-transform: translate(0, 750px);
        -ms-transform: translate(0, 750px);
        -o-transform: translate(0, 750px);
        transform: translate(0, 750px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.creepy-animation {
    animation-name: creepy;
    animation-duration: 10s;
}

.diagonal-slide-animation {
    animation-name: diagonal-slide;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.slide-from-left-animation {
    animation-name: slide-from-left;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.slide-from-right-animation {
    animation-name: slide-from-right;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.animated {
    visibility: hidden;
}
span.animated {
    visibility: hidden;
    display: inline-block;
}

.short-delay {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.medium-delay {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.long-delay {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

body {
    margin: 0;
    background-color: black;
}

p {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 20pt;
}

h1 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 72pt;
    line-height: 85%;
}

h2 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 30pt;
    font-style: italic;
}

h3 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 30pt;
    color: white;
}

h4 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 15pt;
    font-style: italic;
    font-weight: normal;
    color: white;
}

li {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 20pt;
    font-weight: bold;
    color: #10214C;
}

.mikutech-font {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

h1.medium { font-size: 52pt; }
h1.small { font-size: 36pt; }
h1.white, h2.white, h3.white, h4.white,p.white, span.white { color: white; }
h1.blue, h2.blue, h3.blue, h4.blue, p.blue, span.blue { color: #202B67; }
h1.orange, h2.orange, h3.orange, h4.orange, p.orange, span.orange { color: #E99322; }
h1.black, h2.black, h3.black, h4.black, p.black, span.black { color: black; }
h1.grey, h2.grey, h3.grey, h4.grey, p.grey, span.grey { color: #888888; }
div.white { background-color: white; }
div.blue { background-color: #202B67; }
div.orange { background-color: #E99322; }
div.black { background-color: black; }
div.grey { background-color: #888888; }
.center { text-align: center; }
.left { text-align: left; }
.bold { font-weight: bold; }

.positioned {
    position: relative;
}

.panel {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    text-align: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.landing-page {
    background: url(../SiteSlices/StarBg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height : 100vh;
    width : 100%;
    text-align: center;
    position: relative;
}

.main-logo {
    position: relative;
    width: 90%;
    max-width: 300vh;
    height: auto;
    top: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translateY(-50%);
}

.much-more-panel {
    background: url(../SiteSlices/GreyBG_02.jpg) no-repeat top center;
    background-color: #F2F2F2;
    /*background-size: 100% 100%;*/
}

.mark-mikulec-panel {
    background: url(../SiteSlices/backgroundNoMark_resized.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 0px !important;
}

.london-ontario-panel {
    background: url(../SiteSlices/london_highres.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.much-more-text {
    display: inline-block;
    text-align: left;
    position: relative;
    height: 450px;
    width: 600px;
    left: -7%;
}
div.much-more-icon-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
img.triangle-slice {
    width: 52%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
}
.we-do-icon.medical {
    position: absolute;
    top: 60px;
    left: 55%;
}
.we-do-icon.engineering {
    position: absolute;
    top: 160px;
    left: 65%;
}
.we-do-icon.e-commerce {
    position: absolute;
    top: 260px;
    left: 75%;
}

img.scroll-for-more-arrow {
    float: left;
    display: inline-block;
    animation-name: hover;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

div.scroll-down-widget {
    position: absolute;
    left: 5%;
    bottom: 1%;
}

p.scroll-down-text {
    float: right;
    text-align: left;
    padding-left: 10px;
    margin-top: -5px;
}

h1.a-game-dev { position: absolute; top: 0px; left: 0px; }
h1.that-does { position: absolute; top: 209px; left: 258px; }
h1.much-more { position: absolute; top: 203px; left: 40px; }
h1.than { position: absolute; top: 303px; left: 60px; }
h1.just-games { position: absolute; top: 303px; left: 220px; }

p.what-we-do-blurb { width: 80%; text-align: left; display: inline-block; }
div.what-we-do-block { text-align: center; width: 50%; }
div.what-we-do-block.left { float: left; }
div.what-we-do-block.right { float: right; }
ul.what-we-do-list { display: inline-block; text-align: left; }
ul.what-we-do-list.left { padding-left: 25%; }
ul.what-we-do-list.right { padding-right: 25%; }

div.we-do-icon {
    text-align: left;
    width: 500px;
}
img.we-do-icon-image { vertical-align: middle; }
span.we-do-icon-text {
    font-size: 16pt;
    color: white;
    background-color: rgba(233, 147, 22, 0.4);
    padding-left: 4px;
    padding-right: 4px;
}

div.testimonial-block {
    padding-top: 80px;
    display: inline-block;
    text-align: left;
    width: 100%;
}
div.testimonial {
    float: left;
    width: 800px;
    min-width: 75%;
    min-height: 250px;
    position: relative;
    height: auto;
    margin-bottom: 25px;
    border-image: url(../SiteSlices/QuoteBox_plain_cropped.png);
    border-style: solid;
    border-image-slice: 80 3 3 3 fill;
    border-image-width: 40 3 3 3;
}
div.testimonial.left { float: left; }
div.testimonial.right { float: right; }
h3.testimonial-title {
    color: white;
    position: absolute;
    top: -15px;
    left: 25px;
}
h4.testimonial-sub {
    color: white;
    position: absolute;
    top: 34px;
    left: 25px;
    font-size: 20pt;
}
div.testimonial-blurb-block {
    /*position: absolute;*/
    padding-top: 90px;
    padding-left: 25px;
    padding-right: 25px;
}
img.testimonial-thumb {
    float: left;
    align: top;
    padding-right: 15px;
    width: 30%;
    height: auto;
}
p.testimonial-blurb {
    font-size: 12pt;
    color: #3b3b3b;
    line-height: 105%;
}
span.testimonial-linker {
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    height: 100%;
}

div.mark-text-block {
    width: 140%;
    text-align: left;
    width: 120%;
}
div#spacer {
    width: 0px;
    float: right;
    height: 500px;
}
.mark-face {
    shape-outside: polygon(250px 0px, 140px 90px, 180px 340px, 215px 465px, 0px 600px, 0px 740px, 500px 740px, 500px 0px);
    float: right;
    clear: right;
}
div.mark-blurb-container {
     width: 100vw;
     text-align: center;
}
div.mark-blurb-box {
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: 14%;
    margin-right: 14%;
}
p.mark-blurb {
    padding-bottom: 80px;
}
h1.mark-main-header {
    margin-top: 0px;
    padding-top: 90px;
}
h2.mark-sub-header {
     padding-bottom: 20px;
}

img.ninja-sillouhette {
    position: absolute;
    z-index: 1;
    top: 5vw;
    right: -10vw;
    height: 75%;
    min-height: 75vw;
    width: auto;
}
h2.ninja-adjectives {
    position: relative;
    z-index: 1;
    font-size: 36pt;
}
p.ninja-blurb {
    position: relative;
    z-index: 2;
    font-size: 12pt;
    margin-left: 12%;
    margin-right: 12%;
    text-align: left;
    padding-bottom: 50px;

}
iframe.job-posting {
    position: relative;
    z-index: 2;
    font-size: 12pt;
    margin-left: 12%;
    margin-right: 12%;
    text-align: left;
    padding-bottom: 10px;
    width: 76%;
    height: 300px;
}
img.ninja-smoke {
    position: absolute;
    opacity: 0.6;
}
img.ninja-smoke.left {
    left: -10%;
    bottom: -10%;
}
img.ninja-smoke.right {
    right: -10%;
    bottom: -10%;
}

div.london-ontario-title-box h1 {
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
}
div.london-ontario-title-box h2 {
    text-align: right;
    margin-top: 0;
    padding-top: 0;
    font-size: 48pt;
}
div.london-ontario-title-box {
    display: inline-block;
}
p.london-ontario-blurb {
    margin-left: 10%;
    margin-right: 10%;
    padding: 2% 2% 2% 2%;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 0;
    font-size: 12pt;
    margin-bottom: 80px;
}


div.contact-us-panel {
    background: url(../SiteSlices/contact_group.jpg) no-repeat center center;
    background-size: auto 100%;
    min-height: 600px;
    padding-top: 0px !important;
}
p.contact-info-blurb {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: 13%;
    background-color: #202B67;
    text-align: center;
}
p.contact-info-blurb a {
    color: white;
}
span.contact-info-text {
    display: inline-block;
    text-align: left;
}
