.last-update {
    width: 100%;
    height: fit-content;
    padding: 0 10% 100px 10%;
}

.last-update p {
    font-size: 14px;
    text-align: right;
    font-style: italic;
    color: rgb(133, 133, 133);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

/* footer */
.container footer {
    position: relative;
    width: 100%;
    padding: 2% 5%;

    background: rgb(93, 8, 8);
    background: linear-gradient(270deg, rgba(93, 8, 8, 1) 0%, rgba(186, 16, 16, 1) 100%);
    border: none;

    z-index: 100;
}

.container footer table {
    border-collapse: collapse;
    width: 100%;
}

.container footer table th {
    width: 33.3%;
    text-align: center;
    color: white;
    font-weight: 300;
    font-size: 16px;
}

.container footer table th p a {
    color: white;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 1s;
}

.container footer table th p a:hover {
    font-size: 16px;
    font-weight: bold;
    border: 2px solid rgb(255, 255, 255);
}

@media screen and (max-width: 1320px) {
    .container footer table th p {
        display: none;
    }
}