.footer {
    overflow-x: hidden;
    padding-bottom: 0;
    padding: 40px 0;
    background: linear-gradient(to right, #846937, #b49457, #8F743C);
}
footer .main-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    width: 150px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-links ul.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-links ul.links li a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}










.end-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    color: white;
}

.end-footer .footer-contact a {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: start;
    display: flex;
    transition: 0.4s;
}

.end-footer .footer-contact a:hover {
    color: var(--color-Primary5);
    text-decoration: underline;
}

.end-footer .footer-contact p span {
    color: red;
    padding: 0 5px;
    animation: heartBeat 2s infinite;
    display: block;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

.end-footer .footer-copyright p {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: end;
}

.end-footer .footer-copyright p span {
    color: var(--color-Primary5);
    padding: 0 5px;
}

.end-footer .jadara {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    margin-right: 0px;
}

.end-footer .jadara ul {
    display: flex;
    gap: 10px;
}
.end-footer .jadara ul a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
}

.end-footer .jadara ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-color: var(--color-Primary1);
    border-radius: 50%;
    transition: 0.4s ease;
    z-index: 1;
}

.end-footer .jadara ul li a:hover::before {
    width: 100%;
    height: 100%;
}

.end-footer .jadara ul li a img {
    height: 25px;
    z-index: 2;
    transition: 0.4s;
}

.end-footer .jadara ul li a:hover img {
    filter: brightness(0) invert(1);
}

.end-footer .jadara ul li a:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(360deg);
}

.end-footer .jadara ul a img {
    height: 25px;
}

.end-footer .jadara i {
    color: red;
    animation: heartBeat 2s infinite;
}
.end-footer .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.end-footer .logo img {
    width: 60px;
    height: 60px;
}
.end-footer .logo p {
    color: white;
}

/* footer end */