@charset "UTF-8";

/*--ZERO OUT--*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*---------------------------------------------------------GLOBAL--*/
body {
    background-color: #eeeeee;
    font-family: 'Oswald', sans-serif;
	font-weight: 200;
}



h1{
    color: #666666;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform:uppercase;
}

h2{
    color: #666666;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform:uppercase;
    font-size: 20px;
	padding-bottom: 4px;
}


/*---------------------------------------------------------WRAPPER--*/
#wrapper {
/*	border: #AB1417 2px solid;*/
	max-width: 1366px;
	height: auto;
	background: #EEEEEE;
	margin: 0 auto;
	display: grid;
    grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		"header header header header"
		"banner banner banner banner"
		"cont cont cont cont"
		"footer footer footer footer";
	gap: 10px;
	box-shadow: 0px 2px 25px 0px rgba(0,0,0,0.2);
}


/*---------------------------------------------------------HEADER--*/
header {
/*	border: #AB1417 2px solid;*/
	grid-area: header;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	background: #EEEEEE;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	border-bottom: 1px solid #DADADA;
}

.logo {
/*	border: #AB1417 2px solid;*/
	padding-left: 10px;

}

.navbar {
/*border: solid 2px rgba(184,79,168,1.00);*/
	float: right;
	overflow: hidden;
    font-family: 'Oswald', sans-serif;
	font-size: 16px;
    font-weight: 100;
	text-transform: uppercase;
}

.navbar a {
	float: left;
	color: #ababab;
	text-align: center;
	padding: 18px 16px;
	text-decoration: none;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	cursor: pointer;
	font-size: 16px;
	border: none;
	outline: none;
	color: #ababab;
	padding: 14px 16px;
	background-color: inherit;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
	margin: 0;
	text-transform: uppercase;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
	background-color: #EC482A;
	color: #FFFFFF
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #ddd;
	color: black;
}

.show {
	display: block;
}

#menu-bar {
	display: none;
}

header label {
	color: #ababab;
	font-size: 16px;  
	cursor: pointer;
	display: none;
}


/*---------------------------------------------------------BANNER--*/

#banner {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	grid-area: banner;
	border-bottom: 1px solid #DADADA;
	margin-top: -8px;
}


/*---------------------------------------------------------SLIDE--*/
#content {
/*border: solid 2px rgba(184,79,168,1.00);*/
	grid-area: cont;

}
.slideshow {
    grid-column: 1 / span 4;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.slideshow img {
    width: 100%;
    height: auto;
    display: none;
transition-timing-function: ease-in-out;
}

.slideshow img.active {
    display: block;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    transform: translateY(-50%);
    z-index: 1;
}

#prevBtn, #nextBtn {
color: white;
cursor: pointer;
padding: 10px;
background-color: transparent;
border: none;
font-size: 20px;
text-shadow: 0 0 10px rgba(0,0,0,0.2);

}

#prevBtn:hover, #nextBtn:hover {
	background-color: rgba(0,0,0,0.25);

}
  
.indicator-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: #C4C4C4;
    border-radius: 50%;
    margin: 0 5px;

	border: 1px solid rgba(185,185,185,0.5);
}

.indicator-dot.active {
    background-color: #333;
}


/*---------------------------------------------------------FOOTER--*/
footer {
/*	border: solid 2px rgba(118,184,79,1.00);*/
	grid-area: footer;
	background: #e3e3e3;
}

#footerNav ul {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	justify-content: center;
	display: flex;
	align-items: center;
	height: 80px;
/*	justify-content: space-between;*/
}

#footerNav a {
	padding: 10px 0;
	margin: 20px;
	text-decoration: none;
	font-weight: 300;
	font-size: 20px;
	color: #ABABAB;
	text-transform: uppercase;
}

#footerNav a:hover {
	color: #575757;
	
} 


/*---------------------------------------------------------SOCIAL--*/
#social ul {
/*	border: solid 2px rgba(79,122,184,1.00);*/
	display: flex;
	justify-content: center;
	background-repeat: no-repeat;
	align-items: center;
	height: 60px;
}

#social li {
	margin: 0 10px;
}

#social li, #social a {
    height: 42px;
	width: 42px;
    display: block;
}

#vimeo {left:0px;width:42px;}
#vimeo {background:url('../images/sprites/Icon-Vimeo.png') 0 0;}
#vimeo a:hover{background: url('../images/sprites/Icon-Vimeo.png') 0 -42px;}

#flickr {left:50px;width:42px;}
#flickr {background:url('../images/sprites/Icon-Flickr.png') 0 0;}
#flickr a:hover{background: url('../images/sprites/Icon-Flickr.png') 0 -42px;}

#behance {left:100px;width:42px;}
#behance {background:url('../images/sprites/Icon-Behance.png') 0 0;}
#behance a:hover{background: url('../images/sprites/Icon-Behance.png') 0 -42px;}


/*---------------------------------------------------------COPYRIGHT--*/
#copy {
/*	border: solid 2px rgba(184,79,168,1.00);*/
	text-align: center;
	margin: 20px 0;
	color: #ABABAB;
	font-weight: 300;
}


/*---------------------------------------------------------MEDIA QUERIES 992--*/
@media screen and (max-width: 992px) {
	#wrapper {
	max-width: 1366px;
	height: 100vh;
	background: #EEEEEE;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 50px auto 1fr;
	grid-template-areas:
		"header"
		"cont"
		"footer";
	gap: 10px;
	}

#content {
/*	border: solid 2px rgba(15,79,168,1.00);*/
}

}

/*---------------------------------------------------------MEDIA QUERIES 650--*/
@media screen and (max-width: 650px) {
/*
	header {
		padding: 20px 10px;
	}
*/

header label {
	display: initial;
}
.logo {
/*	border: #AB1417 2px solid;*/
	padding: 0;

}
.navbar {
	position: absolute;
	top: 45px; 
	left: 0; 
	right: 0;
	background: rgba(238,238,238,0.9);
	height: 100vh;
	backdrop-filter: blur(10px);
	display: none;
	z-index: 2;
	font-size: 20px;
}

.navbar a {
	width: 100%;
	border-top: 1px solid #DADADA;
	text-align: center;
/*border: solid 2px rgba(184,79,168,1.00);*/
	}

.dropdown {
	text-align: center;
	width: 100%;
	border-top: 1px solid #DADADA;
/*border: solid 2px rgba(184,79,168,1.00);*/
}

.dropdown-content{
	position:relative;
}

.dropdown .dropbtn {
	width: 100%;
	font-size: 20px;
}

#menu-bar:checked ~ .navbar {
	display: initial;
}

#banner {
	display: none;
}

#content {
/*border: solid 2px rgba(15,79,16,1.00);*/

}

#footerNav a {
	margin: 10px;
}

}


/*---------------------------------------------------------MEDIA QUERIES 480--*/
@media screen and (max-width: 480px) {
#content {
	/*height: 250px;*/
/*border: solid 2px rgba(105,50,16,1.00);*/
}

}
