.nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 3.75rem;
	background-color: transparent;
	transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
	will-change: width;
	z-index: 99;
}

.nav.is-active {
	width: 100%;
	background-color: rgb(0, 0, 0);
}

.nav__trigger {
	display: block;
	position: absolute;
	top: 5%;
	right: 2rem;
	margin-top: -10px !important;
	padding: 8px 0 !important;
	transition: 0.2s ease-in-out;
	z-index: 10;
}

.nav__trigger .bars {
	position: relative;
}

.nav__trigger .bars,
.nav__trigger .bars:before,
.nav__trigger .bars:after {
	width: 28px;
	height: 4px;
	background-color: rgb(173, 133, 0);
	border-radius: 4px;
	transition: 0.2s ease-in-out;
}

.nav__trigger .bars:before,
.nav__trigger .bars:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	will-change: transform;
}

.nav__trigger .bars:before {
	transform: translateY(-8px);
}

.nav__trigger .bars:after {
	transform: translateY(8px);
}

.nav__trigger.is-active {
	transform: rotate(-45deg);
}

.nav__trigger.is-active .bars:before,
.nav__trigger.is-active .bars:after {
	transform: translateX(0) rotate(-90deg);
}

.nav__content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1200px;
	padding: 1rem 3.75rem 1rem 2.75rem !important;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%);
	transition: 0s linear 0.25s;
}

.nav__content.is-active {
	visibility: visible;
	opacity: 1;
	transition: 0s linear;
}

.nav__content.is-active .nav__item a {
	opacity: 1;
	transform: translateY(0);
	transition-property: transform, opacity, color;
	transition-duration: 0.55s, 0.55s, 0.3s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out, ease-in-out;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(1) a {
	transition-delay: 0s, 0s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(2) a {
	transition-delay: 0.05s, 0.05s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(3) a {
	transition-delay: 0.1s, 0.1s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(4) a {
	transition-delay: 0.15s, 0.15s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(5) a {
	transition-delay: 0.2s, 0.2s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(6) a {
	transition-delay: 0.25s, 0.25s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(7) a {
	transition-delay: 0.3s, 0.3s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(8) a {
	transition-delay: 0.35s, 0.35s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(9) a {
	transition-delay: 0.4s, 0.4s, 0s;
}

.nav__list ul {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}

.nav__item {
	overflow: hidden;
}

.nav__item a {
	display: inline-block;
	padding: 0.8rem !important;
	color: rgb(201, 154, 0);
	text-decoration: none;
	font-size: 10vw;
	font-size: 4vmin;
	opacity: 0;
	transform: translateY(100%);
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	will-change: transform, opacity;
}

.nav__item a:hover {
	color: rgb(255, 255, 255);
}



@media (max-width: 1023px) {
	.nav__item a {
		font-size: 5vmin;
	}
}
@media (max-width: 750px) {
	.nav__item a {
		font-size: 6vmin;
	}
}



/*  css for whatsico */
#fixed-social {
  position: fixed;
  bottom: 3vh;
  right: 4vw;
}

#whatsappus {
  background: rgb(2, 0, 36);
  background: radial-gradient(
    circle,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 0, 0, 1) 53%,
    rgb(160, 160, 160) 100%
  );
  width: 60px;
  height: 60px;
  border-radius: 30px;
  transition: all 0.5s ease;
}

#whatsappus:hover {
  border: 1px solid rgb(107, 107, 107);
  width: 65px;
  height: 65px;
}

@media (max-width: 750px) {
	#fixed-social {
	    z-index:1111111111111;
		position: fixed;
		bottom: 3vh;
		right: 3vw;
	  }
	  
	  #whatsappus {
		background: rgb(2, 0, 36);
		background: radial-gradient(
		  circle,
		  rgba(2, 0, 36, 1) 0%,
		  rgba(0, 0, 0, 1) 53%,
		  rgb(79, 79, 79) 100%
		);
		width: 50px;
		height: 50px;
		border-radius: 30px;
		transition: all 0.5s ease;
	  }
	  
	  #whatsappus:hover {
		border: 1px solid rgb(107, 107, 107);
		width: 50px;
		height: 50px;
	  }
  }