/*typography*/
/*mixins*/
.content-container {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0; }

.button_container {
  position: fixed;
  top: 7%;
  right: 20px;
  height: 20px;
  width: 20px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
  z-index: 10001; }
  .button_container:hover {
    opacity: .7; }
  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #7ebe1f; }
  .button_container.active .middle {
    opacity: 0;
    background: #7ebe1f; }
  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #7ebe1f; }
  .button_container span {
    background: #155c95;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.35s ease;
    cursor: pointer; }
    .button_container span:nth-of-type(2) {
      top: 11px; }
    .button_container span:nth-of-type(3) {
      top: 22px; }

.overlay {
  z-index: 9999;
  position: fixed;
  background: #155c95;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden; }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    z-index: 9999; }
    .overlay.open li {
      animation: fadeInRight 0.5s ease forwards;
      animation-delay: .35s; }
      .overlay.open li:nth-of-type(2) {
        animation-delay: .4s; }
      .overlay.open li:nth-of-type(3) {
        animation-delay: .45s; }
      .overlay.open li:nth-of-type(4) {
        animation-delay: .50s; }
  .overlay nav {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 400;
    text-align: center; }
    .overlay nav .tag {
      display: block;
      text-align: right;
      margin-top: 20px;
      border-top: 4px solid #fff;
      color: #fff;
      max-width: 40%;
      right: 20px;
      position: absolute;
      font-size: 36px;
      padding-top: 10px; }
  .overlay ul {
    list-style: none;
    padding: 0 20px;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 100%; }
    .overlay ul li {
      z-index: 9999;
      display: block;
      padding-bottom: 5px;
      min-height: 30px;
      position: relative;
      text-align: left;
      font-size: 16px;
      opacity: 0;
      text-transform: uppercase;
      font-family: "GreycliffCF-Bold", sans-serif; }
      .overlay ul li a {
        display: block;
        position: relative;
        color: #FFF;
        text-decoration: none;
        overflow: hidden;
        padding: 5px;
        transition: all 0.25s ease; }
        .overlay ul li a:hover {
          opacity: 1;
          color: #7ebe1f; }
        .overlay ul li a:hover:after,
        .overlay ul li a:focus:after,
        .overlay ul li a:active:after {
          width: 100%; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }

.divider {
  content: '';
  display: block;
  background-color: #5885ab;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 90%; }

.mobile-phone {
  display: block;
  padding-left: 20px;
  color: #fff;
  font-size: 24px;
  font-family: 'Montserrat',serif;
  text-align: left; }

.overlay .button {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #fff;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "GreycliffCF-Bold", sans-serif;
  padding: 12px 30px;
  display: table;
  transition: all 0.25s ease;
  clear: both;
  cursor: pointer;
  background-color: #178ccb;
  margin-top: 10px;
  margin-left: 20px; }
  .overlay .button:after {
    content: '';
    display: table;
    clear: both;
    font-size: 0;
    height: 0;
    visibility: hidden; }
  .overlay .button:hover {
    background-color: #7ebe1f; }

.mobile-search {
  margin-top: 30px;
  margin-left: 20px;
  text-align: left; }
  .mobile-search .search-box {
    width: 200px;
    border: 0px;
    font-size: 18px;
    min-height: 40px;
    color: #505050;
    padding: 0 15px;
    margin-left: 0px; }
  .mobile-search .search-btn {
    background-color: #178ccb;
    border: 0px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    top: -1px;
    font-size: 13px;
    font-family: "GreycliffCF-DemiBold", sans-serif;
    min-height: 40px;
    letter-spacing: .09em; }
    .mobile-search .search-btn:hover {
      background-color: #7ebe1f; }

#toggle-sticky.button_container {
  top: 3%;
  right: 10%; }
