/*$bp-largest: 75em;    //1200px
$bp-large: 62.5em;    //1000px
$bp-medium: 50em;     //800px
$bp-small: 37.5em;    //600px*/

/* FONTS, GENERAL */
@font-face {
font-family: 'Streetvertising Light';
font-style: normal;
font-weight: normal;
src: local('Streetvertising Light'), url('../webfonts/Streetvertising Light public.woff') format('woff');
}


@font-face {
font-family: 'Streetvertising Medium';
font-style: normal;
font-weight: normal;
src: local('Streetvertising Medium'), url('../webfonts/Streetvertising Medium public.woff') format('woff');
}


@font-face {
font-family: 'Streetvertising Bold';
font-style: normal;
font-weight: normal;
src: local('Streetvertising Bold'), url('../webfonts/Streetvertising Bold public.woff') format('woff');
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-family: 'Streetvertising Light', sans-serif;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    background: #333e46;
	
}

/* BACKGROUND VIDEO */
@media (min-aspect-ratio: 4/3) {
	.fullscreen_bg {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		overflow: hidden;
		z-index: -100;
	}
	.fullscreen_bg__video {
		position: absolute;
		top: 50%; 
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
		min-width: 100%; 
		min-height: 100%; 
		width: auto; 
		height: auto;
		z-index: -1000; 
		overflow: hidden;
	}
}

@media (max-aspect-ratio: 4/3) {
    .fullscreen_bg {
        position: relative;
        height: 70vw;
        overflow: hidden;
    }

    .fullscreen_bg__video {
        position: relative;
        width: 100%;
        min-height: 20rem;
    }
}


/* FOOTER */
.footer {
    font-size: 1.8rem;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
	padding-top: 1.5rem;
    letter-spacing: 2px;
	background: #333e46;
	text-align: center;
}

.logo {
    display: inline-block;
    margin-right: 1rem;
}

.logo svg {
    width: 22rem;
}

.text--large {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.font-weight-500 {
	font-family: 'Streetvertising Medium', Arial;
}


@media (min-aspect-ratio: 4/3) {
	.hidden-large {
		display: none !important;
	}
	
	.footer {
        position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
    }
}

@media (max-aspect-ratio: 4/3) {
	.hidden-small {
		display: none !important;
	}
	
    body {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.footer {
	}
}