:root {
    --site-section-bg: #F8FAFF;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*
Purple: #2596be
Purple Dark: #2596be
 */

body {
    font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    line-height: 1.6;
    color: #2e394f;
    background: var(--site-section-bg);
}

a {
    color: #2e394f;
}

.root {
    height: 100vh;
}

.Layout-wrapper {
    display: flex;
    height: 100vh;
    flex-direction: column;
}

.Layout-main {
    /*display: flex;*/
    position: relative;
    width: 100%;
    /*flex-grow: 1;*/
}

.Layout-section {
    display: flex;
    position: relative;
    width: 100%;
    flex-grow: 1;
    padding: 40px 0;
}

.Layout-topbar {
    flex-shrink: 0;
    display: flex;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding-top: 12px;
    padding-bottom: 8px;
    border-top: 4px solid #333;
}

.Layout-content {
    flex-grow: 1;
    padding: 2rem;
    /*background: #f2f2f2;*/
}

.Util-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px 20px;
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.SimpleCard {
    background: #fff;
    border: 1px solid #d1d9e0;
    border-radius: 3px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(51, 51, 51, 0.07);
    margin-bottom: 2rem;
    width: 100%;
}

.Site-footer {
    /*background: #262831;*/
    /*color: #eee;*/
    padding-top: 40px;
    padding-bottom: 40px;
}

.Site-footer a {
    color: rgb(166, 172, 176);
}

.Site-footer a:hover {
    /*color: #fff;*/
}

.Site-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.Site-copyright {
    padding: 20px 0;
    text-align: center;
}

.Navbar {
    /*background: #262831;*/
    box-shadow: none;
    width: 100%;
    min-height: 52px;
}

.Navbar-call-us {
    padding-top: 12px;
    display: inline-block;
}

.Navbar-inner {
    display: flex; /* or inline-flex */
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.Navbar a {
    text-decoration: none;
    /*color: rgb(166, 172, 176);*/
}

.Navbar a:hover {
    /*color: #fff;*/
}

.Navbar-menuItem {
    color: rgb(166, 172, 176);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid transparent;
}
.Navbar-menuItem:hover {
    color: #fff;
    background-color: #101114;
    border-bottom: 2px solid green;
}
.Navbar-logo {
    background: #262831;
    padding-left: 30px;
    min-width: 232px;
    text-transform: uppercase;
    font-weight: bold;
}
.Navbar-logo a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
}
.Navbar-account {
    padding-right: 0;
}
.Navbar-account a {
    display: inline-flex;
    padding: 10px 20px;
}
.Navbar-account ul {
    margin: 0;
    padding: 0;
}
.Navbar-account li {
    display: inline-block;
}
.NavbarMenu {
    margin: 0;
    padding: 0;
}
.NavbarMenu .NavbarMenu-item {
    display: inline-block;
}
.NavbarMenu .NavbarMenu-item a {
    display: block;
    padding: 8px;
}

.Homepage-hero {
    text-align: center;
    padding: 40px 0;
    background: #4f0071;
    /*background: #7702a9;*/
    font-size: 28px;
    margin-bottom: 40px;
    color: white;
    background: linear-gradient(to right, #4f0071, #4f0071);
    background-image: url("/assets/images/rose-petals.png");
    background-size: contain;
}

.sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}

/*.slip-links {*/
/*    height: 0;*/
/*    left: 0;*/
/*    overflow: visible;*/
/*    position: absolute;*/
/*    text-align: center;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    z-index: 999;*/
/*}*/

.skip-links {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.skip-links ul {
    margin: 0;
    padding: 0;
    position: static;
}

.skip-links li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.skip-links a
{
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
    display: inline-block;
    padding: 14px 20px;
}

.skip-links a:focus
{
    color: #fff;
    background: #222;
    position:static;
    width:auto;
    height:auto;
}


.Footer-nav-list {
    margin: 0;
    padding: 0;
}

.Footer-nav-list li {
    display: block;
    list-style: none;
    margin-bottom: 0.8rem;
}

.Util-text-align--right {
    text-align: right;
}

