footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    background-color: var(--color-primary);
}

footer .dv-content-footer {
    height: 100%;
}

.dv-content-footer {
    display: flex;
    align-items: center;
    margin: 0 10px;
    justify-content: space-between;
    flex-direction: row;
}

.gap-2 {
    gap: 0.5rem !important;
}

footer img {
    margin-bottom: unset;
}

footer > div {
    padding: 10px 0;
}

footer p,
footer p a {
    font-size: 0.7rem;
}

.dv-white {
    color: var(--color-primary-contrast);
}

footer #footer-section-1 {
    position: relative;
    display: none;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
}

footer #footer-section-1 #footer-social-media a + a {
    margin-left: 10px;
}

footer #footer-section-1 #footer-social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

footer #footer-section-1 span {
    margin-top: 3px;
    padding: 0 10px;
    font-size: .66rem;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    color: var(--color-primary-contrast);
}

footer #footer-section-1 .last {
    width: 480px;
    max-width: 90%;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-primary-contrast);
}

footer #footer-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    background-color: var(--color-primary-contrast);
}

footer #footer-section-2 span{
    font-size: .66rem;
    font-weight: 700;
    color: var(--color-primary);
}

footer img.logo {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 180px;
}

footer span {
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    footer img.logo {
        width: 150px;
    }
}

@media only screen and (max-width: 1000px) {
    footer img.logo {
        width: 100px;
    }
}

@media only screen and (max-width: 800px) {
    footer img.logo {
       position: static;
       transform: translateY(0%);
       width: 150px;
       margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .dv-content-footer {
        justify-content: center;
        flex-direction: column;
    }

    footer p,
    footer p a {
        font-size: 0.5rem;
    }
}