@font-face {
    font-family: 'futuramdbtbold';
    src: url('./fonts/futuramdbtbold.eot');
    src: url('./fonts/futuramdbtbold.eot') format('embedded-opentype'),
		url('./fonts/futuramdbtbold.woff2') format('woff2'),
		url('./fonts/futuramdbtbold.woff') format('woff'),
		url('./fonts/futuramdbtbold.ttf') format('truetype'),
		url('./fonts/futuramdbtbold.svg#futuramdbtbold') format('svg');
}

body {
	margin: 0;
}
html,
body,
.section-intro,
.brand-links,
.brand-link {
	height: 100%;
}
a {
	text-decoration: none;
	color: #040707;
}
p {
	margin: 0 0 20px;
}
.section-header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.brand-logo img {
	max-height: 100px;
}

/* Prvi accordion - static */
.section-intro {
	margin-top: 100px;
}
.brand-links {
	display: table;
	width: 100%;
	height: 100%;
}
.brand-link {
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	width: 100%;
	display: block;
	height: auto;
	padding: 20% 0;
	margin-bottom: 10px;
}
.brand-link:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.5;
	z-index: 1;
  	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.brand-link:hover:before {
	opacity: 0.2;
}
.slide-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.05);
  	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
	/* Firefox 10-34 */
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='saturate' values='0'/></filter></svg>#grayscale");

    /* Firefox 35+ */
    filter: grayscale(0.9);

    /* IE 6-9 */
    filter: gray;

    /*
      Chrome 19+,
      Safari 6+,
      Safari 6+ iOS,
      Opera 15+
    */
     -webkit-filter: grayscale(100%);
}
.brand-link:hover .slide-img {
	transform: scale(0.9);
	/* Firefox 10-34 */
    filter: none;

    /* Firefox 35+ */
    filter: none;

    /* IE 6-9 */
    filter: none;

    /*
      Chrome 19+,
      Safari 6+,
      Safari 6+ iOS,
      Opera 15+
    */
     -webkit-filter: none;
}
.brand-1 .slide-img {
	background-image: url('./images/brand-1.jpg');
}
.brand-2 .slide-img {
	background-image: url('./images/brand-2.jpg');
}
.brand-3 .slide-img {
	background-image: url('./images/brand-3.jpg');
}
.slide-caption {
	display: block;
	position: relative;
	z-index: 2;
}
.brand-link h2 {
	font-family: 'futuramdbtbold', sans-serif;
	font-size: 40px;
	line-height: 1.1;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.brand-link p {
	font-family: 'futuramdbtbold', sans-serif;
	margin: 0;
}
.slide-caption:after {
	content: "";
	display: inline-block;
	width: 10%;
	height: 1px;
	background: #666;
  	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.brand-link:hover .slide-caption:after {
	width: 30%;
}

/* Responsive */
@media (min-width: 768px) {
	.brand-logo img {
		max-height: 150px;
	}
	.section-intro {
		margin-top: 0px;
	}
	.brand-links {
		display: table;
		width: 100%;
		height: 100%;
	}
	.brand-link {
		display: table-cell;
		vertical-align: middle;
		width: 33.33%;
		height: 100%;
		padding: 0;
	}
	.brand-link h2 {
		font-size: 32px;
	}
	.slide-caption:after {
		width: 0;
	}
}
@media (min-width: 992px) {
	.brand-link h2 {
		font-size: 40px;
	}
}