.navigation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Global font override to Georgia */
html,
body,
body * {
	font-family: Georgia, "Times New Roman", Times, serif !important;
}

.firstContainer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0)),
    url('../IMAGE/BACKGROUND/background1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1s ease;
}

.topNav {
    width: 100%;
    height: 5vh;
    display: flex;
}

.bottomNav {
    flex: 1;
}

.contactTopNav {
    width: fit-content;
}

.locationLoginTopNav {
    flex: 1;
}

.loginText,
.signupText {
    cursor: pointer;
    color: white;
}

.loginText:hover,
.signupText:hover {
    color: orange;
}

.contactTopNav i {
    color: white;
}

.contactTopNav i:hover {
    color: orange;
    cursor: pointer;
}

.logoDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100%;
}

.navMenu {
    display: flex;
    flex: 1;
}

.navMenu a {
    text-decoration: none;
    color: white;
	/* inherit global Georgia font */
    font-size: 14px;
    text-shadow: 0.25px 0.25px black;
}

.navMenu a:hover {
    color: orange;
}

.footerSection {
    padding: 5vh 10% 5vh 10%;
}

.custom-shape-divider-top-1729586767 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1729586767 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.custom-shape-divider-top-1729586767 .shape-fill {
    fill: #FFFFFF;
}

.footerContainer {
    display: flex;
    flex-direction: row;
}

.emailSection {
    display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .logoDiv {
        width: 100%;
        height: 150px;
    }

    .logoDiv img {
        height: 100%;
        width: auto;
    }

    .navMenu {
        display: none;
    }

    .contactNumberTop {
        display: none;
    }

    .custom-shape-divider-top-1729586767 svg {
        width: calc(100% + 1.3px);
        height: 44px;
    }

    .footerContainer {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .logoDiv {
        width: 100%;
        height: 150px;
    }

    .logoDiv img {
        height: 100%;
        width: auto;
    }

    .navMenu {
        display: none;
    }

    .contactNumberTop {
        display: none;
    }

    .custom-shape-divider-top-1729586767 svg {
        width: calc(100% + 1.3px);
        height: 30px;
    }

    .footerContainer {
        flex-direction: column;
    }
}