.tahc-footer {
    color: #fffffe;
}

.tahc-footer,
.tahc-footer * {
    box-sizing: border-box;
    border-radius: 24px 24px 0 0;
}

.tahc-footer-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    /*background: #00295b;*/
    background: linear-gradient(120deg, #022b63 0%, #00295b 58%, #113f7e 100%);
}

.tahc-footer-top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    padding: 48px 16px;
}

.tahc-footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 48px 16px;
}

.tahc-footer h3,
.tahc-footer h4,
.tahc-footer h5 {
    margin: 0 0 14px;
    color: #fffffe;
    line-height: 1.25;
}

.tahc-footer h3,
.tahc-footer h4 {
    font-size: 20px;
    font-family: "Arial Black", "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.tahc-footer h4 {
    margin-top: 18px;
}

.tahc-footer h5 {
    font-size: 15px;
    text-transform: uppercase;
    font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tahc-footer p,
.tahc-footer li,
.tahc-footer a {
    color: #fffffe;
    font-size: 14px;
    line-height: 1.45;
    font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

.tahc-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tahc-footer li {
    margin: 0 0 8px;
}

.tahc-footer a:hover {
    color: #f4b223;
}

.tahc-footer-social {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.tahc-footer-social li {
    margin: 0;
}

.tahc-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.tahc-footer-copy {
    padding: 14px 0 18px;
    text-align: center;
}

.tahc-footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 16px 22px;
}

.tahc-footer-social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.tahc-footer-social-row img {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
}

.tahc-footer-copy p {
    margin: 0;
    font-size: 14px;
}

@media screen and (max-width: 1100px) {
    .tahc-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tahc-footer-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .tahc-footer-top,
    .tahc-footer-bottom {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        padding: 30px 0;
    }

    .tahc-footer-top article,
    .tahc-footer-top h3,
    .tahc-footer-top h4,
    .tahc-footer-top ul,
    .tahc-footer-top li,
    .tahc-footer-top a {
        text-align: center;
    }
}

