.footer_wrapper {
    background-color: var(--black-color);
    padding: 50px 0;
}

.footer_box h3 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 25px;
    color: var(--main-color);
}

.footer_box {
    padding-left: 3rem;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer_links a {
    text-transform: capitalize;
    color: var(--white-color);
    font-weight: 500;
    display: flex;
    gap: 5px;
}

.footer_logo img {
    width: 140px;
}

.footer_links a i {
    margin-top: 4px;
    color: var(--main-color);
}

.footer_logo p {
    font-size: 14px;
    margin-top: 1rem;
    color: var(--white-color);
    font-weight: 500;
}

.footer_links a:hover {
    color: var(--main-color);
}

.footer_icon {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_icon a {
    color: var(--white-color);
    font-size: 20px;
    height: 30px;
    width: 30px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: .3s ease;
}

.footer_icon a:hover {
    color: var(--white-color);
    transition: .3s ease;
    transform: scale(1.1);
}

.copyright p {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    background-color: var(--main-color);
    color: var(--white-color);
}


/* important */
.important {
    text-align: center;
    margin-top: 2rem;
}

.important h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
}

.important p {
    color: var(--black-color);
    font-size: 15px;
    padding: 0 12px;
    line-height: 25px;
    margin-top: 12px;
}


/* f-item */
.f-item h3 {
    font-weight: 700;
}

.ftr {
    padding-left: 2rem !important;
}

.ftr li {
    list-style: disc !important;
    font-size: 18px;
    margin-top: 1rem;
}

.footerend {
    padding: 30px 0;
}

.f-item h4 {
    margin-top: 1rem;
}

.footerulnew {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.footerulnew a {
    border: 1px solid var(--main-color);
    color: #444;
    padding: 4px 20px;
    border-radius: 100px;
    text-transform: capitalize;
    font-weight: 600;
    transition: .3s ease all;
}

.footerulnew a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease all;
}

@media(max-width:1200px) {
    .footer_logo img {
        width: 120px;
    }

    .footer_box {
        margin-top: 3rem;
        padding-left: 0;
    }

}

@media(max-width:992px) {
    .footer_logo img {
        width: 150px;
    }
}
@media(max-width:768px){
    .f-item h3{
        font-size: 20px;
    }
    .f-item h4{
        font-size: 16px;
        margin-top: 10px;
    }
    .ftr li{
        font-size: 15px;
        margin-top: 10px;
        line-height: 25px;
    }
    .footerulnew a{
        font-size: 14px;
        padding: 5px 10px;
    }
    .footerulnew{
        gap: 13px;
    }
}
@media(max-width:576px) {
    .footer_links a {
        font-size: 14px;
    }

    .footer_links {
        margin-top: 1rem;
        gap: 14px;
    }

    .footer_icon a {
        font-size: 15px;
    }

    .copyright p {
        font-size: 12px;
        padding: 5px 0;
    }

    .footer_logo p {
        font-size: 14px;
    }

    .footer_logo img {
        width: 115px;
    }

    .footer_box {
        margin-top: 2rem;
    }

    .footer_box h3 {
        font-size: 20px;
    }

    .important h3 {
        font-size: 24px;
    }

    .important p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 5px;
    }
}