﻿.footer-site-body {
    background-image: linear-gradient(to right, #013064, #00609C);
    padding-top: 35px;
}

.footer-site-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.footer-site-access {
    display: none
}

    .footer-site-access > ul {
        margin: 10px;
    }

.footer-access-item {
    display: flex;
    width: 150px;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
}

    .footer-access-item:hover {
        color: #013064;
        background-color: white;
    }

.footer-site-contact {
    width: 100%;
}

    .footer-site-contact > span,
    .footer-site-access > span {
        font-size: 20px;
        color: white;
        display: inline-block;
        border-bottom: 1px dotted white;
        margin-right: 10px;
        padding-bottom: 10px;
        padding-left: 50px;
    }

    .footer-site-contact > p {
        font-size: 15px;
        text-align: right;
        color: white;
        margin: 10px;
    }

.footer-site-social {
    display: flex;
    justify-content: space-between;
}

    .footer-site-social > div {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .footer-site-social > div:last-child {
            display: flex;
            justify-content: end;
        }

            .footer-site-social > div:last-child > div {
                width: 150px;
                margin: 5px auto 5px 10px;
            }

.footer-social-icone {
    /* width: 40px;
    margin: 5px;
    cursor: pointer;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;*/
    width: 40px;
    height: 40px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.social-icone-item {
    opacity: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: opacity 1s;
}

.social-icone-item-h {
    position: absolute;
    opacity: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: opacity 1s;
}


.footer-social-icone:hover .social-icone-item {
    opacity: 0;
}

.footer-social-icone:hover .social-icone-item-h {
    opacity: 1;
}

.footer-contact-phone {
    height: 25px;
    display: flex;
    justify-content: end;
    width: 100%;
    margin: 7px auto 7px 0;
}

    .footer-contact-phone > i {
        width: 25px;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        margin-left: 5px;
        direction: ltr;
    }

        .footer-contact-phone > i > img {
            max-width: 70%;
            max-height: 100%;
            /*animation: contact 1.7s infinite;*/
        }

@keyframes contact {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(180deg);
    }
}

.footer-contact-phone > a {
    width: 110px;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
    text-align: left;
    display: flex;
    justify-content: start;
    align-items: center;
    direction: ltr;
}

    .footer-contact-phone > a:hover {
        color: #013064;
        background-color: white;
    }

.footer-copyRight {
    display: block;
    font-size: 12PX;
    padding: 15px;
    text-align: center;
    color: white;
    margin-top: 20px;
    background-color: #012144;
    border-top: 0.5px solid white;
}

    .footer-copyRight > a {
        font-weight: bold;
        color: white;
        font-size: 13PX;
        padding: 3px 5px;
        border-radius: 5px;
    }

        .footer-copyRight > a:hover {
            color: #013064;
            background-color: white;
        }

@media only screen and (min-width: 992px) {
    .footer-site-access {
        display: block;
        width: 30%;
    }

    .footer-site-contact {
        width: 40%;
    }

    .footer-site-social {
        margin-top: 40px;
    }
}
