@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* #region General */
body {
    font-family: montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.2vw;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    line-height: 1.2;
}

/* #endregion */

/* #region Client Banner */
#clients {
    height: 88vh;
}

.client-wrapper {
    width: 100%;
    padding: 0.5em;
    padding-bottom: 0;
}

.client {
    display: flex;
    height: 100%;
    padding: 3em;
    position: relative;
    background: #ddd;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.client>* {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client__logo {
    width: 20%;
}

.client__logo__img {
    display: block;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.client__msg {
    display: flex;
    justify-content: center;
    width: 60%;
    padding: 0 2em;
    text-align: center;
}

.client__det {
    width: 20%;
}

.client__det .qr-code {
    width: 8vw;
    min-width: 100px;
}

.client__license {
    position: absolute;
    padding: 0 !important;
    bottom: 0.5em;
    left: 1em;
}

@media screen and (orientation: portrait) {
    body {
        font-size: 1.2vh;
    }

    #clients {
        height: 91vh;
    }

    .client {
        flex-direction: column;
        padding: 2em;
    }

    .client > * {
        padding: 1em 0;
    }

    .client__logo {
        width: 100%;
        height: 25%;
    }

    .client__logo__img {
        width: auto;
        height: 100%;
    }

    .client__msg {
        width: 100%;
        height: 40%;
    }

    .client__det {
        width: 100%;
        height: 35%;
    }

    .client__det .qr-code {
        width: auto;
        min-width: 0;
        height: 100%;
    }
}

/* #endregion */

/* #region Footer */
#footer-wrapper {
    height: 12vh;
    padding: 0.5em;
}

@media screen and (orientation: portrait) {
    #footer-wrapper {
        height: 9vh;
    }
}
/* #endregion */

/* #region Header */
#header-wrapper {
    height: 12vh;
    padding: 0.5em;
    padding-bottom: 0;
}

#header-wrapper + #clients {
    height: 76vh;
}

@media screen and (orientation: portrait) {
    #header-wrapper {
        height: 9vh;
    }

    #header-wrapper + #clients {
        height: 82vh;
    }
}
/* #endregion */