@charset "UTF-8";
@media(max-width: 860px) {
  nav {
    opacity: 0;
  position: fixed;
  left: -100vw;
  top: 0;
  right: auto;
  padding: 20px;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 999;
  background-color: rgba(255, 255, 255, 1);
  transition: transform 250ms linear, opacity 250ms linear;
  }

nav.active {
  opacity: 1;
  transform: translate(100vw, 0);
  }

nav ul, nav li, nav ul ul {
  display: block !important;
  position: relative;
  left: auto;
  top: auto;
  }
.book { display: none; }
nav li {
  border-top: 1px solid rgba(45, 45, 45, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  }
nav li li, nav li:first-child {
  border-top: none;
  }

nav li li {
  padding-top: 0;
  padding-bottom: 0;
  }

nav ul ul {
  padding-top: 0;
  padding-bottom: 0;
  }
  
  #trigger {
    display: block;
    position: absolute;
    right: 10px;
    top: 14px;
    width: 50px;
    height: 50px;
  z-index: 1000;
  }
  
  .banner h1, #banner h1 {
    padding: 20px 30px;
    font-size: 4vw;
    line-height: 4.5vw;
  }
  
  header .logo {
    top: 21px;
  }

header .logo img {
    height: 34px;
  }
  
  #trigger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: rgba(32, 57, 136, 1);
    position: absolute;
    left: 10px;
    top: calc(50% - 1px);
  
  }

#trigger span, #trigger span:before, #trigger span:after {
  transition: opacity 250ms linear, transform 250ms linear;
  }
  
  #trigger span:before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: rgba(32, 57, 136, 1);
    position: absolute;
    left: 0;
    top: -9px;
  }
  
  #trigger span:after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: rgba(32, 57, 136, 1);
    position: absolute;
    left: 0;
    top: 9px;
  }

#trigger.active span:after {
  opacity: 0;
}

#trigger.active span {
  transform: rotate(45deg);
  }

#trigger.active span:before {
  transform: translate(0px, 8px) rotate(-90deg);
  }
  
  .banner.top {
    height: 75vw;
  }
  
  .banner.small.top {
    margin-top: 0 !important;
  }
  
  .bgblue {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .table {
    display: block;
  }
  
  .cell {
    display: block;
    width: 100%;
    padding-right: 20px !important;
    padding-left: 50px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  .cell.no {
    padding-left: 20px !important;
  }
  
  .ico {
    width: 30px;
    height: 30px;
    left: 0 !important;
  }
  
  footer {
    height: auto;
  }
  
  footer p {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
  }

footer a {
  white-space: nowrap !important;
}

nav li a:hover {
  transform: none;
}

.border.col p {
  display: block;
  margin-left: 0;
  margin-right: 0;
  }
}