a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.menu_checkbox {
    display: none;
}

.drawer_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    background-color: #4da7db;
    z-index: 20;
}

.drawer_menu_list {
    margin-top: 100px;
}

.drawer_menu_title {
    margin-top: 100px;
}

.drawer_menu_item_link {
    display: block;
    text-align: left;
    font-size: 20px;
    color: #ffffff;
    margin: 0px 0px 10px 0px;
    padding-left: 20%;
}

.drawer_menu_item_link:hover {
    color: #800080;
}

.drawer_menu_item_section {
    display: block;
    text-align: left;
    font-size: 30px;
    color: #001f3f;
    margin: 20px 0px 5px 0px;
    padding-left: 10%;
}

.drawer_menu_new_icon {
    text-align: left;
    font-size: 20px;
    color: #ff0000;
    margin: 0px;
    padding-left: 15%;

}

.menu_checkbox:checked~.drawer_menu {
    transform: translateX(0);
}

.drawer_icon {
    cursor: pointer;
    position: fixed;
    top: 40px;
    right: 60px;
    justify-content: center;
    align-items: center;
    z-index: 30;
    background-color: #ffffff;
}


.drawer_icon span,
.drawer_icon span:before,
.drawer_icon span:after {
    content: '';
    display: block;
    height: 6px;
    width: 40px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
    margin-top: 18px;
}

.drawer_icon span::before {
    bottom: 12px;
}

.drawer_icon span::after {
    margin-top: 12px;
}


.drawer_icon .click_range {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 52px;
    height: 42px;
    top: 24px;
    right: 24px;
    border: #ffffff solid 6px;
    border-radius: 3px;


}

@media (max-width:600px) {
    .drawer_icon .click_range {
        top: 6px;
        right: 6px;
    }

}





.menu_checkbox:checked~.drawer_icon {
    background-color: #4da7db;
}

.menu_checkbox:checked~.drawer_icon span {
    background-color: rgba(255, 255, 255, 0);
}

.menu_checkbox:checked~.drawer_icon span::before {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #ffffff;
}

.menu_checkbox:checked~.drawer_icon span::after {
    margin-top: 0px;
    transform: rotate(45deg);
    background-color: #ffffff;
}

.menu_background {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
}

.menu_checkbox:checked~.menu_background {
    display: block;
    opacity: 0.3;
}