@charset "utf-8";
/*Simplify width and height calculations */
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
header {
    background-color: #D9C148;
    font-family: "Merriweather",Times,serif;
    position: fixed;
    top: 0px;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    max-height: 130px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    color: dimgray;
}
body {
    color: #376B6D;
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1em;
    background-color: #EFF5F8;
    margin-top: 130px;
    margin-left: auto;
    margin-right: auto;
}
#wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    background-color: white;
}
h1,h2{
    color: #736936;
    font-style: normal;
    font-weight: 400;
    font-size: 200px;
}
h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
    font-size: 2.5em;
    text-align: center;
    text-transform: uppercase;
}
h2 {
    margin-top: 0px;
    font-size: 1.5em;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
    display: block;
    clear: both;
}
h2::before {
    height: 5px;
    width: 60px;
    right: 50%;
    background-color: #736936;
    position: absolute;
    content: close-quote;
    bottom: 0px;
    font-size: medium;
}
h2::after {
    width: 60px;
    height: 5px;
    left: 50%;
    background-color: #D9C148;
    content: close-quote;
    position: absolute;
    bottom: 0px;
}
nav h2::before , nav h2::after{
    display: none;
}



a {
    font-weight: bold;
    text-decoration: none;
}


a:link {
    color: #736936;
}
a:visited {
    color: #736666;
}
a:hover,a:active,a:focus{
    color: #898C2E;
    text-decoration: underline;
}
#menulink {
    background-color: #405B55;
    text-align: center;
}

#menulink a {
    color: white;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    font-family: source-sans-pro;
    font-style: normal;
}
#navlinks {
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #000000;
    background-color: rgba(0,0,0,0.65);
    position: absolute;
    -webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}
#navlinks.displayed {
    top: 125px;
    z-index: 1;
    opacity: 1;
}
#navlinks.start {
    display: none;
}
#navlinks.collapsed {
    top: -12em;
    opacity: 0;
}
#navlinks a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}
#navlinks a:hover, #navlinks a:active, #navlinks a:focus  {
    color: #D8F2F0;
}
#hero img {
    max-width: 100%;
    display: block;
}
main  {
    margin-left: 4%;
    margin-right: 4%;
}
.padding {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
}
.column {
    width: 33%;
    float: left;
    position: relative;
}

.column img {
    opacity: 0.8;
    width: 100%;
}

.fas.fa-expand-arrows-alt {
    color: white;
    font-size: 15px;
    position: absolute;
    border-radius: 3px;
    border: 1px solid white;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-align: center;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    line-height: 40px;
    display: none;
    transition: .5s ease;
}
.fas.fa-expand-arrows-alt:hover {
    border-radius: 50%;
}
.overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: calc(100% - 16px);
    transition: .5s ease;
    opacity: 1;
    height: 0;
    left: 0px;
    bottom: 0px;
    overflow: hidden;
    right: auto;
    margin-left: 8px;
    margin-right: 8px;
}

.column img:hover {
    opacity: 1;
}
.column:hover .overlay      {
    height: 100%;
}
.column:hover .fas.fa-expand-arrows-alt {
    display: block;
}
.row > .column       {
    padding-top: 0;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 0;
}

.row:after   {
    display: table;
    content: "";
    clear: both;
    padding-bottom: 8px;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 130px;
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto;
    background-color: rgba(13,13,13,0.80);
    height: 100%;
    bottom: 0px;
}

/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    max-width: 1000px;
}
.mySlides img {
    opacity: 1;
    border-radius: 3px;
    z-index: 2;
    border: 1px solid white;
    display: block;
    padding-bottom: 0px;
}
.myslides:hover {
}
/* The Close Button */
.close , #closemenu{
    color: white;
    font-size: 35px;
    font-weight: bold;
    float: right;
    display: block;
    width: 30px;
    height: 30px;
}

.close:hover,
.close:focus {
    color: #999;
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;

    background-color: #736666
#;
    background-color: #D9C148;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#imgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
}
#locality img {
    margin-right: 15px;
    width: 38%;
    float: left;
    margin-left: auto;
    margin-bottom: -1px;
    clear: both;
    display: block;
}
#locality p {

}
#availability #chkAvButton {

}
#availability #chkAvailability {
    color: white;
    background-color: #D9C148;
    padding-right: 1.5em;
    padding-left: 1.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border: 1px solid #736936;
    cursor: pointer;
    display: table;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
}

.q_and_a {
    margin: 0 auto;
    border-bottom: 2px solid #D9C148;
}
#faq {
    padding-left: 4%px;
    padding-bottom: 5px;
    padding-top: 5px;
}
#faq .questions {
    font-style: italic;
    color: #736936;
    font-weight: bold;
}

#faq .answers {

}



footer {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #736936;
    color: white;
    font-size: 0.8em;
    text-align: center;
}




@media (min-width:700px){
#menulink {
    display: none;
    /*font-family: source-sans-pro;
    font-size: large;
    font-style: normal;
    font-weight: 200;*/
}
#navlinks {
    max-width: 1000px;
    position: static;
    background-color: transparent;
}
#navlinks.collapsed {
    opacity: 1;
}
#navlinks a {
    width: 20%;
    padding-top: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    float: left;
    color: #1E1E1E;
}
header {
    overflow: hidden;
}
#hero {
    position: relative;
}
main  {
    margin-top: 10px;
    margin-bottom: 10px;
    float: left;
}
footer {
    clear: left;
}
h2 {
    font-size: 2.em;
    font-size: 2em;
}

}
