@charset "UTF-8";
/* CSS Document */
.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
    padding: 1%;
    border: 0px solid rgba(255,255,255,0.0);
}
.menu {
  position: fixed;
  top: 3px;
  right: 3px;
  width: 40px;
  height: 40px;
   z-index: 999;
    background:#F7B51A; 
}
.menu span {
  position: absolute;
  left: 0;
  width: 80%;
  height: 2px;
  background-color: #fff;
  display: block;
}
.menu span:nth-of-type(1) {
  top: 10px;
    left: 10%
}
.menu span:nth-of-type(2) {
  top: 20px;
    left: 10%
}
.menu span:nth-of-type(3) {
  top: 30px;
    left: 10%
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-image: url("../img/backgrund1.jpg");
background-size: cover;
background-position: center;   
  transition: all 0.3s ease-in-out;
  visibility: hidden;
    z-index: 998;
    padding: 20px 0;
}
#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
#nav ul {
  margin: 20px 0;
  padding: 20px 3%;
     width: 70%;
display: block;
margin: 0 auto;
background: #fff;   
border-radius: 20px;
}


#nav ul li {
  list-style-type: none;

}
#nav ul li a {
  display: block;
  padding: 20px 20%;
  transition: all 0.2s ease-in-out;
  text-align:center;
  text-decoration: none;
  color: #664036;
    font-size: 1em;
    transition: all 0.5s;	
    border-bottom: dotted #664036 1px;
}
#nav ul li a:hover {
  color: #F0001D;
text-decoration: transparent;    
}
.sp_contact{
width: 100%;
height: auto; 
display: block;  
padding: 3% 0;    
}

.sp_contact a{
width: 70%;
display: block;

background:#008542;
box-shadow: 1px 1px 2px #333;	
transition: all 0.8s;
text-align: center;
 color: #fff;   
padding: 1%;  
margin: 2% auto 0;  
border-radius: 5px;    
}
.sp_contact a:hover{
background: #014523;
font-weight: bold;
padding-top: 1%;
text-decoration: transparent;    
}

