.team-blog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	text-decoration: none;
}
.team-blog:hover {
	text-decoration: none;
}
.team-img {
	position: relative;
	display: flex;
	mask-image: url(../images/team-image-mask.svg);
    -webkit-mask-image: url(../images/team-image-mask.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    margin: 0 0 20px;
    padding-bottom: 100%;
    overflow: hidden;
}
.team-img .team-img-info {
	position: absolute;
	display: flex;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "ff-meta-web-pro", sans-serif;
	font-size: 64px;
	line-height: 1;
	width: 100%;
	color: var(--sk-white);
	justify-content: center;
	background-image: none;
	height: auto;
	background-color: transparent;
}
.team-img .team-img-info:after {
	display: none;
}
.team-img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transform: scale(1);
	transition: transform .5s ease;
}
.team-blog:hover .team-img img {
	transform: scale(1.1);
}
.team-info .maxtitle-3 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.3;
	color: var(--sk-black);
	transition: all 0.3s ease-out;
	font-family: "ff-meta-web-pro", sans-serif;
}
.team-blog:hover .team-info .maxtitle-3 {
	color: var(--sk-secondary);
	text-decoration: none;
}
.team-info p {
	font-size: 20px;
	text-decoration: none;
	color: var(--sk-black);
}
.team-info *:last-child {
	margin: 0;
}
.team-accordion .team-blog {
	flex-direction: row;
	align-items: center;
}
.team-accordion .team-blog .team-img {
	width: 114px;
	min-width: 114px;
	height: 86px;
	padding-bottom: 0;
	margin: 0 24px 0 0;
}
.team-accordion .team-info .maxtitle-3 {
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 5px;
}
.team-accordion .team-info p {
	font-weight: 400;
	font-family: 'Calibri';
}
.team-accordion .team-img .team-img-info {
	font-size: 44px;
}
.team-row > .row {
	--bs-gutter-x: 39px;
	--bs-gutter-y: 95px;
}
.plus-btn {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background-color: var(--sk-primary);
	transition: all 0.3s ease-out;
}
.team-blog:hover .plus-btn {
	background-color: var(--sk-secondary);
}
.team-blog:hover .normal-icon {
	opacity: 0;
	visibility: hidden;
}
.team-blog:hover .hover-icon {
	opacity: 1;
	visibility: visible;
}
.plus-btn i {
	position: relative;
	display: flex;
	width: 15px;
	height: 15px;
}
.plus-btn img {
	width: 15px;
	max-width: 15px;
	display: flex;
	transform: none !important;
}
@media (min-width: 768px){
	.mobile-read-more {
		display: none;
	}
}
@media (max-width: 767px){
	.team-info p {
		font-size: 18px;
		line-height: 28px;
	}
	.team-accordion.accordion-flush .accordion-item:first-child,
	.team-accordion.accordion-flush .accordion-item {
		border: none;
	}
	.team-accordion .team-blog .team-img {
	    width: 106px;
	    min-width: 106px;
	    height: 80px;
	    margin: 0 20px 0 0;
	}
	.team-accordion .accordion-button span {
		display: none;
	}
	.team-accordion .team-img .team-img-info {
		display: flex;
	}
	.team-accordion .accordion-button {
		padding-right: 0;
	}
	.mobile-read-more {
		position: relative;
		display: flex;
		justify-content: space-between;
		padding: 11px 50px 10px 20px;
		color: var(--sk-black);
		font-size: 16px;
		line-height: 1.2;
		font-weight: 400;
		border: 1px solid var(--sk-black);
		font-family: 'Calibri';
		margin-top: 24px;
	}
	.mobile-read-more i {
	    position: absolute;
	    right: 0;
	    width: 40px;
	    height: 40px;
	    top: 50%;
	    transform: translateY(-50%);
	    background-color: var(--sk-primary);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.mobile-read-more i:after {
	    position: absolute;
	    content: '';
	    display: flex;
	    background: url(../images/plus.svg) no-repeat center;
	    background-size: contain;
	    width: 15px;
	    height: 15px;
	}
	.accordion-button.active .mobile-read-more i {
	    background-color: var(--sk-secondary);
	}
	.accordion-button.active .mobile-read-more i:after {
	    background: url(../images/minus.svg) no-repeat center;
	    background-size: contain;
	}
	.team-row > .row {
	    --bs-gutter-x: 39px;
	    --bs-gutter-y: 45px;
	}
}