#background-thing{
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	opacity: 0;
	animation: opacity 3s forwards;
}
.background-logo{
	width: 8vmin;
	height: 50vmin;
	border-radius: 5vmin;
	opacity: 0.1;
	position: absolute;
	transform: translate(100vw, 0);
	background-color: #aaaaaa;
}
.background-logo::after{
	content: "";
	width: 3vmin;
	height: 10vmin;
	border-radius: 5vmin;
	position: absolute;
	background-color: #aaaaaa;
	top: -8vmin;
	left: 2.5vmin;
}
.background-logo:nth-child(1){
	left: 22vmin;
	animation: backgroundthing 80s linear infinite;
	animation-delay: -0s;
}
.background-logo:nth-child(2){
	right: calc(50vw - 2vmin);
	animation: backgroundthing 80s linear infinite;
	animation-delay: -16s;
}
.background-logo:nth-child(3){
	right: 28vmin;
	animation: backgroundthing 80s linear infinite;
	animation-delay: -8s;
}
@keyframes backgroundthing{
	0%{transform: translate(0, 100vh);}
	100%{transform: translate(0, -50vh);}
}
@keyframes opacity{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

#specifications-features-2{
    background-image: url("../image/products/welding-electrode/model.jpg");
}
#fold{
	display: none;
}
#fold2{
	display: none;
}
@media screen and (min-width: 600px) {
	.chemical::after{
		content: "";
		position: absolute;
		top: 1vw;
		left: -7.3vw;
		background-color: #dddddd;
		border-radius: 2vw;
		padding: 0.5vw;
		width: 5.5vw;
		height: 0.5vw;
		font-size: 0.9vw;
		text-align: center;
		line-height: 0.6vw;
		color: #000;
		transform: skew(15deg);
	}
}