/* =========================
   FOOTER
========================= */

.footer {
    background-color: #1A1A1A;
    color: #fff;
}

.footer-row {
    align-items: flex-start;
}

.footer-column {
    min-height: 180px;
}

.footer p {
    color: #fff;
}


/* =========================
   BRAND
========================= */

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 25px;
}

.footer-description {
    margin-bottom: 25px;
}

.footer-description p {
    font-size: 15px;
    line-height: 1.5;
}

.footer-copyright {
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   FOOTER HEADINGS
========================= */

.footer-list-title {
    color: #fff;
    font-size: 17px;
    margin-bottom: 22px;
}


/* =========================
   FOOTER LIST
========================= */

.footer-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list-item {
    list-style: none;
    margin-bottom: 14px;
}

.footer-list-item:last-child {
    margin-bottom: 0;
}

.footer-list-item a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-list-item a:hover {
    color: #ED0E47;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-list {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-list .footer-list-item {
    margin-bottom: 0;
}

.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}


/* =========================
   TABLET
   768px - 991px
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-row {
        row-gap: 40px !important;
        column-gap: 0;
    }

    .footer-column {
        min-height: 170px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .footer-description {
        margin-bottom: 20px;
    }

    .footer-description p {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-list-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-list-item {
        margin-bottom: 12px;
    }

    .footer-list-item a {
        font-size: 14px;
    }

    .social-list {
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
    }
}


/* =========================
   DESKTOP
   992px+
========================= */

@media (min-width: 992px) {

    .footer-row {
        row-gap: 0;
    }

    .footer-column {
        min-height: 200px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-list-title {
        font-size: 18px;
    }

    .footer-list-item {
        margin-bottom: 15px;
    }

    .footer-list-item a {
        font-size: 15px;
    }
}


/* =========================
   MOBILE
   Below 768px
========================= */

@media (max-width: 767.98px) {

    .footer {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .footer-row {
        row-gap: 35px !important;
    }

    .footer-column {
        width: 100%;
        min-height: auto;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        width: 140px;
        margin-bottom: 18px;
    }

    .footer-description {
        margin-bottom: 18px;
    }

    .footer-description p {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-list-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-list-item {
        margin-bottom: 12px;
    }

    .footer-list-item a {
        font-size: 14px;
    }

    .social-list {
        justify-content: center;
        gap: 15px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}


/* =========================
   VERY SMALL MOBILE
   Below 400px
========================= */

@media (max-width: 399.98px) {

    .footer-logo {
        width: 125px;
    }

    .footer-list-title {
        font-size: 15px;
    }

    .footer-list-item a {
        font-size: 13px;
    }

    .footer-description p {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }
}


.footer-list-item a {
    position: relative;
    display: inline-block;
    color: #1A1A1A;
    padding-bottom: 4px;
}

.footer-list-item a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ED0E47;
    border-radius: 2px;
}
