footer{
    margin-top: 5em;
    width: 100%;
    background-color: var(--ac);
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px var(--txt);
}

.footer-content{
    padding: var(--section-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content:last-of-type {
    padding-bottom: 6em;
}

.footer-left{
    display: flex;
    gap: 15px;
}
.footer-left a, 
footer p{
    color: var(--pr);
    font-size: 1.2rem;
    transition: var(--transition);

}
.footer-left a:hover{
    text-decoration: underline;
}

footer p span {
    font-size: 1.3rem;
}




.footer-phone{
    width: max-content;
    height: max-content;
    border: solid 2px var(--pr);
    display: flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}
.footer-phone svg{
    height: 40px;
    width: auto;
    padding: 5px;
}
.footer-phone a{
    color: var(--pr);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px;
    transition: var(--transition);
}
.footer-phone:hover{
    background-color: var(--pr);
}
.footer-phone:hover > svg path{
    fill: var(--ac) !important;
    transition: var(--transition);
}
.footer-phone:hover > a{
    color: var(--ac);
}

.footer-credit{
    padding-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.7;
    cursor: pointer;
}

.footer-credit span{
    color: var(--pr);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-credit img{
    height: 24px;
    width: auto;
    display: block;
    transform: translateY(2px);
}


@media(max-width: 600px){
    .footer-content{
        flex-direction: column !important;
        align-items: center;
        gap: 2em;
    }
    .footer-left{
        flex-direction: column !important;
        align-items: center;
    }
}