* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    min-width: 300px;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0 5%;
    height: 100%;
    position: relative;
    color: #143556;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/drawing.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.21;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-width: 900px;
    max-width: 1200px;
    padding: 10% 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

header {
    height: 4vh;
}

header>* {
    height: 100%;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    padding: 0 10%;
    justify-content: center;
}

section {
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    background-color: #88d5d5;
    color: #ffffff;
    padding: 1rem;
    border-radius: 20px;
}

footer {
    height: 5vh;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer>*:not(span) {
    height: 100%;
    margin: 0.0rem 1.5rem;
}

.award {
    display: flex;
    align-items: center;
    justify-content: space-between;
    ;
    vertical-align: middle;
}

.award * {
    height: 100%;
    width: 40%;
    object-fit: contain;
}

.award span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    width: 17vh;
    text-align: center;
    font-weight: 600;
    margin-right: 1rem;
}

@media (max-width: 1000px) {

    html {
        height: auto;
    }

    body {
        height: auto;
        overflow-y: auto;
    }

    .container {
        padding: 100px 0;
        min-width: 300px;
    }

    header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    header img {
        width: 42vw;
        min-width: 300px;
        height: auto;
    }

    main {
        padding: 100px 10%;
        font-size: 1.5rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .footer>* {
        margin: 1rem 0 !important;
        width: 42vw;
        min-width: 300px;
    }

    .partner-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .partner-logo {
        margin: 0.5rem 0;
    }

    .award span {
        font-size: 1.0rem;
        min-width: 150px;
    }
}