section  .yol {
	border-bottom: 1px solid #ececec;
}
section  .iz {
	display: flex;
	align-items: center;
	font-weight: 500;
	padding: 20px 0 15px;
}
section  .iz span {
	margin-bottom: 5px;
}
section .iz a {
	color: #bdc1d6;
	transition: 0.2s;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
section  .iz a span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	margin: 0 20px;
	background-color: #bdc1d6;
}
section  .iz a:hover {
	color: #000;
}

section  .sar {
	padding: 30px 0;
}
section  .sar h1{
	font-size: 30px;
}




.team {
	max-width: 1100px;
	background-color: #fff;
	margin: 0 auto;
}

.team .follow {
	margin-left: -12px;
	margin-right: -12px;
}

.team__inner {
	padding: 30px 0;
	margin-left: -12px;
	margin-right: -12px;
	display: flex;
	flex-wrap: wrap;
}

.team__wrap {
	padding: 0 12px;
	margin-bottom: 24px;
	width: 200px;
	margin: 0 auto;
}


.team__wrap h1 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 8px;
}

.team__wrap p {
	font-weight: 500;
	color: #848e9f;
	text-align: center;
}

.team__box {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 110%;
	border-radius: 10px;
	margin-bottom: 12px;
}

.team__box:hover .team__cover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.team__box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.team__cover {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}

.team__cover a {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background-color: #8527d8;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
	flex-shrink: 0;
}

.team__cover a:not(:last-child) {
	margin-right: 10px;
}

.team__cover a:hover {
	background-color: #7823c2;
}

.team__cover a i {
	color: #fff;
	font-size: 20px;
}