@charset "utf-8";
/* CSS Document */

.button-container {
  box-sizing:border-box;
}

.wrapper-jc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-button {
    display: flex;
    padding: 5px 10px;
	border-radius: 5px;
    text-decoration: none;
	text-decoration-color: white;
    font-family: 'Poppins', sans-serif;
	font-weight: bold;
    color: white;
    background: #AA182C;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.hover-button:focus {
   outline: none; 
}

.hover-button:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
}

.hover-button .button-span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.hover-button:hover  .button-span:nth-child(2) {
    transition: 0.5s;
    margin-right: 15px;
}
.text-span {
	display: flex;
	padding: 0 10px;
	margin: auto;
}

.button-span {
    transform: skewX(15deg);
	display: inline-flex;
  }

.button-span:nth-child(2) {
    width: 20px;
	margin-left: 20px;
    position: relative;
  }

.hover-card {
	background-color: black;
}

.bg-img{
	opacity: 1;
	with: 100%;
	transition: ease-out 0.4s;
	webkit-filter: brightness(100%);
}

.button-container:hover .bg-img{
	-webkit-filter: brightness(70%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
	transition: all .3s ease;
}