html {
    font-size: 14pt;
    line-height: 1.4;
    height: 100%;
    width: 100%;
    font-family: 'Rubik', sans-serif;
}

body {
    display: flex;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

}

h1 {
    font-size: 1.8em;
}

#flyer {
    width: 90%;
    margin: auto;
    padding: 5%;
    border: solid 4px #00A79D;
    max-width: 1280px;
    border-radius: 8px;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
}

#header-1 {
    text-transform: uppercase;
    margin-right: 1.5em;
}

.green {
    color: #00A79D;
}

.no-format-list {
    margin: 0;
    padding: 0;

}

.partners {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    margin-top: -4em;
    width: 100%;
}

.partners li {
    height: 5.1em;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 1em;
}

#gdi-hub {
    height: 9em;
    display: flex;
    flex-direction: column-reverse;
}

#gdi-hub img {
    height: 9em;
    width: auto;
}

.partners li img {
    height: 100%;
    width: auto;
}

#tags {
    font-weight: bold;
}

#tags p {
    margin: 0;
}

@media only screen and (max-width: 1431px) {
    #flyer {
        border: none;
    }
}

@media only screen and (max-width: 1366px) {
    .partners {
        margin-top: 0;
        flex-wrap: wrap;
    }

    #gdi-hub {
        height: unset;
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    #gdi-hub img {
        height: 9em;
        width: auto;
    }
}