@media only screen 
and (min-width : 1025px) {
/*********************** SHOWCASE  / START ************************************/
.showcase {
	background: url('../graphics/showcase-bg.jpg');
	box-sizing: border-box;
	box-shadow: inset 0px 75px 75px 0px rgba(0,0,0,0.0);
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	transition-delay: 3s;
	-webkit-transition-delay: 3s;
}
.showcase-active {
	box-shadow: inset 0px 75px 75px 0px rgba(0,0,0,0.0);
}
/*********************** SECTION1  / START ************************************/
.section1.animated {
	box-sizing: border-box;
	-webkit-transition: all 1s linear;
	transition: all 1s linear;
	opacity: .6;
}
.section1-active {
	opacity: 1.0!important;
}
.section1 .content-left .content {
	padding: 5px 15px;
	-webkit-box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	-webkit-transition: all 1s ease 2s;
	transition: all 1s ease 2s;
}
.section1 .content-right .content {
	padding: 5px 15px;
	-webkit-box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	-webkit-transition: all 1s ease 2s;
	transition: all 1s ease 2s;
}
.section1 .content-center .content {
	padding: 5px 15px;
	-webkit-box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.0);
	-webkit-transition: all 1s ease 2s;
	transition: all 1s ease 2s;
}
.active-borders {
	-webkit-box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.5)!important;
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.5)!important;
}
/*********************** SECTION2  / START ************************************/
.section2.animated {
	box-sizing: border-box;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	padding-top: 0px;
	padding-bottom: 0px;
	opacity: .2;
	height: 0%;
}
.section2 .section-inner {
	background: url('../graphics/section2-top.png') -999px -200px repeat-x, url('../graphics/section2-bottom.png') -999px 1000px repeat-x, url('../graphics/section2-bg.jpg');
	opacity: .2;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.section2-active1 {
	box-sizing: border-box!important;
	height: 100%!important;
	opacity: 1!important;
}
.section2-active2 {
	background: url('../graphics/section2-top.png') 0px top repeat-x, url('../graphics/section2-bottom.png') 0px bottom repeat-x, url('../graphics/section2-bg.jpg')!important;
	opacity: 1!important;
}
/*********************** FOOTER  / START **************************************/
.footer {
	box-sizing: border-box;
	opacity: 0;
	-webkit-transition: all 1s ease-in;
	transition: all 1s ease-in;
}
.footer-active {
	opacity: 1;
}
/*********************** SECTION DIVIDER  / START *****************************/
.section-divider {
	background: url('../graphics/stripes-bg2.jpg') fixed 50% 0;
	box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.0);
	box-sizing: border-box;
	padding: 0px;
	border-top: 1px solid rgba(0,0,0,0.0);
	border-bottom: 1px solid rgba(0,0,0,0.0);
	transition: all .5s ease-in-out;
}
.section-divider-active {
	box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.95);
	box-sizing: border-box;
	padding: 20px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
