@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,700);

body {
  margin-top: 65px;
  color: rgb(78, 90, 104); /* #4E5A68 */
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* fonts */
@media screen and (min-width: 768px){
  .fs1 {
    font-size: 56px;
    line-height: 60px
  }
  .fs2 {
    font-size: 32px;
    line-height: 35px
  }
  .fs3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 768px){
  .fs1 {
    font-size: 32px;
    line-height: 32px
  }
  .fs2 {
    font-size: 24px;
    line-height: 24px
  }
  .fs3 {
    font-size: 18px;
  }
}
.grey-caps {
  color: rgb(155, 149, 140);
  text-transform: uppercase;
}
.bold {
  font-weight: 700;
}
.blue-font {
  color: rgb(1, 84, 116);
}
.red-font {
  color: rgb(198, 73, 54);
}

/* section spacing */
.x-pad {
  margin-top: 30px;
  margin-bottom: 30px;
  /*border: 1px solid black;*/
}

/* header */
.navbar .nav {
  font-weight: 700;
  letter-spacing: 0.085em;
}
.navbar-nav > li > a {
  padding-bottom: 10px; /* bottom of menu items */
  line-height: 20px;
}
.navbar-default li > a > span {
  border-bottom: 2px solid transparent;
}
.navbar-default li > a:hover > span {
  border-bottom-color: #9b958c;
  transition: border linear;
}
.navbar-brand {
  float: left;
  padding: 0px;
}
@media screen and (min-width: 768px){
  .topbar {
    padding-bottom: 0px;
  }
  .navbar-nav > li > a {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 10px; /* bottom of menu items */
  }
  .topbar-tab {
    font-weight: 400;
    letter-spacing: 0.085em;
    background-color: #c64936;
    border: 1px solid #c64936;
    border-radius: 15px 15px 0px 0px;
    margin-top: 23px !important;
    padding-top: 10px !important;
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .topbar-tab:hover {
    background-color: #c64936 !important;
  }
  .topbar-tab > span {
    color: white;
  }
  .topbar-tab:hover > span {
    color: #9b958c;
  }
}

/* top bar logo hijinx */
.navbar-brand > img {
  padding: 0px;
}
@media screen and (min-width: 991px){
  .navbar-brand > img {
    margin-top: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-brand > img {
    width: 250px;
    margin-top: 25px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px){
  .navbar-brand > img {
    width: 175px;
    margin-top: 25px;
    margin-left: 15px;
  }
}

/* sidebar */
.nav.x-sidebar > li > a {
  padding: 2px 8px;
}

/* front page links */
.fplink a {
  color: rgb(155, 149, 140);
}
.fplink a:hover {
  color: #8a3326;
  text-decoration: none;
}

.page {
  /* page container for sticky footer */
  box-sizing: border-box;
  position: relative;
  min-height: calc(100vh - 65px); /* 100vh - body:margin-top */ 
  padding-bottom: 40px;           /* match to .footer:height */
}
.footer {
  height: 40px; /* match to .page:padding-bottom */
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;

  display: table;

  font-size: 80%;
  letter-spacing: 0.085em;
  background-color: #005473 !important;
  color: rgb(198, 73, 54);
}
.footer-content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.footer a {
  color: white;
}
.footer a:hover {
  color: #9b958c;
}

/* fix for slick carousel's "flash of unstyled content" */
.carousel-splash > div {
  display: none;
}
.carousel-splash > div:first-child {
  display: block;
}
.carousel-splash.slick-initialized > div {
  display: block;
}

/* collapsable lists start out collapsed */
.x-collapse {
  display: none;
}
