.b-page_newyear {
	position:relative;
    padding-top: 80px;
    margin-bottom: 0px;
	background: linear-gradient(270deg, #a9b48f, #f7db8f,#eb929d,#f7db8f,#a9b48f,#f7db8f,#eb929d,#f7db8f, #a9b48f);
}

.b-page_newyear:before {
    content:'';
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background: linear-gradient(270deg, #a9b48f, #eb929d,#f7db8f,#eb929d,#a9b48f,#eb929d,#f7db8f,#eb929d, #a9b48f);
	animation: newyear-anm  2s infinite ease-in-out;
}

.b-page_newyear:after {
    content:'';
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	box-shadow: 0px 5px 15px 3px #000 inset;
}

@keyframes newyear-anm {

50% {opacity: 0;}

}

@media only screen and (max-width: 1023px)
{
	.b-page_newyear {
		display:none;
	}
}