.banner-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 620px;
}

.banner-container::before {
	content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
	background-color: rgb(12, 12, 15);
	filter: drop-shadow(0 0 10px #00D044);
	/* background-image: linear-gradient(180deg, #5f3e56, #49214b, #201a26, #09010C); */
}

.banner-right {
	position: absolute;
	top: 50%;
	right: 2%;
	translate: 0 -50%;
	min-width: 445px;
	width: 25%;
	height: 50%;
	text-transform: uppercase;
	border: 7px solid #00D046;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	z-index: 1;
}

.banner-right-subtext {
	font-size: 2.1rem;
	color: #00D046;
	font-weight: bold;
	text-wrap: nowrap;
}

.banner-side {
	width: 90%;
	display: flex;
	align-items: start;
	gap: 3rem;
	background-color: #00D046;
}

.banner-mid {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	height: 900px;
	width: 1100px;

}

.banner-img-item {
	position: absolute;
	top: 65%;
	width: 105%;
	translate: 0 -50%;
	left: -20%;
	display: block;
	margin: 0 auto;
	z-index: 2;
}

.banner-logo {
	position: absolute;
	top: 20%;
	left: 50%;
	translate: -50% -50%;
	z-index: 1;
	width: 33%;
	filter: invert(0) brightness(1.5);
}

.banner-text {
	font-size: 1.7rem;
	font-weight: bold;
	text-align: start;
	padding: 1rem;
	color: black;
}

.sn-links-container {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% 50%;
	z-index: 3;
}

.banner-links__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2rem;
	width: fit-content;
	height: fit-content;
	padding: 0;
	margin-bottom: 1rem;
}

.banner-links__icon {
	width: 3rem;
	object-fit: cover;
	filter: brightness(1);
	transition: all .1s ease;
}

.banner-links__icon:hover {
	filter: brightness(1) drop-shadow(0px 0px 7px rgba(255, 255, 255, 0.3));
	transform: scale(1.2);
  }

.banner-links__icon_ot {
	width: 2.5rem;
}

.banner-subtext {
	font-size: 1.1rem;
	text-align: center;
	/* font-weight: bold; */
}