.social {
    gap: 8px;
}

.cus_box {
    height: 40px;
    width: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border-radius: 12px;
    background: var(--n3);
    transition: all 0.5s ease;
}

.cus_box:hover {
    background: var(--p1);
    color: var(--n1);
}

.footer .footer-list {
    list-style-type: none;
    padding-left: 0;
}

.footer .footer-list li {
    margin: 0;
}

.footer .footer-list li a {
    transition: all 0.5s ease;
    transform: translateX(-20px);
    position: relative;
    padding-left: 20px;
    display: block;
}

.footer .footer-list li a:before {
    content: "\f105";
    font-family: "fontawesome";
    position: absolute;
    left: 0;
    transition: all 0.5s ease;
    opacity: 0;

}

.footer .footer-list li a:hover:before,
.footer .footer-list li a:hover {
    color: var(--p1);
    transform: translateX(0px);
    opacity: 1;
}

.metform-btn{
    max-width: fit-content !important;
}