@import url(http://fonts.googleapis.com/css?family=Exo:400,700,400italic,700italic|Open+Sans:400italic,700italic,400,700);

/*	Advosat 14
	#004056 Mørkeblå
	#157596 Blå
	#48B5D9 Lyseblå
	#C9FFD5 Grøn
	#FFFFCB Gul
*/


/* font */
body *{
	color: #004056;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	appearance: none;
	-webkit-appearance: none;
}

.primary-font{
	font-family: 'Exo', sans-serif;
}

.secondary-font{
	font-family: 'Open Sans', sans-serif;
}

b, strong{
	font-weight: 700;
}

i, em{
	font-style: italic;
}

a{
	text-decoration: none;
}

p{
	margin-bottom: 20px;
}

h1, h2, h3, h4{
	font-family: 'Exo', sans-serif;
	font-weight: 300;
	line-height: 1.2;
}

h1{
	font-size: 38px;
	font-weight: 300;
	margin: 0 0 10px 0;
}

h2{
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 20px 0;
}

.quote{
	font-style: italic;
	font-family: 'Exo', sans-serif;
	font-weight: 300;
	font-size: 38px;
}

/* parallax */
.parallax{
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: bottom;
	background-size: cover;
}

/* general */
body *{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.block{
	display: block;
}

.half{
	width: 50%;	
}

.fifth{
	width: 20%;
}

.left{
	float: left;
}

.right{
	float: right;
}

form *{
	outline: none;
	background: none;
}

input, textarea{	
	padding: 8px;
	display: block;
	width: 100%;
	margin: 0 0 20px 0;
	background: rgba(255,255,255,0.3);
}

input{
	height: 40px;
}

input:focus, 
textarea:focus{
	background: rgba(255, 255, 255, .1);
}

ul.bullets{
	margin-bottom: 15px;
}

ul.bullets li{
	list-style: disc;
	margin-left: 20px;
}

::-webkit-input-placeholder	{ color: #fff; }
::-moz-placeholder			{ color: #fff; }
:-ms-input-placeholder		{ color: #fff; }

::selection 				{ background: #fff; color: #004056; }
::-moz-selection 			{ background: #fff; color: #004056; }

#gmap img{
	max-width: none;
}


.call-to-action{
	padding: 0 20px;
	line-height: 50px;
	display: inline-block;
	background: rgba(255, 255, 255, .2);
	-webkit-transition: background .3s;
	transition: background .3s;
	color: #fff;
}
.call-to-action:hover{
	background: rgba(255, 255, 255, .3);
}

.call-to-action:after{
	content: '›';
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 19px;
	text-align: center;
	border-radius: 13px;
	font-size: 28px;
	font-weight: 400;
	float: right;
	margin-top: 12px;
}


/* body */
body{}

/* sections */
.section{
	min-height: 550px;
	padding: 0 100px;
	clear: both;
	float: left;
	width: 100%;
}

.section .container{
	max-width: 1100px;
	margin: 0 auto;
}

/* buttons */
.button,
button,
input[type="submit"],
input[type="button"]{
	display: inline-block;
	cursor: pointer;
	line-height: 40px;
	text-align: center;
	background: #fff;
	padding: 0 30px;
	font-weight: 700;
	-webkit-transition: background .3s, color .3s;
	transition: background .3s, color .3s;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover{
	background: #2B848C;
}


/* signature */
.reference{
	font: 10px Arial;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	float: right;
	width: 220px;
	margin: -60px 0 0 0;
	line-height: 1.2;
	opacity: 0.4;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}
.reference:hover{
	opacity: 0.9;
}

/* navigation */
.navigation{
	width: 300px;
	position: absolute;
	top: 110px;
	z-index: 101;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, .5);
	-webkit-transition: background 1s, border 1s;
	transition: background 1s, border 1s;
}

.navigation .burger{
	display: none;
}
.navigation ul li a{
	padding: 0 20px;
	line-height: 50px;
	display: inline-block;
	width: 100%;
	-webkit-transition: background .3s;
	transition: background .3s;
}
.navigation ul li a:hover{
	background: rgba(255, 255, 255, .7);
}

.navigation ul li a:after{
	content: '›';
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 19px;
	text-align: center;
	border-radius: 13px;
	font-size: 28px;
	font-weight: 400;
	float: right;
	margin-top: 12px;
}


/* fixed navigation */
.navigation.fixed{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #004056;
	background: rgba(0,64,86,0.8);
	border-bottom: 1px solid #004056;
	padding: 0 0 0 30px;
}

.navigation.fixed ul{
	border: none;
}

.navigation.fixed ul li{
	border: none;
	float: left;
}

.navigation.fixed ul li a{
	padding: 0 20px;
	background: none;
	color: #fff;
}

.navigation.fixed ul li a:after{
	margin-left: 10px;
	background-color: rgba(255, 255, 255, .3);
	color: #004056;
	
}

.navigation.fixed ul li a:hover{
	background: #004056;
}


/* section one: Top */
.section.one{
	background-image: url(images/_bg1.jpg);
	background-size: cover;
	background-position: center;
}

.section.one .content{
	width: 50%;
	margin-top: 150px;
	float: right;
}

.section.one h1{
	font-weight: bold;
	font-size: 55px;
}

.section.one .content h1,
.section.one .content h2{
	line-height: 1;
	margin: 0 0 10px 0;
	color: #157596;
}

.section.one .content h2{
	
}

.section.one .content .button{
	margin: 30px 20px 0 0;
	background: rgba(21,117,150,0.8);
	color: #C9FFD5;
}

.section.one .content .button:hover{
	background: #157596;
	color: #fff;
}

/* section two : Produktet (skjult) */
.section.two{
	background-color: #fbfbfb;
	min-height: 0; /* temporarily hidden section 2 */
}

.section.two .container .box{
	text-align: center;
	border: 10px solid transparent;
	margin-top: 150px;
}

.section.two .container .box h2{
	
}

.section.two .container .box h2:before{
	content: '';
	border: 1px solid #2B848C;
	width: 160px;
	height: 160px;
	display: block;
	margin: 0 auto 20px auto;
	border-radius: 80px;	
}

.section.two .container .box p{
	line-height: 1.2;
	margin: 10px 0;
	color: #2B848C;
}

/* section three: Funktioner */
.section.three{
	overflow: hidden;
	position: relative;
	background: #157596;
	padding: 0 50px;
}

.section.three p,
.section.three h1,
.section.three h2,
.section.three li{
	color: #fff;
}

/* section four: I gang */
.section.four{
	background-image: url(images/_bg2.jpg);
}

.section.four .content{
	padding-top: 100px;	
	padding-bottom: 50px;
}

.section.four .content.left{
	padding-right: 50px;
	text-align: center;
}

.section.four .content.right{
	padding-left: 50px;
}

/* section five: Priser */
.section.five{
	padding-top: 100px;
	padding-bottom: 100px;
}

.section.five h2{
	margin-top: 50px;
}

.section.five .left{
	
}

.section.five .right{
	width: 40%;
	padding-top: 50px;
	padding-left: 50px;
}



/* section six: Cases */
.section.six{
	overflow: hidden;
	position: relative;
	background-image: url(images/_bg3.jpg);
}

.section.six .cycle-prev,
.section.six .cycle-next{
	background: #157596;
	color: #48B5D9;
}

.section.six .cycle-prev:hover,
.section.six .cycle-next:hover{
	background: #004056;
}

.section.six .cycle-pager span{
	color: #157596;
	opacity: .5;
}

.section.six .cycle-pager .cycle-pager-active{
	opacity: 1;
}

/* section seven: Kontakt */
.section.seven{
	padding-top: 200px;
	background: #004056;
}

.section.seven p,
.section.seven h1,
.section.seven input[type=text]{
	color: #fff;
}

.section.seven .left form{
	width: 80%;
}

.section.seven .left form input[type=submit]:hover{
	background: #C8FFD4;
}

/* section eight: Om os */
.section.eight{
	position: relative;
	padding: 0;
}

.section.eight #gmap{
	height: 600px;
}

.section.eight .content{
	padding: 40px;
	max-width: 600px;
	margin: -480px 0 0 0;
	background: rgba(21,119,151,0.8);
	position: absolute;
}

.section.eight .content p,
.section.eight .content h1,
.section.eight .content strong{
	color: #fff;
}

/* Cycle2 */

.cycle-slide{
	width: 100%;
	padding: 120px 0 0 0;
}

.cycle-prev,
.cycle-next{
	display: block;
	font-size: 40px;
	width: 100px;
	line-height: 60px;
	text-align: center;
	border-radius: 50px;
	padding: 20px;
	background: rgba(255, 255, 255, .2);
	position: absolute;
	margin: 250px 0 0 0;
	color: #fff;
}

.cycle-prev:hover,
.cycle-next:hover{
	background: rgba(255, 255, 255, .3);
}

.cycle-prev{
	text-align: right;
	left: -50px;
}

.cycle-next{
	text-align: left;
	right: -50px;
}

.cycle-pager{
	text-align: center;
	width: 100%;
	margin: 50px auto 0 auto;
}

.cycle-pager span{
	font-size: 70px;
	font-family: sans-serif;
	color: rgba(255, 255, 255, .4);
	cursor: pointer;
}

.cycle-pager .cycle-pager-active{
	color: rgba(255, 255, 255, 1);
}

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

	.navigation{
		display: none;
	}
	
	.navigation.fixed{
		padding: 0;
		display: block;
	}

	.navigation.fixed .burger{
		width: 50px;
		height: 50px;
		display: inline-block;
		padding: 10px;
		border: 1px solid #fff;
		border-radius: 25px;
		margin: 10px 0 0 20px;
	}
	
	.navigation.fixed .burger span{
		background: #fff;
		height: 4px;
		display: block;
		margin: 4px 0;
		border-radius: 2px;
	}
	
	.navigation.fixed ul{
		display: none;
	}
	
	.navigation.fixed ul.show{
		display: block;
	}
	
	.navigation.fixed ul li{
		border-top: 1px solid #fff;
		float: none;
	}
	
	.section{
		padding: 40px;
		min-height: 0;
	}
	
	.section.two{
		padding: 0;
	}
	
	.content{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-top: 30px;
		margin: 0;
	}
	
	.section.one .content{
		float: none;
		text-align: center;
		width: 100%;
		margin: 70px 0;
	}
	
	.section.four .content.left{
		padding: 20px;
	}
	
	.section.four .content.right{
		padding: 50px 0;
	}
	
	#gmap{
		display: none;
	}
	
	.section.seven{
		padding-top: 50px;
	}
	
	.section.eight{
		position: relative;
		min-height: inherit;
	}
	
	.section.eight .content{
		padding: 40px;
		max-width: none;
		margin: 0;
	}
	
	.quote{
		font-size: 25px;
	}
	
	
}

@media screen and (max-width: 500px){
	
	.section.seven .block.left,
	.section.seven .block.right,
	#contactform{
		width: 100%;
		float: none;
	}
}



























