a {
	text-decoration: none;
}

.floating_btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

@keyframes pulsing {
	to {
		box-shadow: 0 0 0 30px rgba(66, 219, 135, 0);
	}
}

.contact_icon {
	background-color: #42db87;
	color: #fff;
	width: 60px;
	height: 60px;
	font-size: 30px;
	border-radius: 50px;
	text-align: center;
	box-shadow: 0 0 0 0 #42db87;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	transition: all 300ms ease-in-out;
}

.contact_icon i {
	font-size: 30px;
}

.text_icon {
	margin-top: 8px;
	color: #707070;
	font-size: 13px;
	font-weight: 500;
}

@media (max-width: 768px) {
	.floating_btn {
		width: 80px;
		height: 80px;
		bottom: 20px;
		right: 20px;
	}

	.contact_icon {
		width: 50px;
		height: 50px;
		font-size: 26px;
	}

	.text_icon {
		font-size: 11px;
	}
}
