.turbine {
	position: relative;
	/* margin-bottom: 100px; */
	z-index: 1;
}

.cone {
	width: 50px;
	height: 50px;
	background: #F8584C;
	border: 4px solid #000;
    border-right: 9px solid #000;
    border-bottom: 9px solid #000;
	border-radius: 50px;
	position: absolute;
	left: -10px;
	top: -15px;
	z-index: 2;
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.blades {
	position: relative;
	z-index: 1;
	top: -5px;
	left: -135px;
	transform-origin: 150px 15px;
	animation: 4s windy linear infinite;
}
@keyframes windy {
	to {
		transform: rotate(-360deg);
	}
}

.blades .blade {
	width: 300px;
	height: 30px;
	background: #129EBF;
	border: 4px solid #000;
    border-right: 9px solid #000;
    border-bottom: 9px solid #000;
	position: absolute;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 0 100%;
}

.blades .blade:nth-of-type(1) {
	transform: rotate(-30deg) translate(-150px);
}
.blades .blade:nth-of-type(2) {
	transform: rotate(30deg) translate(150px);
	border-radius: 0 100% 0 0;
}
.blades .blade:nth-of-type(3) {
	transform: rotate(90deg) translate(-150px);
}

.tower {
	background: #FFD833;
	width: 30px;
	height: 600px;
	z-index: 0;
	position: relative;
	border: 4px solid #000;
    border-right: 9px solid #000;
}

.secondary-left,
.secondary-right {
	transform: scale(0.66);
	transform-origin: bottom;
	z-index: 0;
}
.secondary-left {
	margin-right: 200px;
}
.secondary-right {
	margin-left: 400px;
}

.windpowerbody {
	/* background: linear-gradient(to bottom, #757abf 0%, #8583be 60%, #eab0d1 100%); */
	display: flex;
	align-items: flex-end;
	justify-content: center;
	/* height: 100vh; */
	margin: 0;
	/* overflow: hidden; */
    width: 50%;
    position: relative;
    bottom: -35%;
}

.gogreenshero{
	height: auto;
}
@media all and (max-width: 1300px) {
	.secondary-right {
		display: none;
	}
}

@media all and (max-width: 1050px) {
	.secondary-left {
		display: none;
	}
}

@media all and (max-width: 640px) {
	.turbine {
		transform: scale(0.5);
		transform-origin: bottom;
	}
}
@media(max-width: 800px) {
	.windpowerbody {
		bottom: -400px;
	}
	.windpowerbodygogreen {
		bottom: unset;
	}
	.gogreenshero{
	height: 67vh;
}
}