.spyElementsArray{
	position: absolute;
	opacity: 0;
}

.spy-container{
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 10;
	width: 100%;
	border-top: 1px solid #ffffff30;
}

.spy-menu{
	display: flex;
	/*background: var(--black);*/
	background: transparent;
	width: 1430px;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
    padding-bottom: 20px;
	max-width: 1280px;
}

.spy-menu h6{
	color: var(--white);
	font-weight: bold;
}

.spy-menu .spy-menu-element:nth-child(1){
	border-top: 0;
}
.spy-menu-element{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
.spy-menu-element p {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
	margin-bottom: 0;
}

.spy-menu-element.active p{
	color:#707070;
	border-bottom: 2px solid transparent;
  	
}
.spy-menu-element p::after{
 position: absolute;
    content: "";
    bottom: -2px;
	left: 0;
    width: 100%;
    height: 3px;
    background: #00BB7D;
	transition: .3s all;
	opacity: 0;
}
.spy-menu-element.active p::after{
	opacity: 1;
}
.spy-menu-element{
	position: relative;
}

.spy-menu-element.active p{
	color: #707070 !important;
	z-index: 4;
}

.spy-container.spy{
	width: 100%;
	position: fixed; 
	top: 0;
	left: 0;
	z-index: 100;
	background: var(--black);
}

.spy-menu.spy{
	position: fixed;
	top: 0;
	/*left: 0;
	right: 0;*/
	z-index: 100;
	justify-content: center;
	border-left: 1px solid #C7C7C7;
	
}


.overlay-spy{
	opacity: 0;
	transition: .4s all;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.list-items-menu{
	display: flex;
	gap: 78px;
}

@media (max-width: 800px){
	.spy-menu{
		display: none !important;
	}
}