header.header .main-menu-phone-1 *{
    align-items: center;

    text-transform: uppercase;
}
header.header .main-menu-phone-1 a{
    color:#fff;
}
.main-menu-1 nav.nav a{
    display: block;
    padding: 0px 1rem;
}
.main-menu-1 nav.nav a:hover{
    
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.main-menu-phone-1{
    background-color: rgba(0,0,0,1);
}
nav.nav-phone {
    background: #fff;
    max-width: 400px;
    width: 80%;
    margin-left: -100%;
    left:0px;
    z-index: 1;
    height:calc( 100vh - 70px );
    padding: 50px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
}
nav.nav-phone ul#menu-main-menu-1 {
    max-height: calc( 100% - 51px );
    overflow: auto;
}
[dir="rtl"] nav.nav-phone{
    margin-left: 0px;
    left:auto;
    margin-right: -100%;
    right:0px;
}
nav.nav-phone .menu_black_bg{
    width:100%;
    background-color: rgba(0,0,0,0.5);
}

.main-menu-phone-1 img{
	height: 70px;
    margin:10px 0px;
}

.menu_black_bg {
    background: 0;
    position: fixed;
    width:100%;
    z-index: 99999;
    visibility: hidden;
}
nav.nav-phone,.menu_black_bg{
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
.nav-phone .menu-item-has-children > a:before{
    font-family: bootstrap-icons;
    content:"\F229";
    padding-right: 10px;
    font-size: 12px;
}
.nav-phone .show_submenu > a:before{
    content:"\F235" !important;
}
nav.nav-phone .sub-menu {
    padding: 0px 10px !important;
    max-height: 0px;
    overflow: hidden;
    border-left:solid 2px #eee;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
nav.nav-phone .show_submenu .sub-menu{
    max-height: 500px;
}
nav.nav-phone a{
    padding: 10px 0px !important;
    display: inline-block;
    font-size: 1.2rem;
}
.menu_opened .menu_black_bg {
    background: rgba(0,0,0,0.8);
    visibility: visible;
}
.menu_opened nav.nav-phone{
    margin-left: 0px;
}
[dir="rtl"] .menu_opened nav.nav-phone{
    margin-right: 0px;
}

span.dots_morf {
    color: #fff;
    display: flex;
    font-size: 1.4rem;
    line-height: 1.4rem;
    height: 1.4rem;
    width: 1.5rem;

    position: relative;
    overflow: hidden;
}
span.dots_morf i {
    width: 100%;
    position: absolute;
    top:0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;

}
span.dots_morf i:nth-child(1) {
    left:-0.5rem;
}
span.dots_morf i:nth-child(3) {
    left:0.5rem;
}
.menu_opened span.dots_morf i {
    
    left:0px;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
}
.menu_opened span.dots_morf i:nth-child(1) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
}