/* -----------------------------------------------------------
TABLE OF CONTENTS:
--------------------------------------------------------------
- General 
- Typography
- Header 
- Home
- Content
- Footer
-------------------------------------------------------------
------------------------------------------------------------*/
/* -----------------------------------------------------------
General 
-------------------------------------------------------------*/
/* select all */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;  /*Chrome Safari*/
  -moz-box-sizing: border-box; /*firefox*/
  -ms-box-sizing: border-box; /*IE*/
  box-sizing: border-box;
}
body,
html {
  left: 0;
  top: 0;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  width: 100%;
}
body {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.7;
  background-color: #fff;
}
a {
  color: #2f2f2f;
  text-decoration: none;
  transition: ease .6s;
  -webkit-transition: ease .6s;
  -moz-transition: ease .6s;
  -o-transition: ease .6s;
  -ms-transition: ease .6s;
}
a:hover {
  text-decoration: none;
  color: #818181;
}
a:focus {
  outline: none;
  color: #999999;
  text-decoration: none;
}
iframe {
  border: none;
  width: 100%;
}
img { max-width: 100%; }
*:focus {
  outline: none;
}

.no-pad {padding: 0 !important; margin: 0 !important;}


/*----- background ------*/
.white-bg {
    background: #ffffff;
    padding: 120px 0;
    display: block;
}
.grey-bg {
    background: #f6f6f6;
    padding: 120px 0;
    display: block;
}
/* -----------------------------------------------------------
Typography 
-------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  padding-top: 2px;
  letter-spacing: 0.8px;
  font-family: 'Roboto Slab', serif;
}
p {
  letter-spacing: 0.5px;
  font-size: 13px;
  line-height: 34px;
  font-weight: 300;
}
#home h1 {
  line-height: 40px;
  letter-spacing: 0.6px;
  font-family: 'Roboto Slab', serif;
  opacity: 0.9;
}
#home .typed {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1.5px;
  margin: 0 auto;
  opacity: 0.6;
}


/* -----------------------------------------------------------
Header 
-------------------------------------------------------------*/
.header {
    width: 100%;
    z-index: 9999;
  }
.for-sticky {
    position: fixed;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: 50px;
    opacity: 0.8;
    z-index: 1;
    top: 0;
    left: 0;
    border-bottom: 1px solid #f1f1f1;
    display: block;
    padding: 0px 15px 5px 15px;
    background: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.logo-nav {
    padding: 3px 0 2px 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 45px;
    display: block;
}
.opacity-nav {
    opacity: 0.8;
    z-index: 2;
}
/*----------- panel ----------*/
.content-wrap {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    width: 100%;
}
.content {
    position: absolute;
    width: 100%;
    height: 100%;
}
.content::before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
/* Menu Button */
.menu-button {
    width: 38px;
    height: 45px;
    position: fixed;
    right: 0;
    margin-top: 13px;
    margin-right: 35px;
    z-index: 1000;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
}
.menu-button span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 0.7;
    left: 0;
}
/* add open button lines position */
.menu-button span:nth-child(1) {top: 0px;}
.menu-button span:nth-child(2) {top: 7px;}
.menu-button span:nth-child(3) {top: 14px;}
.menu-button span:nth-child(4) {top: 21px;}
.menu-button:hover {opacity: 0.6;}
  /* Close Button x */
.close-button {
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1em;
    top: 1em;
    overflow: hidden;
    text-indent: 1em;
    font-size: 0.75em;
    border: none;
    background: transparent;
    color: transparent;
  }
