﻿html {
    background-color: #0e0a23;
}

body {
    position: relative;
    font-family: 'Open Sans', Calibri, Arial, sans-serif;
    color: #fff;
    padding: 0 0 0 0;
    width: auto;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 20px;
}

a:hover {
    color: #ffae6b;
    text-decoration: none;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.content {
    text-align: center;
}

section {
    padding: 70px 0;
}

.navbar-default .navbar-brand {
    color: #ffae6b;
}

.navbar-inverse .navbar-brand {
    color: #ffae6b;
}

h1 {
    word-spacing: 4px;
    font-size: 58px;
    font-weight: 300;
    text-align: center;
    letter-spacing: normal;
}

h2 {
    word-spacing: 4px;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    letter-spacing: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #ffae6b;
    text-shadow: 1px 1px 2px #000000;
    font-family: 'Lato', Calibri, Arial, sans-serif;
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 70px;
    font-size: 21px;
    font-weight: 200;
    line-height: 1.8;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.5);
}


.med-black-panel {
    background-color: rgba(0,0,0,0.5);
    border-radius: 6px;
    margin: 0px;
    padding: 24px;
    min-height: 320px;
    margin-bottom: 20px;
}

.vn-icon {
    margin-top: 5px;
    margin-right: 12px;
    float: left;
}

hr {
    color: #ccc;
}

footer p {
    color: #ccc;
    font-size: 11px;
}

footer a {
    color: #ccc;
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fadein {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    position: fixed;
    bottom: 50px;
    right: 100px;
    display: none;
    background-image: url(../images/arrow-up.png);
    background-size: contain;
    text-indent: -9999px;
}

/********************************************************************
	Locate Section
*********************************************************************/

#locate {
    padding: 0 0;
}

    #locate .content {
        padding: 0;
        max-width: none;
    }

    #locate h2 {
        text-transform: uppercase;
        text-align: center;
        margin: 0 0 1em 0;
    }

#locate-overlay {
    position: relative;
    background-color: rgba(52, 152, 219, 0.9);
    margin: 0 auto;
    max-width: none;
    padding: 0 10px;
    text-align: center;
    height: 500px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

    #locate-overlay .div-1 {
        padding: 70px;
    }

#Gmap {
    position: absolute;
    width: 100%;
    max-height: 500px;
    height: 100%;
}

#view-map {
    position: absolute;
    opacity: 0;
}

input.view-map-selector:checked ~ #locate-overlay {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
}

input.view-map-selector:checked ~ #view-address-btn {
    display: block;
}

#locate label.btn {
    color: #fff;
    background: #2b7cb2;
    font-size: 16px;
    padding: 16px 30px;
    font-weight: bold;
    margin-top: 2em;
    border-radius: 0;
    border: 1px solid #2b7cb2;
    cursor: pointer;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

    #locate label.btn:hover {
        background: #3498db;
    }

#view-address-btn {
    position: absolute;
    left: 50%;
    width: 240px;
    border-radius: 0;
    margin-left: -120px;
    margin-top: 1em;
    display: none;
}

    #view-address-btn label {
        color: #fff;
        background: #3498db;
        font-size: 16px;
        padding: 16px 30px;
        width: 100%;
        font-weight: bold;
        border: 1px solid #2b7cb2;
        cursor: pointer;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
    }

    #view-address-btn:hover label {
        background: #2b7cb2;
    }


