@charset "UTF-8";
/* CSS Document */
.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
    padding: 1%;
}
.menu {
  position: fixed;
  top: 2px;
  right: 10px;
  width: 40px;
  height: 40px;
   z-index: 9999;
}
.menu span {
  position: absolute;
  left: 0;
  width: 80%;
  height: 3px;
  display: block;
}
.menu span:nth-of-type(1) {
  top: 10px;
    left: 10%;
  background-color:#3D994C;        
}
.menu span:nth-of-type(2) {
  top: 20px;
    left: 10%;
  background-color:#3D994C;    
}
.menu span:nth-of-type(3) {
  top: 30px;
    left: 10%;
      background-color:#3D994C;
}
.menu span:nth-of-type(4) {
  top: 33px;
text-align: center;
color: #3D994C;   
font-size: 0.5em;  
font-weight: 700; 
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;
  visibility: hidden;
    z-index: 998;
    padding: 20px 0;
background: url("../img/background1.jpg");
background-size: cover;
background-position: center;
}
#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
#nav ul {
  margin: 10px 0;
  padding: 10px 3%;
display: block;
margin: 0 auto;    
}


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

}
#nav ul li a {
width: 100%;
display: block;
padding: 10px 1%;
transition: all 0.2s ease-in-out;
text-align:center;
text-decoration: none;
color: #2a2a2a;  
font-size: 1em;
transition: all 0.5s;
font-weight: 500;
margin: 0 auto;
}

#nav ul li .small{
display: block;
font-size: 1em; 
padding: 1% 0;    
}
#nav ul li a:hover {
opacity: 0.8;
    text-decoration: transparent;   
}
.sp_tel{
   width: 200px;
    display: block;
    margin: 1em auto;
}
.sp_tel a{
 color: #3D994C;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
font-weight: 700;
background: #fff;  
border-radius: 50px;    
border: 1px solid #3D994C;
}
.sp_tel a:hover{
border: 1px solid #7FFF00;    
background:#7FFF00;  
text-decoration: transparent;    
}
.sp_mail{
   width: 200px;
    display: block;
    margin: 1em auto;
}
.sp_mail a{
 color: #3D994C;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
font-weight: 700;
background: #7FFF00;  
border-radius: 50px;   
border: 1px solid #7FFF00;    
}
.sp_mail a:hover{
 color:#3D994C;
background: #fff;  
text-decoration: transparent;   
border: 1px solid #3D994C;    
}
