.box {
	position: relative;
	height: 90vh;
	z-index: 1;
	padding: 40px;
	width: 1213px;
}

.box__title-mobile,
.image__mobile {
	display: none;	
}

.box__title {
	position: absolute;
	top: 234px;
	left: 286px;
	font-weight: 600;
	color: #008941;
	text-align: center;
	max-width: min-content;
}

.box__image-text {
	position: relative;
}

.box__image-text img {
	position: absolute;
	width: 290px;
	top: 115px;
	left: 190px;
}

.box__content-inner {
	min-width: 160px;
	max-width: 162px;
	min-height: 110px;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.description-card {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	position: absolute;
}

.box__content {
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
	height: auto;
	border-radius: 10px;
	border: 2px solid black;
	padding: 10px;
	z-index: 10;
	max-width: 190px;
}

.box__container li {
	z-index: 1;
}

.box__content ul {
	padding-left: 20px;
	z-index: 1;
	list-style: disc;
}

.box__content ul li {
	line-height: 1.3;
	margin: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bubble { 
	display: inline-block;
	width: 50%;
	position: absolute;
	z-index: 1;
}

.bubble--1 .box__content {
	top: 135px;
	right: -20px;
	z-index: 10;
}

.bubble--2 .box__content {
	z-index: 10;
	top: 278px;
	right: 0px;
}

.bubble--3 .box__content {
	top: 420px;
	right: 110px;
	z-index: 100;
}

.bubble--4 .box__content {
	top: 420px;
	right: 330px;
	z-index: 100;
}

.bubble--5 .box__content {
	top: 277px;
	right: 450px;
	z-index: 100;
}

.bubble--6 .box__content {
	top: 135px;
	right: 465px;
	z-index: 100;
}

.bubble--7 .box__content {
	top: -8px;
	right: 415px;
	z-index: 100;
}

.bubble--8 .box__content {
	top: -30px;
	right: 223px;
	z-index: 100;
}

.bubble--9 .box__content {
	top: -8px;
	right: 31px;
	z-index: 100;
}

.description-card {
	height: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.box__content-inner:hover .description-card,
.box__content:hover .description-card {
	width: 100%;
	height: auto;
	opacity: 1;
	overflow: visible;
	display: flex; 
	align-items: center;
}

.box__content-inner:hover .title-card,
.box__content:hover .title-card {
	height: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
}

{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
	.box{
		padding: 0;
		width: 730px;
		height: 600px;
	}
	.box__container {
		right: 70px;
		position: absolute;
		top: 10px;
	}

	.box__title {
		top: 247px;
		left: 316px;
	}

	.box__image-text .image__desktop {
		width: 290px;
		top: 128px;
		left: 220px;
	}

}

{# ---- Mobile Breakpoint ---- #}
@media (max-width: 765px) {

	.box {
		width: 100%;
		margin-bottom: 30px;
		height: 740px;
	}

	.box__title-mobile {
		display: block;	
		text-align: center;
		padding-bottom: 30px;
	}
	.box__title,
	.image__desktop {
		display: none;	
	}
	.image__mobile {
		display: block;
	}

	.box__image-text .image__mobile {
		top: 115px;
		left: 2px;
		opacity: 0.15
	}

	.box__container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
		position: static;
		padding-left: 0;
	}

	.bubble {
		width: 100%;
		position: static;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		z-index: auto;
	}

	.box__content {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		z-index: auto;
		width: 100%;
	}
}
