* {
    font-family: 'Raleway', sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
    --roadMapColor: #ffffff;
    --bulletRad: 20px;
}

body {
    background: linear-gradient(45deg, #c5c5c5, #f3f3f3);    
    -webkit-font-smoothing: antialiased;
}

h1 {
    line-height: 1.1;
    margin: 0;
    font-weight: 900;
    font-size: 1.6rem;
}

h2 {
    font-weight: 100;
    line-height: 1;
}

.MVStyles___groups {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: column;
    background: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-shadow: 4px  4px 8px rgba(163, 177, 198, 0.3), 
               -4px -4px 8px rgba(255, 255, 255, 0.4);
    min-height: 75vh;
    box-sizing: border-box;
}

.MVStyles___button {
    padding: 0.2rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: .5s ease;
    outline: none;
    background: #fff;
    margin: 1rem 0;
    height: 32px;
}

@media (hover: hover) {
    .MVStyles___button:hover {
        box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.4), -4px -4px 8px rgba(255, 255, 255, 0.4);
    }
}

.MVStyles___group {
    position: relative;
    box-sizing: border-box;
}

.MVStyles___buttonGroup {
    justify-content: center;
    display: flex;
}

.MVStyles___group.MVStyles___group--intro button.MVStyles___button.MVStyles___button--getInvolved {
    margin: 0 1rem;
}

body.MVStyles___mainBody.MVStyles___mainBody--home .MVStyles___group.MVStyles___group--intro {
    padding: 1rem;
    background: #f5f5f5 url(../img/city_back_1.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom center;
    height: 700px;
    background-size: cover;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.MVStyles___group.MVStyles___group--intro {
    max-height: 70vh;
    min-height: 350px;
}

.MVStyles___button__holder {
    display: flex;
    justify-content: center;
}

.MVStyles___group.MVStyles___group--intro .MVStyles___subGroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #FFF;
    z-index: 2;
    position: relative;
}

.MVStyles___group.MVStyles___group--head {
    padding: 1rem;
    background: linear-gradient(140deg, rgb(240 248 255 / 1),                                         rgb(240 248 255 / 1),                                         rgb(240 248 255 / .5));
}

button.MVStyles___button.MVStyles___button--getInvolved {
    background: #fff;
}

.MVStyles___group.MVStyles___group--subs {
    max-width: 1100px;
    display: flex;
    justify-content: center;
    margin: 1rem auto 3rem auto;
    box-sizing: border-box;
    flex-wrap: wrap;
    padding: 0 1rem;
}

img.MVStyles___inlineImage {
    float: left;
    margin-right: 1rem;
}

.MVStyles___group.MVStyles___group--intro button.MVStyles___button.MVStyles___button--getInvolved a {
    color: #222222;
    text-decoration: none;
}

/* Footer */

.MVStyles___footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
    background: #f3f4f7;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;
    box-shadow: 4px  4px 8px rgba(163, 177, 198, 0.3), 
               -4px -4px 8px rgba(255, 255, 255, 0.4);
}

.MVStyles___footer__holder {
    text-align: right;
    font-size: .8rem;
    font-weight: 700;
    color: #183860;
}

/* Menu */

@media only screen and (max-width: 600px) {
    .container {
        margin-top: 50px;
        Display: flex;
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 1.6rem;
        margin: 0;
        text-align: center;
    }

    .MVStyles___button {
        height: 44px;
    }

    .MVStyles___group {
        padding: 1rem;
        padding-bottom: 3rem;
    }

    .MVStyles___groups {
        max-width: 100vw;
        overflow: hidden;
        box-shadow: none;
        border: none;
    }

    .MVStyles___group.MVStyles___group--subs {
        flex-wrap: wrap;
    }

    body .MVStyles___groups div.MVStyles___group {
        max-width: calc(100vw - 0rem);
        box-sizing: border-box;
        padding: 0 0.5rem;
    }

}


