@charset "utf-8";
/* CSS Document */
.bg1 {
	background: url("../images/bg1.jpg") no-repeat;
	background-position: 0% 35% ;
	background-size: cover;
	background-attachment: fixed;
}

.bg1:after {
    content: "";
    position: fixed;
	z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .78;
    background-image: -webkit-linear-gradient(120deg,rgba(0,0,0,1.00) 0%,rgba(162,0,255,1.00) 100%);
    background-image: -moz-linear-gradient(120deg,rgba(0,0,0,1.00) 0%,rgba(162,0,255,1.00) 100%);
    background-image: -o-linear-gradient(120deg,rgba(0,0,0,1.00) 0%,rgba(162,0,255,1.00) 100%);
    background-image: linear-gradient(120deg,rgba(0,0,0,1.00) 0%,rgba(162,0,255,1.00) 100%);
}

.logo {
	text-align: center;
	padding-top: 70px !important;
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	height: auto;
}

.welcome {
	text-align: center;
	margin-bottom: 40px;
}

.welcome p {
	color: #fff;
	font-size: 48px;
	margin-top: 60px;
	font-family: 'Open Sans', sans-serif;
}

.welcome h1 {
	font-size: 90px;
	color: #CEBE9C;
	font-family: 'Open Sans', sans-serif;
	font-weight: bolder;
}

.info {
	text-align: center;
}

.info p {
	color: #fff;
	font-size: 40px;
	font-family: 'Open Sans', sans-serif;
}

.info h3 {
	color: #CEBE9C;
	font-size: 40px;
	font-family: 'Open Sans', sans-serif;
}


@media (max-width: 600px) {
  	.bg1 {
    	background-color: #000 !important;
		background: none;
  	}
	
	.logo {
		padding-top: 0px;
	}
	
	.logo img {
		text-align: center;
		width: 200px;
		height: auto;
	}
	
	.welcome p {
		font-size: 18px;
	}
	
	.info p {
		font-size: 18px;
	}
	
	.info h3 {
		font-size: 22px;
	}

	
} 