@charset 'UTF-8';
.header {
    background-color: rgba(255, 255, 255, 0); 
	transition: background-color 0.8s ease-out;
}
.header.active {
	background-color: rgba(255, 255, 255, 0.8);
	/*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
}
.staff-wrap {
	gap:40px;
}
@media screen and (max-width: 768px){
	.staff-wrap {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		gap:30px;
	}
}