/*
========================================================================================
Custom Basics (px or em)
========================================================================================
*/

html, body  {
margin:0;
padding:0;
height:100%;
font-family: "bree", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;	
text-align: center;
min-width: 300px;

}

.row {
max-width: 1140px;
}

* {
/*-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;

}


/*
========================================================================================
Animation
========================================================================================
*/

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}


.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: 1.2s;
	-moz-animation-duration: 1.2s;
	animation-duration: 1.2s;	
	animation-timing-function: ease-in;	
	-webkit-animation-timing-function: ease-in;
	visibility: visible !important;
}


@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;		
	}
	
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
		}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		}
	100% {
		opacity: 1;
		}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .6s;
	-moz-animation-duration: .6s;
	animation-duration: .6s;
	
	animation-timing-function: ease-in;	
	-webkit-animation-timing-function: ease-in;	

	visibility: visible !important;	
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: .6s;
	-moz-animation-duration: .6s;
	animation-duration: .6s;	
	animation-timing-function: ease-in;	
	-webkit-animation-timing-function: ease-in;	
	visibility: visible !important;		
}



@-webkit-keyframes scaleIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0%);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(100%);
	}
}

@-moz-keyframes scaleIn {
	0% {
		opacity: 0;
		-moz-transform:  scale(0%);
	}

	100% {
		opacity: 1;
		-moz-transform:  scale(100%);
	}
}

@-o-keyframes scaleIn {
	0% {
		opacity: 0;
		-o-transform: scale(0%);
	}

	100% {
		opacity: 1;
		-o-transform: scale(100%);
	}
}

@keyframes scaleIn {
	0% {
		opacity: 0;
		transform: scale(0%);
	}

	100% {
		opacity: 1;
		transform: scale(100%);
	}
}

.scaleIn {
	-webkit-animation-name: scaleIn;
	-moz-animation-name: scaleIn;
	-o-animation-name: scaleIn;
	animation-name: scaleIn;
	-webkit-animation-duration: .2s;
	-moz-animation-duration: .2s;
	animation-duration: .2s;	
	animation-timing-function: ease-in;	
	-webkit-animation-timing-function: ease-in;	
	visibility: visible !important;		
}



.animate,
.fademe,
.bounce,
.scale{
  visibility: hidden;}
/*
========================================================================================
Custom Magic
========================================================================================
*/

.welcome {
min-height:100%;
height:auto !important;
height:100%;
position: relative;
text-align: center;
/*background-image: url(../img/bg.jpg);*/
background-size: cover;
background-position: center center;
background-attachment: fixed;
}

.welcome-inner {
min-height:100%;
height:auto !important;
height:100%;
position: absolute;
width: 100%;
top: 0;
text-align: center;
background-image: url(../img/bg.jpg);
background-size: cover;
background-position: center center;
background-attachment: fixed;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
opacity: 0.2;
z-index: 1;
}

.welcome img {
margin-top: 70px;
margin-bottom: 10px;
z-index: 99999999999;
position: relative;
max-width: 150px;
height: auto;
max-height: 150px;
width: auto;

}

 .navi {
background: #fff;
position: absolute;
bottom: 0;
left: 0;
right: 0;
border-bottom: 5px solid #ccc;
z-index: 999999999999999;
}

.navi ul {
margin: 0;
text-align: center;
}

.navi ul li {
margin: 20px 15px 15px 15px;
list-style: none;
display: inline-block;
font-size: 1.125em;
font-weight: 300;
cursor: pointer;
color: #999;
}

.navi ul li:hover {
color: #111;
}




h1 {
color: #fff;
font-size: 6em;	
font-weight: 800;
margin: 0;
padding: 0;
z-index: 99999;
position: relative;
}

h3 .prepend {
background: none repeat scroll 0 0 #ccc;
display: inline-block;
float: none;
height: 1px;
margin: 0 20px;
position: relative;
top: -12px;
width: 100px;
}

h2 {
margin: 0;
padding: 0;
color: #fff;
font-size: 2.5em;	font-weight: 300;
z-index: 99999;
position: relative;
}

h3 {
margin: 0 0 50px 0;
padding: 0;
color: #444;
font-size: 3em;	
font-weight: 700;

}

p {
font-weight: 300;
color: #666;
}

blockquote {
border-left: 0 solid #F0F0F0;
margin-bottom: 1.875em;
padding-left: 0;
background: rgba(255,255,255,0.8);
display: inline-block;
padding: 20px;

}
blockquote p {
font-family: "bree", sans-serif;
color: #111;	

}

.downloads {
background: #f0f0f0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: 1px solid #e0e0e0;
padding: 15px;
font-size: 1em;
}

.downloads a {
text-decoration: none;
display: inline-block;
margin: 0 0 0 15px;
}

.downloads a:hover {
color: #111;
}

.spacing {
padding: 0 40px;
}
.some-icon {
background: rgba(255,255,255,0.3);
width: 50px;
height: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
display: inline-block;
margin: 30px 5px;
cursor: pointer;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
z-index: 99999;
position: relative;
}

