footer{
    position: relative;
    background-image: url(../assets/images/footer.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 50px;
}

.main-footer{
    color: var(--white);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.logo-footer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.logo-footer img{
    max-width: 200px;
    height: 150px;
}
.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.footer-content p{
    text-align: center;
    font-size: clamp(22px, 1vw, 35px);
    color: var(--white-color);
    font-weight: 500;
}

.social-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.social-icon .social{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(313.81deg, #033400 0%, #0E7300 75.34%, #033400 150.69%);
    border: 1px solid #32FF14;
    border-radius: 50%;

}
.social-icon .social:hover img{
    filter: drop-shadow(0px 0px 5px #32FF14);
    transform:rotate(360deg);
    scale: 1.2;
}
.social-icon .social img{
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.end-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: 400;
    font-size: clamp(14px, 0.8vw, 16px);
    color: var(--white-color);
    border-top: 1px solid var(--main-color);
    padding-top: 1rem;
}