.footer_wrapper {
    background-image: url('../images/Footer-Bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.footer_box h3 {
    text-transform: capitalize;
    font-size:25px;
    font-weight: 700;
    color: var(--orange-color);
}

.footer_box {
    padding-left: 2rem;
}

.footer_wrapper .footer_box:nth-child(1){
    width: 19rem !important;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top:  1.5rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
}

.footer_links a i {
    margin-top: 4px;
    color: var(--orange-color);
}

.footer_logo img{
    width: 80%;
}

.footer_logo p {
    font-size: 14px;
    margin-top: 1rem;
    color: var(--white-color);
}

.footer_links a:hover {
    color: var(--orange-color);
}

.footer_icon {
    margin-top: 1rem;
}
.footer_icon img{
    width: 40px;
    aspect-ratio: 3/2;
    object-fit: contain;
}


.copyright p {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
}

@media(max-width:1200px) {
    .footer_logo img {
        width: 250px;
    }

    .footer_box {
        margin-top: 3rem;
        padding-left: 0;
    }

}

@media(max-width:576px) {
    .footer_links a {
        font-size: 14px;
    }
    
    .footer_wrapper .container-fluid{
        padding: 0 1.5rem !important; 
    }

    .footer_links {
        margin-top: 1.5rem;
        gap: 14px;
    }

    .copyright p {
        font-size: 12px;
        padding: 5px 0;
    }

    .footer_logo p {
        font-size: 14px;
    }

    .footer_logo img {
        width: 195px;
    }

    .footer_box {
        margin-top: 2rem;
    }
}