:root {
    --blue: #114581 !important;
    --white: #ffffff !important;
    --black: #000000 !important;
    --grey: #F8F8F9 !important;
}
.button_container {
    position: relative;
    top: 5%;
    right: 2%;
    height: 18px;
    width: 24px;
    cursor: pointer;
    z-index: 99999999999;
    transition: opacity 0.25s ease;

  }
  .button_container:hover {
    opacity: 0.7;
  }
  .button_container.active .top {
    transform: translateY(3px) translateX(0) rotate(45deg);
    background: #FFF;
  }
  .button_container.active .middle {
    opacity: 0;
    background: #FFF;
  }
  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
  }
  .button_container span {
    background: var(--blue);
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  .button_container span:nth-of-type(2) {
    top: 7px;
  }
  .button_container span:nth-of-type(3) {
    top: 14px;
  }
  
  .overlay {
    position: fixed;
    background: var(--white);
    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: 9 !important;
    top: 130px;
  }
  .overlay.open li {
    -webkit-animation: fadeInRight 0.5s ease forwards;
            animation: fadeInRight 0.5s ease forwards;
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
  }
  .overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.55s;
            animation-delay: 0.55s;
  }
  .overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.60s;
            animation-delay: 0.60s;
  }
  .overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  .overlay nav {
    position: relative;
    height: 100%;
    top:470px;
    transform: translateY(-50%);
    font-size: 16px;
    font-family: 'Euclid Circular A' !important;
    font-weight: 400;
    text-align: start;
    overflow-y: scroll;
  }
  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 30px;
  }
  .overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 26);
    min-height: 40px;
    position: relative;
    opacity: 0;
  }
  .overlay ul li a {
    display: block;
    position: relative;
    color: var(--blue);
    text-decoration: none;
    overflow: hidden;
  }
  .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
  }
  .overlay ul li a:hover {
    font-weight: 700;
   
  }
  
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }


  /* hamburger animation */
 
 .hamburger .line{
    width: 25px;
    height: 2px;
    background-color: var(--blue);
    display: block;
    margin: 7px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }
  
#toggle.active{
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    z-index: 11111111;
  }
  
  #toggle.active .line:nth-child(2){
    width: 0px;
  }
  
  #toggle.active .line:nth-child(1),
  #toggle.active .line:nth-child(3){
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  #toggle.active .line:nth-child(1){
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
  }
  
  #toggle.active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
  }


.offcanvas.show{
  z-index: 2222222;
}

