#footer {
    font-size: 1rem;
    width: 100%;
    padding: 50px 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-background-color);
    position: relative;
}

.footer-logo-container {
    height: inherit;
}

.footer-logo {
    width: 220px;
    height: 90px;
}

.data-group-1,
.data-group-2,
.data-group-3,
.data-group-4,
.data-group-5 {
    width: 100%;
    max-width: 55ch;
    padding: 0 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25em;
}

.data-group-5 {
    display: none;
    width: min-content;
    max-height: 0;
}

.data-group-5.show {
    display: block;
    max-height: 150ch;
}

#footer strong {
    font-size: 1em;
    font-family: var(--bold-font);
    color: #7d7d7d;
}

#footer p,
#footer p a {
    font-size: 0.9em;
    color: var(--light-input-color);
    line-height: 1.75em;
}

#footer p:hover:not(.news, .not-clickable, .all-rights-reserved),
#footer p a:hover {
    color: var(--company-color1);
}

.all-rights-reserved {
    color: #d1d3d4 !important;
    font-size: 0.9em;
}

.legals {
    margin: 0;
}

.legals * {
    color: var(--company-color4) !important;
    font-size: 0.85em !important;
}

.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
}

.socials * {
    width: 2em;
}

.news {
    color: var(--light-input-color);
    font-size: 0.9em;
}

.news>a {
    color: #7d7d7d;
    font-weight: 600;
}

.news>span {
    font-size: 0.8em;
}

#news-content-1,
#news-content-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.75em;
}

.next-conference {
    min-width: 300px;
    max-width: 320px;
    margin: 0 auto;
    padding: 1em;
    background-color: var(--secondary-background-color);
    border-radius: 0.5rem;
    color: #606060;
}

.next-conference:hover {
    background-color: var(--company-color1);
    color: white;
}

.next-conference:hover * {
    color: white !important;
    border-color: white;
}

.next-conference>h4 {
    text-align: center;
    margin: 0.25em auto;
    color: #606060;
}

.next-conference:hover>h4 {
    color: white;
}

.next-conference>hr {
    width: 100%;
    border: 2px solid #606060;
}

.conference-data {
    display: grid;
    grid-template-columns: 25fr 75fr;
}

.conference-data>.date {
    padding-right: 0.5em;
    margin-right: 0.5em;
    border-right: 1px solid #c9cacb;
    display: flex;
    flex-direction: column;
    font-size: 1em;
}

.conference-data>.date>.day {
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1em;
}

.conference-data>.date>.month {}

.conference-data>.info {
    margin: 0;
    text-align: start;
}

@media (width>=768px) {}

@media (width>=1024px) {}

@media (width>=1440px) {
    #footer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 140px 5%;
        padding-bottom: 100px;
        gap: 4%;
    }

    #footer>div,
    #footer>a {
        width: 25%;
    }

    .footer-logo-container {
        position: absolute;
        top: 25px;
        left: 5%;
    }

    .data-group-1,
    .data-group-2,
    .data-group-3,
    .data-group-4,
    .data-group-5 {
        padding: 0;
        align-items: start;
        text-align: start;
    }

    .socials {
        width: auto !important;
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #footer strong {
        font-size: 1.1em;
    }

    #footer p,
    #footer p a {
        font-size: 1em;
        line-height: 2em;
    }

    .news>a {
        font-size: 0.9em !important;
    }
}

@media (width>=1440px) {

    #news-content-1,
    #news-content-2 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
    }
}