:root {
    --site-blue: #326da7;
    --site-green: #bbd846;
}

.site-blue {
    color: var(--site-blue);
}

body {
    background-image: url(img/water.jpg);
    background-size: 70%;
    font-size: 11pt;
    font-family: "Montserrat", sans-serif;
}

h3 {
    font-size: 1.7rem;
    font-weight: 300;
}

.body_admin {
    background-image: none;
}

.tiles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: -40px;
    margin-right: -40px;
    background-image: url(img/tiles.png);
    background-size: 40px;
    z-index: -2;
    box-shadow: 0 0 20px #000
}

.vertical-rules {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: -1px;
    margin-right: -1px;
    z-index: -1;
    border-left: solid 1px #505050;
    border-right: solid 1px #505050;
}

.topline {
    background-color: var(--site-blue);
    color: #fff;
    position: relative;
    z-index: 5;
}

.menu .logo {
    width: 75%;
    position: absolute;
    margin-left: 33%;
    margin-top: 1rem;
    z-index: 4;
}

.menu {
    position: relative;
    z-index: 2;
    background-color: #326da7;
    overflow-x: clip;
}

.menu-bg {
    position: absolute;
    top: 5vh;
    left: -120vw;
    height: calc(3.9rem * 5);
    max-width: none;
    width: auto;
}

.menu .nav {
    position: relative;
    z-index: 3;
    width: 100%;
    justify-content: flex-start;
    padding: .5rem 1rem;
    font-weight: 300;
    font-size: 1rem;
}

.menu .nav li {
    margin-left: 4rem;
    margin-bottom: .5rem;
    width: 100%;
    display:  flex;
    /* align-content: center; */
    /* align-items: center; */
}

.hero {
    height: 60vh;
    position: relative;
    background-size: cover;
}

.menu .nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.menu .nav span {
    display: block;
    position: absolute;
    left: -2rem;
    top: .1rem;
    zoom: .9;
    /* margin: .5rem .5rem 0 0; */
    /* line-height: 2rem; */
}

.slogan {
    width: 70%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -35%;
}

.rooms {
    background-color: #f6f3ea;
}

h2.blue {
    background-color: var(--site-blue);
    color: #fff;
    font-weight: 300;
    font-size: 140%;
    display: flex;
    justify-content: center;
    padding: .5rem 0;
}

h2.blue.flush-left {
    display: inline-flex;
    min-width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: flex-start;
}

h2.blue span {
    margin-right: .7rem;
}

.blue-rule-top {
    border-top: solid 1px var(--site-blue);
}

.contacts {
    background-color: #ececec;
}

.slides h5 {
    font-size: 1rem;
    font-weight: 300
}

.slides .thumb {
    padding-bottom: 70%;
    cursor: pointer;
}

.overview {
    text-align: center;
    background-image: url(/assets/img/overview.jpg);
    height: 40vh;
    background-size: cover;
    background-position: center center
}

@media (min-width: 992px) {

    .menu-bg {
        position: absolute;
        top: -5vh;
        left: 0;
        width: 100%;
        /* top: -1vh; */
        z-index:  2;
    }
    
   .logo {
        max-height: 31vh;
        max-width: 13vw;
        top: 1vh;
        left: -3vw;
    }

    .menu .nav {
        justify-content: flex-end;
        padding: .5rem 1rem;
    }

    .menu .nav li {
        margin-left: 3.2rem;
        margin-bottom: .5rem;
        display:  flex;
        width: auto
    }
    
    .hero {
        height: 85vh;
        position: relative;
        background-size: cover;
        z-index:  1;
        /* margin-top: 2vh; */
    }
    
    .slogan {
        width: 30%;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -15%;
    }
    
    .overview {
        height: 60vh;
    }
}