.box__ghost {
	padding: 1rem 1rem 6rem;
	/* position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	*/
}
.box__ghost .symbol:nth-child(1) {
	position: relative;
	left: 235px;
	top: 60px;
	height: 13px;
	width: 13px;
	border: 4px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 2s ease-in-out .6s infinite;
}
.box__ghost .symbol:nth-child(2) {
	position: relative;
	left: 215px;
	height: 18px;
	width: 18px;
	border: 4px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 4s ease-in-out 1.3s infinite;
}
.box__ghost .symbol:nth-child(3) {
	position: relative;
	left: 190px;
	top: -30px;
    height: 11px;
    width: 11px;
	border: 4px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 2s ease-in-out .3s infinite;
}
.box__ghost .symbol:nth-child(4) {
	position: relative;
	left: 115px;
	top: 25px;
	height: 16px;
	width: 16px;
	border: 4px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 4s ease-in-out 1.3s infinite;
}
.box__ghost .symbol:nth-child(5) {
	position: relative;
	right: 5px;
	top: 40px;
	height: 12px;
	width: 12px;
	border: 3px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 1.7s ease-in-out 7s infinite;
}
.box__ghost .symbol:nth-child(6) {
	position: relative;
	left: -5px;
	top: 30px;
	height: 18px;
	width: 18px;
	border: 4px solid;
	border-radius: 50%;
	border-color: #555;
	opacity: 0.2;
	animation: shine 4s ease-in-out 1.3s infinite;
}
.box__ghost .box__ghost-container {
	background: #eee;
	width: 100px;
	height: 100px;
	border-radius: 100px 100px 0 0;
	position: relative;
	/* top: -2rem; */
	margin: 0 auto;
	animation: upndown 3s ease-in-out infinite;
}
.box__ghost .box__ghost-container .box__ghost-eyes {
	position: absolute;
	left: 50%;
	top: 45%;
	height: 12px;
	width: 70px;
}
.box__ghost .box__ghost-container .box__ghost-eyes .box__eye-left {
	width: 12px;
	height: 12px;
	background: #332f63;
	border-radius: 50%;
	margin: 0 10px;
	position: absolute;
	left: 0;
}
.box__ghost .box__ghost-container .box__ghost-eyes .box__eye-right {
	width: 12px;
	height: 12px;
	background: #332f63;
	border-radius: 50%;
	margin: 0 10px;
	position: absolute;
	right: 0;
}
.box__ghost .box__ghost-container .box__ghost-bottom {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}
.box__ghost .box__ghost-container .box__ghost-bottom div {
	flex-grow: 1;
	position: relative;
	top: -10px;
	height: 20px;
	border-radius: 100%;
	background-color: #eee;
}
.box__ghost .box__ghost-container .box__ghost-bottom div:nth-child(2n) {
	top: -12px;
	margin: 0 -0px;
	border-top: 15px solid #fff;
	background: transparent;
}
.box__ghost .box__ghost-shadow {
	position: relative;
	/* top: -2rem; */
	height: 20px;
	box-shadow: 0 50px 15px 5px #3b3769;
	border-radius: 50%;
	margin: 0 auto;
	animation: smallnbig 3s ease-in-out infinite;
}
.box__description {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}
.box__description .box__description-container {
	color: #fff;
	text-align: center;
	width: 200px;
	font-size: 16px;
	margin: 0 auto;
}
.box__description .box__description-container .box__description-title {
	font-size: 24px;
	letter-spacing: 0.5px;
}
.box__description .box__description-container .box__description-text {
	color: #8c8aa7;
	line-height: 20px;
	margin-top: 20px;
}
.box__description .box__button {
	display: block;
	position: relative;
	background: #ff5e65;
	border: 1px solid transparent;
	border-radius: 50px;
	height: 50px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	line-height: 50px;
	font-size: 18px;
	padding: 0 70px;
	white-space: nowrap;
	margin-top: 25px;
	transition: background 0.5s ease;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}
.box__description .box__button:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 100px;
	background: #fff;
	bottom: -25px;
	left: 0;
	border: 2px solid #fff;
	transform: translateX(-50px) rotate(45deg);
	transition: transform 0.5s ease;
}
.box__description .box__button:hover {
	background: transparent;
	border-color: #fff;
}
.box__description .box__button:hover:before {
	transform: translateX(250px) rotate(45deg);
}
@keyframes upndown {
	0% {
		transform: translateY(5px);
	}
	50% {
		transform: translateY(15px);
	}
	100% {
		transform: translateY(5px);
	}
}
@keyframes smallnbig {
	0% {
		width: 90px;
	}
	50% {
		width: 100px;
	}
	100% {
		width: 90px;
	}
}
@keyframes shine {
	0% {
		opacity: 0.2;
	}
	25% {
		opacity: 0.1;
	}
	50% {
		opacity: 0.2;
	}
	100% {
		opacity: 0.2;
	}
}}
}
