@charset "utf-8";
#home_header_box {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	transition: transform linear 0s; /* changed in script later */
	margin-bottom: 10px;
	overflow-y: hidden;
	/*background-color: burlywood;*/
}
#home_press_box {
	z-index: 50;
	flex-basis: 100%;
	flex-shrink: 0;
	transition: transform linear 0s; /* changed in script later */
	background-image: url(https://bac-press.com/wp-content/assets/press.svg);
	background-repeat:no-repeat;
	background-position: bottom center;
	background-size: cover;
	/*opacity: 0.3*/
}
#home_fan_box {
	/*position: absolute;*/
	position: relative;
	display: flex;
	flex-shrink: 0;
	align-content: flex-start;
	justify-content: center;
	/*background-color: aquamarine;*/
}
#home_fan_case{
	/*position: absolute;
	bottom: 0;
	left: 0;*/
	position: absolute; /* Important */
    top: 50%; /* Position Y halfway in */
    left: 50%; /* Position X halfway in */
    transform: translate(-50%,-50%); /* Move it halfway back(x,y) */
	flex-shrink: 0;
	z-index: 30;
	background-image: url(https://bac-press.com/wp-content/assets/fan_case.png);
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
#home_fan_blades_high{
	/*position: absolute;
	bottom: 0;
	left: 0;*/
	position: absolute; /* Important */
    top: 50%; /* Position Y halfway in */
    left: 50%; /* Position X halfway in */
    transform: translate(-50%,-50%) rotate(-3500deg); /* Move it halfway back(x,y) */
	transform-origin: 'center';
	flex-shrink: 0;
	background-image: url(https://bac-press.com/wp-content/assets/fan_high.png);
	transition: transform linear 0s;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
#home_fan_blades_low{
	/*position: absolute;
	bottom: 0;
	left: 0;*/
	position: absolute; /* Important */
    top: 50%; /* Position Y halfway in */
    left: 50%; /* Position X halfway in */
    transform: translate(-50%,-50%) rotate(-3500deg); /* Move it halfway back(x,y) */
	transform-origin: 'center';
	flex-shrink: 0;
	background-image: url(https://bac-press.com/wp-content/assets/fan_low.png);
	transition: transform linear 0s;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
#home_logo_box{
	/*position: absolute;
	right: 0;
	bottom: 0;*/
	flex-shrink: 0;
	background-image: url(https://bac-press.com/wp-content/assets/BACPress.svg);
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}