﻿/* Style sheet for mobile sites */
/* Font size is determine by rem value that is poportional to the font size */
/* in the body */
body {
    background-color: #0A2F40;
    margin: 5px;
    padding: 0;
    font-family: Calibri;
}
html {
	font-family: Calibri;
	font-size: 1.00rem;
}	
	
p {
    font-family: Calibri;
    color: white;
    font-size: 1.00rem;
}
a {
    font-family: Calibri;
    color: white;
    font-size: 1.00rem;
}

a.link {
        text-decoration: none;
}

a.visited {
        text-decoration: none;
}

a.hover {
        text-decoration: underline;
}

a.visited {
        text-decoration: underline;
}
video {
    width: 694px;
    height: 390px;
}
.video_poster {
    width: 694px;
    height: 390px;
    background-size: 694px 390px;
}
h1 {
    font-family: Calibri;
    color: goldenrod;
    font-size: 1.50rem;
}

h2 {
    font-family: Calibri;
    color: lightblue;
    font-size: 1.00rem;
}

h3{
    font-family: Calibri;
    color: white;
    font-size:1.00rem;
}
h4 {
    font-family: Calibri;
    color: white;
    font-size: 1.0rem;
}

td{
    width: 25%;
}

table {
    width: 100%; 
    padding-left: 5px;
}
/* used for ADA skip link*/
.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip:focus {
        position: static;
        width: auto;
        height: auto;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

    /* Hide the links inside the navigation menu (except for logo/home) */
    .topnav #myLinks {
        display: none;
    }

    /* Style navigation menu links */
    .topnav a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 1.6rem;
        display: block;
    }

        /* Style the hamburger menu */
        .topnav a.icon {
            background: blue;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
        }

        /* Add a grey background color on mouse-over */
        .topnav a:hover {
            background-color: blue;
            color: white;
        }

/* Style the active link (or home/logo) */
.active {
    background-color: blue;
    color: white;
}
/* Style the navigation menu */
.navbar2 {
    width: 100%;
    background-color: #0505fe;
    overflow: auto;
}

    /* Navigation links */
    .navbar2 a {
        float: left;
        color: white;
        text-decoration: none;
        font-size: 1.6rem;
        padding: 12px;
        width: 25%; /* Seven equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
        text-align: center; /* If you want the text to be centered */
    }

        /* Add a background color on mouse-over */
        .navbar2 a:hover {
            background-color: #000;
        }

        /* Style the current/active link */
        .navbar2 a.active {
            background-color: #4CAF50;
        }

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 800px) {
    .navbar2 a {
        float: none;
        display: block;
        width: 100%;
        text-align: left; /* If you want the text to be left-aligned on small screens */
    }
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #074F6A;
}

li {
    float: left;
}

    li a, .dropbtn {
        display: inline-block;
        color: white;
        background-color: #074F6A;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        li a:hover, .dropdown:hover .dropbtn {
            background-color: black;
        }

    li.dropdown {
        display: inline-block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        background-color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            color: white;
            background-color: blue;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

#icon-nav {
    width: 200px;
    height: 300px;
	display: flex;
    flex-wrap: wrap;
}

#icon-nav div { 
    position: relative;
    text-align: center;
}

.icon-text {
    position: absolute;
    top: 75%;
    left: 45%;
    transform: translate(-75%, -45%);
}

#siteVideo{
    position: relative;
    width: 100%;
    height: 50px;
    object-fit: cover;
    z-index: -100;
}

#page-icons {
    float: left;
    width: 100px;
    text-align: center;
    padding-left: 10px;
}


.container{
    display: flex;
}

.column1 {
    float: left;
    width: 20%;
    padding: 10px;
}

.column2 {
    float: left;
    width: 50%;
}