.homeBtn .button {
	padding: 0.4em 0.4em;
	display: inline-block;
	border-radius: 25%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.8);
}

.homeBtn .button:before {
	content: "";
	background-color: rgba(20, 104, 190, 0.5);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	-webkit-transform: skewX(-45deg) translateX(0);
			transform: skewX(-45deg) translateX(0);
	-webkit-transition: none;
	transition: none;
}

.homeBtn .button:hover {
	background-color: white;
}

.homeBtn .button:hover:before {
	-webkit-transform: skewX(-45deg) translateX(13.5em);
			transform: skewX(-45deg) translateX(13.5em);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.homeBtn .button svg {
	width: 42px;
	height: 42px;
	fill: white;
	-webkit-transition: fill 0.2s ease-in-out;
	transition: fill 0.2s ease-in-out;
}

.homeBtn .button svg .cls-1{
	fill: white;
	-webkit-transition: fill 0.2s ease-in-out;
	transition: fill 0.2s ease-in-out;
}

.homeBtn .button:hover svg {
	fill: #1468BE;
}

.homeBtn .button:hover svg .cls-1{
	fill: black;
}
