html {
  overflow-y: scroll;
}
@font-face {
	font-family:'ChunkFive Roman';
src:url('../fonts/Chunkfive.ttf')
}
@font-face {
	font-family:'Rockwel';
src:url('../fonts/Rockwel.ttf')
}
a:link {
	color: #484c57;
	text-decoration:none;
}
a:hover {
	color: #484c57;
	text-decoration:underline;
}
a:visited {
	color: #484c57;
	text-decoration:none;
}
a:active {
	color: #484c57;
	text-decoration:none;
}
h1 {
	font-family:'ChunkFive Roman';
	font-size:38pt;
	color:#484c57;
}
.biggrey {
	font-family:'ChunkFive Roman';
	font-size: 36px;
	color: #484c57;
}.medgrey {
	font-family:'ChunkFive Roman';
	font-size: 26px;
	color: #484c57;
}.lilgrey {
	font-family:'ChunkFive Roman';
	font-size: 18px;
	color: #484c57;
}
.bigwhite {
	font-family:'ChunkFive Roman';
	font-size: 26px;
	color: #FFFFFF;
}
.mediumwhite {
	font-family:'ChunkFive Roman';
	font-size: 20px;
	color: #FFFFFF;
}
.bigyellow {
	font-family:'ChunkFive Roman';
	font-size: 36px;
	color: #f6b236;
}
.tekst {
	font-family:'Rockwel';
	font-size: 14px;
	color: #484c57;
}
.plainwhite {
	font-family:'Rockwel';
	font-size: 14px;
	color: #FFFFFF
}
.plainklein {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #FFFFFF;
}


*, *:before, *:after{
  margin: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
  
  
}

.box1{
-webkit-box-shadow: 0px 0px 29px 2px rgba(0,0,0,0.59);
-moz-box-shadow: 0px 0px 29px 2px rgba(0,0,0,0.59);
box-shadow: 0px 0px 29px 2px rgba(0,0,0,0.59);
}

body{
  background: #ffffff;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

.main-title{
  color: #2d2d2d;
  text-align: center;
  text-transform: capitalize;
  padding: 0.7em 0;
}

.container{

  float: middle;
  width: 260px;
}
@media screen and (max-width: 260px){
  .container{
    display: block;
    width: 230px;
  }
}

@media screen and (min-width: 230px){
  .container{
    width: 230px;
    overflow: hidden;
  }
}

.header{
    position: fixed;
    width: 1040px;
    height: 100px;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f6b236;
    z-index: 2;
}
.header2{
    position: fixed;
    width: 1040px;
    height: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f6b236;
    z-index: 2;
}
.container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  width: 230px;
  max-width: 230px;
  margin: 0px;

}

.content .content-overlay {
  background: rgba(0,0,0,0.5);
  position: absolute;
  height: 230px;
  width: 230px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 230px;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 160px;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3{
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p{
  color: #ffffff;
  font-weight: 400;
  font-size: 0.8em;
}

.fadeIn-center{
  top: 80%;
}

 
.content {
  
  float: middle;
  height: 260px;
  width: 260px;
  margin: 0px;

}
.content{
  height: 230px;
  width: 230px;
 overflow: hidden;
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
 
.content:hover {
  -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
  overflow: hidden;
}
 //..p{
        -webkit-animation: color-change 1s infinite;
        -moz-animation: color-change 1s infinite;
        -o-animation: color-change 1s infinite;
        -ms-animation: color-change 1s infinite;
        animation: color-change 1s infinite;
    }

    @-webkit-keyframes color-change {
        0% { color: #f6b236; }
        50% { color: #484c57; }
        100% { color: #f6b236; }
    }
    @-moz-keyframes color-change {
        0% { color: #f6b236; }
        50% { color: #484c57; }
        100% { color: #f6b236; }
    }
    @-ms-keyframes color-change {
        0% { color: #f6b236; }
        50% { color: #484c57; }
        100% { color: #f6b236; }
    }
    @-o-keyframes color-change {
        0% { color: #f6b236; }
        50% { color: #484c57; }
        100% { color: #f6b236; }
    }
    @keyframes color-change {
        0% { color: #f6b236; }
        50% { color: #484c57; }
        100% { color: #f6b236; }
    }
