html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    
}

#landing-page{
    background-image: url(../images/globe-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    background-color: rgba(11, 53, 89, 1);
    
}

.banner {
    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: rgba(11, 53, 89, 1);
    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: 3em;
    width: 60%;
}

.hero-content {
    margin-left: 10%;
}

.hero-content button {
    border: none;
    border-radius: 12px;
    outline: none;
    padding: 8px 10px;
    background-color: rgba(11, 53, 89, 1);
    margin: 6px;
    color: white;
    font-size: 16pt;
}

.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;
    margin-right: 40%;
}

.hero-content button a {
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.page-content {
    margin-left: 12%;
    margin-right: 12%;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.page-content img {
    width: 90%;
    justify-content: center;
    margin-top: 26px;
    /* margin: 20px 40px; */
}

.text-content {
    float: left;
    font-size: 16pt;
}

.page-content h3 {
    font-size: 20pt;
    color: rgba(11, 53, 89, 1);
    font-family:  'Times New Roman', Times, serif;
}

.page-content p {
    font-size: 16pt;
    margin-right: 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: 15% 25%;
    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: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%;
    margin-right: 12%;
    font-size: 16pt;
    margin-bottom: 10px;
}


.grid-parent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-left: 12%;
    margin-right: 12%;
}

.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 dropdown stuff */
.nav-bar {
    overflow: hidden;
    background-color: rgba(11, 53, 89, 1);
    padding-top: 20px;
    height: 53px;
}

#menuLinks {
    float: right;
    height: 53px;
}

.nav-bar a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16pt;
}

.nav-bar a.icon{
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}


.dropdown .drop-button {
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.drop-button a {
    padding: 0px;
}

#mobileServicesButton {
    display: none;
}

.nav-bar a:hover, .dropdown:hover .drop-button {
    background-color: white;
    color: rgba(11, 53, 89, 1);
}

.drop-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.drop-content a {
    float: none;
    color: rgba(11, 53, 89, 1);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.drop-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .drop-content{
    display: block;
}

.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;
    margin-right: 12%;
    width: 76%;
    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;
    margin-right: 12%;
    width: 76%;
    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%;
}

footer {
    background-color: rgba(11, 53, 89, 1);
    color: white;
    font-size: 8pt;
    position:absolute;
    bottom:0;
    width:100%;
}

footer p{
    margin-left: 1em;
    text-align: center;
}