.fixed_image_unit 					{ position: relative; width: 100%; height: auto; min-height: 100vh; background-color: black; }
.fixed_image_unit .bg 				{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.fixed_image_unit .content_holder	{ position: absolute; display: flex; justify-content: center; left: 0; top: 0; width: 100%; height: 100%; padding: 25px; }
.fixed_image_unit .content_holder.top 		{ align-items: start; }
.fixed_image_unit .content_holder.center 	{ align-items: center; }
.fixed_image_unit .content_holder.bottom 	{ align-items: end; }

.fixed_image_unit .content_holder .alignme 			{ width: 100%; }
.fixed_image_unit .content_holder .alignme.left 	{ text-align: left; }
.fixed_image_unit .content_holder .alignme.center 	{ text-align: center; }
.fixed_image_unit .content_holder .alignme.right 	{ text-align: right; }


.fixed_image_unit.margin_top 		{ margin-top: 50px; }
.fixed_image_unit.margin_bottom 	{ margin-bottom: 50px; }

.fixed_image_unit.visible_only_on_mobile 			{ display: none; }

@media only screen and (max-width : 960px) {
	.fixed_image_unit.visible_only_on_desktop 		{ display: none; }
	.fixed_image_unit.visible_only_on_mobile 		{ display: block; }
}

@media only screen and (max-width : 768px) {
	.fixed_image_unit 				{ width: 100% !important; height: auto !important; margin-left: 0 !important; }

	.fixed_image_unit.margin_top 		{ margin-top: 25px; }
	.fixed_image_unit.margin_bottom 	{ margin-bottom: 25px; }
}