footer {
    background-color: var(--textDarkColor);
    width: 100%;
    padding: 30px 20px 0px 20px;
}

.footer-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-headline{
    font-size: 28px;
    color: var(--whiteColor);
    line-height: 50px;
    font-weight: 400;
}

.footer-logo{
    margin-top: 30px;
}

.footer-logo img{
    width: 200px;
}

.copyright-txt{
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-subsections{
    display: flex;
    column-gap: 2vw;
    width: 100%;
    margin-bottom: 20px;
    align-self: flex-end;
}

.footer-subsections-title{
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-align: right;
    width: 160px;
}

.footer-links-wrapper li{
    margin-bottom: 20px;
}

.footer-links-wrapper li a{
    color: var(--whiteColor);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}


.footer-contact-container{
    display: flex;
    column-gap: 2vw;
}

.footer-contact-container a{
    color: var(--whiteColor);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.footer-contact-container a{
   /* text-indent: 10px; */
}

.footer-contact-social{
    margin-top: 20px;
    display: flex;
    column-gap: 1vw;
}

.copyright-mob-txt{
    display: none;
}

@media screen and (max-width: 900px) {
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        max-width: 400px;
    }

    .footer-logo-container{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }

    .footer-logo{
        margin-top: 0px;
    }

    .footer-logo img{
        width: 160px;
    }

    .copyright-txt{
        display: none;
    }

    .footer-headline{
        font-size: 11px;
        line-height: 15px;
    }

    .footer-sitemap-container{
        width: 100%;
    }

    .footer-subsections{
        margin-top: 20px;
        width: 100%;
        justify-content: space-between;
        position: relative;
    }

    .footer-subsections-title{
       width: auto;
        text-align: left;
        font-size: 11px;
    }

    .footer-links-wrapper li{
        margin-bottom: 5px;
    }

    .footer-links-wrapper li a{
        font-size: 11px;
    }

    .footer-contact-container{
        flex-direction: column;
    }

    .footer-contact-container a{
        margin-bottom: 20px;
    }

    .footer-contact-social{
        position: absolute;
        left: -10px;
        bottom: 0px;
    }

    .copyright-mob-txt{
        font-size: 9px;
        color: rgba(255,255,255,0.5);
        text-align: center;
        display: block;
    }
}