.nav {
  position: fixed;
  top: 70px;
  left: -400px;
  width: 400px;
  z-index: 1000001 !important;

}
.close-nav {
	display: block; 
	padding-top: 15%; 
	width: 100%; 
	text-align: center; 
	font-size: 55px; 
	line-height: 55px;
}
.nav .social-icon {
  width: auto;
  height: 25px;
  margin: 0px 1px;
  cursor: pointer;
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
	opacity: 1;
}
.header_social_icons {
    float: right;
    padding: 0px 5px;
}
.nav .social-icon:hover {
	opacity: 0.6;
}
.nav .social-icon.home:hover {
	-webkit-filter: none;
    filter: none;
}
.nav-footer i {
	-webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.nav-footer i:hover {
	margin-top: 5px;
}
.box-nav {
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
	z-index: 1000000;
}

.btn-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  cursor: pointer;
}

.box-nav .btn-nav span {
  display: block;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);
  border-radius: 2px;
  height: 2px;
  background: #fff;
  transition: all .2s;
  position: relative;
}
.box-nav:hover .btn-nav span {
	opacity: 1;
}
.box-nav .btn-nav span + span {
  margin-top: 9px;
}

.active span:nth-child(1) {
  animation: ease .4s top forwards;
}

.not-active span:nth-child(1) {
  animation: ease .4s top-2 forwards;
}

.active span:nth-child(2) {
  animation: ease .4s scaled forwards;
}

.not-active span:nth-child(2) {
  animation: ease .4s scaled-2 forwards;
}

.active span:nth-child(3) {
  animation: ease .4s bottom forwards;
}

