html, body {margin:0;padding:0;}
body {font-family: 'Open sans',arial;font-weight:300;color:#1d1d1b;}
#header {text-indent:-999em;}
#container h1 {background:url(/img/fall-winter-2019.svg);background-size:contain;background-repeat:no-repeat;width:100%;margin:0;}
#container h1 img {display:block;visibility:hidden;}
#footer {margin-top:0;cursor:pointer!important;margin:0;width:100%;text-indent:-999em;}
#footer h2 {background:url(/img/adres.svg);background-size:contain;background-repeat:no-repeat;width:100%;}
.row {}
	
@media screen and (min-width: 850px) {
	#container {width:990px;margin:0 auto;margin-top:30px;}
}

@media screen and (max-width: 849px) {
	#container {width:100%;width:100vw;margin:0 auto;margin-top:30px;}
	#container img {width:100%;}
	#footer {width:auto;}
}


.slider {
	display:block;
	position: relative;
}

.slider img {
	display: block;
    max-width: 100%;
}
.slider img:last-child {
	z-index:2;
	position: absolute;
	top:0;
	left:0;
	
	opacity:0;
	
	animation-name: fade;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 10s;
	animation-direction: alternate;
}

@keyframes fade
{
 	0% {
	  	opacity:1;
	}
	45% {
		opacity:1;
	}
	55% {
		opacity:0;
	}
	100% {
		opacity:0;
	}
}