/*---NAV CSS STARTS---*/
.nav {
  position: relative;
  width: auto;
  display: inline-block;
  border: none; z-index: 99999;
}

.btn-nav {
  position: relative;
  background: transparent;
  border: none;
  padding: 2px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 99999;
}

.btn-nav:focus {
  outline: 0;
}

.icon-bar {
    display: block;
    margin: 6px 0;
    width: 30px;
    height: 2px;
    background-color: #2FB1FF;
}

.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #151515;
}

.nav-content {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: auto;
  right: 0;
  background-color: #333;
  display: block;
  height: 100%;
  z-index: 99998;
  width: 250px;
  overflow: auto;
}

.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top: 10%;
}

.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 2px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #151515;
  text-decoration:none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #151515;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 15px auto;
  text-align: center;
}

.animated {
  display: block;
  margin: 0 auto;
}

.animated:hover .icon-bar,
.animated:focus .icon-bar{
  background-color: #151515;
}

.animated:focus {
  cursor: pointer;
  z-index: 9999;
}

.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated .icon-bar {
  z-index: 999999;
  background-color: #151515; 
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.animated .top {
  -webkit-transform: translateY(10px) rotateZ(45deg);
  -moz-transform: translateY(10px) rotateZ(45deg);
  -ms-transform: translateY(10px) rotateZ(45deg);
  -o-transform: translateY(10px) rotateZ(45deg);
  transform: translateY(10px) rotateZ(45deg);
}

.animated .bottom {
  -webkit-transform: translateY(-6px) rotateZ(-45deg);
  -moz-transform: translateY(-6px) rotateZ(-45deg);
  -ms-transform: translateY(-6px) rotateZ(-45deg);
  -o-transform: translateY(-6px) rotateZ(-45deg);
  transform: translateY(-6px) rotateZ(-45deg);
}

.animated .middle {
  width: 0;
}

@keyframes showNav {
  from {
    right: -250px;
  }
  to {
    right: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    right: -250px;
  }
  to {
    right: 0;
  }
}

@-moz-keyframes showNav {
  from {
    right: -250px%;
  }
  to {
    right: 0;
  }
}

@-o-keyframes showNav {
  from {
    right: -250px;
  }
  to {
    right: 0;
  }
}

.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}

@keyframes hideNav {
  from {
    right: 0;
  }
  to {
    right: -250px;
  }
}

@-webkit-keyframes hideNav {
  from {
    right: 0;
  }
  to {
    right: -250px;
  }
}

@-moz-keyframes hideNav {
  from {
    right: 0;
  }
  to {
    right: -250px;
  }
}

@-o-keyframes hideNav {
  from {
    right: 0;
  }
  to {
    right: -250px;
  }
}

.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}

.hidden {
  display: none;
}
.right-navigation-item {
	
}
.right-navigation-item {
    margin-top: 0;
    margin-bottom: 10px;
    list-style: none;
    float: left;
    text-align: left;
    padding: 0;
}
.right-navigation-item li {
    float: left;
    margin: 0;
    border-top: 1px solid #2a2a2a;
    width: 100%;
}
.right-navigation-item li:first-child {
    border-top: 0;
}
.right-navigation-item li a {
    padding: 15px 0 15px 20px;
    font-size: 14px;
    color: #8d8d8d !important;
    font-weight: 300!important;
    display: block;
    text-transform: none;
    white-space: nowrap;
}
.right-navigation-item li a:hover {
    color: #fff !important;
    background: #2d2d2d;
}
.right-navigation-item .fa {
    margin-right: 10px;
}
.followUsList {
    padding: 15px 0 15px 20px;
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 400;
}
.followUsList .followUs a {
    padding: 0;
    font-size: 25px;
}
.followUsList .followUs a:hover {
    background:transparent;
}
.followUsList .followUs {
    padding: 0;
    float: left;
    font-size: 20px;
}
 @media (max-width:767px) {
    .icon-bar {
        margin: 3px 0 !important;
        width: 20px !important;;
        height: 2px !important;;
    }
    .animated .top {
        -webkit-transform: translateY(5px) rotateZ(45deg);
        -moz-transform: translateY(5px) rotateZ(45deg);
        -ms-transform: translateY(5px) rotateZ(45deg);
        -o-transform: translateY(5px) rotateZ(45deg);
        transform: translateY(5px) rotateZ(45deg);
    }
    .animated .bottom {
        -webkit-transform: translateY(-5px) rotateZ(-45deg);
        -moz-transform: translateY(-5px) rotateZ(-45deg);
        -ms-transform: translateY(-5px) rotateZ(-45deg);
        -o-transform: translateY(-5px) rotateZ(-45deg);
        transform: translateY(-5px) rotateZ(-45deg);
     }
     .animated .middle {
        width: 0;
        opacity: 0;
     }
 }
/*---NAV CSS END---*/