@font-face {
font-family: "Aller Light";
src: url("fonts/Aller_Lt.ttf");
font-family: "Rajdhani";
src: url("fonts/Rajdhani-SemiBold.ttf");
}
.button_container {

  position: fixed;
  top: 4%;
  right: 2%;
  height: 25px;
  width: 35px;
  cursor: pointer;
  z-index:50001;
  transition: opacity .25s ease;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #333333;
}
.button_container.active .middle {
  opacity: 0;
  background: #333333;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #333333;
}
.button_container span {
  background: #f2f2f2;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .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:50000;
  position: fixed;
  background:#fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.cli
{
	cursor:pointer;
}

.overlay.open .cli:nth-of-type(1) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}
.overlay.open .cli:nth-of-type(2) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;

}
.overlay.open .cli:nth-of-type(3) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}
.overlay.open .cli:nth-of-type(4) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}
.overlay.open .cli:nth-of-type(5) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}
.overlay.open .cli:nth-of-type(6) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}
.overlay.open .cli:nth-of-type(7) {
  -webkit-animation: fadeInRight 1s ease forwards;
          animation: fadeInRight 1s ease forwards;
}


.overlay.open .bli:nth-of-type(1) {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
}
.overlay.open .bli:nth-of-type(2) {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;

}
.overlay.open .bli:nth-of-type(3) {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
}
.overlay.open .bli:nth-of-type(4) {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
}
.overlay.open .bli:nth-of-type(5) {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
}


.overlay nav {
  position: relative;
  height: 60%;
  top: 35%;
  right:10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size:30px;
  font-family: 'Aller Light';
  text-align: right;
}
.overlay nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay nav ul li {
  display:block;
}
.overlay nav ul li a {
  display: block;
  padding: 7px;
  text-decoration: none;
  color: #132237;
 
  
  margin: 0 10px;
}
.active {
  color: #0071bc!important;
}
.overlay nav ul li a,
.overlay nav ul li a:after,
.overlay nav ul li a:before {
  transition: all 0.5s;
}
.overlay nav ul li a:hover {
transition: all 0.5s;
  color: #fff;
}



/* Circle */
nav.circle ul li a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
nav.circle ul li a:after {
  display: block;
  position: absolute;
  margin: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '.';
  color: transparent;
  width: 1px;
  height: 1px;
  border-radius: 100%;
  background: transparent;

}
nav.circle ul li a:hover:after {
  -webkit-animation: circle 1.5s ease-in forwards;
}
@media (max-width: 1070px)
{
.bottom-nav {
  padding:0;
  left:20%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

}
.bottom-nav {
  font-family:'Rajdhani';
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  top:20%;

}
.bottom-nav ul {
  list-style: none;
  text-align: left;

}
.bottom-nav ul li {
  display: inline-block;
}
.bottom-nav ul li a {
  font-size:18px;
  display: block;
  padding-left: 25px;
  padding-right: 25px;
  text-decoration: none;
  color: #025796;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 10px;
}

/* Keyframes */
@keyframes fadeInRight {

   0% {
      opacity: 0;
      transform: translateX(50px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }

} 

@keyframes fadeIn {
   0% {
      opacity: 0;
      transform: translateY(50px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
} 
@-webkit-keyframes circle {
  0% {
    width: 1px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1px;
    z-index: -1;
    background: #eee;
    border-radius: 100%;
  }
  100% {
    background: #aaa;
    height: 5000%;
    width: 5000%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
  }
}

a.button {

  position: relative;
  display: inline-block;
  width: 25.6em;
  height: 6.3em;
  overflow: hidden;
  vertical-align: middle;
  text-align: left;
  text-decoration: none;
  line-height: 3em;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
a.button svg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
a.button svg g line,
a.button svg g polyline,
a.button svg g circle {
  fill: none;
  stroke: #333;
}
a.button svg g line,
a.button svg g polyline {
  stroke-miterlimit: 10;
}

a.button font {
  z-index: 2;
  position: relative;
  display: inline-block;
}
a.button:hover {
  -webkit-transform: translateZ(0) translateX(0.5em);
          transform: translateZ(0) translateX(0.5em);
}


@media (max-width: 600px) 
{
.overlay.open {
  height: 100%;
}
}