.not-active span:nth-child(3) {
  animation: ease .4s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 13px;
    transform: rotate(0);
  }
  100% {
    top: 13px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 12px;
    transform: rotate(45deg);
  }
  50% {
    top: 12px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 10px;
    transform: rotate(0);
  }
  100% {
    bottom: 10px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 12px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.nav a {
  color: black;
  font-weight: 500;
	padding-top: 7px;
}
.nav a.home_nav {
	margin-right: 14px;
}
.nav .item {
  display: flex;
  height: 95px;
  align-items: center;
  cursor: pointer;
  padding: 10px 15px 10px 20px;
    color: #ffffff;
    position: relative;
}
.nav .item::after {
    content: "";
    position: absolute;
    width: 90%;
    left: 5%;
    top: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}
.nav .item.last_links::after {
    height: 0px;
}
.nav .item img {
  width: 130px;
  height: auto;
  margin-left: 20px;
    border-radius: 8px;
}

.nav .item span {
  flex: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
    padding-left: 30px;
    display: block;
    position: relative;
}

.nav .item:hover {
    background: #1B1B6F;
}

.nav .item:hover span {
  font-weight: bold;
}
.nav .nav_numbers {
  color: #4BCD3E;
    position: absolute !important;
    left: -30px;
    top: 0px;
}
.nav-header {
  height: 70px;
      display: block;
    align-items: center;
    text-align: right;
	padding: 25px 7px 23px 70px;
}

.nav-header i {
  margin-right: 10px;
}

.nav-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
	color: #ffffff;
	font-size: 16px;
	float: right;
    border-right: 1px solid #ffffff;
    padding-right: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.nav-footer i {
  font-size: 30px;
  margin-left: 10px;
}
.nav-footer img {
	height: 25px;
	margin-left: 10px;
	opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.nav-footer:hover {
	color: #eeeeee;
}
.nav-footer:hover img {
	opacity: 0.6;
}
.nav i, .nav-icon i {
  font-size: 45px;
	padding-top: 4px;
}
.nav i:hover, .nav-icon i:hover {
	
}
.home-icon {
  position: fixed;
    top: 0px;
    width: 70px;
    height: 70px;
    background-color: rgba(200, 200, 200, 0.3);
    z-index: 10000000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 20px 20px 15px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.home-icon img {
	-webkit-transition: 0.5s;
    transition: 0.5s;
}
.home-icon:hover img {
	opacity: 1;
}
.home-icon:hover {
	background-color: rgba(150, 150, 150, 0.3);
}


.nav-icon {
  position: fixed;
  top: 70px;
  width: 70px;
  height: 70px;
    background-color: rgba(200, 200, 200, 0.3);
  z-index: 10000000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.nav-icon:hover {
    background-color: rgba(150, 150, 150, 0.3);
}
@media (max-width: 1500px) {
.nav .item {
    height: 75px;
}
.nav .item img {
    width: 120px;
}
.nav .item span {
    font-size: 17px;
}    
.home-icon {
	  width: 55px;
	  height: 55px;
	  padding: 12px 8px 8px;
  }
	.nav-icon {
	  width: 55px;
	  height: 55px;
		top: 55px;
  }
	.prism-create .nav {
    top: 55px;
	}    
.nav-header {
    height: 50px;
    padding: 10px 7px 10px 60px;
}        
}
@media (max-width: 1366px) and (min-height: 900px) {

}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
.nav .item {
    height: 80px;
    padding: 8px 10px 8px 20px;
}

}
@media (max-height: 700px) {
.nav .item {
    height: 70px;
    padding: 8px 8px 8px 15px;
}
    .nav .item img {
    width: 110px;
}
}
@media screen and (max-width: 1024px) {
.home-icon {
	  width: 50px;
	  height: 50px;
	  padding: 12px 8px 8px;
  }
	.nav-icon {
	  width: 50px;
	  height: 50px;
		top: 55px;
  }
	.prism-create .nav {
    top: 55px;
	}    
.nav-header {
    height: 50px;
    padding: 10px 7px 10px 60px;
}    
}
@media (orientation: portrait) {  
}
@media (orientation: portrait) {  
  .home-icon {
	  width: 38px;
      height: 30px;
	  padding: 8px 5px 5px;
      background: transparent;
      -webkit-backdrop-filter: none;
     backdrop-filter: none;
    top: inherit;
    left: 8%;
      bottom: 10px;
  }
	.nav-icon {
	  width: 40px;
      height: 35px;        
      background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      top: inherit;
      left: 32%;
        bottom: 8px;
  }
    .home-icon:hover, .nav-icon:hover {
        background: transparent;
    }
    .nav .item {
    height: 70px;
}
    .nav-footer img {
    height: 16px;
    margin-left: 6px;    
}
	.prism-create .nav {
    top: 40px;
	}
	.box-nav {
    width: 40px;
      height: 35px; 
        padding: 0px;
        background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
}
    .header_social_icons {
    padding: 0px 5px 0px 7px;
}
	.btn-nav {
    width: 30px;
}
	.box-nav .btn-nav span {
    height: 2px;
}
	.box-nav .btn-nav span + span {
  margin-top: 7px;
}
	
	@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 9px;
    transform: rotate(0);
  }
  100% {
    top: 9px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 9px;
    transform: rotate(45deg);
  }
  50% {
    top: 9px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 9px;
    transform: rotate(0);
  }
  100% {
    bottom: 9px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 9px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 9px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
	
	
	.prism-create .nav {
		width: 400px;
		left: -400px;
}
	.nav i, .nav-icon i {
    font-size: 22px;
}
	.nav .item span {
    font-size: 18px;
    padding-left: 30px;
}
.nav .nav_numbers {
    left: -30px;
}    
    .nav .item img {
    width: 100px;
}
	.nav-header {
    height: 0px;
    text-align: right;
    display: block;
    padding: 7px 5px 6px 30px;
}
	.nav .social-icon {
    height: 16px;
    margin: 0px 0px;    
}
	.nav-footer {
        font-size: 11px;
}
	.nav-footer i {
    margin-top: 2px;
}
.close-nav {
    font-size: 30px;
    line-height: 30px;
}	
}
@media screen and (max-width: 480px) {
.prism-create .nav {
		width: 100%;
		left: -100%;
    max-width: 400px;
}
}

@media screen and (max-height: 480px) {
  .home-icon {
	  width: 35px;
	  height: 35px;
	  padding: 8px 8px 5px;
  }
	.nav-icon {
	  width: 35px;
	  height: 35px;
		top: 45px;
  }
    .prism-create .nav {
}
	.prism-create .nav {
    top: 45px;
	}
	.box-nav {
    width: 35px;
    height: 35px;
}
	.btn-nav {
    width: 20px;
}
	.box-nav .btn-nav span {
    height: 2px;
}
	.box-nav .btn-nav span + span {
  margin-top: 4px;
}
	
	@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 7px;
    transform: rotate(0);
  }
  100% {
    top: 7px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 7px;
    transform: rotate(45deg);
  }
  50% {
    top: 7px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 6px;
    transform: rotate(0);
  }
  100% {
    bottom: 6px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 6px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 6px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
	
	.prism-create .nav {
		width: 260px;
		left: -260px;
}
	.nav i, .nav-icon i {
    font-size: 22px;
}
	.nav .item span {
    font-size: 12px;
}
	.nav .item img {
    width: 70px;
}
	.nav .item {
    height: 47px;
    padding: 8px;
}
	.nav-header {
    height: 35px;
		text-align: right;
		display: block;
		padding: 10px 5px 6px 35px;
}
	.nav .social-icon {
    height: 16px;
        margin: 0px;
}
	.nav-footer {
		font-size: 11px;
}
	.nav-footer img {
    height: 16px;
}
	.nav-footer i {
    margin-top: 2px;
}
}