footer {
    height: 100px;
    max-width: 100vw;
    background-color: #F6AE2D;
    box-shadow: 0 -2px 12px 0px rgb(0 0 0 / 92%);
    display:flex;
    align-items: center;
    padding:0 2vw 0 2vw;
    gap:5vw;
    position: relative;
    
}
.maps{
    left:3vw;
    height:40px;
    box-shadow: 0 0px 4px 0px rgb(0 0 0 / 92%);
    border-radius: 5px;
}
.maps:hover{
    transform:scale(1.25);
}
.address{
    font-size: 3vmin;
    margin-bottom: 10px;
    font-weight: 560;
    
}
.foot{
    font-size: 2.4vmin;
    
}
.foot span{
    font-weight: 600;
    background: linear-gradient(90deg,rgb(9, 199, 34),rgb(4, 40, 245));
    background-size: 400%;
    background-clip: text;
    color:transparent;
    animation:movebg 2s infinite;
}
@keyframes movebg {
    0%{
        background-position: 0% 0%;
    }
    50%{
        background-position: 50% 50%;
    }
    100%{
        background-position: 0% 0%;
    }
}
@media (max-width:500px) {
    .address{
        font-size: 4vmin;
    }
    .foot{
        font-size: 13px;
    }
    
}