body {
    display: grid;
    height: 100vh;
    grid-template-rows: auto 1fr auto;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    background-color: white;
    text-align: center;
}

header img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

main {
    display: grid;
    place-items: center;
    background-color: white;
    grid-template-rows: auto auto auto;
    padding: 1rem;
    max-width: 700px;
    margin: auto;
}

@media only screen and (max-width: 500px) {
    main {
        grid-template-rows: auto auto auto;
    }
}

section {
    text-align: center;
}

.slogan {
    font-style: italic;
    font-weight: 900;
    font-size: 1.2rem;
    width: 75%;
    text-align: center;
    color: #333333;
    margin: auto;
    position: relative;
    margin-bottom: 15px;
}

.block_wrapper {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.block_icon_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.block_icon_wrapper div {
    padding-top: 10px;
}

.block {
    padding: 1.5rem;
    background-color: #ECEBEA;
    display: flex;
    align-items: center;
}


footer {
    background-color: #333333;
    padding: 2rem;
}

@media only screen and (max-width: 500px) {
    footer {
        padding: 0;
    }
}

.footer_wrapper {
    display: flex;
    justify-content: space-around;
    color: white;
}

.footer_wrapper div {
    padding: 0.5rem;
}

.mailto_link {
    color: inherit;
    text-decoration: inherit;
}

.marginTopBottom10 {
    margin: 20px 0px;
}

.whoWeAre {
    font-size: 1.2rem;
    width: 50%;
    text-align: center;
    color: #333333;
    margin: auto;
    position: relative;
}

.contactUs {
    font-size: 1rem;
    width: 50%;
    text-align: center;
    color: #333333;
    margin: auto;
    position: relative;
}