@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:#fff;        
}
.menu span:nth-of-type(2) {
  top: 20px;
    left: 10%;
  background-color:#fff;    
}
.menu span:nth-of-type(3) {
  top: 30px;
    left: 10%;
      background-color:#fff;
}
.menu span:nth-of-type(4) {
  top: 33px;
text-align: center;
color: #fff;   
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: 70%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
    z-index: 998;
    padding: 20px 0;
  background: linear-gradient(to right, #5e92fb, #0642BB);
    overflow-y: scroll;
}
#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%;
     width: 80%;
display: block;
margin: 0 auto;    
}


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

}
#nav ul li a {
  display: block;
  padding: 10px 1%;
  transition: all 0.2s ease-in-out;
  text-align:left;
  text-decoration: none;
  color: #fff;
   border-bottom: solid 1px #eee;
    font-size: 1em;
    transition: all 0.5s;
   font-weight: 500; 
}
#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: 70%;
    display: block;
    margin: 1em auto;
}
.sp_tel a{
 color: #0642BB;
padding: 1em 1%;    
display: block;  
text-align: center;
font-size: 1em;  
transition: all 0.5s;	
font-weight: 700;
background: #fff;  
border-radius: 50px;    
}
.sp_tel a:hover{
 color: #fff;
background: #2E2454;  
text-decoration: transparent;    
}