.some-icon:hover i {
color: #fff }


.some-icon i {
color: #fff;
color: rgba(255,255,255,0.6);
font-size: 24px;
line-height: 50px;
}

.insert {
padding-top: 100px;
padding-bottom: 100px;
}


.push {
padding-top: 150px;
padding-bottom: 100px;

 }
.five .push,
.four .push, 
.three .push, 
.two .push {
padding-bottom: 50px;
}

 
.pics {
 
	overflow: hidden;
	background: #111;
}
.mosaic-img {	
	cursor: pointer;
	opacity: 0.2;
}
.mosaic-img:hover {	
	opacity: 1;
}
.slider-open .mosaic-img {
	cursor: auto !important;
	opacity: 0.2 !important;
}



.pics .col {
background: #f0f0f0;
min-height: 200px;
background-position: center center;
background-size: cover;
 position: relative;
}
 

.refs .btn {
width: 100%;
}

.seven .btn {
color: #fff;
margin: 30px 0;
}

.seven {
background: #f0f0f0;
}

.totop {
background: #999;
width: 75px;
height: 75px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
border-radius: 100px;
display: inline-block;
margin: 50px 0 0 0;
cursor: pointer;
}

.totop i {
font-size: 45px;
color: #fff;
line-height: 68px;
}

.hide-wide {
display: none !important;
}

.img-bg {
background-image: url(../img/insertbg.png);
background-position: center center;
 }
 
 
 
/*
========================================================================================
Custom Queries
========================================================================================
*/

@media only screen and (max-width: 768px) { 

.nav li a {
	color: #FFFFFF !important;
	text-decoration: none;
}



.welcome {
min-height:   inherit !important;
padding-bottom: 30px;
 
}

 .navi {
background: #fff;
position: fixed;
bottom: auto !important;
left: 0;
right: 0;
width: 100%;
border-bottom: 0px solid #ccc;
 top: 0 !important;
bottom: auto;
}


.navi ul {
	
background: #ccc;	
}

.navi ul li {
list-style: none;
font-size: 0.85em;
text-transform: uppercase;
font-weight: 300;
cursor: pointer;
color: #fff;
border-left: 1px solid #444;
border-bottom: 1px solid #444;
margin: 0;
width: 25%;
float: left;
padding: 3px;
background: #111;

}

.navi ul li:hover {
 
color: #fff;
 
}



  .navi ul li.full {
color: #fff !important; 
display: none;
background: #333;
width: 100%;
border: none;
padding: 5px;}

h1 {
font-size: 4em;	
}
.welcome img {
margin-top: 180px;
margin-bottom: 10px;
}

.fadeIn, .fadeInUp, .scaleIn {
	-webkit-animation-name: none;
	-moz-animation-name: none;
	-o-animation-name: none;
	animation-name: none;
}
 


.animate,
.fademe,
.bounce,
.scale{
  visibility: visible;}


.mosaic {
display: none;
}


.slider-container {
	-webkit-box-shadow: none !important;
    box-shadow:  none !important;
    	border: 0px solid #fff !important;
    	
    	
 }
 
  .slider-wrapper {
	padding: 0 !important;
 
}
.slider-ajax {
	min-height: 0px !important;
}
 
}

@media only screen and (max-width: 480px) { 

 

.welcome img {
margin-top: 130px;
margin-bottom: 10px;
}
  
  
.spacing {
padding: 0 20px;
}

 


.some-icon {
	margin: 5px;
 }


.insert {
    padding-bottom: 30px;
    padding-top: 50px;
}


.downloads strong {
	display: block;
	margin-bottom: 10px;
}
.hide-narrow {
display: none !important;
}
h1 {
font-size: 2.5em;	
}
h2 {
font-size: 1.5em;
margin-bottom: 0.75em;
}


h3 .prepend {
display: none;
}

.push {
padding-top: 100px;
padding-bottom: 0px;
 }

.four .push, 
.three .push, 
.two .push {
padding-bottom: 0px;
}

.show-narrow {
display: block !important;
}
.welcome-inner {
display: none;
}



}


/*
========================================================================================
Slider
========================================================================================
*/



 .slider-wrapper {
	padding: 70px 30px;
  		text-align: center;
  		position: relative;
}

.mosaic {
	position:  absolute;
 	width: 100%;
  	top: 0;
	left: 0;
	right: 0;
  	overflow: hidden;
}


.slider-ajax {
	min-height: 500px;
}
.slider-container {
	overflow: hidden;
	position: relative;
	height: 0px;
	max-width: 680px;
	margin: 0 auto;
	-webkit-box-shadow:  0px 0px 5px 0px rgba(0, 0, 0, 0.8);
    box-shadow:  0px 0px 5px 0px rgba(0, 0, 0, 0.8);
    	border: 15px solid #fff;
    	
	background-color: #FFFFFF;
    background-image: url('../img/loader.gif');
    background-position: center center;    	
    background-repeat: no-repeat;
 }
.slider li {
	float: left;
	overflow:hidden;
	margin: 0;
	padding: 0;
	position: relative;
	list-style: none;
 
}
.slider li img {
	margin: 0 !important;
	vertical-align: middle;
 }
.slider {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}
#next, #prev {
	position: absolute;
 	height: 26px;
	width: 26px;
	padding: 3px;
	z-index: 99;
	cursor: pointer;
	text-align: center;
	top: 0;
	color: #111;
	background: #fff;
	margin-top: -10px;
	opacity: 0.7;
 }
#next:hover, #prev:hover {
	opacity: 1.0;
}
#prev {
 	left:0px;
  }
#next {
	right: 0px;
}
#next i, #prev i {
	font-size: 20px;
	line-height: 20px;
}
 
 
.slider .img-info {
 background: #fff;
 background: rgba(255,255,255,0.6);
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 padding: 10px;
 text-align: left;
 font-size: 0.85em;
 font-weight: 300;
}


/*
========================================================================================
Navi Change
========================================================================================
*/

.nav-fixed {
	position: fixed !important;
	top: 0 !important;
	width: 100% !important;
	bottom: auto !important;
}
.nav-absolute {
	position: absolute !important;
	top: auto !important;
	bottom: 0 !important;
}

