.header__contact{
    margin-right: 92px;
    height: 92px;
    border-right: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #223A82;
}

.header__contact a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 24px;
    line-height: 180%;
    letter-spacing: .1em;
    padding-right: 40px;
    padding-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.header__contact_mobile{
    display: none;
}

@media screen and (max-width: 768px) {
    .header__contact{
        display: none;
    }

    .header__contact_mobile{
        position: fixed;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        left: 50%;
        bottom: 30px;
        z-index: 90;
        background: #223A82;
        display: block;
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
        pointer-events: none;
        transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
    }
    
    .header__contact_mobile.active {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .header__contact_mobile a{
        color: #fff;
        text-align: center;
        font-weight: 400;
        font-size: 20px;
        line-height: 60px;
        letter-spacing: .1em;
        display: block;
        width: 100%;
        height: 100%;
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
        text-decoration: none;
    }
}

body.home .globalHeader.active{
    background: transparent;
}