.page-footer {
    padding: 60px 0 35px;
    color: var(--text-white-color);
    background-color: var(--bg-black-color);
    width: 100%;
}

@media(max-width: 480px) {
    .page-footer {
        padding: 40px 0 30px
    }
}

.page-footer__top {
    display: flex;
    margin-bottom: 80px
}

@media(max-width: 700px) {
    .page-footer__top {
        flex-direction: column;
        row-gap: 30px;
        align-items: center;
        margin-bottom: 60px
    }
}

@media(max-width: 700px) {
    .page-footer__top {
        margin-bottom: 30px
    }
}

.page-footer__col {
    flex: 1 1 auto
}

.page-footer__col:first-child {
    width: 45%;
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

@media(max-width: 1200px) {
    .page-footer__col:first-child {
        width: 30%
    }
}

@media(max-width: 1000px) {
    .page-footer__col:first-child {
        width: initial;
        padding-right: 40px
    }
}

@media(max-width: 700px) {
    .page-footer__col:first-child {
        display: flex;
        align-items: center;
        width: 100%;
        padding-right: 0;
        border-right: 0
    }
}

@media(max-width: 540px) {
    .page-footer__col:first-child {
        flex-direction: column;
        row-gap: 20px;
        align-items: center
    }
}

@media(max-width: 700px) {
    .page-footer__col:first-child .contact-links {
        margin-left: auto
    }
}

@media(max-width: 540px) {
    .page-footer__col:first-child .contact-links {
        margin-left: 0
    }
}

.page-footer__col:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-left: 140px
}

@media(max-width: 1200px) {
    .page-footer__col:last-child {
        padding-left: 60px
    }
}

@media(max-width: 1000px) {
    .page-footer__col:last-child {
        row-gap: 30px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        padding-left: 40px
    }
}

@media(max-width: 700px) {
    .page-footer__col:last-child {
        width: 100%;
        padding-left: 0
    }
}

@media(max-width: 540px) {
    .page-footer__col:last-child {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px
    }
}

.page-footer__title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 500
}

@media(max-width: 1000px) {
    .page-footer__title {
        font-size: 28px
    }
}

@media(max-width: 700px) {
    .page-footer__title {
        margin-bottom: 0
    }
}

@media(max-width: 480px) {
    .page-footer__title {
        font-size: 24px;
        text-align: center
    }
}

.page-footer__nav {
    display: flex;
    align-items: center
}

@media(max-width: 1000px) {
    .page-footer__nav {
        flex-wrap: wrap;
        row-gap: 30px
    }
}

@media(max-width: 1200px) {
    .page-footer__menu {
        margin: 0 30px
    }
}

@media(max-width: 1000px) {
    .page-footer__menu {
        order: -1;
        margin: 0
    }
}

.page-footer__menu-list {
    justify-content: center
}

@media(max-width: 1200px) {
    .page-footer__menu-list {
        -moz-column-gap: 30px;
        column-gap: 30px
    }
}

@media(max-width: 1000px) {
    .page-footer__menu-list {
        flex-direction: row;
        justify-content: flex-start
    }
}

@media(max-width: 640px) {
    .page-footer__menu-list {
        flex-wrap: wrap;
        row-gap: 20px
    }
}

@media(max-width: 480px) {
    .page-footer__menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 1000px) {
    .page-footer__contacts {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        margin-right: 30px
    }
}

@media(max-width: 480px) {
    .page-footer__contacts {
        margin: 0 auto
    }
}

.page-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 30px;
    font-size: 12px;
    border-top: 2px solid rgba(255, 255, 255, .2)
}

@media(max-width: 640px) {
    .page-footer__bottom {
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
        text-align: center
    }
}

.page-footer__links {
    display: flex;
    gap: 40px;
    align-items: baseline;
    font-size: 12px
}

@media(max-width: 640px) {
    .page-footer__links {
        flex-direction: column;
        row-gap: 10px;
        align-items: center;
        justify-content: flex-start
    }
}

.page-footer__link {
    color: var(--text-white-color);
    text-decoration: none;
    transition: color .25s
}

.page-footer__link:hover {
    color: var(--el-orange-color)
}

.page-footer__link--grey {
    color: #979797
}

.page-footer__copy {
    color: #979797
}