.site-footer {
    width: min(100%, var(--container-width));
    margin-inline: auto;
    padding: 60px 0 35px;
    color: var(--color-blue-dark);
    background: var(--color-white);
}

.site-footer__bar {
    width: 100%;
    height: 72px;
    background: var(--color-blue-dark);
}

.site-footer__content {
    padding: 42px 78px 0;
	position: relative;
}

.site-footer__main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.site-footer__company {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-footer__logo {
    width: 110px;
    flex: 0 0 auto;
}

.site-footer__contacts {
    font-size: 14px;
    line-height: 1.4;
    color: #101010;
}

.site-footer__contacts p {
    margin: 0;
}

.site-footer__contacts a {
    color: inherit;
}

.site-footer__social {
    position: absolute;
    right: 78px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0A2745;
}

.site-footer__social img {
    width: 28px;
}

.site-footer__bottom {
    margin-top: 34px;
    font-size: 13px;
    letter-spacing: 0.14em;
    color: #013347;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom a {
    color: inherit;
}