@charset "utf-8";
/*menu*/

/*mobile*/
.openbtn1{
    position: relative;
    background-color: aqua;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.openbtn1 span{
    display:inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: black;
    width: 20%;
}

.openbtn1 span:nth-of-type(1){
    top: 10px;
}
.openbtn1 span:nth-of-type(2){
    top: 15px;
}
.openbtn1 span:nth-of-type(3){
    top: 20px;
}
.openbtn1 span:nth-of-type(3)::after{
    content: "menu";
    position: absolute;
    top: 5px;
    left: -2px;
    color: black;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.openbtn1.active span:nth-of-type(1){
    top: 10px;
    left: 15px;
    transform: translateY(3px) rotate(-45deg);
    width: 15%;
}
.openbtn1.active span:nth-of-type(2){
    opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
    top: 13px;
    left: 9px;
    transform: translateY(-3px) rotate(45deg);
    width: 15%;
}
.openbtn1.active span:nth-of-type(3)::after{
    content: "close";
    transform: translateY(0) rotate(-45deg);
    top:5px;
    left: 2px;
}

body{
    background:white;
    padding: 10px;
}
a{
    color: ;
    text-decoration: none;
}
.lead{
    margin: 10px 0 0 0;
}
.btn-block{
    width: 100px;
    padding: 15px;
}

@media screen {
    
}