.footer {
    padding-top: 49px;
    background: #03344F;
    color: white;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 89px;
}

.footer-content {
    max-width: 400px;
}

.footer-title-content {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 34px;
}

.footer-text-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 21px;
}

.footer-link {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: white;
}

.footer-title-img {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    padding-top: 10px;
    margin-bottom: 23px;
}

.footer-img-cards {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 21px;
    justify-content: center;
}

.card {
    border-radius: 2px;
}

@media (max-width: 990px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-title-img {
        text-align: center;
        padding-top: 30px;
    }
}

@media (max-width: 760px) {
    .footer-title-content {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-text-content {
        line-height: 30px;
    }

    .footer-link {
        font-size: 20px;
    }

    .footer-title-img
    {
        font-size: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 500px) {
    .footer-img-cards {
        column-gap: 10px;
    }
}