/* custom.css */

.bnroops {
	display: none;
	position: absolute;
	z-index: 10;
	left: 20px;
	top: 100px;
	opacity: 0.7;
	transition: 0.3s all;
}

.bnroops:hover {
	opacity: 1;
}

@media (min-width: 1200px) {
	.bnroops {
		display: block;
	}
}
