#description {}
@media (min-width: 900px)	 { #description { margin: 30px 0; } }
@media (max-width: 899.99px) { #description { margin: 25px 0; } }

/*--------------------------------------------------------------------------------------*/

#description > .content-wrapper {}

/*--------------------------------------------------------------------------------------*/

#description > .content-wrapper > .cards { display: flex; }
@media (min-width: 900px) {
	#description > .content-wrapper > .cards {
		flex-direction: row;
		align-items: flex-start;
		gap: 30px;
	}
}
@media (max-width: 899.99px) {
	#description > .content-wrapper > .cards {
		flex-direction: column;
		gap: 25px;
	}
}

/*--------------------------------------------------------------------------------------*/

#description > .content-wrapper > .cards > .card {}
@media (min-width: 900px) { #description > .content-wrapper > .cards > .card { padding: 45px 50px; } }

/*--------------------------------------------------------------------------------------*/

#description > .content-wrapper > .cards > .meta {}
#description > .content-wrapper > .cards > .meta > .contributors {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-bottom: 25px;
}
#description > .content-wrapper > .cards > .meta > .contributors > .contributor {
    position: relative;
    width: 75px; height: 75px; overflow: hidden;
	
	background-color: #EFEFEF;
	border: solid 1px rgba(0,0,0,.3);
    border-radius: 50%;
}
#description > .content-wrapper > .cards > .meta > .contributors > .contributor:not(.logo):before {
	content: '';
	position: absolute; top: 7px; left: 7px;
	display: block; height: calc(100% - 14px); width: calc(100% - 14px);
	
	background-color: #FFF;
	
	-webkit-mask-image: url("../../images/logo.png");
	mask-image: url("../../images/logo.png");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
#description > .content-wrapper > .cards > .meta > .contributors > .contributor > img {
    position: relative;
    height: 100%; width: 100%;
    
    object-fit: cover;
    object-position: top center;
}
#description > .content-wrapper > .cards > .meta > .contributors > .contributor.logo > img {
	content: url("../../images/logo.png");
	padding: 12px;
	
    object-fit: contain;
    object-position: center;
}
#description > .content-wrapper > .cards > .meta > .contributors > .contributor:not(:last-child) { margin-left: -30px; }
#description > .content-wrapper > .cards > .meta > .hook {
	margin-bottom: 25px;
	
	text-transform: uppercase;
	font-family: 'Stretch Pro';
	font-size: 20px;
}
#description > .content-wrapper > .cards > .meta > .sectors {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector {
    position: relative;
	display: block; width: auto; overflow: hidden;
    padding: 15px 20px 15px 25px;
    
	background-color: #FFF;
    border-radius: 100px;
    border: solid 1px rgba(0,0,0,.3);
	
	color: #000;
    
    isolation: isolate;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector > .container {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 10px;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector > .container > .icon {
	height: 20px; width: 20px;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector > .container > .icon:empty {
	background-image: url("../../images/logo.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector > .container > .icon > img {
	height: 100%; width: 100%;
	
	object-fit: contain;
	object-position: center;
}
#description > .content-wrapper > .cards > .meta > .sectors > .sector > .container > .label {
	white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
}
@media (min-width: 900px) {
	#description > .content-wrapper > .cards > .meta { flex: 0 0 450px; }
}
@media (max-width: 899.99px) {
}

/*--------------------------------------------------------------------------------------*/

#description > .content-wrapper > .cards > .description {}
#description > .content-wrapper > .cards > .description > .title {
	text-transform: uppercase;
	font-family: 'Stretch Pro';
	font-size: 20px;
}
#description > .content-wrapper > .cards > .description > p {}
@media (min-width: 900px) {
	#description > .content-wrapper > .cards > .description {
		flex: 1;
		align-self: stretch;
	}
	#description > .content-wrapper > .cards > .description > .title { margin-bottom: 30px; }
}
@media (max-width: 899.99px) {
	#description > .content-wrapper > .cards > .description > .title { margin-bottom: 25px; }
}