



html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}
html {
    font-family: "Helvetica", sans-serif;
}
header {
    height: 116px;
    background-color: rgb(203,203,195);
    border-bottom: red 24px solid;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-column-gap: 10px;
}
header img {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 8px;
    float: left;
    padding-left: 35px;
}
header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
header ul li {
    margin-top: 30px;
    float: right;
    margin-right: 80px;
}
#phone{
    text-decoration: none;
    color: black;
    font-size: 30px;
    font-weight: bold;
    text-align: right;
    padding-top: 10%;
}

#phone a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
#mobile-phone {
    display: none;
}
#login {
    padding-left: 10%;
    padding-top: 10%;
}
/* Button used to open the contact form - fixed at the bottom of the page */
#login button {
    cursor: pointer;
    font-size: 20px;
    color: white;
    padding: 5px;
    background-color: red;
    border-color: black;
    border-radius: 10px;
}
/* The popup form - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 10px 0;
    border: none;
    background: #f1f1f1;
}
.form-container input[type=checkbox] {
    margin-bottom: 10px;
}
/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}
.form-container input[type=checkbox] {

}
/* Set a style for the submit/login button */
.form-container .btn {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}
#showcase a {
    color: white;
}
/***************************************/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    max-width: 1400px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

/* 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);
}

/* Caption text */
.text {
    color: white;
    font-size: 15px;
    padding: 8px 12px;
    width: 400px;
    position: absolute;
    left: 35%;
    bottom: 10px;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/******WHY*************/
#why {
    background-color: rgb(203,203,195);
    padding: 15px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 40% 40%;
    grid-column-gap: 40px;
    justify-content: center;
    text-align: center;
}
#why h2 {
    grid-column: 1 / span 2;
}
#why p {
   padding: 0 40px;
}
/******FEATURES********/
#features {
    padding: 15px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 25%);
    grid-column-gap: 10px;
    justify-content: center;
    text-align: center;
}
#features h2 {
    grid-column: 1 / span 3;
}
/******LOCATIONS****/
#loc-header {
    background-color: rgb(203,203,195);
    padding: 15px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 0;
}
#site {
    background-color: white;
    border: red 1px solid;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin-bottom: 8px;
    padding: 10px 0;
}
#marker-letter {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: white;
    padding: 8px;
    border-bottom-left-radius: 15px;
}
#site-pic {position: relative;}
#site-pic img {padding: 10px; width: 100%}
#site-desc {text-align: center}
#site-desc a {
    text-decoration: none;
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 8px;
}
#locations {
    background-color: rgb(203,203,195);
    padding: 15px;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 15px;
}
#map {
    height: 600px;
    width: 100%;
}
/******UNITS****/
#units {
    padding: 15px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 20%);
    grid-column-gap: 10px;
    justify-content: center;
    text-align: center;
}
#units h2 {
    grid-column: 1 / span 4;
}
/******AVAILABILITY*****/
#available {
    margin-bottom: 10px;
}
#availability {
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
}
#show_units {

}
#show_units table {
    width: 60%;
    border: 1px black solid;
    margin-left: 20%;
    margin-right: auto;
    border-collapse: collapse;
}
#show_units table thead tr{
    background-color: #ff0000;
    color: white;
}
#show_units table thead tr th {
    padding: 8px;
}
#show_units table td{
    border-bottom: 1px solid #ddd;
}
#show_units table tr:nth-child(even) {
    background-color: #f2f2f2;
}
#show_units table tbody tr:hover {
    background-color: #00ff92;
}
#available_submit {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    border-radius: 5%;
    cursor: pointer;
}

/******FOOTER***********/
footer {
    display: grid;
    grid-template-columns: repeat(2, 30%);
    justify-content: space-evenly;
    width: 100%;
    background-color: rgb(203,203,195);
}
#footer-phone {
    display: block;
}
#footer-mobile-phone {
    display: none;
}
#contact_form {
    background-color: gainsboro;
    padding: 4px 10px;
    border: 2px solid darkgray;
    border-radius: 8px;
}
#mybtn {
    margin-left: 70%;
    width: 30%;
    padding: 5px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: green;
    color: white;
}
#contact_form input[id=n], input[id=e] {
    width: 49%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
}
#contact_form textarea{
    width: 100%;
    height: 80px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}
