#team { position: relative; }
#team > .content-wrapper {}
#team > .content-wrapper > main {
	position: relative;
	padding-top: 175px;
	
	color: #FFF;
}
#team > .content-wrapper > main:before {
	content: "";
	position: absolute; top: 0; right: min(-45px, calc(((100vw - 100px - 1290px + 90px) / 2) * -1)); bottom: 0; z-index: -1;
	
	background-color: #136064;
}
@media (min-width: 1200px)	  { #team > .content-wrapper > main:before { left: 50%; } }
@media (max-width: 1199.99px) { #team > .content-wrapper > main:before { left: 20%; } }

/*--------------------------------------------------------------------------------------------------------------*/

#team > .content-wrapper > main > .hook {
  	margin-bottom: 45px;
	padding-left: 45px;
	
	line-height: 24px;
	font-size: 30px;
	font-weight: 100;
	color: #47B0B5;
}
#team > .content-wrapper > main > .complex-title {
	padding-left: 45px;
	margin-bottom: 45px;
}
#team > .content-wrapper > main > .complex-title > span { display: block; }
@media (min-width: 1200px)	  {
	#team > .content-wrapper > main > .hook,
	#team > .content-wrapper > main > .complex-title { margin-left: 50%; }
}
@media (max-width: 1199.99px) {
	#team > .content-wrapper > main > .hook,
	#team > .content-wrapper > main > .complex-title { margin-left: 20%; }
}
@media (min-width: 800px)	  {
	#team > .content-wrapper > main > .hook,
	#team > .content-wrapper > main > .complex-title { padding-left: 70px; }
}
@media (max-width: 799.99px)  {
	#team > .content-wrapper > main > .hook,
	#team > .content-wrapper > main > .complex-title { padding-left: 45px; }
}

/*--------------------------------------------------------------------------------------------------------------*/

#filters {
	display: flex; flex: 0 0 max-content;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 45px;
}
#filters > .filter { cursor: pointer; }
#filters > .filter.selected > span { background-size: 100% 100%; }
@media (min-width: 1200px) {
	#filters {
		justify-content: center;
		column-gap: 70px;
	}
}
@media (max-width: 1199.99px) {
	#filters {
		column-gap: 30px;
		row-gap: 5px;
		margin-left: 20%;
	}
}
@media (max-width: 1199.99px) and (min-width: 800px) { #filters { padding-left: 70px; } }
@media (max-width:  799.99px) 						 { #filters { padding-left: 45px; } }

/*--------------------------------------------------------------------------------------------------------------*/

#team > .content-wrapper > main > .members {
	position: relative;
	margin-left: -45px;
	margin-right: -45px;
}
#team > .content-wrapper > main > .members:before,
#team > .content-wrapper > main > .members:after {
	content: "";
	position: absolute; top: 0; right: min(-45px, calc(((100vw - 100px - 1290px + 90px) / 2) * -1)); z-index: -1;
	display: block; height: 100%;
}
#team > .content-wrapper > main > .members:before { background-color: #FFF; }
#team > .content-wrapper > main > .members:after { background-color: #136064; }
@media (min-width: 1200px) {
	#team > .content-wrapper > main > .members:before,
	#team > .content-wrapper > main > .members:after { left: 50%; }
}
@media (max-width: 1199.99px) {
	#team > .content-wrapper > main > .members:before,
	#team > .content-wrapper > main > .members:after { left: calc(((100vw - 90px) * .2) + 45px); }
}
@media (min-width: 1200px)							 { #team > .content-wrapper > main > .members:after { max-height: calc((min(1290px, 100vw - 100px) / 4) * 1.3 * 3); } }
@media (max-width: 1199.99px) and (min-width: 800px) { #team > .content-wrapper > main > .members:after { max-height: calc(25vw * 1.3 * 3); } }
@media (max-width:  799.99px)						 { #team > .content-wrapper > main > .members:after { max-height: calc(40vw * 1.3 * 3); } }
#team > .content-wrapper > main > .members > .group {
	display: flex;
	flex-wrap: wrap;
}
#team > .content-wrapper > main > .members > .group > .member { position: relative; }
@media (min-width: 800px) {
	#team > .content-wrapper > main > .members > .group { margin-right: 25%; }
	#team > .content-wrapper > main > .members > .group > .member { flex: 0 0 calc(100% / 3); }
}
@media (max-width: 799.99px) {
	#team > .content-wrapper > main > .members > .group { margin-right: 20%; }
	#team > .content-wrapper > main > .members > .group > .member { flex: 0 0 calc(100% / 2); }
}
#team > .content-wrapper > main > .members > .group > .member > .avatar {
	position: relative;
	padding-top: 130%;
	
	background-position: center;
	background-size: cover;
}
#team > .content-wrapper > main > .members > .group > .member > .avatar:after {
	content: "";
	position: absolute; top: 0; right: 0; bottom: 0; left: 0;
	
	background-image: linear-gradient(to top right, rgba(19,96,100,.8), transparent 60%);
}
#team > .content-wrapper > main > .members > .group > .member > .identity {
	position: absolute; top: 0; right: 0; bottom: 0; left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	
	background-color: rgba(228,92,74,0); transition: background-color .2s ease-out;
}
#team > .content-wrapper > main > .members > .group > .member:hover > .identity { background-color: rgba(228,92,74,.8); }
#team > .content-wrapper > main > .members > .group > .member > .identity > .name {}
#team > .content-wrapper > main > .members > .group > .member > .identity > .name > .first { font-weight: 200; }
#team > .content-wrapper > main > .members > .group > .member > .identity > .name > .last { font-weight: 700; }
#team > .content-wrapper > main > .members > .group > .member > .identity > .role { font-weight: 500; }
@media (min-width: 1200px) {
	#team > .content-wrapper > main > .members > .group > .member > .identity > .name {
		margin-bottom: 15px;

		line-height: 120%;
		font-size: 38px;
	}
	#team > .content-wrapper > main > .members > .group > .member > .identity > .role { letter-spacing: 2px; }
}
@media (max-width: 1199.99px) {
	#team > .content-wrapper > main > .members > .group > .member > .identity > .name {
		margin-bottom: 10px;

		line-height: 120%;
		font-size: 20px;
	}
}