#background-thing{
	position: absolute;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	animation: opacity 3s forwards;
}
.background-logo{
	width: 30vmin;
	height: 5vmin;
	background-color: #aaaaaa;
	border-radius: 3vmin;
	opacity: 0.1;
	position: absolute;
	transform: translate(100vw, 0);
}
.background-logo::before{
	content: "";
	width: 5vmin;
	height: 20vmin;
	background-color: #aaaaaa;
	border-radius: 5vmin;
	position: absolute;
	top: -15vmin;
	left: 0vmin;
}
.background-logo::after{
	content: "";
	width: 5vmin;
	height: 20vmin;
	background-color: #aaaaaa;
	border-radius: 5vmin;
	position: absolute;
	top: -15vmin;
	left: 25vmin;
}
.background-logo:nth-child(1){
	top: 50vh;
	animation: backgroundthing 50s linear infinite;
	animation-delay: -30s;
}
.background-logo:nth-child(2){
	bottom: 15vh;
	animation: backgroundthing 50s linear infinite;
	animation-delay: -15s;
}
.background-logo:nth-child(3){
	top: 30vh;
	animation: backgroundthing 50s linear infinite;
	animation-delay: 0s;
}
@keyframes backgroundthing{
	0%{transform: translate(100vw, 0);}
	100%{transform: translate(-50vh, 0);}
}
@keyframes opacity{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

#specifications-features-2{
    background-image: url("../jpg/model-11.jpg");
}


@media screen and (min-width: 900px) {
.fold2{
    max-height: 500vw!important;
}
}