.mobile_menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 99;
    padding: 15px 25px;
    right: -100%;
    transition: all .5s cubic-bezier(0.35, 0.17, 0.36, 1);
    -webkit-transition: all .5s cubic-bezier(0.35, 0.17, 0.36, 1);
    -moz-transition: all .5s cubic-bezier(0.35, 0.17, 0.36, 1);
    -ms-transition: all .5s cubic-bezier(0.35, 0.17, 0.36, 1);
    -o-transition: all .5s cubic-bezier(0.35, 0.17, 0.36, 1);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.mobile_menu.show {
    right: 0;
    opacity: 1;
}

.mobile_menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 10px 0 0;
}

.mobile_menu__top_close {
    position: relative;
    width: 60px;
    height: 60px;
}

.mobile_menu__top_logo {
    position: relative;
    max-width: 180px;
}

.mobile_menu__middle_menu ul {
    list-style: none;
    padding: 20px 0 30px;
}

.mobile_menu__middle_menu ul li a {
    display: block;
    padding: 5px 0;
    font-size: 21px;
}

.mobile_menu__top_close span:nth-child(1) {
    position: absolute;
    width: 34px;
    height: 2px;
    background: #000000;
    top: 50%;
    right: 0;
    transform: translate(0, -50%) rotate(45deg);
    -webkit-transform: translate(0, -50%) rotate(45deg);
    -moz-transform: translate(0, -50%) rotate(45deg);
    -ms-transform: translate(0, -50%) rotate(45deg);
    -o-transform: translate(0, -50%) rotate(45deg);
}

.mobile_menu__top_close span:nth-child(2) {
    position: absolute;
    width: 34px;
    height: 2px;
    background: #000000;
    top: 50%;
    right: 0;
    transform: translate(0, -50%) rotate(-45deg);
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    -moz-transform: translate(0, -50%) rotate(-45deg);
    -ms-transform: translate(0, -50%) rotate(-45deg);
    -o-transform: translate(0, -50%) rotate(-45deg);
}

.mobile_menu__contacts {
    position: relative;
    padding: 30px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(0 0 0 / 10%);
    border-bottom: 1px solid rgba(0 0 0 / 10%);
}

.mobile_menu__cta {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.mobile_menu__socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}