.footer-block {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 60px 0 80px 0;
    margin: 0 auto;
}

.info-footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.img-footer-logo{
    width: 150px;
    height: 40px;
}

.footer-links {
    font-size: 14px;
    text-decoration: none;
    color: black;

}

.footer-links:first-child {
    font-weight: bold;
    color: #000000;
}

@media (max-width: 1024px) {
    .info-footer {
        height: auto;
        gap: 30px;
        padding-bottom: 40px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    footer {
        width: 100%;
        padding: 20px 0;
        margin: 0;
    }

    .footer-block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .info-footer-block {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .img-footer-logo{
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    footer {
        width: 100%;
        padding: 20px 0;
    }

    .footer-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: 90%;
    }

    .img-footer-logo{
        margin-bottom: 30px;
    }
}