
.icon-div {
	text-align: center;
	background-color: #3bc9d3;
	display: inline-block;
	border-radius: 50%;
	height: 80px;
	width: 80px;
}

.cards_wrap{
	/*padding: 20px;*/
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cards_wrap .card_item{
	padding: 15px 25px;
	width: 25%;
}

.cards_wrap .card_inner {
	background: #fff;
	border-radius: 5px;
	padding: 55px 20px;
	min-width: 225px;
	min-height: 250px;
	max-height: 370px;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 1px 3px 1px rgb(0 0 0 / 20%);
}

.cards_wrap .card_item img {
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
	position: relative;
	top: 20px;
}

.cards_wrap .card_item .role_name{
	color: #444;
	font-weight: 700;
	letter-spacing: 2px;	
	font-size: 18px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-top: 20px;
}

.cards_wrap .card_item .real_name{
	color: #b6c0c2;
	font-size: 12px;
	font-weight: 100;
	margin: 5px 0 10px;
}

.cards_wrap .card_item .film{
	font-size: 14px;
	line-height: 24px;
	color: #7b8ca0;
}

@media screen and (max-width: 1024px){
	.cards_wrap .card_item{
		width: 33%;
	}
}

@media screen and (max-width: 768px){
	.cards_wrap .card_item{
		width: 50%;
	}
	.wrapper .header{
		font-size: 16px;
		height: 60px;
	}
}

@media screen and (max-width: 568px){
	.cards_wrap .card_item{
		width: 100%;
	}
	.wrapper .header{
		font-size: 14px;
	}
}