/*mobile-menu-btn*/
body.open-mobile-menu {
    overflow-y: hidden;
}

#mobile-btn-menu {
    cursor: pointer;
    width: 45px;
    height: 45px;
    /*background-color: var(--white-color);*/
    /*border-radius: 10px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 920;
}

#mobile-btn-menu span {
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: .5s;
}

#mobile-btn-menu span:nth-child(1){
    transform: translateY(-12px);
}

#mobile-btn-menu span:nth-child(3){
    transform: translateY(12px);
}

#mobile-btn-menu.active span:nth-child(2){
    transform: translateX(50px);
}

#mobile-btn-menu.active span:nth-child(1){
    transform: translateY(0) rotate(45deg);
}

#mobile-btn-menu.active span:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

@media (min-width: 992px){
    #mobile-btn-menu {
        display: none;
    }
}

.header-mobile__menu {
    position: absolute;
    left: -100%;
    top: 67px;
    width: 100%;
    height: calc(100vh - 66px);
    background-color: #fff;
    z-index: 900;
    padding: 40px;
    transition: .3s;
}

.header-mobile__menu ul {
    list-style: none;
}

.header-mobile__menu ul li a {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    color: var(--text-color);
}

.header-mobile__menu ul li a.active {
    color: var(--color1);
}

.header-mobile__menu.active {
    left: 0;
}

@media(min-width:992px) {
    .header-mobile, .header-mobile__menu {
        display: none;
    }
}

a.mobile-phone {
    font-size: 30px;
    color: var(--text-color);
    font-weight: bold;
    margin: 40px 0 20px 0;
    display: block;
}

.social-mobile {
    display: grid;
    gap: 20px;
    grid-template-columns: 50px 50px;
    margin-top: 20px;
}

.mobile-menu-bottom {
    max-width: 320px;
}

.telegram {
    background-color: #64a9dc;
    padding: 5px;
    border-radius: 50%;
}

.watsup {
    background-color:  #65bc54;
    padding: 2px;
    border-radius: 50%;
}