@import url(../../vendor/normalize.css);
@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700");
@import "https://use.fontawesome.com/releases/v5.6.3/css/all.css";
body {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  height: 100vh;
  min-height: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Titillium Web", sans-serif; }

strong {
  font-weight: 600; }

img {
  max-width: 100%; }

figure {
  margin: 60px 0; }
  figure .caption {
    padding: 10px;
    opacity: 0.7;
    font-size: 0.9em; }

.align-center {
  text-align: center; }

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }

.btn {
  position: relative;
  border: none;
  line-height: 30px;
  height: 30px;
  padding: 0 15px;
  background: transparent;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  cursor: pointer; }
  .btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #444;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg); }
  .btn:hover::after {
    background-color: #666; }
  .btn:active {
    color: rgba(255, 255, 255, 0.7); }
    .btn:active::after {
      background-color: #222; }
  .btn:focus {
    outline: none; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 10px; }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

#navbar {
  background-color: #fff;
  font-family: "Titillium Web", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  line-height: 60px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 1.1em; }
  #navbar::before {
    content: "";
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, from(#163c99), to(#3973d6));
    background: -webkit-linear-gradient(left, #163c99 0%, #3973d6 100%);
    background: -o-linear-gradient(left, #163c99 0%, #3973d6 100%);
    background: linear-gradient(to right, #163c99 0%, #3973d6 100%); }
  #navbar a {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none; }
  #navbar > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
    #navbar > .container .brand {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 60px;
      text-transform: uppercase;
      font-weight: 700; }
      #navbar > .container .brand img {
        margin-right: 10px; }
    #navbar > .container #nav-open-button, #navbar > .container #nav-close-button {
      display: none; }
    #navbar > .container #site-menu ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none; }
      #navbar > .container #site-menu ul li {
        font-weight: 600;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 5px; }
        #navbar > .container #site-menu ul li a {
          display: block;
          padding: 0 10px;
          opacity: 0.8;
          line-height: 30px;
          border-radius: 4px;
          -webkit-transition: all .27s ease-out;
          -o-transition: all .27s ease-out;
          transition: all .27s ease-out; }
      #navbar > .container #site-menu ul li:hover a {
        opacity: 1;
        background: rgba(0, 0, 0, 0.07); }
      #navbar > .container #site-menu ul li:active a {
        opacity: 0.8;
        background: rgba(0, 0, 0, 0.12); }
      #navbar > .container #site-menu ul li.active {
        font-weight: 700; }
        #navbar > .container #site-menu ul li.active a {
          background: rgba(0, 0, 0, 0.1);
          opacity: 1; }

#navbar.blend {
  -webkit-box-shadow: none;
  box-shadow: none; }
  #navbar.blend > .container {
    border-bottom: none; }

footer#site-footer {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  text-align: right;
  margin: 30px 0 0;
  padding: 15px 0;
  -webkit-box-shadow: inset 0 -10px 0 #eee;
  box-shadow: inset 0 -10px 0 #eee; }
  footer#site-footer > .container {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400; }
    footer#site-footer > .container h4 {
      font-weight: 600;
      margin: 0 0 10px;
      padding: 0;
      font-size: 1em; }
    footer#site-footer > .container address {
      opacity: 0.6;
      font-style: normal;
      font-size: 0.9em; }