.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}
.close-button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* Menu */
.menu-wrap {
    position: fixed;
    z-index: 1001;
    width: 300px;
    height: 100%;
    right: 0;
    float: right;
    background: black;
    padding: 2.5em 1.5em 0;
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu,
.menu-list {
    height: 100%;
    overflow-x: auto;
}
.menu-list {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.menu-list a {
    display: block;
    padding: 1.5em 0;
    -webkit-transform: translate3d(0, 500px, 0);
    transform: translate3d(0, 500px, 0);
    color: #a5a5a5;
    position: relative;
}
.menu-list a:hover, .menu-list a:active span {color: #ffff;}
.menu-list,
.menu-list a {
    -webkit-transition: -webkit-transform 0s 0.4s;
    transition: transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu a:nth-child(2) {
    -webkit-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
}
.menu-list a:nth-child(3) {
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 0);
}
.menu-list a:nth-child(4) {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
}
.menu-list a:nth-child(5) {
    -webkit-transform: translate3d(0, 2500px, 0);
    transform: translate3d(0, 2500px, 0);
}
.menu-list a:nth-child(6) {
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
}
.menu-list a span:nth-last-child(1){
    margin-bottom: 100px;
}
.menu-list a span {
    margin-left: 10px;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    z-index: 2;
    position: absolute;
    margin-bottom: 20px;
    padding: 10px;
}
/* draw line when menu select */
.menu-list a span:before{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    z-index: -1;
}
.menu-list a.active span{
    color: #ffffff !important;
}
.menu-list a.active span:before{
    width: 100%;
}
  
/* Shown menu */
.show-menu .menu-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.show-menu .menu-list,
.show-menu .menu-list a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.show-menu .menu-list a {
    -webkit-transition-duration: 0.9s;
    transition-duration: 0.9s;
}
.show-menu .content::before {
    opacity: 1;
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/* -----------------------------------------------------------
Home 
-------------------------------------------------------------*/
#home {
    background: url('../images/hero.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
    height: auto;
}
.wrap-hero-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
.hero-content{
    position: absolute;
    text-align: center;
    min-width: 400px;
    left: 50%;
    top: 50%;
    padding: 65px;
    background: rgba(248, 247, 247, 0.8);
    outline: 4px double #FFFFFF;
    outline-offset: 8px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

@-webkit-keyframes scrolling  {
    0%   { top:2px;  opacity: 0;}
    30%  { top:8px; opacity: 1;}
    100% { top:16px; opacity: 0;}
}
  
@keyframes scrolling  {
    0%   { top:2px;  opacity: 0;}
    30%  { top:8px; opacity: 1;}
    100% { top:16px; opacity: 0;}
}

.mouse-icon {
    position: absolute;
    opacity: 0.9;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 100;
  }

/*----- typed effect ---*/
.typed-cursor{ opacity: 0;}

/* -----------------------------------------------------------
Main content 
-------------------------------------------------------------*/
/*----- ABOUT ---*/
#about{
    min-height: 650px;
    display: inline-block;
    width: 100%;
}
.bg-about {
    background: url('../images/Al.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 660px;
    width: 95%;
    height: 100%;
    float: left;
}
.wrap-about {
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    min-height: 480px;
}
.wrap-about h2{
    color: #706e6e;
    padding-bottom: 20px;
}
.wrap-about .w-content{
    position: absolute;
    left: 45%;
    top: 70%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%);
}
.wrap-about .head-about {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.3px;
    font-weight: 300;
}
.wrap-about .w-content td{
    font-size: 16px;
    font-weight: 300;
}
.wrap-about .w-content td.title{
    padding-right: 10px;
    font-weight: 500;
}
.wrap-about .w-content td.break{
    padding-right: 15px;
}
.wrap-about .w-content tr{
    height: 35px;
}
.name{
    float: right;
}

/*----- CONTACT ---*/
#contact {
    padding: 20px 0 0 0;
    min-height: 480px;
    display: inline-block;
    width: 100%;
}
#contact form {
    margin-top: 25px;
}
.title-small{
    padding: 20px 0 0 0;
}
.title-small span { 
    position: relative;
    color: #706e6e;
}
.title-small span:after {
     content: "";
     position: absolute;
     bottom: -10px;
     height: 3px;
     background: #706e6e;
     width: 28px;
     left: 0;
}
.content-detail {
    margin-top: 30px;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: 0.4px;
    color: #706e6e;
}
textarea {
	resize: none;
}
.form-label {
	font-size: 15px;
	color: #706e6e;
	margin: 0;
	display: block;
	opacity: 1;
	-webkit-transition: .333s ease top, .333s ease opacity;
	transition: .333s ease top, .333s ease opacity;
}
.form-control {
	border-radius: 0;
    border-color: #706e6e;
   	border-width: 0 0 2px 0;
   	border-style: none none solid none;
    box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
	border-color: #706e6e;
}
.js-hide-label {
	opacity: 0; 	
}
.js-unhighlight-label {
	color: #706e6e
}
.btn-start-order {
	background: 0 0 #ffffff;
    border: 1px solid #706e6e;
    border-radius: 3px;
    color: #706e6e;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: inherit;
    margin: 30px 0;
    padding: 10px 30px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
}
.btn-start-order:hover,.btn-start-order:active, .btn-start-order:focus {
	border-color: #706e6e;
	color: #706e6e;
}

/* -----------------------------------------------------------
a little more about me 
-------------------------------------------------------------*/
.icon-use {
    font-family: 'Glyphter';
    font-size: 30px;
    line-height: 20px;
    color: #818181;
    margin: 0;
}
.head-sm {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.text-grey {
    color: #434343;
    line-height: 26px;
    margin-bottom: 60px;
}
/* -----------------------------------------------------------
Footer
-------------------------------------------------------------*/

footer {
    text-align: center;
    padding: 0px;
}
.socialbtns a, .socialbtns a:hover {
    text-decoration: none;
}
.socialbtns, .socialbtns ul, .socialbtns li {
    margin: 0;
    padding: 5px;
}
.socialbtns li {
    list-style: none outside none;
    display: inline-block;
}
.socialbtns .fa {
    text-align: center;
	width: 40px;
    height: 28px;
	color: #000;
	background-color: #FFF;
	border: 1px solid #000;
	padding-top: 7px;
	border-radius: 22px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	-o-border-radius: 22px;
}
.socialbtns .fa:hover {
	color: #FFF;
	background-color: #000;
	border: 1px solid #000;
}
.copyright {
    text-align: center;
}