

.footer__container {
    color: #262C38;
    display: flex;
    max-width: 1100px;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2% 0;
}

.footer__list {
    display: flex;
    gap: 30px;
}

.footer__list a {
    color: #262C38;
}

.footer__list li.first {
    position: relative;
}

.footer__list li.first::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    display: block;
    background: #262C38;
    right: -15px;
}

@media screen and (max-width: 768px) {

    .footer__container {
    width: 90%;
    justify-content: space-between;
    padding: 6% 0;
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
}

    .footer__list {
    gap: 50px;
    flex-direction: row;
    justify-content: center;
}
}