@font-face {
  font-family: 'Digital Dreamer'; /* Name your font family */
  src: url('../fonts/Digital Dreamer.otf'); /* Locate the .ttf file within your directory*/
}

#promo_container{
	display:block;
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	background-color: var(--sec_clr);
	margin: 10px auto;
}

.promo_img{
	display: block;
	position: relative;
	left: 0;
	top: -20px;
	height: 250px;
	width: 300px;
	transform: rotateZ(10deg)/* translateX(-50px) translateY(-10px)*/;
	scale: 1.4;
	background-color: var(--3rd_clr);
	overflow: hidden;
	border-right: 5px solid var(--sec_clr);
	z-index: 1;
}
.promo_img img{
	display: block;
	position: relative;
	max-width: 110%;
	max-height: 110%;
	transform: rotateZ(-10deg) translateX(5px) translateY(0px);
	margin: auto;
	pointer-events: none;
	z-index: -1;
}

.promo_title{
	display: block;
	position: absolute;
	left: 0%;
	transform: translateX(30px) rotate(-15deg);
	bottom: 50px;
	color: var(--sec_clr);
	width: 100%;
	height:fit-content;
	/*background-color: rgba(0,0,0,0.25);*/
	z-index: 1;
	text-align: center;
	padding: 5px;
	font-family: "Digital Dreamer";
	font-size: 2rem;
	line-height: 0.85;
	text-shadow: 2px 2px 2px black;
}

.promo_detail{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(100% - 300px);
	height: 100%;
	z-index: 0;
	background: linear-gradient(0deg, var(--prim_clr) 30%, transparent 35%);
	color: var(--3rd_clr);
	padding: 20px 20px 0px 50px;
	text-align: right;
	line-height: 1;
}

.promo_detail span{
	color: var(--sec_clr);
	font-size: 1.5rem;
	padding: 5px 0px;
	text-align: center;
}
.promo_detail span img{
	display: inline-block;
	position: relative;
	transform: translateY(10px);
	width: 30px;

}
.promo_detail_bg{
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	/*width: calc(100% - 350px);*/
	max-height: 50%;
	z-index: 0;
}

.promo_detail_bg img{
	display: block;
	position: relative;
	width: calc(100% - 200px);
	right: -50%;
	transform: translateX(-25%) translateY(-15%);
}

@media only screen and (max-width:600px){
	#promo_container{
		height: 200px;
	}
	.promo_img{
		top: -3px;
		height: 200px;
		width: 200px;
		scale: 1.2;
	}
	.promo_img img{
		max-width: 120%;
		max-height: 120%;
		transform: rotateZ(-10deg) translateX(-10px) translateY(-0px);
		margin: auto;
		pointer-events: none;
		z-index: -1;
	}
	.promo_title{
		transform: translateX(15px) rotate(-15deg);
		bottom: 50px;
		font-size: 1.5rem;
	}
	.promo_detail{
		width: calc(100% - 200px);
		padding: 10px 10px 0px 30px;
		background: linear-gradient(0deg, var(--prim_clr) 60%, transparent 65%);
		font-size: 1rem;
	}
	.promo_detail span{
		font-size: 1.2rem;
	}
	.promo_detail_bg{
		width: 100%;
		z-index: 0;
	}
	.promo_detail_bg img{
		display: block;
		position: relative;
		width: calc(100% - 200px);
		right: -50%;
		transform: translateX(0px) translateY(-5%);
	}
}