@charset "utf-8";
.menuItems {
  display: flex;
  flex-wrap: wrap;	
  align-items: center;
  justify-content: center;
  text-decoration: none;
 }
.menuItems > div {
  background-color:#005EB8; 
  color: white; font-size:16px; 
  border-radius: 5px; 
  margin: 2px 2px; 
  font-weight: 500;
  font-family: sans-serif;
  text-transform: uppercase;
  flex-grow: 2;
  text-decoration: none;
 }
.menuItems a {
  color: white;
  text-decoration: none;
  padding: 7px;
}
.menuItems > div :hover {
  background-color: #319842;
  border-radius: 5px;
  text-decoration: none;
}
.menuProgram {
  display: flex;
  flex-wrap: wrap;	
  align-items: center;
  justify-content:center;

 }
.menuProgram > div {
  background-color:#319842; 
  color: white; 
  font-size:16px;
  margin: 0px 2px; 
/*  border: 1px white;  */
  font-weight: bold;
  font-family: sans-serif;
  text-transform: uppercase;
  padding: 10px;
 }
.menuProgram a {
  color: white;
  text-decoration: none;
  padding: 10px;
}
.menuProgram > div :hover {
  background-color: #005eb8;
  text-decoration: none;
}

.menuProgram > div :active {
  background-color: #005eb8;
}


.containerButtonPWPL {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.containerButtonPWPL > div {
  background-color: #319b42;
  color: white;
  font-size: 16px;
  font-weight:500;	  
  font-family: sans-serif;
  text-transform: uppercase;
  margin: 0px 2px;
/*  padding: 7px;  */
  border-radius: 5px;
  min-width:300px;
  flex-grow: 2;
}
.containerButtonPWPL a {
  color: white;
  text-decoration: none;
  padding: 7px;
}

.containerButtonPWPL > div :hover {
  background: rgba(0,94,184,1)!important;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  text-decoration: none;
}
	
.pwplbuttonBlue {
  background-color: #568583;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  margin: 2px;
  cursor: pointer;
  padding: 10px;
  border-radius: 15px;
  min-width:350px;
}

.pwplbuttonBlue:hover {
  background: rgba(130,200,202,1)!important;
  color: white;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  text-decoration: none;
}
	
@media (max-width: 769px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
	}
  .containerButtonPWPL {
		flex-direction: column;		
	}
  }