/* =========== Animations =========== */

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
     opacity: 0;

  }

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

  }

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

  }

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


  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-16px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-16px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-ms-keyframes fadeInDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-16px);
	}
	
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-16px);
	}
	
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-16px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/* =========== Text Styles =========== */

html, body{
	height: 100%;
	width: 100%;
}

body{
	/*font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;*/
	font-family: kansasnew, serif;
    font-weight: 400;
    font-style: normal;
	color: #666;
	font-size: 100%;
	padding: 0px;
	margin: 0px;
}

::-webkit-scrollbar {
    width: 0px;
}

h1, h2, p, ul, li {
	padding: 0;
	margin: 0;
	line-height: 1.2em;

}

ul{
	list-style-type: none;
}


h1{
	font-family: kansasnew, serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.5em;
	color: #000;
	letter-spacing: .01em;
}

h2 {
	font-family: kansasnew, serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.25em;
	text-transform: capitalize;
	margin: 0 0 5px 0;
	letter-spacing: .01em;
}

p{
	font-family: kansasnew, serif;
    font-weight: 400;
	font-size: 1em;
	margin: 0 0 10px 0;
}

a{
	font-family: kansasnew, serif;
    font-weight: 400;
	text-decoration: none;
	color: #666;
	font-size: 1em;
	letter-spacing: .01em;
}


div.menu#trigger{
   height: 44px;
   width: 44px;
}

div.menu#trigger:hover{
    cursor:pointer;
    transform: scale(1.1);
    transition: transform .1s;

}


div.button{
	font-family: kansasnew, serif;
    font-weight: 700;
	text-decoration: none;
	letter-spacing: .01em;
	font-size: .8em;
	padding: 8px 10px 4px;
	border: 2px solid #666;
	color: #666;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 3px;
	margin: 10px 0;
} 

ul#projects li div.card:hover div.button{
	background-color: #666;
	color: #efefef;
}

/* =========== Cover Image =========== */

#cover-image{
	height: 100%;
	width: 100%;
	background-color: #000;
	background-image: url(../images/bg-01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left bottom;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: .3s;
	box-shadow: 0px 0px 10px 1px #000;
}

nav{
	padding: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

img.icon{
	width: 44px;
	transition: .5s;
  -webkit-animation-duration: .5s;
  -moz-animation-duration: .5s;
  -o-animation-duration: .5s;
  -ms-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: 1s; /* Chrome, Safari, Opera */
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
}



/* =========== Content =========== */

#content{
    height: 100%;
	width: 320px;
	padding: 20px;
	position: relative;
	z-index: 1;
	background-color: #efefef;
	overflow: scroll; 
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

}

header{
	padding: 20px 0 40px;
	
}

ul#projects li{
	padding: 20px 0;
	border-top: 1px dotted #ccc;
	transition: .1s;
	cursor: pointer;
}

ul#projects li a.card{
	padding: 20px 0;
	border-top: 1px dotted #ccc;
	transition: .1s;
	cursor: pointer;
}

ul#projects{
	border-bottom: 1px dotted #ccc;
	margin-bottom: 20px;
}

ul#projects li:hover{
	background-color: #fff;
	padding-left: 10px;
}

#booking{
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.02);
	border-radius: 3px;
	border: 1px dotted #ccc;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}


/* =========== movement =========== */

.active{
	left:320px!important;
}

.inactive{
	left: 0!important;
}


/* =========== Media Quieries =========== */

@media screen and (max-width: 400px){
	#content{
		width: 100%;
	}


.active{
	left:620px!important;
}

#cover-image{
	background-image: url(../images/bg-02.jpg);
	background-attachment: fixed;
}

}




