html,
body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    box-sizing: border-box;
}

.header > h2 {
    margin: 20px 0px;
}

.container {
    width: 100%;
    background-color: #0000;
    padding: 0px;
    padding-top: 100px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.section {
    padding: 40px 10%;
    width: 100%;
    flex: 0 0 auto;
}

.stack {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.deck {
    width: 100%;
    height: 100%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
}

.deck.top {
    align-items: flex-start;
}

.tile {
    width: 100%;
    height: 100%;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
}

/* ============================================== */

.gap {
    gap: 20px;
}

.gap-large {
    gap: 40px;
}

.header {
    flex: 1 0 auto;
    width: 100%;
    height: 20%;
}

.body {
    flex: 1 0 auto;
    width: 100%;
    height: 80%;
}

.content {
    padding: 10px 20px;
}

.card {
    width: 100%;
    min-height: 300px;
    position: relative;
    padding: 0px 0px;
    overflow: hidden;

    border-width: 0px;
    border-radius: 20px;
}

.card.large {
    height: 500px;
}

.card.large > .body {
    height: 100%;
}

.card.none {
    border-width: 0px;
    padding: 0px 0px;
    overflow: visible;
}

.card.none.padded {
    padding: 0px 100px;
}

.card > .logo {
    z-index: -1;
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: 90%;
}

.card > .logo.maywe {
    top: 5%;
    right: 5%;
    /* width: 25%; */
    transform: translate(0%, 0%);
}

.greeting {
    margin: 0 6rem;
    padding: 20px 0px;
    width: 60%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}

.greeting > h3 {
    font-size: 1em;
    margin: 0px 0px;
}

.greeting > h1 {
    font-size: 2.5em;
    margin: 0px 0px;
}

.greeting > .button {
    margin: 20px 0px;
    width: 80%;
    max-width: 400px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.mini-card {
    width: 48%;
    height: 150px;

    border-width: 0px;
    border-radius: 10px;
}

.mini-card > .header {
    width: 30%;
    height: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.mini-card > .header img {
    padding: 0px;
    border-radius: 0px;
    height: 70%;
    object-fit: cover;
}

.mini-card > .body {
    width: 70%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.mini-card > .body h2 {
    margin: 0;
    font-size: 1.2rem;
}

.mini-card > .body div {
    flex: 1 1 auto;
}

.mini-card > .body a {
    flex: 0 1 auto;
}
.mini-card:hover {
    /* border: 2px solid #eab7fc; */
    cursor: pointer;
    background-color: #d0102c;
    /* text color white */
    color: #fff;
}

.body > .button {
    margin: 40px 0px;
    width: 60%;
    height: 40px;
    border-radius: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

hr {
    width: 100%;
    height: 1px;
    background-color: #454545;
    border: none;
}

.topic {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.topic > img {
    padding: 0px;
    border-radius: 0px;
    width: 100%;
}

.topic > .content {
    padding: 20px 20px;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.topic .description {
    flex: 1 0 auto;
    padding-bottom: 20px;
}

.topic h3 {
    font-size: 1.25em;
    margin: 10px 0px;
}

#card-suggestion,
#mini-card-telemedicine {
    display: none;
}

@media not screen and (max-width: 650px) {
    .topic.landscape {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .topic.landscape > img {
        padding: 20px;
        border-radius: 40px;
        width: 40%;
    }

    .topic.landscape > .content {
        width: 60%;
    }
}

@media screen and (max-width: 650px) {
    .container {
        padding-top: 20px;
        padding-right: 10px;
    }

    .gap-large {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .section {
        padding: 0px 10px;
    }

    .content {
        padding: 10px 5px;
    }

    .card > .logo {
        position: absolute;
        bottom: 0%;
        right: 0%;
        height: 50%;
    }

    .greeting {
        margin: 0px 0px;
        padding: 0px 20px;
        padding-top: 40px;
        justify-content: flex-start;
        width: 100%;
    }

    .greeting > h3 {
        font-size: 0.5em;
    }

    .greeting > h1 {
        font-size: 2em;
    }

    .greeting > h2 {
        font-size: 1em;
    }

    .mini-card {
        width: 100%;
    }

    .mini-card > .body h2 {
        margin: 0;
        font-size: 1.1rem;
    }

    .card > .logo.maywe {
        top: 50%;
        right: auto;
        width: 50%;
        z-index: -1;
    }

    .card.none.padded {
        padding: 0px 10px;
    }
}