.page {
  padding-top: 60px;
  min-height: 100vh; }
  .page > header {
    padding: 40px 0 20px;
    text-align: center;
    background: #163C99;
    color: #fff;
    margin-bottom: 30px;
    background: -webkit-gradient(linear, left top, right top, from(#163c99), to(#3973d6));
    background: -webkit-linear-gradient(left, #163c99 0%, #3973d6 100%);
    background: -o-linear-gradient(left, #163c99 0%, #3973d6 100%);
    background: linear-gradient(to right, #163c99 0%, #3973d6 100%); }
    .page > header h1 {
      position: relative;
      font-size: 2.7em;
      font-weight: 200;
      padding: 10px 0 30px;
      background: transparent url(../img/title-border-skew.png) no-repeat center bottom;
      background-size: 50px 15px; }

#page-home {
  height: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  #page-home #home-slider {
    margin: 2.5vh 0;
    position: relative;
    height: 50vh;
    overflow: hidden;
    border-radius: 14px; }
    #page-home #home-slider button.slide-prev, #page-home #home-slider button.slide-next {
      position: absolute;
      top: 50%;
      left: 20px;
      margin-top: -20px;
      z-index: 999;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 2px solid #fff;
      border-radius: 50%;
      cursor: pointer;
      color: #fff;
      font-size: 1.4em; }
      #page-home #home-slider button.slide-prev:focus, #page-home #home-slider button.slide-next:focus {
        outline: none; }
      #page-home #home-slider button.slide-prev:hover, #page-home #home-slider button.slide-next:hover {
        background: rgba(255, 255, 255, 0.2); }
      #page-home #home-slider button.slide-prev:active, #page-home #home-slider button.slide-next:active {
        background: rgba(255, 255, 255, 0.4); }
    #page-home #home-slider button.slide-next {
      right: 20px;
      left: auto; }
    #page-home #home-slider ul.slides {
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none;
      height: 100%; }
      #page-home #home-slider ul.slides li.slide {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-size: cover;
        -webkit-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
        z-index: 0;
        opacity: 0;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05); }
        #page-home #home-slider ul.slides li.slide .text {
          height: 100%;
          color: #fff;
          text-align: center;
          font-family: "Titillium Web", sans-serif;
          background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
          background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
          background: -o-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
          background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); }
          #page-home #home-slider ul.slides li.slide .text > .container {
            padding-top: 25px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
          #page-home #home-slider ul.slides li.slide .text h2 {
            margin: 0 0 20px;
            font-size: 2em;
            font-weight: 600;
            text-transform: uppercase; }
            #page-home #home-slider ul.slides li.slide .text h2 a {
              color: #fff;
              text-decoration: none; }
          #page-home #home-slider ul.slides li.slide .text p.description {
            margin: 0;
            font-size: 1.4em;
            width: 50%;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9); }
      #page-home #home-slider ul.slides li.slide.active {
        display: block;
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 999; }
  #page-home #home-content #quicklinks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #page-home #home-content #quicklinks li {
      font-family: "Titillium Web", sans-serif;
      font-size: 1.4em;
      font-weight: 600;
      text-transform: uppercase;
      width: 24%;
      background: transparent no-repeat center center;
      background-size: cover;
      border-radius: 10px; }
      #page-home #home-content #quicklinks li a {
        height: 12vh;
        text-decoration: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 0;
        border-radius: 10px;
        color: #fff;
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
        background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background: -o-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background-repeat: no-repeat;
        -webkit-transition: all .27s ease-out;
        -o-transition: all .27s ease-out;
        transition: all .27s ease-out; }
        #page-home #home-content #quicklinks li a .arrow {
          width: 20px;
          height: 30px;
          background: transparent;
          background-image: url(../img/right-arrow.png);
          background-repeat: no-repeat;
          background-size: 7.5px 14px;
          background-position: center 12px; }
    #page-home #home-content #quicklinks li:hover a {
      background-position: -40px; }
    #page-home #home-content #quicklinks li:active a {
      background-position: 0 0;
      border-top-color: rgba(255, 255, 255, 0.7); }

#page-profile > header {
  padding: 70px 0 20px;
  margin-bottom: 60px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 60, 153, 0.8)), to(rgba(22, 60, 153, 0.8))), url(../img/profile-bg.jpg) no-repeat;
  background: -webkit-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background: -o-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background: linear-gradient(to right, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background-size: cover; }
  #page-profile > header img.logo {
    display: inline-block; }
  #page-profile > header h1 {
    padding: 0px 0 30px; }

#page-profile .content p {
  padding: 0 5%;
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px; }

#page-profile .content p.offset {
  padding: 0 1%; }

#page-services > header {
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 60, 153, 0.8)), to(rgba(22, 60, 153, 0.8))), url(../img/services-bg.jpg) no-repeat;
  background: -webkit-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/services-bg.jpg) no-repeat;
  background: -o-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/services-bg.jpg) no-repeat;
  background: linear-gradient(to right, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/services-bg.jpg) no-repeat;
  background-size: cover; }

#page-services ul.service-list {
  margin: 0 0 30px;
  padding: 40px 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  #page-services ul.service-list li.service {
    width: 31%;
    margin: 1%;
    min-width: 250px;
    margin-bottom: 15px; }
    #page-services ul.service-list li.service a {
      display: block;
      text-decoration: none;
      color: rgba(0, 0, 0, 0.8);
      cursor: default; }
    #page-services ul.service-list li.service .thumbnail {
      width: 100%;
      min-height: 140px;
      background-size: cover; }
    #page-services ul.service-list li.service .text {
      margin-top: 15px;
      width: 90%; }
      #page-services ul.service-list li.service .text h3.title {
        margin: 0 0 10px; }
      #page-services ul.service-list li.service .text .description {
        font-size: 1em;
        opacity: 0.6; }

#page-news > header {
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 60, 153, 0.8)), to(rgba(22, 60, 153, 0.8))), url(../img/experience-bg.jpg) no-repeat;
  background: -webkit-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background: -o-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background: linear-gradient(to right, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background-size: cover; }

#page-news ul.article-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  #page-news ul.article-list li.article {
    width: 31%;
    min-width: 250px;
    margin-bottom: 15px; }
    #page-news ul.article-list li.article a {
      display: block;
      text-decoration: none; }
    #page-news ul.article-list li.article .thumbnail {
      width: 100%;
      min-height: 150px;
      background-size: cover;
      -webkit-transition: all .2s ease-in;
      -o-transition: all .2s ease-in;
      transition: all .2s ease-in; }
    #page-news ul.article-list li.article .text {
      padding: 15px 10% 15px 0; }
      #page-news ul.article-list li.article .text h3.title {
        margin: 0 0 5px;
        color: rgba(0, 0, 0, 0.9); }
      #page-news ul.article-list li.article .text .meta {
        color: rgba(0, 0, 0, 0.5); }
  #page-news ul.article-list li.article:hover .thumbnail {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3); }
  #page-news ul.article-list li.article:active .thumbnail {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5); }

