.footer {
    border-top: 1px solid #23252A;
    padding: 72px 0 0;
}

.footer__top {
    display: flex;
    gap: 130px;
    padding-bottom: 72px;
}

.footer__brand {
    width: 22%;
}

.footer__logo {
    margin-bottom: 30px;
    display: block;
}

.footer__contact {
    list-style-type: none;
    padding-left: 25px;
    margin-bottom: 0;
}

.footer__contact-item {
    position: relative;
    margin-bottom: 16px;
}

.footer__title {
    margin-bottom: 0;
}

.footer__text {
    margin-bottom: 0;
}

.footer__contact-item::before {
    position: absolute;
    content: "";
    background-image: url(../../images/email.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: -25px;
    width: 15px;
    height: 15px;
    top: 4px;
}
.footer__contact-item.mobile::before{
  background-image: url(../../images/phone-icon.svg);
}
.footer__contact-item.address::before{
  background-image: url(../../images/map-icon.svg);
}
.footer__heading,
.footer__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
}

.footer__heading {
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    gap: 100px;
    width: 78%;
}

.footer__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.footer__list li {
    padding-bottom: 10px;
}

.footer__list li:last-child {
    padding-bottom: 0;
}

.footer__list li .footer__link, .footer__link,.footer__text {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}
.footer__list li .footer__link:hover, .footer__link:hover {
    color: var(--color-text-primary);
}
.footer__list li .view-all-btn{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-primary);
}







.footer__bottom {
    background-color: #0C0D0E;
    padding: 12px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--color-text-primary);
}

@media screen and (max-width: 1399px) {
    .footer__top {
        gap: 60px;
    }

    .footer__links {
        gap: 50px;
    }
     .footer__text {
        font-size: 15px;
    }
}

@media screen and (max-width: 1199px) {

    .footer__heading,
    .footer__title {
        font-size: 15px;
    }

    .footer__list li .footer__link {
        font-size: 14px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__links {
        gap: 33px;
    }

    .footer__copyright {
        font-size: 14px;
    }

    .footer__social-title {
        font-size: 14px;
        line-height: 24px;
    }
        .footer__top {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .footer__top {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer__brand {
        width: 100%;
    }

    .footer__links {
        width: 100%;
        justify-content: space-between;
    }

}

@media screen and (max-width: 767px) {
    .footer__top {
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 20px;
    }
    .footer__links {
        gap: 40px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 0;
    }
    .footer__links .footer__column{
        width: 50%;
    }
    .footer__bottom-inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        row-gap: 10px;
    }
    
}
@media screen and (max-width: 575px) {
.footer {
    padding: 35px 0 0;
}
.footer__heading {
    margin-bottom: 16px;
}
}


@media screen and (max-width: 390px) {
    .footer__links .footer__column {
        width: 47%;
    }

     }