/* Globals */
html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Titillium Web';
}

.font-white{
    color: white;
}

.font-grey{
    color: rgb(190, 190, 190);
}

.bg-teal{
    background-color: #00AFAC;
}

.bg-black{
    background-color: black;
}

.bg-bne{
    background-image: url("../Images/landingBackground.JPG");
    background-repeat: no-repeat;
    background-size: cover;
}

.text-center{
    text-align: center;
}

/* Landing page */

.landing__container{
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-rows: 75% 25%;
}

.landing__container--top{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 20% 65% 20%;
    overflow: hidden;
    align-items: center;
}

.landing__container--bottom{
    height: 100%;
    margin-left: 5%;
    width: 55%;
    margin-right: 40%;
    z-index: 110;   
    overflow: hidden;
    display: grid;
    align-items: center;
}

.landing__container--bottom img{
    width: 10rem;
    text-align: center;
}

#landing--waveSVG{
    filter: drop-shadow(0 -4px 3px rgba(50, 50, 50, 0.75));
}

.landing--placeWave{
    height: 41vh;
    width: 100%;
    z-index: 100;
    top: 60vh;
    position: absolute;
    overflow: hidden;
}

#landing--btn{
    animation: arrowDown 2.25s infinite;
    -webkit-animation: arrowDown 2.25s infinite;
    position: relative;
    font-size: 2rem;
}

#landing--btn a{
    color: #00AFAC;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

#landing--btn a:hover{
    color: rgb(143, 229, 228);
    text-decoration: none;
}

#landing--btn a:active{
    color: rgb(143, 229, 228);
    text-decoration: none;
}

#landing--btn a:visited{
    color: rgb(20, 117, 116);
    text-decoration: none;
}

.landing--top__links{
    color: rgb(190, 190, 190);
    text-decoration: none;
}

.landing--top__links:hover{
    color: white;
    text-decoration: none;
}

@keyframes arrowDown{
    0% , 20%, 50%, 80%, 100% {top: 0%; bottom: 0%}
    40% {top: 1%;}
    60% {top: 2%;}
}

@-webkit-keyframes arrowDown{
    0% , 20%, 50%, 80%, 100% {top: 0%; bottom: 0%}
    40% {top: 1%;}
    60% {top: 2%;}
}

/* Navigation additional elements */

#navLogo{
    width: 50px;
    height: 50px;
    margin-right: .5rem;
}

#navigationGroup{
    z-index: 110;
}

@media only screen and (max-width: 376px){
    #navName{
        font-size: 0.75rem;
    }
}

@media (min-height: 100vh){
    #navigationGroup{
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
}

.navbar__info{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

/* Headings */

.formHeading--container{
    padding-top: 5rem;
    padding-bottom: 4rem;
    color: black;
}

.form--spacer{
    width: 100%;
    height: 1rem;
}

.information--heading{
    padding-top: 4rem;
}

/* Form page styling */

.whiteBgLink{
    color: #00AFAC;
    text-decoration: none;
}

.whiteBgLink:hover{
    color: rgb(0, 120, 120);
    text-decoration: underline;
}

#formContainer{
    padding-bottom: 4rem;
}

/* Footer */

.footer--container{
    padding: 20px;
    overflow:hidden;
    font-size: 0.75rem;
    text-align: center;
    background-color: #00AFAC;
}

.footer--logo{
    height: 3rem;
}

.footer__links{
    color: white;
    text-decoration: none;
}

.footer__links:hover{
    color:rgb(143, 229, 228);
    text-decoration: none;
}

.footer__links:active{
    color:rgb(143, 229, 228);
    text-decoration: none;
}

.footer__links:visited{
    color: rgb(20, 117, 116);
    text-decoration: none;
}

/* Title banner for info pages */

.titlePanel--container{
    height: 35vh;
    display: grid;
    align-items: center;
}

.information--list{
    max-width: 1176px;
    margin: 0 auto;
    min-height: 57.5vh;
    display: grid;
    align-items: center;
}

.information--results{
    max-width: 1176px;
    margin: 0 auto;
    min-height: 57.5vh;
    display: grid;
    align-items: center;
    padding: 5vh 0;
}
.information--results__row{
    display: grid;
    margin: 0 auto;
    width: 300px;
    grid-template-columns: 50% 50%;
}

.information--shadow{
    -webkit-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.75);
    box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.75);
}

/* Message Response */
.emailSuccess{
    padding: 10px;
    width: 100%;
    text-align: center;
    background-color: rgb(115, 225, 115);
}

.emailError{
    padding: 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background-color: rgb(230, 95, 95);
}

/* Loader */

#loading__container{
    display: none;
    background-color: #f3f3f3;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 5000;
    top: 0;
    left: 0;
    align-content: center;
}

#loader {
    position: relative;
    left: 50%;
    width: 120px;
    height: 120px;
    z-index: 5000;
    margin: -60px 0 0 -60px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #00AFAC;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

#loading__p{
    padding-top: 15px;
    text-align: center;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}