/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    color: #333;
    text-decoration: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height:100%;
	color:#2a2a2a;
	background:#f2f2f2;
}

img {
    vertical-align: middle;
}

h1 {
    color: #0D3246;
    margin: 40px 0 40px 10px;
    text-align: center;
}

h3 {
    border-bottom:1px solid rgb(190, 200, 207);
    color: #30A7E6;
    font-size:24px;
    font-weight:bold;
    margin:0 10px;
}

#topBar {
    background-color: #0A3249;
    height:60px;
}

#linkContainer {
    z-index:10;
    float:right;
}

#linkContainer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#clientLogo {
    color: #fff;
    float:left;
    line-height: 60px;
    margin-left: 50px;
}

#linkContainer li {
    float: left;
    line-height: 60px;
    margin-right: 50px;
    text-align:center;
    width:100px;
}

#linkContainer a {
    color: #fff;
    cursor:pointer;
    transition: all .2s ease-in-out;
}

#linkContainer a:hover {
    font-size:16px;
    font-weight:bold;
}

#mainContainer {
    margin-left:auto;
    margin-right:auto;
    max-width:1240px;
    width:75%;
}

#selectState {
    color: #0D3246;
    font-size:24px;
    margin: 0 0 30px 10px;
}

.breadcrumb, .breadcrumb a {
    color: #0D3246;
}

.itemList {
    border:2px solid #30A7E6;
    color:#30A7E6;
    cursor:pointer;
    display:inline-block;
    margin:10px;
    padding:10px;
    text-align:center;
    transition: background-color 0.3s ease-in,
                color 0.3s ease-in,
                width .1s linear;
    width:calc(25% - 47px);
}
.itemList:hover {
    background:#30A7E6;
    color:#fff;
}

#hamburgerMenu {
    display:none;
    cursor:pointer;
    padding: 10px 30px;
    float: right;
  }

.hamburger {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
}

@media (min-width:1075px) and (max-width:1373px) { 
    .itemList {
       width:calc(33% - 46px);
    }
}

@media (min-width:633px) and (max-width:1074px) { 
    #clientLogo, #linkContainer {
        display:none;
    }
    .itemList {
        width:calc(50% - 46px);
     }
}

@media (max-width:1074px) {
        
    #topBar {
      display:flex;
      /*height:auto;*/
      justify-content: flex-end;
    }

    #hamburgerMenu {
      display: block;
    }

    #linkContainer {
      display: none;
      position: absolute;
      left:0;
      top: 60px;
      width:100%;
    }

    #linkContainer li {
      background-color: #00A9EC;
      float:none;
      height: 60px;
      width:100%
    }
  }

@media (max-width:632px) {
    #clientLogo, #linkContainer {
        display:none;
    }
    .itemList {
        width:calc(100% - 44px);
     }
}
