.bunner {
	display: flex;
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 100px;
	background-color: #010101;
	overflow: visible;
	transition: all .2s linear;
}

.bunner::after {
	content: '';
	background-color: #ffffff;
	position: absolute;
	top: 100%;
	height: 21px;
	width: 100%;
}

.bunner:hover {
	height: 150px;
	width: 450px;
	overflow: visible;
	transition: all .2s linear;
}

.bunner:hover .bunner__link {
	width: 450px;
}

.bunner__link {
	width: 450px;
	height: 100%;
	display: block;
}


.bunner:hover .bunner__logo-img {
	left: 50px;
	transition: all .2s linear;
}

.bunner:hover .bunner__logo-animate {
	opacity: 0;
	transition: all 0s ease;
}

.bunner__logo-animate {
	width: 50px;
	height: 51px;
	overflow: hidden;
	background-color: #010101;
	position: absolute;
	z-index: 4;
	
	top: 22px;
	left: 26px;
	opacity: 1;
	transition: all .2s ease .2s;
}

.bunner__logo-animate-container {
	animation: animate 10s steps(36, end) infinite;
}

@keyframes animate {
	from {
		transform: translateY(54);
	}
	to {
		transform: translateY(-1944px);
	}
}

.bunner__logo-animate img {
	width: 50px;
	height: 50px;
}

.bunner__logo-img {
	position: absolute;
	top: 29px;
	left: 30px;
	width: 90px;
	height: 90px;
	transition: all .2s linear;
}

.bunner:hover .bunner__content {
	opacity: 1;
	transform: translateX(0);
	transition: all .2s linear;
}

.bunner__content {
	position: absolute;
	top: 18px;
	left: 169px;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-30px);
	transition: all .2s linear;

}

.bunner__content-title {
	display: block;
}

.bunner__content-des {
	display: block;
	margin-top: 21px;
}


.bunner__content-button {
	display: block;
	margin-top: 18px;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 86px;
	height: 23px;
	background-color: #4F40EC;
	border-radius: 14px;
}

.bunner:hover .bunner__vertical {
	opacity: 1;
	transform: translateX(0);
	transition: all .3s linear;
}

.bunner__vertical {
	position: absolute;
	right: 51px;
	top: 24px;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-50px);
	transition: all .3s linear;
}

.bunner:hover .bunner__circle {
	opacity: 1;
	transform: translateX(0);
	transition: transform .2s linear opacity .2s linear;
}

.bunner__circle {
	position: absolute;
	right: 9px;
	top: 63px;
	opacity: 0;
	z-index: 99;
	transform: translateX(-50px);
	transition: transform .2s linear opacity .2s linear;
	animation: circle 3s infinite alternate;
}


.bunner__circle-wrapper {
	position: relative;
}

.bunner__circle-img {
	width: 116px;
	height: 110px;
}

.bunner__circle-eterium {
	position: absolute;
	width: 41px;
	height: 41px;
	left: 35px;
	top: 10px;
}

.bunner__circle-bitcoin {
	position: absolute;
	width: 40px;
	height: 40px;
	left: 12px;
	top: 63px;
}

.bunner__circle-ellipse {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 56px;
	left: 68px;
}

@keyframes circle {
	0% {
		transform: rotate(12deg);
	}

	100% {
		transform: rotate(0deg);
	}
}