@charset "utf-8";
@import url("ipag/stylesheet.css");
@import url("ipag/stylesheet.css");
/* CSS Document */

.hamberger_line {
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    transform: translateX(0);
    transition: transform .5s;
}

.hamberger_line span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: crimson;
    border:0.5px solid #fff;
    transition: all .5s;
}

.hamberger_line span:nth-of-type(1) {
    top: 0;
}

.hamberger_line.open span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}

.hamberger_line span:nth-of-type(2) {
    top: 12px;
}

.hamberger_line.open span:nth-of-type(2) {
    opacity: 0;
    }

.hamberger_line span:nth-of-type(3) {
    bottom: 0;
}

.hamberger_line.open span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}

.hamberger_list {
    width: 250px;
    height: 100%;
    padding-top: 100px;
    background-color:  rgba(0,0,0,0.50);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translateX(250px);
    transition: all .5s;
}

.hamberger_list.open {
    transform: translateX(0);
}

.hamberger_list li {
    text-align: center;
    padding: 10px 0;
    list-style: none;
    font-family: ipag;
    font-weight: normal;
    text-shadow: 0px 0px 20px rgba(40,41,3,1.00);
    font-size: 1.3em;
}

.hamberger_list a {
    color: #fff;
    text-decoration: none;
}