.team__title h2,
.team__title h1  {
	font-family: var(--main-font-semi-bold);
	font-size: 35px;
	line-height: 45px;
	font-weight: 700;
	color: var(--color-blue);
	width: fit-content;
	margin: 0 auto;
	position: relative;
}

.team__title h2::before,
.team__title h1::before {
	content: "";
	position: absolute;
	width: 102%;
	height: 16px;
	background: #c4eaf9;
	bottom: 2px;
	left: -2px;
	z-index: -1;
	opacity: 1;
	border-radius: 4px;
}

.team__title {
	margin: 0 0 40px 0;
}

.team__item {
	padding: 20px;
	background-origin: padding-box;
	border: 2px solid #89D4F3;
	border-radius: 30px;
	background: rgba(137, 212, 243, 0.06);	
	display: flex;
	margin: 0 0 30px 0;
}

.team__item:nth-child(2n) {
	background: rgba(255,215,135, 0.06);
	border: 2px solid #FFD787;
}

.team__item:nth-child(3n) {
	background: rgba(254, 185, 204, 0.06);
	border: 2px solid #FEB9CC;
}
  
.team__item-img {
	flex: 0 0 175px;
	max-height: 240px;
	border-radius: 30px;
	overflow: hidden;
}

.team__item-img img {
	transition: 0.3s;
}

.team__item-img a:hover img {
	scale: 1.05;
}

.team__item-content {
	padding: 0 0 0 30px;
}

.team__item-name {
	font-family: var(--main-font-semi-bold);
	font-size: 25px;
	line-height: 30px;
	color: var(--color-blue);
	margin: 0 0 10px 0;
}

.team__item-name a {
	text-decoration: none;
}

.team__item-name a:hover {
	color: var(--color-blue);
	text-decoration: underline;
}

.team__item-list ul {
	list-style-image: url(/local/templates/s1/images/li-dot.png);
	display: flex;
	gap: 40px;
	padding-left: 17px;
}

.team__item-list  li {
	font-family: var(--main-font-semi-bold);
	font-size: 16px;
	line-height: 20px;
	color: var(--color-blue);
}

.team__item-text {
	font-family: var(--main-font);
	font-size: 16px;
	line-height: 20px;
	color: var(--color-blue);
}

.team__item-text li{
	margin: 0 0 10px 0;
}

.list-header {
	margin: 0 0 5px 0;
}

.team .team__btn a {
	font-family: var(--main-font-semi-bold);
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	text-transform: uppercase;
	background: var(--color-orange);
	padding: 10px 25px;
	border-radius: 30px;
	cursor: pointer;
	opacity: 0.7;
	transition: 0.3s;
	margin: 0 auto;
	display: block;
	text-align: center;
	width: fit-content;
	text-decoration: none;
}

.team .team__btn a:hover {
	opacity: 1;
	color: #fff;
}

.team__container {
	margin:0 0 80px 0;
}




