footer {
    font-family: 'Unbounded', sans-serif !important;
}

.main_footer{
    position: relative;
    z-index: 2;
    background-color: var(--bs-primary);
    margin-bottom: 430px;
}

.parallax{
    background-color: #161616;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 430px;
    padding-left:50px;
}

.footer-cta {
    padding: 60px 0 32px;
}

.footer-watermark {
    display: block;
    width: 100%;
    margin: 0 auto 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #fff;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-label {
    color: #fff;
    font-size: 0.95rem;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-list a {
    color: #fff;
    font-size: 1.1rem;
    transition: opacity 0.2s ease;
}

.footer-social-list a:hover {
    opacity: 0.7;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .parallax {
        position: relative !important;
        height: 302px;
    }

    .main_footer {
        margin: 0px !important;
    }

    .footer-copyright, .footer-social {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 991.98px){
    .footer-bottom{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:1rem;
    }

    .footer-social{
        display:flex;
        justify-content:center;
        align-items:center;
        gap:12px;
    }

    .footer-social-list{
        display:flex;
        gap:12px;
        list-style:none;
        margin:0;
        padding:0;
    }

    .main_footer .col-6 {
        text-align: left;
    }

    .main_footer .nav {
        align-items: flex-start;
    }

    .main_footer .row > div:last-child .d-flex.flex-column {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .main_footer .row > div:last-child .d-flex.flex-column > span {
        width: 100%;
        margin-bottom: 4px;
    }

    .main_footer .row > div:last-child img {
        max-width: 100px;
        height: auto;
    }
}

