.corpgov{
	padding: 180px 100px 80px 100px;
	text-align: center;
	background: linear-gradient(rgba(250,195,39,.2), rgba(0,0,0,1)), url("../_images/corpoprofile.jpg") no-repeat fixed center;
	color: white;
}
.corpgov h1{
	font-size: 50px;
	margin-bottom: 70px;
	text-shadow: 1px 1px 5px black;
}
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 20px;
	max-width: 800px;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	margin: 0 auto 10px auto;  
	font-weight: bold;
	border-radius: 5px;
}

.corpgov .active, .accordion:hover {
  background-color: #FF5722;
  color: white;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.corpgov .active:after {
  content: "\2212";
  color: white;
}

.panel {
	border-radius: 5px;
	max-width: 800px;
	margin: 0 auto 10px auto;
	padding: 0px 20px;
	background-color: #B2BEB5;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	text-align: left;
	display: flex;
	flex-direction: row;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
}
.panel div{
	padding: 20px;
	display: flex;
	align-items: center;
	transition: .4s;
	color: #444;
}
.panel div:hover{
	background-color: #FF5722;
	color: white;
	border-radius: 5px;
}

@media (max-width: 800px){
	.corpgov{
		padding-left: 50px;
		padding-right: 50px;
	}
	.corpgov h1{
		font-size: 40px;
	}
}