.footer {
    position: relative;
    background-color: var(--s1);
    color: #fff;
    z-index: 100;
    width: 100%;
}
.footer .wrapper {
    padding: 40px;
    box-sizing: border-box;
}
.footer__columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.footer__column {
    flex: 1;
    padding: 15px 0;
    min-width: 290px;
        .title {
            text-transform: uppercase;
            margin-bottom: 0;
            font-weight: 600;

    }
        .title:last-child {
            margin-top: 20px;
        }
}
footer p,
footer li {
    font-size: 26px;
    color: #fff;
    font-weight: 300;
    margin: 0;
}
.footer__column p:last-child {
    margin-top: 25px;
}
footer li {
    margin-bottom: 0;
}
.footer__column ul + p.title {
    margin-top: 40px;
}
.footer__logo {
    margin-bottom: 80px;
    max-width: 382px;
}
.footer__nav li {
    display: inline-block;
    border-right: 2px solid #fff;
    padding: 0 1rem;
    line-height: 1;
    margin-bottom: 15px;
}
.footer__nav ul {
    text-align: center;
}
.footer__nav ul li:first-child {
    padding-left: 0;
}
.footer__nav ul li:last-child {
    border-right: none;
}

@media only screen and (max-width: 1248px) {
    .footer .wrapper {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .footer__logo img {
        display: inline-block;
        width: 300px;
    }
    .footer__nav li {
        border-right: 1px solid #fff;
    }
}
@media only screen and (max-width: 900px) {
    .footer__logo {
        text-align: center;
    }
}
@media only screen and (max-width: 802px) {
    .footer__columns {
        display: block;
    }
    .footer__column ul + p.title {
        margin-top: 30px;
    }
}
 @media only screen and (max-width: 525px) {
    .footer .wrapper {
        padding: 40px 0;
    }
    footer p,
    footer li {
        font-size: 20px;
        color: #fff;
        font-weight: 300;
    }
    .footer__nav li {
        padding: 0 5px;
        border-right: none;
    }
    .footer__nav li {
        font-size: 17px;
    }
    .footer__logo {
        margin-bottom: 60px;
    }
    .footer__logo img {
        display: inline-block;
        width: 260px;
    }
    
 }