/* -------------------------------------------- footer -------------------------------------------- */

footer#footer {
    width: 100vw;
    /* height: 50vh; */
    background-color: #1C1E50;
    color: white;
    padding: 2rem;
    /* margin-top: 1rem; */

    display: flex;
    justify-content: center;
}

.footer__wrapper {
    width: 80vw;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__wrapper > a {
    height: 2.5rem;
}

.footer__wrapper>a> img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.footer__container {
    width: 100%;
    height: 100%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin: 1rem 0;
    padding: 1rem 0;

    display: flex;
    flex-wrap: wrap;
}

.footer__container--1,
.footer__container--2,
.footer__container--3,
.footer__container--4,
.footer__container--5 {
    color: white;
    flex: 1;

    display: flex;
    justify-content: center;
}

.footer__container ul>li {
    list-style: none;
    margin: 1rem 0;
    font-size: calc(0.6rem + 0.4vw);
    font-weight: 100;
}

.footer__container ul>li > a {
    color: white;
}


.footer__container ul>li:first-child {
    font-size: calc(0.7rem + 0.5vw);
    font-weight: bolder;
}

.footer__tnc {
    width: 100%;

    display: flex;
    justify-content: space-between;
}

.footer__tnc--right {
    display: flex;
}

.footer__tnc--right>* {
    margin-left: 1rem;
}

@media only screen and (max-width:850px) {
    .footer__wrapper {
        width: 85vw;
    }
}

@media only screen and (max-width:750px) {
    .footer__wrapper {
        width: 90vw;
    }
}

@media only screen and (max-width:700px) {
    .footer__wrapper {
        width: 90vw;
    }

    .footer__container--1,
    .footer__container--2,
    .footer__container--3,
    .footer__container--4,
    .footer__container--5 {
        flex-basis: 25vw;

        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width:500px) {
    .footer__wrapper {
        width: 100vw;
    }
}

@media only screen and (max-width:450px) {
    footer#footer {
        padding: 1rem;
    }

    .footer__wrapper {
        width: 100vw;
    }

    .footer__container--1,
    .footer__container--2,
    .footer__container--3,
    .footer__container--4,
    .footer__container--5 {
        flex-basis: 35vw;
    }
}