.phoneContainer{
    display: none;
}

@media(max-width: 768px){

    .phoneContainer{
        display: flex;
        position: -webkit-sticky;
        position: sticky;
        pointer-events: none;
        justify-content: flex-end;
        align-items: right;    
        margin-right: 25px;
        z-index: 3000;
        top: 16px;
        margin-top: -24px;

    }
    
    .phone{
        width: 25px;
        height: 25px;
    
    }
    .phoneCircle{
        display: flex;
        pointer-events:all;
        right: 20px;
        justify-content: center;
        align-items: center;
        background-color: #133116;
        height: 46px;
        width: 46px;
        border-radius: 25px;
        z-index: 1100;
    
    }

}