footer {
    /* width: 44%; */
    /* padding: 1rem clamp(1rem, 18%, 30rem); */
    height: fit-content;
    /* border: 0.15rem var(--main) solid; */
    margin-top: 2rem;
    /* margin-bottom: 2rem; */
    display: flex;
    gap: clamp(2rem, 15%, 15rem);
    width: 100%;
    background-color: var(--main);
    padding: 1.5rem 0;
    justify-content: center;
}


#footer-logo {
    width: clamp(1rem, 5cqi, 5rem);
    height: auto;
    position: absolute;
    left: 10%;
}

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


#footer-socials {
    width: clamp(10rem, 100%, 50vw);
    display: flex;
    flex-direction: column;
    align-items: center;
}


#footer-socials a {
    color: var(--bg);
    text-decoration: none;
    display: block;
}

#footer-socials a[href^="tel:"] {
    font-size: clamp(0.9rem, 3cqi, 2rem);
    margin-bottom: 0.5rem;
}

#footer-socials a[href^="mailto:"] {
    font-size: clamp(0.9rem, 1.8cqi, 1.6rem);
    margin-bottom: 2.5cqi;
}


.footer-icon {
    opacity: 30%;
    transition: 0.5s ease-in-out;
    width: 3cqi;
}

.footer-icon:hover {
    opacity: 100%;
}

.footer-icons {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 3cqi;
}


@media screen and (orientation: portrait) {
    footer {
        height: fit-content;
        margin-top: 2rem;
        display: flex;
        gap: clamp(2rem, 15%, 15rem);
        width: 80%;
        background-color: var(--main);
        padding: 1.5rem 10%;
        justify-content: center;

    }


    #footer-logo {
        width: clamp(3rem, 10cqi, 10rem);
        height: auto;
    }

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


    #footer-socials {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: end;
    }


    #footer-socials a {
        color: var(--bg);
        text-decoration: none;
        display: block;
    }

    #footer-socials a[href^="tel:"] {
        font-size: 5.5cqi;
        margin-bottom: 0.5rem;
    }

    #footer-socials a[href^="mailto:"] {
        font-size: clamp(0.9rem, 1.8cqi, 1.6rem);
        margin-bottom: 10cqi;
    }


    .footer-icon {
        opacity: 30%;
        transition: 0.5s ease-in-out;
        width: 10cqi;
    }

    .footer-icon:hover {
        opacity: 100%;
    }

    .footer-icons {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 10cqi;
    }
}


#upicon {
    width: 2rem;
    height: 2rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg);
    border-radius: 100%;
    padding: 0.5rem;
    border: 0.15rem solid var(--complement);
    display: none;
}

#upicon img {
    width: 100%;
    height: 100%;
}