.upkid-footer{
    width: 100%;
    height: 444px;
    padding: 32px 15px 16px 15px;
    background-color: #343434;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-link{
    opacity: 100%;
    transition: opacity 0.5s ease;
}

.footer-link:hover{
    opacity: 50%;
}

.top-footer-block{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.upkid-bw-logo{
    width: 60px;
    height: 25px;
}

.contacts-social-media-block{
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}

.contacts-block{
    display: flex;
    flex-direction: column;
}

.phone-contact{
    display: block;
    padding: 8px 0;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.email-contact{
    padding: 8px 0;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.social-media-bw-block{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.social-media-bw-icon{
    width: 22px;
    height: 22px;
} 

.bottom-footer-block{
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
}

.copyright-text{
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    opacity: 50%;
    color: #ffffff;
    opacity: 50%;
}

.documents-block{
    display: flex;
    flex-direction: column;
}

.document{
    padding: 8px 0;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    opacity: 50%;
    color: #ffffff;
}

@media(min-width: 767.9px){
    .upkid-footer{
        padding: 48px 42px;
        height: 228px;
    }

    .top-footer-block{
        flex-direction: row;
        justify-content: space-between;
    }

    .upkid-bw-logo{
        width: 85px;
        height: 36px;
    }

    .contacts-social-media-block{
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .contacts-block{
        display: block;
    }

    .phone-contact{
        font-weight: 700; 
    }

    .email-contact{
        display: none;
    }

    .social-media-bw-block{
        gap: 8px;
    }

    .social-media-bw-icon{
        height: 18px;
        width: 18px;
    }

    .bottom-footer-block{
        gap: 32px;
    }

    .documents-block{
        flex-direction: row;
        gap: 20px;
    }

    .document{
        padding: 0;
    }
}

@media(min-width: 1199.9px){
    .upkid-footer{
        height: 180px;
        padding: 48px;
    }

    .upkid-bw-logo{
        width: 85px;
    }

    .contacts-block{
        display: flex;
        flex-direction: row;
        row-gap: 20px;
    }

    .phone-contact{
        font-weight: 400;
    }

    .email-contact{
        display: block;
    }

    .bottom-footer-block{
        width: 1200px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 82px;
    }

    .top-footer-block{
        width: 1200px;
        padding: 0 82px;
    }

    
}