 
.beaker {
	-webkit-filter: drop-shadow(#424242 0px 1px 0px);
	border-bottom: 2em solid #FFF;
	border-left: 1em solid transparent;
	border-right: 1em solid transparent;
	border-radius: .5em;
	height: 0;
	width: 1em;
	position: absolute;
	right: 0.7em;
	bottom: 22%;
	font-size: 0.6em;
}

.beaker::before {
	border-left: .25em solid #FFF;
	border-radius: .25em;
	border-right: .25em solid #FFF;
	content: '';
	height: .25em;
	left: -.25em;
	position: absolute;
	top: -1em;
	width: 1em;
}

.beaker::after {
	border-left: .25em solid #FFF;
	border-right: .25em solid #FFF;
	content: '';
	height: 1em;
	left: 0;
	position: absolute;
	top: -1em;
	width: .5em;
}

.sectionheader {
	position: relative;
}

#closebutton{
	position: fixed;
	top: 5%;
	right: 92%;
	opacity: 1;
	cursor: pointer;
	cursor: hand;
    -webkit-transition: all .5s ease-in; 
    transition: all .5s ease-in;  
}
 

#closebutton.hide{   
	opacity: 0; 
    -webkit-transition: all .5s ease-in; 
    transition: all .5s ease-in;  
}

#closebutton .fa{
	color: rgba(255, 255, 255, .3);
	font-size: 36px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#closebutton:hover .fa{
	color: rgba(139, 198, 0, 1);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;

}


#lab  {
	background-color: #222222;
	position: fixed;
	height: 100%;
	width: 100%;
}

#lab .inner{ 
	overflow-y:auto;
	overflow-x:hidden;
}


.lab_item {
	width: 200px;
	height: 230px;
	position: relative;
	display: inline-block;
	opacity: 1;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
 
.lab_item.invisible{ 
	opacity: 0 !important;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}


.hexagon2 {
	position: absolute;
	width: 200px;
	height: 400px;
	top: -85px;
	background: #ffffff;
}

.hexagon {
	overflow: hidden;
	visibility: hidden;

	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg);
	cursor: pointer;
	background: #ffffff;
}

.hexagon-in1 {
	overflow: hidden;
	width: 100%;
	height: 100%;

	-webkit-transform: rotate(-60deg);
	-moz-transform: rotate(-60deg);
	-o-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);
}



.hexagon-in2 {
	-webkit-box-shadow: inset 0 0 0 200px rgba(139, 198, 0, 0.30);
	box-shadow: inset 0 0 0 200px rgba(139, 198, 0, 0.30);
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50%;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	visibility: visible;

	-webkit-transform: rotate(-60deg);
	-moz-transform: rotate(-60deg);
	-o-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;

	position: relative;

	opacity: 1;

}


.headingsection .hexagon-in2 {
	-webkit-box-shadow: inset 0 0 0 200px rgba(139, 198, 0, 0.90);
	box-shadow: inset 0 0 0 200px rgba(139, 198, 0, 0.9); 
}


.hexagon-in2.visible {

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;

	opacity: 1;
}



.hexagon-in2:hover {
	-webkit-box-shadow: inset 0 0 0 0px #8bc600;
	box-shadow: inset 0 0 0 0px #8bc600;
}


.hexagon-in2::after{

    font-family: 'FontAwesome';
    content: "\f08e";
    position: absolute;
    width: 100%;
    text-align: center;
    color: #8bc600;
    font-size: 40px;
    opacity: 0;
    /*text-shadow: 1px 1px 8px rgba(0,0,0,.3);*/
    top:100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;

}


.hexagon-in2:hover::after{
	opacity: 1;
    top: 60%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;

}


.hexagon-in2 h2{ 
    font-family: 'Quicksand', sans-serif;
    font-weight: normal;
    font-size: 20px; 
    display: block; 
    color: rgba(0,0,0,.7);
    -webkit-transition: all .5s ease; 
    transition: all .5s ease;  
    top: 45%;
    transform: translateY(-50%);
    text-align: center;
    position: absolute;
    display: block;
    width: 100%;
    text-transform: uppercase;
}

.hexagon-in2:hover h2{ 
    color: #ffffff;
    -webkit-transition: all .5s ease; 
    transition: all .5s ease;  
}


#lab article {
	padding-top: 1em;
	width: 820px;
	margin: 0 auto;
}

.lab_item:nth-child(7n-2) {
	margin-left: 101px;
}

.lab_item:nth-child(n+5) {
	margin-top: -55px;
}

.tag{
	padding: 3px 8px;
	display: inline-block;
	border: 1px solid #eeeeee;
	border-radius: 5px;
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 5px;
}


@media (max-width: 1015px) {
	#lab {
	width: 100%;
}

}

@media (max-width: 820px) {
	.lab_item:nth-child(5n-1) {
	margin-left: 102px;
}

.lab_item:nth-child(n+4) {
	margin-top: -62px;
}

.lab_item:nth-child(7n-2) {
	margin-left: 0px;
}

.lab_item:nth-child(n+5) {
	margin-top: -56px;
}

#lab article {
	width: 610px;
}

}

@media (max-width: 640px) {
	#lab article {
	width: 405px;
}

.lab_item:nth-child(5n-1) {
	margin-left: 0px;
}

.lab_item:nth-child(3n) {
	margin-left: 102px;
}

.lab_item:nth-child(n+3) {
	margin-top: -56px;
}

}

@media (max-width: 450px) {
	#lab article {
	width: 300px;
}

.lab_item:nth-child(3n) {
	margin-left: 0px;
}

.lab_item:nth-child(2n) {
	margin-left: 102px;
}

.lab_item:nth-child(n+2) {
	margin-top: -56px;
}

}
