a{
	text-decoration: none;
	display: block;
}
.tour{
	position: relative;
	position: fixed;
	top: 60%;
	left: 10px;
	width: 100px;
	height: 100px;
	background-color: #ff0505;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
	cursor: pointer;
	z-index: 5;
}
.tour h3{
	color: #fff;
	font-size: 15px;
}
.fa-location-dot{
	font-size: 20px;
	color: #fff;
}
.fa-hand-pointer{
	top: 200%;
	position: absolute;
	font-size: 30px;
	color: #fff;
	animation: click linear 3s infinite;
}
@keyframes click{
	0%{
		top: 200%;
		transform: scale(1);
	}
	50%{
		top: 50%;
		transform: scale(1);
	}
	100%{
		top: 50%;
		transform: scale(1.2);		
	}
}
@media screen and (max-width: 800px){
	.tour{
		position: relative;
		width: 250px;
		height: 50px;
		top: 0;
		left: 0;
		text-align: center;
		justify-content: center;
		align-items: center;
		flex-direction: initial;
		border-radius: 50px 50px 50px 50px;
		margin: 20px auto;
		gap: 8px;
	}
}