.slide {
	display:flex;
	flex-direction:column;

	width:1920px;
	max-width:100%;
	margin:0 auto;
	padding:0 60px;
	box-sizing:border-box;

	min-height: 100vh;
	
	
	position:relative;
	z-index:10;
}
.safari .slide{
	min-height: -webkit-fill-available;		
}
.slide__logos {
	width:100%;
}

.slide__content{
	display:flex;
	flex-grow:1;
	align-items:center;
	box-sizing:border-box;
	padding-bottom: 8vh;	
}

.slide__title{
	flex-grow:1;
}
	
.slide__region{
	flex-shrink:0;
}


.slide__footer {
	color:#fff;
	font-family: 'BNC', Arial, sans-serif;
	margin:30px 0;
	text-align:center;
}

.slide__timer {
	width:56px;
	margin:0 auto;
}

.slide__start {
	font-size:20px;
	font-weight:400;
}
.slide__footer a{
	color:#fff;
	text-decoration:none;
}




@media screen and (max-width:1000px){
	.slide__timer {
		width:32px;
	}
	.slide__start {
		font-size:16px;
	}	
}

@media screen and (max-width:768px){
	.slide {
		 padding:0 16px;
	}
	
	.slide__region {
		display:none;
		position:fixed;
		height:50px;
		width:100%;
		top:0;
		left:0;
		background-color:#FA2A5D;
	}
	.slide__content {
		padding-bottom:0;
		align-items:flex-start;
	}
	.chrome .slide__logos .logos {
		margin-top:80px;
	}
}

@media screen and (max-width:480px){
	.slide__footer {
		margin:16px 0;
	}
	.slide__title {
		display:flex;
		width:100%;
	}
	.slide__content {
		flex-direction:column;
	}
	
	
	html:not(.ios) .slide {
		min-height:calc(100vh - 54px);
	}
	html.ios:not(.safari) .slide{ 
		min-height:calc(100vh - 100px);
	}	
}
