html,
body {
    height: 100%;
	background-color:#3498db;
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  /* background: rgba(2, 23, 37, 0.7); */
  height: 60px;
  width: 100%;
  z-index: 3;
 
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: rgba(2, 23, 37, 0.7);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    opacity: 0.8;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgb(45, 48, 53);
  }
}

/* -------------------------------- 

The .cd-intro change the background image

-------------------------------- */
.cd-intro {
  position: relative;
  height: 100%;
  background: url(../portfolio/bussiness_card_01b.jpg) center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 50px;
  font-size: 3em;
  font-weight: 300;
  text-align: center;
  color: rgb(255,255,255);
  letter-spacing: .05em;
  line-height: 1.5em;
}
.large-header {
	position: relative;
	width: 100%;
	background: #333;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 1;
}


@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 80px;
   
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
.cd-main-content-about p {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 8em;
  padding-top: 4em;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.cd-container {
	text-align: center;
}
.cd-container h1 {
	font-family: 'Open Sans', serif;
	font-weight: 700;
}
.cd-container h4 {
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 1em;
}
.row {
	margin-top: 0.2rem;
}

/* -------------------------------- 

Work Thumbnails

-------------------------------- */
.cd-container-clmn-1 {
	width: 24.7%;
	height: 300px;
	margin: 0px;
	background-image: url(http://heydays.no/wp-content/uploads/2013/11/heydays_nora01-1440x900.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-1:hover {
	opacity: .5;
}
.cd-container-clmn-2 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/07/heydays_berg_23-e1386238978376.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-2:hover {
	opacity: .5;
}
.cd-container-clmn-3 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/07/heydays_premiss_10.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-3:hover {
	opacity: .5;
}
.cd-container-clmn-4 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/11/heydays_goa_2b.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-4:hover {
	opacity: .5;
}
.cd-container-clmn-5 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/12/Postalia.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-5:hover {
	opacity: .5;
}
.cd-container-clmn-6 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/11/heydays_mellbye_11-1440x900.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-6:hover {
	opacity: .5;
}
.cd-container-clmn-7 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2013/11/heydays_sjemmedal_05-1440x900.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-7:hover {
	opacity: .5;
}
.cd-container-clmn-8 {
	width: 24.7%;
	height: 300px;
	margin: 0;
	background-image: url(http://heydays.no/wp-content/uploads/2012/12/heydays_abn2012_071-1440x900.jpg);
	background-size: cover;
	display: inline-block;
}
.cd-container-clmn-8:hover {
	opacity: .5;
}
@media all and (min-width: 320px) and (max-width: 780px) {
	.cd-container-clmn-1 {
		width: 100%;
	}
	.cd-container-clmn-2 {
		width: 100%;
	}
	.cd-container-clmn-3 {
		width: 100%;
	}
	.cd-container-clmn-4 {
		width: 100%;
	}
	.cd-container-clmn-5 {
		width: 100%;
	}
	.cd-container-clmn-6 {
		width: 100%;
	}
	.cd-container-clmn-7 {
		width: 100%;
	}
	.cd-container-clmn-8 {
		width: 100%;
	}
	.cd-container-contact-clmn-2 {
		padding: 0rem;
		padding-top: 2rem;
	}
}
/* -------------------------------- 

Project Page Style

-------------------------------- */
.cd-intro-project {
  position: relative;
  height: 100%;
  background: url(../portfolio/bussiness_card_01b.jpg) no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro-project h1 {
  position: absolute;
  width: 70%;
  max-width: 1170px;
  left: 50%;
  top: 90%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 50px;
  font-size: 3em;
  font-weight: 300;
  text-align: center;
  color: #2d2d2d;
  letter-spacing: .05em;
  line-height: 1.5em;
}
.cd-container-project-clmn-1 {
	width: 65%;
	display: inline-block;
	vertical-align: top;
	margin-right: 5%;
}
.cd-container-project-clmn-1 img {
	width: 100%;
	margin-bottom: 1em;
}
.cd-container-project-clmn-2 {
	width: 29%;
	display: inline-block;
}
.cd-container-project-clmn-1 h1 {
  font-family: 'Wellfleet', cursive;
  color: #000;
  line-height: 1.6;
  text-align: left;
  margin-bottom: .5em;
}

@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700,300);

.cd-container-project-clmn-1 p {
  font-family: 'Oxygen', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 5em;
}
.cd-container-project-clmn-2-img {
	width: 100%;
	height: auto;
	margin: 0;
	display: inline-block;
}
.cd-img-hover:hover {
	opacity: .5;
}

@media all and (min-width: 320px) and (max-width: 780px) {
	.cd-container-project-clmn-1 {
		width: 100%;
	}
	.cd-container-project-clmn-1 p {
		width: 100%;
		display: inline-block;
		vertical-align: top;
	}
	.cd-container-project-clmn-1-img {
		width: 100%;
	}
	.cd-container-project-clmn-2 img {
		width: 100%;
	}
	.cd-container-project-clmn-2 {
		width: 100%;
	}
	.cd-container-project-clmn-2-img {
		width: 100%;
	}
}
@media only screen and (min-width: 768px) {
  .cd-intro-project h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro-project {
    height: 700px;
  }
}
.cd-container-project {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
  padding: 4rem;
}
.cd-main-content-project {
  position: relative;
  z-index: 1;
}
.cd-main-content-project p {
  line-height: 1.6;
}
.cd-main-content-project-img {
  width: 100%;
  margin: 0 auto;
  right: 0;
  left: 0;
  text-align: center;
}
.cd-main-content-project-img img {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1170px) {
  .cd-intro-work-page {
    height: 400px;
  }
}
@media all and (min-width: 320px) and (max-width: 780px) {
	.cd-container-project {
		padding: 1rem;
	}