/* headerType */
.header__wrap {
    background: #f6f8fd;
}
#headerType h2 {
    padding-top: 21px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}
#headerType em {
    font-size: 28px;
}
.header__menu {
    padding: 20px;
    text-align: center;
}
.header__menu li {
    display: inline;
}
.header__menu li a {
    padding: 10px 20px;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
}
.header__ham {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: none;
    cursor: pointer;
}
.header__ham span {
    display: block;
    background: #ccc;
    width: 30px;
    height: 2px;
    border-radius: 3px;
    margin-left: 10px;
    margin-top: 5px;
    transition: 0.25s margin 0.25s, 0.25s transform;
}
.header__ham span:nth-child(1){
    margin-top: 18px;
}
.header__ham.active span {
    transition: 0.25s margin, 0.25s transform 0.25s;
}
.header__ham.active span:nth-child(1){
    margin-top: 25px;
    margin-bottom: -7px;
    transform: rotate(45deg);
}
.header__ham.active span:nth-child(2){
    transform: rotate(45deg);
}
.header__ham.active span:nth-child(3){
    margin-top: -2px;
    transform: rotate(135deg);
}


/* media */
@media (max-width: 1300px){
    #headerType h2 {
        padding-bottom: 21px;
    }
    .header__menu {
        position: fixed;
        right: -100%;
        top: 69px;
        background: #f6f8fd;
        width: 35%;
        height: 100vh;
        padding: 20px;
        text-align: right;
        transition: right 0.4s ease-in;
    }
    .header__menu ul li {
        display: block;
        margin: 20px;
    }
    .header__menu ul li a {
        padding: 10px;
        white-space: nowrap;
    }
    .header__menu.active {
        right: 0;
    }
    .header__member {
        margin-right: 50px;
    }
    .header__ham {
        display: block;
    }
    .header__member {
        width: 50%;
    }
}
@media (max-width: 600px){
    .header__menu {
        width: 45%;
    }
}