body,
html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

 :root {
    --darkTeal: #05666B;
    --sand: #EEBB69;
    --blue: #0000FF;
    --lightTeal: #65B8BF;
}

@font-face {
    font-family: chocolateFont;
    src: url(/fonts/Painting_With_Chocolate.ttf);
}

.navbar {
    /* background: url(/assets/images/desktopNav.svg); */
    /* height: 320px; */
    /* z-index: 20; */
    background-repeat: no-repeat;
    /* background-size: cover; */
    align-items: unset;
    position: fixed;
    width: 100%;
}

.hero {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#heroSection:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#heroSection {
    background: url(/assets/images/heroClock.png) top center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    /* background-attachment: fixed; PARALLAX*/
}

#heroSectionAbout {
    background: url(/assets/images/tide-picture.png) top center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    /* background-attachment: fixed; PARALLAX*/
}

.heroButtons {
    width: 100%;
    padding: 2%;
}

.navbar-toggler {
    height: 40px;
}

#navbarNavAltMarkup {
    align-items: unset;
}

.navbar-nav {
    margin-right: 0px;
}

.nav-item {
    height: 50px;
}

body>header>nav>a>img {
    padding-left: 40px;
    padding-top: 20px;
    height: 10vw;
}

#navbarNavAltMarkup {
    padding: 20px;
}

#navbarNavAltMarkup a {
    padding: 0 14px;
}

h4,
.bi,
h6 {
    color: white;
    font-weight: bold;
}

h4:hover,
.bi:hover,
h6:hover {
    color: var(--darkTeal);
    cursor: pointer;
}

h5 {
    font-weight: bold;
}

.bi {
    padding: 0 10px;
}

path:hover {
    fill: var(--darkTeal);
}

.footer {
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: var(--lightTeal);
}

section {
    padding: 80px 80px;
}

.btn-outline-primary {
    color: var(--darkTeal);
    border-color: var(--lightTeal);
    border-radius: 27px;
    background-color: rgba(255, 255, 255, 0.77);
    padding: 2% 20%;
}

.btn-outline-primary:hover {
    background: var(--darkTeal);
    border-color: var(--darkTeal);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1);
}

/* @media (min-width:1690px) {
    .navbar {
        height: 48%;
    }
} */

@media (min-width:0px) and (max-width:991px) {
    #navbarNavAltMarkup>div>div>a:nth-child(1) {
        display: none;
    }
    #navbarNavAltMarkup>div>div>a:nth-child(2) {
        display: none;
    }
    #navbarNavAltMarkup>div>div>a:nth-child(3) {
        display: none;
    }
    #navbarNavAltMarkup {
        width: unset;
    }
    #navbarNavAltMarkup .row {
        flex-wrap: nowrap;
    }
    body>header>nav>a>img {
        height: 14vw;
    }
    .navbar {
        height: 200px;
    }
}

@media (min-width:0px) and (max-width:578px) {
    body>header>nav>a>img {
        height: 20vw;
    }
    #navbarNavAltMarkup a {
        padding: 0px 0px;
    }
}

@media (min-width:0px) and (max-width:399px) {
    #navbarNavAltMarkup .row {
        flex-wrap: nowrap;
        top: 10%;
    }
    #navbarNavAltMarkup {
        flex-wrap: nowrap;
        top: 52%;
    }
    body>header>nav>a>img {
        height: 20vw;
    }
    #navbarNavAltMarkup {
        left: 35%;
    }
}

#navbarNavAltMarkup {
    position: absolute;
    right: 0;
}

.borderLine {
    color: black;
    border-bottom: 100px;
}

hr {
    height: 25px;
    margin: 0px;
    border: 0px;
    background: var(--lightTeal);
}

h1 {
    font-family: chocolateFont;
    color: var(--darkTeal);
}

#aboutText h1 {
    text-align: center;
    margin: 40px 0px;
}


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


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}