.koro-footer {
    --koro-navy: #071f32;
    --koro-blue: #0f5d78;
    --koro-cyan: #6ec6d9;
    --koro-ink: #eaf4f7;
    --koro-muted: #a9bfca;
    --koro-line: rgba(255, 255, 255, .14);
    background:
        linear-gradient(135deg, rgba(7, 31, 50, .96), rgba(9, 53, 76, .98)),
        var(--koro-navy);
    color: var(--koro-ink);
    font-family: inherit;
    margin-top: 70px;
}

.koro-footer *,
.koro-footer *::before,
.koro-footer *::after {
    box-sizing: border-box;
}

.koro-footer a {
    color: inherit;
    text-decoration: none;
}

.koro-footer a:hover,
.koro-footer a:focus {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--koro-cyan);
    text-underline-offset: 5px;
}

.koro-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, .75fr));
    gap: 42px;
    margin: 0 auto;
    max-width: 1180px;
    padding: 58px 28px 44px;
}

.koro-footer__lead {
    max-width: 440px;
}

.koro-footer__brand {
    align-items: baseline;
    display: inline-flex;
    gap: 3px;
    margin-bottom: 18px;
}

.koro-footer__brand-mark {
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.koro-footer__brand-text {
    color: var(--koro-cyan);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}

.koro-footer p {
    color: var(--koro-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.koro-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.koro-footer__button {
    align-items: center;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: var(--koro-navy) !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    padding: 12px 18px;
}

.koro-footer__button:hover,
.koro-footer__button:focus {
    color: var(--koro-navy) !important;
    text-decoration: none !important;
}

.koro-footer__button--ghost {
    background: transparent;
    color: #ffffff !important;
}

.koro-footer h2 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 2px 0 18px;
    text-transform: uppercase;
}

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

.koro-footer li + li {
    margin-top: 11px;
}

.koro-footer__nav a,
.koro-footer__contact a,
.koro-footer__contact span {
    color: var(--koro-muted);
    font-size: 14px;
    line-height: 1.55;
}

.koro-footer__contact address {
    color: var(--koro-muted);
    display: grid;
    font-style: normal;
    gap: 4px;
    margin: 0 0 18px;
}

.koro-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.koro-footer__social a {
    border-bottom: 1px solid var(--koro-cyan);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 3px;
}

.koro-footer__social a:hover,
.koro-footer__social a:focus {
    text-decoration: none;
}

.koro-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.koro-footer__badges span {
    border: 1px solid var(--koro-line);
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 8px 10px;
}

.koro-footer__bottom {
    align-items: center;
    border-top: 1px solid var(--koro-line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 20px 28px 24px;
}

.koro-footer__bottom div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.koro-footer__bottom strong,
.koro-footer__bottom span,
.koro-footer__bottom a {
    color: var(--koro-muted);
    font-size: 13px;
    line-height: 1.5;
}

.koro-footer__bottom strong {
    color: #ffffff;
}

body #main-footer {
    display: none;
}

@media (max-width: 980px) {
    .koro-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .koro-footer__lead {
        grid-column: 1 / -1;
        max-width: 680px;
    }
}

@media (max-width: 640px) {
    .koro-footer {
        margin-top: 46px;
    }

    .koro-footer__inner {
        grid-template-columns: 1fr;
        padding: 42px 22px 32px;
    }

    .koro-footer__actions {
        display: grid;
    }

    .koro-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 22px 24px;
    }
}
