footer{
    width: 100%;
    height: 50px;
    background-color: #16171D;
    display: flex;
    justify-content: center;
    align-items: center;
    .conteiner{
        padding: 0 20px;
        max-width: 1216px;
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        color: white;
        .social{
            display: flex;
        }
        svg{
            fill: white;
            stroke: white;
            stroke-width: 0;
            margin-left: 10px;
            transition: .3s;
        }
    }
    .youtube:hover{
        svg{
            fill: rgb(255, 77, 77);
            cursor: pointer;
        }
    }
    .telegram:hover{
        svg{
            fill: rgb(77, 160, 255);
            cursor: pointer;
        }
    }
    .tiktok:hover{
        svg{
            stroke: rgb(53, 25, 207);
            cursor: pointer;
        }
    }
}