/*-------------------------------------
		General reset
--------------------------------------*/
*{
    padding: 0;
    margin: 0;
}

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

img {border:none;max-width:100%; height:auto;}


html, body{
    height: 100%;
    position: relative;
}

/*-------------------------------------
        Fonts
--------------------------------------*/

@font-face {
    font-family: 'marsden_extendedregular';
    src: url('/assets/fonts/marsden-ex-regular-webfont.woff2') format('woff2'),
         url('/assets/fonts/marsden-ex-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'marsden_extendedbold';
    src: url('/assets/fonts/marsden-ex-bold-webfont.woff2') format('woff2'),
         url('/assets/fonts/marsden-ex-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*-------------------------------------
        Spacia Style
--------------------------------------*/

body{
	font-family: 'marsden_extendedregular';
	font-size:14px;
	background: #2c2c2c;
    margin:0 auto;
	overflow-x:hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    color: #d0ff4c;
}

a,a:hover,a:active,a:focus {
	text-decoration:none;
	color: #d0ff4c;
}

h1,h2,h3 { 
	margin: 0;
	font-weight: normal;
}

h1 {
    font-size: 90px;
    margin-bottom: 40px;
}

h2 {
    font-family: 'marsden_extendedbold';
    margin-bottom: 10px;
    font-size: 17px;
}

h3 {
    display: inline-block;
    border-radius: 50px;
    border: 1px solid #d0ff4c;
    padding: 10px 24px;
    font-size: 15px;
}

p {
	margin: 0 25px 6px 0;
	line-height:1.6;
	font-size:14px;
    white-space: nowrap;
}

.nav-brand {
    background: url(/assets/images/spacia-logo.png);
    width: 100px;
    height: 115px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.row {
    display: flex;
    align-items: stretch !important;
}

.flex-grow {
    flex-grow: 1;
/*    padding: 0 15px;*/
}

.align-bottom {
    align-self: end;
    width: auto;
/*     padding: 0 15px;*/
}


/*-------------------------------------
        Responsive
--------------------------------------*/

@media screen and (max-width: 1023px) {
    h1 {
        font-size: 74px;
    }
}


@media screen and (max-width: 870px) {
    h1 {
        font-size: 60px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    body {
        padding: 30px;
    }

    .row {
        display: block;
    }

    .flex-grow {
        margin-bottom: 60px;
    }

    .nav-brand {
        width: 84px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 410px) {
    h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1400px) {
    h1 {
        font-size: 120px;
        margin-bottom: 52px;
    }

    .nav-brand {
        width: 133px;
        height: 150px;
    }

    h2 {
        font-size: 25px;
        margin-bottom: 17px;
    }

    h3 {
       font-size: 21px;
       padding: 15px 30px;
    }

    p {
        font-size: 19px;
    }

    body {
        padding: 60px;
    }
}


@media screen and (min-width: 1580px) {
    h1 {
        font-size: 140px;
        margin-bottom: 60px;
    }

    .nav-brand {
        width: 155px;
        height: 174px;
    }

    h2 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    h3 {
       font-size: 24px;
       padding: 18px 35px;
    }

    p {
        font-size: 22px;
    }

    body {
        padding: 70px;
    }
}




