@charset "UTF-8";

body {
    background-color: #c2cfd7;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: visible;
    background: #C2CFD7 url('/img/preloader-mountains.gif') no-repeat center center;
}

.banner_photo img {
    width: 100%;
    background-image: url(/img/lussier-hot-springs.jpg);
    height: auto;
    background-position: center;
}

#navlist {
    background-color: #115d7a;
    top: -60px;
    width: 100%;
    display: inline-block;
    transition: top 0.3s;
    font-family: "ubuntu";
    position: fixed;
    margin: 0 auto;
    clear: left;
    height: auto;
    z-index: 0;
    text-align: center;
}

#navlist a {
    display: inline-flex;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    overflow: hidden;
}

#navlist a:hover {
    background-color: #849eae;
    color: white;
}

.page-title {
    font-family: "ubuntu";
    font-size: 24px;
    color: white;
    text-align: center;
    position: relative;
    background-color: #115d7a;
    margin-top: -30px;

}

.content {
    display: block;
    font-family: "Oxygen";
    color: white;
    text-align: center;
    font-size: 120%;
}

::-moz-placeholder {
    color: #999;
}

form {
    max-width: 420px;
    margin: 30px auto;
}

.feedback-input {
    color: black;
    font-family: "Oxygen";
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: white;
    border: 2px solid #115d7a;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: 0;
}

.feedback-input:focus {
    border: 2px solid #ee923d;
}

textarea {
    height: 150px;
    line-height: 150%;
    resize: vertical;
}

.g-recaptcha {
    padding: 10px;
    height: auto;
    width: 420px;
    margin-bottom: 20px;
}

[type="submit"] {
    font-family: "Oxygen";
    width: 100%;
    background: #ee923d;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    color: white;
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s;
    margin-top: -4px;
    font-weight: 700;
}

[type="submit"]:hover {
    background: #fccc87;
}

#confirmationmessage {
    font-family: "ubuntu";
    font-size: 24px;
    color: white;
    text-align: center;
    position: relative;
}

.content-2 a {
    max-width: 420px;
    margin: 50px auto;
    display: block;
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 150%;
    font-family: "Oxygen";
}

.content-2 a:hover {
    color: #849EAE;
}

.back-button {
    font-size: 20px;
    text-align: left;
    display: block;
    position: relative;
    font-family: 'ubuntu', serif;
    padding-left: 15%;
    padding-bottom: 5%;
}

.back-button a {
    display: inline-block;
    padding: 5px 0;
    position: relative;
    background-clip: text;
    transition: all 0.3s ease-in-out;
    font-family: 'ubuntu', serif;
    text-decoration: none;
    color: white;
}

.back-button a:before {
    content: '';
    background: #849EAE;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.back-button a:hover {
    background-position: 0;
    text-decoration: none;
    color: #115D7A;
}

.back-button a:hover::before {
    width: 100%;
}

footer {
    font-family: "ubuntu";
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -100px;
    color: black;
}

footer a {
    font-family: "ubuntu";
    display: inline;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    text-decoration: none;
    color: black;
}

@media (max-width: 767px) {
    html, body {
        background-color: #c2cfd7;
          overflow-x: hidden;
    }

    #navlist {
        background-color: #115D7A;
        top: 0;
        width: 100%;
        display: inline-block;
        transition: top 0.3s;
        font-family: "ubuntu";
        position: fixed;
        margin: 0 auto;
        clear: left;
        height: auto;
        z-index: 1;
        text-align: center;
    }

    #navlist a {
        display: inline-flex;
        color: white;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
        font-size: 15px;
        overflow: hidden;
    }

    #navlist a:hover {
        background-color: #849EAE;
        color: white;
    }

    .page-title {
        font-family: "ubuntu";
        font-size: 24px;
        color: white;
        text-align: center;
        position: relative;
        background-color: #115d7a;
        margin-top: -4%;
        z-index: 0;
    }

    .content {
        font-size: 100%;
    }

    form {
        max-width: 100%;
        margin: 30px auto;
    }

    .feedback-input {
        font-size: 16px;
        padding: 10px;
        margin-bottom: 10px;
    }

    textarea {
        height: 150px;
        line-height: 120%;
    }

    [type="submit"] {
        font-size: 36px;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: -2px;
    }

    .content-2 a {
        font-size: 120%;
        margin: 30px auto;
    }

    .back-button {
        padding-left: 10%;
    }

    footer {
        margin-bottom: 0;
    }
}