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

@font-face {
    font-family: "Segoe UI Regular";
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Regular'), url('/static/fonts/SegoeUIRegular.ttf') format("truetype"), url('/static/fonts/Segoe UI.woff') format("woff");
}

@font-face {
    font-family: "Segoe UI Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Segoe UI Bold"), url('/static/fonts/SegoeUIBold.ttf') format("truetype"), url("/static/fonts/Segoe UI Bold.woff") format("woff");
}

body, html {
    box-sizing: border-box;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    font-family: "Segoe UI Regular";
}

footer {
    max-width: 1220px;
    padding: 15px 0 15px 0;
    margin: 0 auto;
    font-family: "Segoe UI Regular";

}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.social-row {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.site-map__column,
.contact__column {
    margin-top: 30px;
}

.site-map__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    padding-left: 30px;

}

.site-map__item {
    margin-bottom: 20px;
    list-style: none;
}

.site-map__item-link {
    font-family: "Segoe UI Bold";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}

.contacts__list {
    list-style: none;
    margin: 0;
}

.contacts__item {
    display: flex;
    align-items: center;
    font-family: "Segoe UI Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    margin-bottom: 8px;
}

.contacts__icon {
    margin-right: 10px;
}

.contacts__adress {
    margin: 0;
}

.tel-list {
    list-style: none;
    padding: 0;
}

.tel-list__link {
    padding-left: 10px;
}

.footer__copyright {
    align-self: center;
    font-family: "Segoe UI Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: #5e5e5e;
}

/* Адаптив */
@media screen and (max-width: 1199px) {
    .footer__content {
        flex-direction: column;
    }

    .logo__column {
        flex-basis: 100%;
        align-self: center;
    }

    .social-row {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .footer__menu {
        justify-content: center;
    }

    .site-map__list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 550px) {
    .footer__menu {
        flex-direction: column;
        align-items: center;
    }

    .site-map__column {
        margin-top: 15px;
    }

    .site-map__list {
        align-items: center;
        padding-left: 0;
    }

    .contact__column {
        margin-top: 0;
    }

    .contacts__list {
        padding-left: 0;
    }
}