footer#footer {
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
    z-index: 9;
}
footer hr {
    border-color: #1f1f1f;
    border-style: dashed;
}
footer#footer .footer-row-up,
footer#footer .footer-row-middle,
footer#footer .footer-row-down {
    display: flex;
    justify-content: space-between;
    padding:40px;
}
footer#footer .footer-row-up .footer-column {
    width: calc(100% / 3);
}
footer#footer .footer-row-up .footer-column.monologo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
footer#footer .footer-row-up .footer-column.telephone {
    text-align: right;
}
footer#footer .footer-row-up .footer-column.telephone .telephone-link {
    color: var(--color-white);
}

footer#footer .footer-row-middle .footer-column {
    width: calc(100% / 4);
}
footer#footer .footer-row-middle .footer-column .footer-collapsed-button  {
    font-size: 34px;
    font-weight: var(--font-weight-semibold);
    margin: 10px 0;
}
footer#footer .footer-row-middle .footer-column  ul {
    list-style: none;
    padding: 0;
}
footer#footer .footer-row-middle .footer-column  ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    transition: .3s all ease;
}
.footer-collapsed-button {
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    text-align: left;
    cursor: pointer;
    background-color: transparent;
    transition: .3s all ease;
}
.footer-collapsed-button svg {
    display: none;
}
footer#footer .footer-row-middle .footer-column  ul li a:hover {
    color: var(--color-secondary);
}
footer#footer .footer-row-middle .footer-column  ul li a:before {
    content: '';
    display: block;
    background-color: transparent;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border-color: var(--color-primary);
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    margin-right: 10px;
    transition: .3s all ease;
}
footer#footer .footer-row-middle .footer-column  ul li a:hover:before {
    border-color: var(--color-secondary);
}

footer#footer .footer-row-down .footer-column small {
    margin-top: 10px;
    font-weight: var(--font-weight-thin);
    display:flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    color: #303030;
}
footer#footer .footer-row-down .footer-column small a {
    color: var(--color-white);
    text-decoration: none;
}
footer#footer .footer-row-down .footer-column small a:hover {
    opacity: 1;
}
footer#footer .footer-row-down .footer-column ul {
    text-align: right;
    padding: 0;
    list-style: none;
    margin:0;
}
footer#footer .footer-row-down .footer-column ul li a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: var(--font-size-body-s);
    transition: .3s color ease;
    display: block;
    padding: 2px 0;
}
footer#footer .footer-row-down .footer-column ul li a:hover {
    color: var(--color-white);
}