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

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