@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
} 
.default-body {
    width: 100%;
    height: 100%;
    background: transparent url(img/bg.png) no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}
.container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    margin: auto;
}

.header {
    width: 85%;
    height: 15vw;
    min-height: 56px;
    max-height: 200px;
    margin: 40px 0 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.header>.img-title {
    background-image: url('img/title.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 60%;
    height: 100%;
    display: block;
}

.header>.img-app {
    background-image: url('img/app.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30%;
    height: 100%;
    display: block;
}
.content-top {
    width: 70%;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.content-top>.img-icon {
    width: 80px;
    height: 80px;
    margin: 0 30px 0 0;
    display: block;
}
.content-top>h2 {
    width: 80%;
    height: auto;    
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.content-bottom {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.content-bottom-left {
    width: 75%;
    height: 100%;
    margin: 0 10px 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.content-bottom-left-logos {
    background-color: white;
    width: 100%;
    height: 30vw;
    max-height: 400px;
    min-height: 255px;
}

.content-bottom-left-logos>p {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 20% 1px;
    background-color:#6f625a;
    color: white;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.content-bottom-left-logos>img {
    width: 100%;
    display: block;
}

.content-bottom-left-logos>.logos-tdu {
    background-image: url('img/logos-tdu.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 78%;
    display: block;
}
.content-bottom-left-logos>.logos-footer {
    background-image: url('img/logos-footer.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 20%;
    display: block;
}

.content-bottom-right {
    width: 20%;
    height: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}
.content-bottom-right>.qr {
    width: 70%;
    height: auto;
    display: block;
}

.content-bottom-right-stores, .content-stores-mobile {
    width: 70%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.content-bottom-right-stores img, .content-stores-mobile img {
    width: 100%;
}
.content-bottom-right-stores p, .content-stores-mobile p {
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3rem;
    text-transform: uppercase;
}

.footer {
    width: 80%;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.footer-left {
    width: 75%;
    height: 100%;
    margin: 0 10px 0 0;
    display: flex;
    flex-direction: column;
}

.footer-left p {
    padding: 15px 30px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.footer-left a {
    color: white;
    text-decoration: none;
}

.footer-right {
    width: 20%;
    height: 80%;
}
.footer-right img {
    width: 70%;
    height: auto;
    display: block;
    margin: auto;
}

/* mobile */
.content-stores-mobile {
    display: none;
}

@media only screen and (max-width : 1199px) { 
    .content-bottom-left-logos>p {
        margin: 10px 15%;
    }
}

@media only screen and (max-width : 992px) {
    .content-top>h2 {
        font-size: 16px;
    }

    .content-bottom-left-logos>p {
        font-size: 12px;
    }
}

@media only screen and (max-width : 790px) {
    .header {
        flex-direction: column;
        flex-wrap: nowrap;
        height: 70vw;
        margin: 30px 0 10px;
        max-height: 430px;
    }

    .header>.img-title {
        background-image: url(img/title-mobile.png);
        width: 80%;
    }

    .header>.img-app {
        width: 70%;
    }

    .content-top, .content-bottom {
        width: 100%;
        justify-content: center;
    }
    .content-top>.img-icon {
        width: 20%;
        height: auto;
    }
    .content-stores-mobile {
        width: 28%;
        display: flex;
    }
    .content-top>h2 {
        font-size: 14px;
    }

    .content-bottom-right {
        display: none;
    }

    .content-bottom-left {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .content-bottom-left-logos {
        width: 80%;
        height: 100vw;
        max-height: 770px;
        margin: auto;
    }

    .content-bottom-left-logos>p {
        margin: 10px;
        padding: 5px;
    }

    .content-bottom-left-logos>.logos-tdu {
        background-image: url(img/logos-tdu-mobile.jpg);
        height: 90%;
    }

    .footer {
        flex-direction: column;
        flex-wrap: nowrap;
        margin: 10px 0 20px;
    }

    .footer-left {
        width: 100%;
        margin: auto;
    }

    .footer-right {
        width: 70%;
        height: auto;
    }

}

@media only screen and (max-width : 480px) {
    .content-bottom-left-logos {
        height: 100vh;
        max-height: 450px;
    }

    .content-bottom-left-logos>.logos-tdu {
        height: 85%;
    }

    .footer-left p {
        padding: 10px 30px;
        font-size: 9px;
    }

    .content-stores-mobile p {
        font-size: 12px;
    }
}