.menu-trigger-box {
	width: 40px;
	height: 40px;
	padding: 17px 11px;
	box-sizing: border-box; 
	cursor: pointer;
	background-color: #1E1E1E;
	border-radius: 50%;
	display: none;
}
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    }
.menu-trigger span {
    position: absolute;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
    width: 100%;
    top: 0;
    left: 0;
}
.menu-trigger span:nth-of-type(2) {
    width: 100%;
    bottom: 0;
    left: 0;
}
.menu-trigger-box.active span:nth-of-type(1) {
    -webkit-transform: translateY(3px) rotate(-29deg);
    transform: translateY(3px) rotate(-29deg);
}
.menu-trigger-box.active span:nth-of-type(2) {
    -webkit-transform: translateY(-2px) rotate(29deg);
    transform: translateY(-2px) rotate(29deg);
}
@media (max-width: 1250px) {
    .menu-trigger-box {
        display: block;
    }
}

.drawer {
	position: fixed;
    z-index: 999;
    top: 120px;
    left: 50%;
    width: 93%;
    max-width: 1392px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 4px;
    height: 0;
	transform: translateX(-50%) scale(.9);
	 background-color: rgba(231, 236, 240, .3);
	transform-origin: top center;
	transition: .4s;
	pointer-events: none;
    opacity: 0;
    display: none;
}
.drawer.active {
    height: calc(100% - 150px);
	transform: translateX(-50%) scale(1);
	pointer-events: inherit;
    opacity: 1;
}
.drawer_box_wrapper {
    overflow-y: auto;
    height: 100%;
}
.drawer_box {
    width: 77.5%;
    max-width: 600px;
    margin: auto;
    padding: 60px 0;
    box-sizing: border-box;
}
.drawer_list2 {
    padding-bottom: 8px;
}
.drawer_list_item {
    border-bottom: 1px solid #D9D9D9;
}
.drawer_list_item:first-child {
    border-top: 1px solid #D9D9D9;
}
.drawer_list_item_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    padding: 15px 0;
}
.drawer_list_item_text {
    font-weight: 600;
}
.drawer_list_item_text2 {
    font-size: 13px;
    font-weight: 400;
    padding: 9px 0 15px;
}
.drawer_list_item_link2 {
    padding: 10px 0;
}
.drawer_list_item_arrow {
    width: 30px;
}
.drawer_child_list {
    margin-left: 25px;
    margin-bottom: 25px;
}
.drawer_child_list_item + .drawer_child_list_item {
        margin-top: 13px;
}
.drawer_child_list_item_link {
    font-weight: 400;
        font-size: 13px;
}
.drawer_child_list_item_link:before {
    content: "-";
    margin-right: 10px;
}
.drawer_text {
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 1250px) {
    .drawer {
        display: block;
    }
}
@media (max-width: 767px) {
    .drawer {
        top: 95px;
    }
    .drawer.active {
        height: calc(100% - 120px);
    }
}