.intro {
	position: fixed;
	z-index: 10;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background:url(../../images/bg.jpg) #5E9A18;
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.container--open .intro {
	-webkit-transform: translate3d(0, -100%, 0) translate3d(0, 250px, 0);
	transform: translate3d(0, -100%, 0) translate3d(0, 250px, 0);
}

/* Fullscreen image */


.container--open .intro__image {
	opacity: 0;
	-webkit-transform: translate3d(0, 20%, 0);
	transform: translate3d(0, 20%, 0);
}

/* Intro content */
.container--open .intro__content {
	margin-top: 250px;
}
.intro__content {
	position: absolute;
	bottom: 0;top:250;
	text-align: center;
	padding: 1.8em;
	width: 100%;
	font-size: 1.15em;
}
.intro__title {
visibility:hidden;
}
.container--open .intro__title {
	margin: 0 0 20px;
	font-weight: 200;
	font-size: 4em;
	font-family: "Roboto", Georgia, serif;
	line-height: 1;
	color:#fff;
    visibility: visible;
}

.container--open .intro__menubar {
	margin: 0 0 20px;
	font-weight: 200;
	font-size: 2em;
	font-family: "Roboto";
	line-height: 1;
    visibility: visible;
}

 .intro__menubar {
     visibility:hidden;
}

 .intro__content h6 {
     visibility: hidden;
}
.container--open  .intro__content h6 {
  color: #000;
  font-size: 19px;
  font-weight: bold;
  visibility: visible;
  margin-top: -20px;
}

.container--open .intro__menubar a {
      color: #dbdbdb;
  text-decoration: none;
    }
    
.container--open .intro__menubar a:active {
      color: #5E9A18;
  text-decoration: none;
    }
    .container--open .intro__menubar a:visited {
    
    }
    .container--open .intro__menubar a:current {
    
    }
    .container--open .intro__menubar a:active {
    
    }
.container--open .intro__content {
visibility:hidden}
.NoBorder {
    text-align: center;
    border:0 !important;
    border: none !important;
}

.NoBorder td {
line-height: 1em;
}

    .NoBorder tr {
    font-size:200%;
    height: 40px;
     border:0 !important;
    border: none !important;
    }

.big {
text-align:center;
font-size:xx-large; margin-bottom:.5em; margin-top:1em;
}


.anchor{
   display:block;
   height:250px; /* this is the height of your header */
   margin-top:-250px; /* this is again negative value of the height of your header */
   visibility:hidden;
}

.headerspace {
       position:relative;
       height:270px;
}

/*.slide img.slide-content {
    height:253px;width:503px;

}*/

/*
.intro__subtitle {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.intro__description {
	margin: 0 auto 0 1em;
	line-height: 1.2;
}*/

/* Trigger button with SVG */
.trigger {
	position: absolute;
	-webkit-flex: none;
	flex: none;
	overflow: hidden;
	margin-left: -20px;
	padding: 0;
	width: 40px;
	height: 40px;
	outline: none;
	border: none;
	background: none;
	bottom: 1em;
}

/* Hide the text */
.trigger span {
	position: absolute;
	top: 100%;
}

.icon rect,
.icon line {
	stroke: #dbdbdb;
	fill: none;
	stroke-width: 2px;
}

.icon {
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

/* Hide grid and show cross when opening */
.icon--cross,
.trigger--active .icon--grid {
	opacity: 0;
	-webkit-transform: scale3d(0.5, 0.5, 1);
	transform: scale3d(0.5, 0.5, 1);
}

.trigger--active .icon--cross {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

/* Main content */
.items-wrap {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 250px 0 0;
}

.items-wrap::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2a2e39;
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	pointer-events: none;
}

.container--open .items-wrap::after {
	opacity: 0;
}


