@import url('normalize.css');
@font-face {
	font-family:'RaphaelIcons';
    src: url('raphaelicons-webfont.eot');
    src: local('☺'), 
		url('fonts/raphaelicons-webfont.woff') format('woff'), 
		url('fonts/raphaelicons-webfont.ttf') format('truetype'), 
		url('fonts/raphaelicons-webfont.svgwebfontKOf9F4sx') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* General Demo Style */
body{
	/*font-family: Georgia, serif;*/
	font-family: 'Open Sans', sans-serif;
	background: #ddd;
	font-weight: 400;
	font-size: 15px;
	color: #333;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
}
a{
	color: #555;
	text-decoration: none;
}
.clr{
	clear: both;
	padding: 0;
	height: 0;
	margin: 0;
}
/* Header Style */
.codrops-top{
	line-height: 24px;
	font-size: 9px;
	text-transform: uppercase;
	z-index: 9999;
	position: relative;
	font-family: Cambria, Georgia, serif;
}
.codrops-top a{
	padding: 0px 10px;
	letter-spacing: 1px;
	color: #888;
	display: inline-block;
	text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}
.codrops-top span.right{
	float: right;
}
.codrops-top span.right a{
	float: left;
	display: block;
}


.st-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*font-family: 'Josefin Slab', 'Myriad Pro', Arial, sans-serif;*/
	font-family: 'Open Sans', sans-serif;
}
.st-container > input,
.st-container > a {
	position: fixed;
	bottom: 0px;
	width: 33.3%;
	cursor: pointer;
	/*font-size: 14px;*/
	height: 45px;
	line-height: 45px;
}
.st-container > input {
	opacity: 0;
	z-index: 1000;
}
.st-container > a {
	z-index: 10;
	/*font-weight: 700;*/
	background: #444;
	color: #fff;
	text-align: center;
	border: 1px solid #666;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
}
/* "Fix" for percentage rounding: add a background bar pseudo element with the same color like the labels */
.st-container:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 34px;
	background: #008ac9;
	z-index: 9;
	bottom: 0;
}
#st-control-1, #st-control-1 + a {
	left: 0;
}
#st-control-2, #st-control-2 + a {
	left: 33.33%;
}
#st-control-3, #st-control-3 + a {
	left: 66.66%;
}
#st-control-4, #st-control-4 + a {
	left: 60%;
}
#st-control-5, #st-control-5 + a {
	left: 80%;
}
.st-container > input:checked + a,
.st-container > input:checked:hover + a{
	background: #c6e254;
	color: #000;
}
.st-container > input:checked + a:after,
.st-container > input:checked:hover + a:after{
	bottom: 100%;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #c6e254;
	border-width: 20px;
	left: 50%;
	margin-left: -20px;
}
.st-container > input:hover + a{
	background: #c6e254;
	color: #000;
}
.st-container > input:hover + a:after {
	border-bottom-color: #c6e254;
}
.st-scroll,
.st-panel {
	position: relative;
	width: 100%;
	height: 100%;
}
.st-scroll {
	top: 0;
	left: 0;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	
	/* Let's enforce some hardware acceleration */
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}
.st-panel{
	background: #fff;
	overflow: hidden;
}
#st-control-1:checked ~ .st-scroll {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
#st-control-2:checked ~ .st-scroll {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
#st-control-3:checked ~ .st-scroll {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-o-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}
#st-control-4:checked ~ .st-scroll {
	-webkit-transform: translateY(-300%);
	-moz-transform: translateY(-300%);
	-o-transform: translateY(-300%);
	-ms-transform: translateY(-300%);
	transform: translateY(-300%);
}
#st-control-5:checked ~ .st-scroll {
	-webkit-transform: translateY(-400%);
	-moz-transform: translateY(-400%);
	-o-transform: translateY(-400%);
	-ms-transform: translateY(-400%);
	transform: translateY(-400%);
}
/* Content elements */
.st-deco{
	width: 200px;
	height: 200px;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -100px;
	background: #008ac9;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
[data-icon]:after {
    content: attr(data-icon);
    font-family: 'RaphaelIcons';
    color: #fff;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	position: absolute;
	width: 200px;
	height: 200px;
	line-height: 200px;
	text-align: center;
	font-size: 90px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	-webkit-transform: rotate(-45deg) translateY(25%);
	-moz-transform: rotate(-45deg) translateY(25%);
	-o-transform: rotate(-45deg) translateY(25%);
	-ms-transform: rotate(-45deg) translateY(25%);
	transform: rotate(-45deg) translateY(25%);
}
.st-panel h2 {
	color: #008ac9;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	position: absolute;
	font-size: 54px;
	font-weight: 900;
	width: 80%;
	left: 10%;
	text-align: center;
	line-height: 50px;
	margin: -70px 0 0 0;
	padding: 0;
	top: 50%;
	-webkit-backface-visibility: hidden;
}
.st-panel .logo_img {
    position: relative;
    left: 0;
    /* right: 0; */
    /* margin: 0 auto; */
    top: 20px;
}
.st-panel.panel1 h2 {
    color: #fff;
    top: 16%;
    font-size: 30px;
}
.st-panel.panel1 p {
    color: #fcfcfc;
    top: 11.5%;
}
.panel1_side {
    color: #fff;
    position: relative;
    width: 50%;
    margin-top: 14%;
    width: 100%;
}
.panel1_side h3 {text-transform: uppercase;}
.panel1_side {color: #fff;position: relative;}
.st-panel.panel1 .panel1_side p {
    position: relative;
    text-align: left;
    left: inherit;
    line-height: normal;
}
.st-panel.panel2 .logo_img, .st-panel.panel3 .logo_img {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 16%;
    max-height: 130px;
}
.container {max-width: 1170px;margin: 0 auto;}
#st-control-1:checked ~ .st-scroll #st-panel-1 h2,
#st-control-2:checked ~ .st-scroll #st-panel-2 h2,
#st-control-3:checked ~ .st-scroll #st-panel-3 h2,
#st-control-4:checked ~ .st-scroll #st-panel-4 h2,
#st-control-5:checked ~ .st-scroll #st-panel-5 h2{
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveDown{
	0% { 
		-webkit-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-moz-keyframes moveDown{
	0% { 
		-moz-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}
@-o-keyframes moveDown{
	0% { 
		-o-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}
@-ms-keyframes moveDown{
	0% { 
		-ms-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes moveDown{
	0% { 
		transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}
.st-panel p {
	position: absolute;
	text-align: center;
	font-size: 14px;
	line-height: 22px;
	color: #8b8b8b;
	z-index: 2;
	padding: 0;
	width: 45%;
	left: 25%;
	top: 50%;
	margin: 10px 0 0 0;
	-webkit-backface-visibility: hidden;
}
.st-panel p a {
    display: table;
    margin: 20px auto 0;
    background-color: #75c044;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
}
#st-control-1:checked ~ .st-scroll #st-panel-1 p,
#st-control-2:checked ~ .st-scroll #st-panel-2 p,
#st-control-3:checked ~ .st-scroll #st-panel-3 p,
#st-control-4:checked ~ .st-scroll #st-panel-4 p,
#st-control-5:checked ~ .st-scroll #st-panel-5 p{
	-webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	animation: moveUp 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-moz-keyframes moveUp{
	0% { 
		-moz-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}
@-o-keyframes moveUp{
	0% { 
		-o-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}
@-ms-keyframes moveUp{
	0% { 
		-ms-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes moveUp{
	0% { 
		transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}
/* Colored sections */

.st-color,
.st-deco{
	background: #008ac9;
}
.st-color [data-icon]:after {
	color: #008ac9;
}
.st-color .st-deco {
	background: #fff;
}
.st-color h2 {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
} 
.st-color p {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
body > div:last-child {
    display: none !important;
    width: 0 !important;
}
.st-panel img {
	position: absolute;
	max-height: 200px;
}
.st-panel {
	position: relative;
}
.f_img {
	top: 60px;
	left: 50px;
}
.h_img {
	top: 60px;
	right: 50px;
}
.b_img {
	bottom: 90px;
	left: 60px;
}
.t_img {
	bottom: 90px;
	right: 60px;
}
.st-panel.panel1, .st-panel.panel3 {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
}
.st-panel.panel1 {
	background-image: url("../images/home_bg.jpg");
}
.st-panel.panel1 img {
    max-height: inherit;
    right: 50px;
    bottom: 0;
}
#st-panel-3.st-panel.panel3 {
	background-image: url("../images/event.jpg");
}
img.e_img {
    bottom: 50px;
}
img.e_img1 {
    right: 10px;
    top: 10px;
}
img.base_img {
    top: 0;
    right: 0;
    /*left: 84.2%;*/
}
img.c_img {
    bottom: 68px;
    left: -7px;
}
.home_footer {
    position: absolute;
    bottom: 0;
    z-index: 999;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #000;
    padding: 10px 10px;
}
.home_footer a {
    color: #fff;
    padding:0px 15px;
    font-size: 15px;
}
#st-control-1, #st-control-1 + a, #st-control-2, #st-control-2 + a, #st-control-3, #st-control-3 + a {
	bottom: 35px;
}

/* MAIN HOMEPAGE */
.st-panel.panel1 h2.home_head {
    text-align: left;
    left: 0;
    position: relative;
}
body.policy_content {
    background: inherit;
    overflow: auto;
    padding: 30px 0 30px;
    display: block;
}

/* RESPONSIVE */
@media screen and (max-width: 520px) {
	.codrops-top { display: none; }
	.st-panel h2 {
		font-size: 42px;
	}
	
	.st-panel p {
		width: 90%;
		left: 5%;
		margin-top: 0;
	}
	
	.st-container > a {
		font-size: 13px;
	}
}
@media screen and (max-width: 360px) {
	.st-container > a {
		font-size: 10px;
	}
	
	.st-deco{
		width: 120px;
		height: 120px;
		margin-left: -60px;
	}
	
	[data-icon]:after {
		font-size: 60px;
		-webkit-transform: rotate(-45deg) translateY(15%);
		-moz-transform: rotate(-45deg) translateY(15%);
		-o-transform: rotate(-45deg) translateY(15%);
		-ms-transform: rotate(-45deg) translateY(15%);
		transform: rotate(-45deg) translateY(15%);
	}
}