#page-news .more {
  text-align: center; }

#page-article {
  background: #fafafa; }
  #page-article > header {
    background-size: cover;
    height: 60vh;
    min-height: 400px;
    padding: 0; }
    #page-article > header .text {
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      text-align: left; }
      #page-article > header .text > .container {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
      #page-article > header .text h1 {
        margin: 0;
        color: #fff;
        background: transparent none;
        font-weight: 600;
        padding: 0 50px; }
      #page-article > header .text .meta {
        padding: 10px 50px;
        color: #fff;
        opacity: 0.8; }
  #page-article .content {
    position: relative;
    margin-top: -15vh; }
    #page-article .content .article-content {
      background: #fff;
      padding: 50px 0 30px;
      -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1); }
      #page-article .content .article-content p {
        padding: 0 50px 0;
        margin: 0 0 25px;
        font-size: 1.1em;
        line-height: 1.5; }

#page-experience > header {
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 60, 153, 0.8)), to(rgba(22, 60, 153, 0.8))), url(../img/experience-bg.jpg) no-repeat;
  background: -webkit-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background: -o-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background: linear-gradient(to right, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/experience-bg.jpg) no-repeat;
  background-size: cover; }

#page-boards > header {
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 60, 153, 0.8)), to(rgba(22, 60, 153, 0.8))), url(../img/profile-bg.jpg) no-repeat;
  background: -webkit-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background: -o-linear-gradient(left, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background: linear-gradient(to right, rgba(22, 60, 153, 0.8) 0%, rgba(22, 60, 153, 0.8) 100%), url(../img/profile-bg.jpg) no-repeat;
  background-size: cover;
  margin-bottom: 100px; }

#page-boards .content p {
  padding: 0 5%;
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px; }

#page-boards .content ul.boards {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 70%; }
  #page-boards .content ul.boards li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    #page-boards .content ul.boards li:last-child {
      border-bottom: none; }
    #page-boards .content ul.boards li .photo {
      min-width: 180px;
      height: 140px;
      background-size: cover;
      margin-right: 40px;
      border-radius: 8px; }
    #page-boards .content ul.boards li .text h3.name {
      font-size: 1.5em;
      margin: 0; }
    #page-boards .content ul.boards li .text h4.title {
      font-size: 1.3em;
      margin: 10px 0;
      font-weight: 300;
      color: rgba(0, 0, 0, 0.5); }
    #page-boards .content ul.boards li .text p.desc {
      margin: 0;
      padding: 0;
      font-size: 1.1em; }

@media screen and (max-width: 800px) and (min-width: 601px) {
  .page {
    padding-right: 20px;
    padding-left: 20px; } }

@media screen and (max-width: 600px) {
  #navbar {
    padding: 10px;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07); }
    #navbar .brand img {
      height: 30px;
      width: auto; }
    #navbar #nav-close-button {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 99999;
      display: block !important;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 1.3em;
      padding: 0;
      margin: 0;
      background-color: #fff; }
    #navbar #nav-open-button {
      display: block !important;
      background: transparent;
      border: none;
      padding-right: 15px;
      color: #777; }
    #navbar > .container {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      #navbar > .container #site-menu {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.8); }
        #navbar > .container #site-menu.hidden {
          display: none; }
        #navbar > .container #site-menu ul {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          text-align: center;
          width: 90%; }
          #navbar > .container #site-menu ul li {
            font-size: 1.4em; }
            #navbar > .container #site-menu ul li a {
              color: #fff;
              background: transparent;
              border-radius: 10px;
              line-height: 50px !important; }
              #navbar > .container #site-menu ul li a:hover {
                background-color: rgba(0, 0, 0, 0.8);
                opacity: 0.6; }
          #navbar > .container #site-menu ul li.active a {
            background-color: #163C99;
            color: #fff; }
  .page#page-home {
    height: auto;
    overflow: auto; }
    .page#page-home #home-slider {
      border-radius: 0;
      margin: 0;
      height: 70vh;
      font-size: 0.8em; }
      .page#page-home #home-slider button.slide-prev {
        left: 10px; }
      .page#page-home #home-slider button.slide-next {
        right: 10px; }
      .page#page-home #home-slider button.slide-prev, .page#page-home #home-slider button.slide-next {
        border: none; }
    .page#page-home #home-content ul#quicklinks {
      font-size: 0.9em;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .page#page-home #home-content ul#quicklinks li {
        width: 50%;
        border-radius: 0; }
        .page#page-home #home-content ul#quicklinks li a {
          border-radius: 0; }
    .page#page-home #home-content #site-footer {
      margin: 0;
      padding: 0 0 10px;
      text-align: center; }
  .page#page-boards ul.boards li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .page#page-boards ul.boards li .photo {
      margin: 0 0 30px; }
  footer#site-footer {
    text-align: center; } }
