/* Fonts */

    @font-face {
        font-family: 'League Spartan';
        src: url('./fonts/LeagueSpartan-Bold.otf');
        font-weight: bold;
        font-style: normal;
    }

/* Reset */

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video,
    input, button {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	font-size: 100%;
    	font: inherit;
    	vertical-align: baseline;
    }

	.clearfix {
		clear: both;
	}

/* Body */

    body {
        background: #111;
        font-family: 'Montserrat', helvetica, arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-font-smoothing: antialiased;
        font-smoothing: antialiased;
        text-align: center;
        color: #555;
        font-size: 16px;
        line-height: 26px;
    }

    a {
        color: #555;
        text-decoration: underline;
    }

/* Big Text */

    .bigText {
        position: fixed;
        top: -30px;
        left: -50px;
        font-size: 500px;
        line-height: 500px;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        text-transform: uppercase;
        color: #232323;
        z-index: 1;
        pointer-events: none;
    }

    @media only screen and (max-width: 800px) {

        .bigText {
            font-size: 250px;
            line-height: 250px;
            top: -20px;
            left: -40px;
        }

    }

/* Container */

    .container {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding: 0px 80px;
        position: relative;
        z-index: 2;
    }

    @media only screen and (max-width: 800px) {

        .container {
            padding: 0px 40px;
        }

    }

/* Title */

    .title {
        margin-top: 280px;
        margin-bottom: 170px;
    }

    .titleWrap {
        float: left;
    }

    .title h1 {
        font-size: 100px;
        line-height: 110px;
        color: #fff;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        text-transform: uppercase;
    }

    .title h2 {
        font-size: 30px;
        line-height: 40px;
        color: #E6732B;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        /*text-transform: uppercase;*/
        display: block;
        float: right;
    }

    .title h2 a {
        color: #E6732B;
        text-decoration: none;
        border-bottom: 4px solid #E6732B;
    }

    @media only screen and (max-width: 800px) {

        .title {
            margin-top: 120px;
            margin-bottom: 120px;
        }

        .titleWrap {
            text-align: center;
            float: none;
        }

        .title h1 {
            font-size: 50px;
            line-height: 60px;
        }

        .title h2 {
            font-size: 15px;
            line-height: 25px;
            float: none;
        }

        .title h2 a {
            border-width: 2px;
        }

    }

/* Summary */

    .summary {
        margin-bottom: 170px;
        font-size: 50px;
        line-height: 70px;
        color: #fff;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        text-transform: uppercase;
        text-align: center;
    }

    @media only screen and (max-width: 800px) {

        .summary {
            font-size: 25px;
            line-height: 40px;
            margin-bottom: 80px;
        }

    }

/* Features */

    .features {
        width: -webkit-calc(100% + 80px);
        margin-left: -40px;
        margin-bottom: 80px;
    }

    .features ul {
        list-style: none;
    }

    .features li {
        float: left;
        width: 33.333%;
    }

    .featureWrap {
        padding: 0 40px;
    }

    .features h3 {
        font-size: 30px;
        line-height: 40px;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        text-transform: uppercase;
        color: #fff;
        display: block;
        margin-bottom: 40px;
    }

    @media only screen and (max-width: 800px) {

        .features {
            margin-left: 0;
            width: 100%;
            margin-bottom: 0;
        }

        .features li {
            width: 100%;
            margin-bottom: 60px;
        }

        .featureWrap {
            padding: 0;
        }

        .features h3 {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 20px;
        }

    }


/* Buttons */

    .buttons {
        margin-top: 140px;
        text-align: center;
    }

    .buttons a.bigButton {
        display: inline-block;
        width: 300px;
        padding-top: 50px;
        padding-bottom: 44px;
        cursor: pointer;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        font-family: 'League Spartan', helvetica, arial, sans-serif;
        text-transform: uppercase;
        color: #fff;
        font-size: 20px;
        line-height: 30px;
        text-decoration: none;
        text-align: center;
    }

    .buttons a.demo {
        background: #000;
        margin-right: 40px;
    }

    .buttons a.demo:hover {
        background: #222;
    }

    .buttons a.contact {
        background: #E6732B;
        -webkit-box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.4);
        box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.4);
    }

    .buttons a.contact:hover {
        background: #FF8F4A;
    }

    .buttons p {
        display: block;
        margin-top: 60px;
    }

    @media only screen and (max-width: 800px) {

        .buttons {
            margin-top: 80px;
        }

        .buttons a.bigButton {
            width: 100%;
            display: block;
            margin-bottom: 20px;
            padding-top: 30px;
            padding-bottom: 25px;
            font-size: 20px;
            line-height: 30px;
        }

        .buttons p {
            margin-top: 40px;
        }

    }

/* Copyright */

    .copyright {
        text-align: center;
        padding: 0 80px;
        margin: 170px 0;
        font-size: 12px;
        line-height: 24px;
    }

    @media only screen and (max-width: 800px) {

        .copyright {
            margin: 80px 0;
        }
