* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Lato', sans-serif;  
}

body{
    background: rgb(255, 255, 255);
}
#view{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: block;
}
/* ---------- sections of the main layout -------------- */
/*
#slider-top{
  position: relative;  
  top: 10px;
}
*/
#nav{
    position: relative;
    top: 0;
    height: 80px;
    width: 100%;
    background-color: #09163F;
}
.one_col_row{
  position: relative;
  width: 100%; 
  padding: 20px;
  display: block;
  border: none;  
}
.three_col_row{
  position: relative;
  width: 100%; 
  height: auto; 
  text-align: center;
}
.three_col_row::after {
  content: "";
  clear: both;
  display: table;
}
.two_col_row{
  position: relative;
  width: 100%;
  padding: 20px;
  display: block;
  border: none;
}
#footer{
  position: relative;
  width: 100%;   
  text-align: center;
  height: auto;
}
#blocker{
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #09163F;
  opacity: 0.6;
}

/* ------------- header navigation bar --------------- */
#logo{
  font-size: 75px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  padding-top: 5px;
}
#logo img{
  width: 100px;
}

#menu{
  display: inline-block;
  vertical-align: middle;
  font-family: 'Lato', sans-serif;
  color: rgb(255, 255, 255);

}

#nav li{
    display: inline-block;
    margin: 0 8px;
    /* line-height: 70px; */
}
#nav a{
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 7px 10px;

}
#nav #menu a:hover{
    border: 1px solid rgb(255, 255, 255);
    transition: .5s;
    border-radius: 5px;
}
@media (max-width: 1024px){
    #nav ul{
         margin-right: 20px;
    }
    #nav a{
        font-size: 18px;
    }
}
#search{
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  padding: 5px;
  color: rgb(248, 248, 248);
  border-radius: 5px;
  cursor: pointer;
}
#search:hover{
  border: 1px solid rgb(255, 255, 255);
  border-radius: 5px;
}
#menu_list{
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  padding: 5px;
  color: rgb(248, 248, 248);
  border-radius: 5px;
  cursor: pointer;
  display: none;
}
#menu_list:hover{
  border: 1px solid rgb(255, 255, 255);
  border-radius: 5px;
}
#menu_issues{
  display: none;
}
@media (max-width: 909px){
    #search{
        display: none;
    }
    #menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #09163F;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all linear .5s;
    }
    #nav li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    #nav a{
        font-size: 20px;
    }
    #nav a.active, a:hover{
        border: none;
        color: rgb(226, 226, 226);
    }
    #menu_list{
      display: block;
    }
    #menu_issues{
      display: block;
    }
  }

/* ------------- end of header navigation bar --------------- */

/* ------------ footer ------------- */
.footerLinks {
   text-align: center;
}
.footerLinks ul {
  padding: 0;
    list-style-type: none;
    margin: 0;
}
.footerLinks li {
  display: inline;
}
.footerLinks a {
  color: #d9d9d9;
  text-decoration: none;
  font-size: 13px;
}
.copyright {
    text-align: center;
}

.copyright p {
  margin: 0;
  color: #b3b3b3;
  font-size: 11px;
}
/* ------------ end of footer  ------------- */
/* ------------- misc. styles --------------- */
div[id ^='error_']{
  color: #CC0000;
}
