.social {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.social i {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    padding: 5px 3px;
    transition: 0.4s ease;
    background: #fff;
    color: #730734;
}

.header .social i {
    background: #fff;
    color: #730734;
}
.header .social i:hover {
    color: #fff;
    background: #1b9ab4;
}

/* icons */
.social-icon{
    display: inline-block;
    position: relative;
}
.social-icon:before{
    content: '';
    display: block;
    height: 100%;
    margin: auto;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: currentColor;
}
.social-icon.dzen:before{
    mask-image: url('dzen-logo-t.svg');
}
.social-icon.tiktok:before{
    mask-image: url('tiktok-logo.svg');
}
