    .whatsapp , .telegram {
        display: none;
    }
    
@media(max-width: 640px) {
    .whatsapp {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 20px;
        font-family: "Oswald";
        color: #3fab2c;
        text-decoration: underline;
        margin: 0 0 10px 0;
    }
    
    .whatsapp:before {
        content: "";
        position: relative;
        margin: 0 5px 0 0;
        left:0;
        width: 30px;
        height: 30px;
        background-image: url("https://static.tildacdn.com/tild3362-3331-4739-b862-373331613264/whatsapp.svg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .telegram {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 20px;
        font-family: "Oswald";
        color: #4c75de;
        text-decoration: underline;
        margin: 0 0 10px 0;
    }
    
    .telegram:before {
        content: "";
        position: relative;
        margin: 0 9px 0 0;
        left:0;
        width: 26px;
        height: 27px;
        background-image: url("https://static.tildacdn.com/tild6466-6331-4330-b434-333861376431/telegram.svg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
}