.site-footer {
    width: 100%;
    color: #ffffff;
    background: #304a20;
}

.site-footer-main {
    width: min(1200px, calc(100% - 40px));
    min-height: 360px;
    margin: 0 auto;
    padding: 66px 0 54px;
    display: grid;
    grid-template-columns: 300px minmax(0, 370px);
    justify-content: center;
    align-items: center;
    gap: 115px;
}

.site-footer-seal {
    width: 168px;
    height: 190px;
    margin: 0 auto;
    display: block;
    overflow: hidden;
}

.site-footer-seal img {
    width: auto;
    max-width: none;
    height: 190px;
    display: block;
}

.site-footer-content {
    min-width: 0;
}

.site-footer-contact {
    display: grid;
}

.site-footer-contact-row {
    min-height: 58px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.site-footer-contact-row:last-child {
    border-bottom: 0;
}

.site-footer-contact-row i {
    font-size: 14px;
}

a.site-footer-contact-row:hover {
    color: #f4cf28;
}

.site-footer-social {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus {
    color: #182415;
    background: #f4cf28;
}

.site-footer-credit {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.7;
}

.site-footer-credit a {
    color: #f4cf28;
    font-weight: 800;
    text-decoration: none;
}

.site-footer-credit a:hover,
.site-footer-credit a:focus {
    text-decoration: underline;
}

.site-footer-bottom {
    min-height: 55px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #17191a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .site-footer-main {
        min-height: 0;
        padding: 52px 0 45px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .site-footer-content {
        width: min(430px, 100%);
        margin: 0 auto;
    }

    .site-footer-social {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .site-footer-main {
        width: calc(100% - 30px);
        padding-top: 42px;
    }

    .site-footer-seal {
        width: 145px;
        height: 164px;
    }

    .site-footer-seal img {
        height: 164px;
    }

    .site-footer-contact-row {
        min-height: 64px;
        font-size: 11px;
    }
}
