

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    margin-bottom: 4em;
}

#landing-page{
    background-image: url(../images/globe.jpg);
    color: white;
    background-size: cover;
    background-attachment: scroll;
    background-position-x: right;
}

.banner {
    display: none;
    float: left;
    background-color: white;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
}

.banner img {
    height: 35px;
    width: 35px;
    float: left;
}

.banner h1 {
    font-family: 'Times New Roman', Times, serif; 
    font-size: 16pt;
    color: white;
    float: left;
    margin: 5px;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    color: rgba(11, 53, 89, 1);
    font-size: 24pt;
    margin-left: 12%;
}

/* main page grid frame */

.hero-image img{
    margin-top: 10%;
    width: 100%;

}

.hero-content {
    margin: 10%;
    padding: 2%;
    background-color: rgba(11, 53, 89, 1);
    
}

.hero-section {
    height: 100%;
}

.hero-content button {
    border: none;
    border-radius: 12px;
    outline: none;
    padding: 8px 10px;
    background-color: white;
    margin-left: 7%;
    margin-right: 5%;
    margin-bottom: 10px;
    color: rgba(11, 53, 89, 1);
    font-size: 16pt;
    width: 86%;
}


.hero-content button:hover {
    border: 2px solid rgba(11, 53, 89, 1);
    background-color: #ddd;
    color: rgba(11, 53, 89, 1);
    margin: 4px;

}

.hero-content p {
    font-size: 16pt;
    
}

.hero-content button a {
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.page-content {
    margin-left: 8%;
    margin-right: 8%;
    
}

.page-content img {
    width: 84%;
    justify-content: center;
    margin-left: 8%;
    /* margin: 20px 40px; */
}

.text-content {
    float: left;
}

.page-content h3 {
    font-size: 20pt;
    color: rgba(11, 53, 89, 1);
    margin-left: 20px;
    font-family: 'Times New Roman', Times, serif;
    
}

.page-content p {
    font-size: 16pt;
    margin-left: 20px;
    
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* hidden by default we change with scripts */
}
/* popup animation */
.popup {
    margin: 5% 10%;
    animation: fadeIn 0.5s;
    background-color: rgba(11, 53, 89, 1);
    padding: 40px;
    border-radius: 25px;
}

.popup p{
    color: white;
    font-size: 20pt;
    margin-bottom: 20px;
}

.popup label {
    color: white;
    font-size: 16pt;
}

.popup input{
    border: none;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-size: 16pt;
}

.popup input[type=text]{
    width: 11em;
}

.popup input[type=email]{
    width: 11em;
}

.popup input:focus-within {
    background-color: #ddd;
}

.popup input:hover{
    background-color: #ddd;
}

.popup-button {
    border: none;
    border-radius: 12px;
    outline: none;
    padding: 8px 10px;
    background-color: white;
    margin: 6px;
    color: rgba(11, 53, 89, 1);
    font-size: 16pt;
    cursor: pointer;
}

.popup-button:hover {
    background-color: #ddd;
}

.close {
    font-size: 32pt;
    float: right;
    cursor: pointer;
    color: white;
    padding-right: 10px;
    margin-left: 10px;
}

.close:hover {
    color: #ddd;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-content {
    margin-left: 12%;
    width: 76%;
    font-size: 16pt;
}

.grid-parent {
    margin-left: 8%;
    width: 84%;
}

.grid-child {
    background-color: rgba(11, 53, 89, 1);
    color: white;
    padding: 5px;
    margin: 5px;
}

.grid-child a{
    text-decoration: none;
    color: white;
}

.grid-child h3 {
    margin-left: 5%;
}

.grid-child ul{
    list-style-image: url(../images/bullet.png);
}



/* nav bar hamburger menu stuff */
.nav-bar {
    /* overflow: hidden; */
    background-color: rgba(11, 53, 89, 1);
    position: relative;
    height: 53px;
    z-index: 10;
}

.dropdown .drop-button {
    /* border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0; */
    display: none;
}

.nav-bar #menuLinks {
    display: none;
    background-color: rgb(5, 35, 61);
}

#menuLinks a{
    display: block;
    background-color: rgba(5, 35, 61, 1);
}

.nav-bar a {
    color: white;
    background-color: rgba(11, 53, 89, 1);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16pt;
    display: block;
}

.nav-bar a.icon {
    background-color: rgba(5, 35, 61, 1);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: white;
}

.nav-bar a:hover{
    background-color: #ddd;
    color: rgba(11, 53, 89, 1);
}

.drop-content {
    display: none;
}

/* login popup */
.submit-button {
    border: none;
    border-radius: 12px;
    outline: none;
    padding: 10px 12px;
    background-color: white;
    margin: 6px;
    color: rgba(11, 53, 89, 1);
}

.contactForm input {
    background-color: white;
    width: 70%;
    margin-left: 12%;
    font-size: 16pt;
    padding: 16px 16px;
    border-radius: 10px;
    border-color: rgba(11, 53, 89, 1);
    margin-bottom: 20px;
}

.contactForm textarea {
    background-color: white;
    width: 70%;
    margin-left: 12%;
    font-size: 16pt;
    padding: 16px 16px;
    border-radius: 10px;
    border-color: rgba(11, 53, 89, 1);
    margin-bottom: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.contactForm input:focus-within{
    background-color: #ddd;
}

.contactForm textarea:focus-within{
    background-color: #ddd;
}

.contactForm button {
    border: none;
    border-radius: 12px;
    outline: none;
    padding: 8px 10px;
    background-color: rgba(11, 53, 89, 1);
    margin-left: 12%;
    color: white;
    font-size: 16pt;
}

.contactForm button:hover {
    border: 2px solid rgba(11, 53, 89, 1);
    background-color: #ddd;
    color: rgba(11, 53, 89, 1);
    margin-left: 12%;
}

#loginPrompt {
    margin-left: 12%;
    margin-right: 12%;
    font-size: 16pt;
}

footer {
    background-color: rgba(11, 53, 89, 1);
    color: white;
    font-size: 8pt;
    position: fixed;
    bottom:0;
    width: 100%;
    
}

footer p{
    text-align: center;
}