#hours {
    display: grid;
    grid-template-columns: 40% 60%;
    padding-bottom: 20px;
}
#hours h3 {
    grid-column: 1 / span 2;
}
/******MEDIA***********/
@media screen and (min-width: 1601px) {
    header {
        height: 136px;
        border-bottom: red 20px solid;
    }
    header img {
        width: 900px;
        padding-left: 45px;
    }
}
@media screen and (max-width: 1600px) and (min-width: 1301px) {
    header {
        border-bottom: red 20px solid;
    }
    header img {
        width: 750px;
        padding-left: 45px;
    }
}
@media screen and (max-width: 1300px) and (min-width: 951px) {
    header {
        height: 90px;
        border-bottom: red 16px solid;
        grid-template-columns: 60% 20% 20%;
    }
    header img {
        width: 562px;
        padding-left: 25px;
    }
    #phone {
        font-size: 20px;
    }
    #login {
        padding-top: 20%;
    }
    #login button {
        font-size: 14px;
    }
    .text {
        font-size: 12px;
        left: 32%;
    }
}
@media screen and (max-width: 950px) and (min-width: 601px) {
    header {
        height: 62px;
        border-bottom: red 10px solid;
        grid-template-columns: 60% 20% 20%;
    }
    header img {
        width: 365px;
        padding-left: 4px;
    }
    #phone {
        font-size: 16px;
    }
    #login {
        padding-top: 20%;
    }
    #login button {
        font-size: 10px;
    }
    .text {
        font-size: 8px;
        left: 25%;
    }
    #sites {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-column-gap: 10px;
    }
    #site {
        grid-template-columns: 100%;
    }
    #locations {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
    #map {
        height: 400px;
    }
    #footer {
        font-size: 12px;
    }
}
@media screen and (max-width: 600px) and (min-width: 531px) {
    header {
        height: 48px;
        border-bottom: red 8px solid;
    }
    header img {
        width: 300px;
        padding-top: 4px;
        padding-left: 10px;
    }
    #phone { display: none}
    #mobile-phone a {
        text-decoration: none;
        color: black;
        font-weight: bold;
    }
    #mobile-phone {
        display: block;
        font-size: 16px;
        text-align: left;
        padding-top: 20%;
        padding-left: 20px;
    }
    #login {
        padding-top: 20%;
    }
    #login button {
        font-size: 10px;
    }
    .text {
        font-size: 8px;
        left: 15%;
    }
    #sites {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-column-gap: 10px;
    }
    #site {
        grid-template-columns: 100%;
    }
    #locations {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
    #map {
        height: 400px;
    }
    #footer {
        font-size: 10px;
    }
    #footer-phone {
         display: none;
     }
    #footer-mobile-phone {
        display: block;
    }
    #footer-mobile-phone a {
        text-decoration: none;
        color: black;
        cursor: pointer;
    }
}
@media screen and (max-width: 530px) {
    header {
        height: 70px;
        border-bottom: red 30px solid;
        grid-template-columns: 100%;
    }
    header img {
        width: 300px;
        padding-top: 4px;
        padding-left: 10px;
    }
    #phone { display: none}
    #mobile-phone a {
        text-decoration: none;
        color: black;
        font-weight: bold;
    }
    #mobile-phone {
        display: block;
        font-size: 12px;
        text-align: left;
        padding-top: 0;
        padding-left: 20px;
    }
    #login {
        display: none;
    }
    #showcase {
        display: none;
    }
    #why {
        font-size: 12px;
        grid-template-columns: 100%;
    }
    #why h2 {
        grid-column: 1/ span 1;
    }
    #features {
        font-size: 10px;
        grid-template-columns: repeat(2, 50%);
    }
    #features h2 {
        grid-column: 1 / span 2;
    }
    #site {
        grid-template-columns: 100%;
    }
    #locations {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
    #map {
        height: 400px;
    }
    footer {
        font-size: 14px;
        grid-template-columns: 100%;
        text-align: center;
        padding-bottom: 25px;
    }
    #footer-phone {
        display: none;
    }
    #footer-mobile-phone {
        display: block;
    }
    #footer-mobile-phone a {
        text-decoration: none;
        color: black;
        cursor: pointer;
    }
    #hours {
        grid-template-columns: 50% 50%;
    }
}
