.footer_subscribe_social{
    display: flex;
    align-items: center;
    margin: 20px 0 10px;
}

.footer_subscribe_social_a:not(:last-child){
    margin-right: 16px;
}

.footer_subscribe_social_a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0);
    border: 1px solid var(--blue-color);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer_subscribe_social_a svg{
    fill: var(--blue-color);
    transition: fill 0.5s ease;
}
.footer_subscribe_social_a svg path{
    transition: fill 0.5s ease;
}

.footer_subscribe_social_a:hover{
    background-color: var(--white-color);
    border: 1px solid var(--orange-color);
}

.footer_subscribe_social_a:hover svg, .footer_subscribe_social_a:hover svg path{
    fill: var(--orange-color);
}

@media screen and (max-width: 1023px) {
	.footer_subscribe_social {
        display: none;
    }
}