Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/public/frontend/sass/4-layouts/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/public/frontend/sass/4-layouts/_footer.scss

.footer {
    padding: 32px 0px 0px;
    background-color: #FFF9FA;
}

.footer-logo {
    margin-bottom: 32px;
    
    img {
        width: 120px;
    }
}

.footer-about {
    p {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        margin-bottom: 12px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;

        a {
            font-size: 20px;
            color: var(--primary);
        }
    }
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 16px;
}

.footer-widget {
    @include mobile-breakpoint {
        margin-top: 35px;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 16px;

        a {
            width: fit-content;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: var(--secondary);
            @include transition-linear;

            &:hover {
                color: var(--primary);
            }
        }
    }
}

.footer-contact {
    @include laptop-breakpoint {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin-top: 35px;
    }

    .footer-title {
        @include laptop-breakpoint {
            margin-bottom: 0px;
        }
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 24px;
        gap: 12px;

        @include laptop-breakpoint {
            margin-bottom: 0px;
        }

        img {
            height: 40px;
            border-radius: 8px;
        }
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
        
        li {
            display: flex;
            align-items: center;
            gap: 8px;

            span {
                font-size: 12px;
                font-weight: 400;
                line-height: 16px;
            }
        }
    }
}

.footer-bottom {
    margin-top: 32px;
    padding: 16px 0px 14px;
    text-align: center;
    border-top: 1px solid #FFE8ED;

    p {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: rgba($text, 80%);
    }
}