﻿#header {
	text-align: center;
	padding: 15px;
	/*position: fixed;*/
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: black
}

.toggable:hover {
	background-color: #333;
	cursor: pointer;
}

.killigrew {
	font-family: 'Killigrew';
}

.logo {
	height: 100px;
}

.logo:hover {
	-webkit-filter: brightness(0.7);
}

.scroller_anchor {
	top: 130px;
	height: 0px;
}

#banner {
	height: 100px;
	/*position: fixed;
	top: 130px;*/
	top: 0px;
	position: relative;
	width: 100%;
	z-index: 50;
	background-image: url('../images/primitiv_inlay.jpg');
	background-position: 70% 1000px;
}

#rr {
	position: absolute;
	left: 50px;
	padding-top: 5px;
	height: 60px;
	opacity: 0.0;
}

#bannerContent {
    height: 100%;
    width: 100%;
    /*position: fixed;
	top: 130px;*/
    position: absolute;
    top: 0px;
    z-index: 51;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0, 0.0), rgba(0,0,0, 1.0))
}

#overlay {
	height: 50px;
	/*position: fixed;
	top: 230px;*/
	position: relative;
	top: 0px;
	width: 100%;
	z-index: 50;
	background: linear-gradient(to top, rgba(0,0,0, 0.0), rgba(0,0,0, 1.0))
}

#main {
	/*padding-top: 280px;*/
	z-index: 10;
}

a {
	color: #aaa;
}

a:link {
	color: #aaa;
	text-decoration: none;
}

a:visited {
	color: #aaa;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: none;
}

a:active {
	color: white;
	text-decoration: none;
}

#bannerContent a {
	display: inline-block;
	font-size: 2.5em;
	padding-left: 10px;
	padding-right: 10px;
	height: 100%;
}

.activeItem {
	background-color: black;	
}

#bannerContent .icon {
    display: none;
}

#bannerContent #nav-icon {
    display: none;
}

.bit-widget {
	min-width: 100px !important;
}

.bit-nav-bar {
	display: none !important;
}

.bit-button {
	display: none;
}



.news {
	padding-bottom: 50px;
}

.newsHeader {
	border-bottom: thin #6d1c1b solid;
	margin-bottom: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: space-between;
}

.newsTitle {
	font-size: 2em;
}

.newsDate {
	float: right;
	color: #ddd;
	background-color: #6d1c1b;
}

.newsContent {
	text-align: center;
}

.photoLeft {
	display: table;
	float: left;
	height: 100%;
	width: 100px;
	background: linear-gradient(to left, rgba(0,0,0, 0.0), rgba(0,0,0, 0.0))
}

.photoLeft:hover {
	background: linear-gradient(to left, rgba(0,0,0, 0.0), rgba(0,0,0, 1.0));
	color: #6d1c1b;
}

.photoLeft span{
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	font-size: 2em;
}

.photoRight {
	display: table;
	float: right;
	height: 100%;
	width: 100px;
	background: linear-gradient(to right, rgba(0,0,0, 0.0), rgba(0,0,0, 0.0))
}

.photoRight:hover {
	background: linear-gradient(to right, rgba(0,0,0, 0.0), rgba(0,0,0, 1.0));
	color: #6d1c1b;
}

.photoRight span{
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	font-size: 2em;
}



.modal {
	display: none;
    position: fixed;
    z-index: 99;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    text-align: center;
}

.modalContent {
	max-width: 1000px;
}


#gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding-top: 100px;
}

#gallery div {
	display: flex;
	align-items: center;
	margin: 10px;
	width: 250px;
	height: 250px;
	overflow: hidden;
}

#gallery img {
	padding: 20px;
	width: 250px;
	height: auto;
}



#nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
  top: 10px;
  right: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #ccc;
/*  border-radius: 9px;*/
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
  top: 5px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 20px;
  width: 0%;
  left: 50%;
}





@media screen and (max-width: 991px) {
	.logo {
		height: 50px;
	}
	/*#overlay {
		top: 180px;	
	}
	#main {
		padding-top: 230px;
	}*/
}

@media screen and (max-width: 700px) {
	#rr {
	    /*display: none;*/
        left: 26px;
        height: 35px;
	}
}

@media screen and (max-width: 600px) {
	#bannerContent a:not(.activeItem) {display: none;}
	#bannerContent {
        text-align:left; 
        padding-left: 70px;
	}
	#bannerContent a.icon {
	    float: right;
    	display: block;
	}
	#bannerContent #nav-icon {
	    float: right;
    	display: block;
	}
    #overlay {
        height: 25px;
    }
    #banner {
        height: 50px;
    }
}

@media screen and (max-width: 600px) {
    #bannerContent.expanded {
        text-align: left;
        padding-left: 70px;
    }

	#bannerContent.expanded a {
		display: block;
		height: auto;
		width: 80%;
	}

	#bannerContent.expanded a.icon {
	    position: absolute;
    	right: 0;
    	top: 0;
    }

    #bannerContent.expanded #nav-icon {
	    position: absolute;
    	right: 10px;
    	top: 10px;
    }

    .activeItem.expanded {
        background: linear-gradient(to right, rgba(0,0,0, 1.0), rgba(0,0,0, 0.0));
    }
}

@media screen and (max-width: 472px) {
	#hordePhoto {
		width: 100%;
	}
}