.float {
	position: fixed;
	width: 70px;
	height: 70px;
	bottom: 40px;
	right: 10%;
	margin-right: 3%;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 40px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
	background-color: #fff;
}

.my-float {
	margin-top: 16px;
}

.float2 {
	position: fixed;
	margin-right: 5%;
	width: 70px;
	height: 70px;
	bottom: 40px;
	right: 20%;
	background-color: #003cff;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 40px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}
.float2:hover {
	text-decoration: none;
	color: #003cff;
	background-color: #fff;
}

.my-float2 {
	margin-top: 16px;
}

@media screen and (max-width: 600px) {
	.float {
		width: 60px;
		height: 60px;
		font-size: 30px;
		margin-right: 15%;
	}
	.float2 {
		width: 60px;
		height: 60px;
		font-size: 30px;
		margin-right: 20%;
	}
}
