/* Style the header with a grey background and some padding */
header, body, html {
    height: 100%;
    background-color: white;
    font-family: "Verdana", sans-serif;
!important;
}

.header {
    z-index: 1;
    overflow: hidden;
    background-color: #f1f1f1;
    padding: 20px 10px;
    max-height: 100px;
}

.eye img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Style the header links */
.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    margin-top: 8px;
}

.header a:link {
    text-decoration: none;
}

.header img {
    width: 174px;
    height: 84px;
    margin-top: -14px;

}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
    font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active/current link*/
.header a.active {
    background-color: #E6223C;
    color: white;
}

/* Float the link section to the right */
.header-right {
    float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
    .header {
        max-height: 30%;
    }

    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }

    .content {
        flex-wrap: wrap;
    }

}

.hero-image {
    background: url("../images/blurred2.jpg");

    /* Set a specific height */
    height: 50%;
    box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 200%;
}

body form input[type=submit] {
    opacity: 0.8;

    background: #E6223C;
    border: 2px solid #E6223C;
    color: white;
}

body .image {
    position: relative;
    width: 100%;
    height: auto;
    z-index: -1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: 5px;
}

.map {

    height: 400px;
    width: 400px;
    margin-top: 20px;
    margin-bottom: 30px;

    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;

    -moz-box-shadow: 4px 4px 14px #000;
    -webkit-box-shadow: 4px 4px 14px #000;
    box-shadow: 4px 4px 14px #000;

}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    float: left;
    padding: .5% 10px 10px;
    z-index: 1;
    font-family: "Verdana", sans-serif;

}

.search {
    position: relative;
}

/*Contact Page */

container {
    width: 50%;
    float: left;
}

.contactInfo {
    margin: auto;
    align-content: center;
    width: 50%;
    padding-top: 1%;
    text-align: center;
}

.contact-image {
    width: 100px;
    height: 100px;
}

input[type=submit] {
    background-color: #E6223C;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Verdana", sans-serif;
}

input[type=submit]:hover {
    background-color: #843535;
}

.animate {
    animation: opac 0.75s
}

@keyframes opac {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.hideContent {
    display: none;
}

.showContent {

}

a {
    cursor: pointer;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align:center;
}

/* The Close Button */
.btn-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.btn-close:hover,
.btn-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
