* {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    margin: auto;
    position: relative;
    background-color: #ccc;
    box-shadow: 2px 2px 10px rgba(0,0,0,.5);
}

a {
    text-decoration: none;
    color: #4a92e0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,.7);
}
a[type="button"] {
    display: inline-block;
    background-color: #4a92e0;
    color: #f3f3f3;
    padding: 4px 8px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #2272ad,
    2px 2px 2px rgba(0,0,0,.5);
}

a[href*="tel"] {
    text-decoration: underline;
    padding: 0;
}
a:hover { cursor: pointer; }

p { margin-top: 25px; }

.body ul:not(.sy-list) {
    padding-left: 75px;
    padding-top: 15px;
}

.body ol {
    padding-left: 75px;
    padding-top: 15px;
}
.body {
    background-color: #e8e8e8;
    position: relative;
}

.body.no-pad {
    padding: 0;
    margin: 0;
}
.no-pad > * {
    padding: 0 !important;
}

.body > div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.body .section {
    display: flex;
    padding: 25px;
}

.body .section-header {
    position: relative;
    font-size: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
.body .section-sub-header {
    font-size: 18px;
    font-style: italic;
}

.body .section-body {
    position: relative;
}

.body .section.featured > div {
    box-shadow: 0 0 0 1px rgba(0,0,0,.5);
    margin: 20px;
    padding: 30px;
    height: 400px;
    background-color: white;
    text-align: justify;
}
.body .section.featured > div:hover {
    background-color: #f3f3f3;
}



.body .quote {
    position: relative;
    display: flex;
    padding: 40px;
    justify-content: center;
    font-style: italic;
    background-color: #dadada;
    color: white;
}
.body .quote > div:not(.flyout) {
    padding: 25px;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.5);
    border-radius: 5px;
    background-color: #333;
}

.body .quote-text {
    font-family: Times New Roman, serif;
    font-size: 25px;
}



.page-img {
    width: 100%;
    height: 300px;
    display: flex;
}

.page-img > img {
    display: block;
    width: 100%;
    object-fit: cover;
}



.top {
    vertical-align: top;
    align-items: flex-start !important;
}
.left {
    text-align: left;
    justify-content: flex-start !important;
}
.right {
    text-align: right;
    justify-content: flex-end;
}
.center {
    text-align: center;
    justify-content: center;
}

.hidden {
    display: none !important;
}


/* flyouts */
.body .flyout {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c3c3c3;
    box-shadow: 0 0 0 1px rgba(0,0,0,.7), 1px 2px 2px rgba(0,0,0,.7);
    border-radius: 15px;
    top: -20px;
    opacity: 0;
    transition: all .2s ease-in-out;
    z-index: 5;
}

.flyout > i {
    padding: 15px;
    font-size: 20px;
    color: #333;
}

.body:hover > .flyout {
    opacity: 1;
}
.body .section-header:hover > .flyout {
    opacity: 1;
}
.body .section-body:hover > .flyout {
    opacity: 1;
}
.body .quote:hover > .flyout {
    opacity: 1;
}
.flyout:hover {
    cursor: pointer;
    background-color: #f3f3f3;
}



@media screen and (min-width: 1020px) /* Desktop */ {
    body {width: 100%;}
    .body {
        padding: 0 50px;
    }
}

@media screen  and (max-width: 1019px) /* Tablet */ {
    body { width: 100%; }
    .body {
        padding: 0;
    }
    .body .section {
        flex-wrap: wrap;
    }
    .body .section-header {
        font-size: 15px;
        font-weight: bold;
    }
    .body .section-sub-header {
        font-size: 12px;
        font-style: italic;
    }
    .body .section.featured > div {
        height: auto;
    }
}

@media screen and (max-width: 575px) /* Mobile */ {
    body { width: 100%; }
}