.team-items {
	gap: 20px;
}

.team-items .team-item {
	/* width: calc(25% - 15px); */
	width: calc(100% / 3 - (40px / 3));
	aspect-ratio: 1 / 1;
	position: relative;
	transition: 0.3s;
}

.team-items .team-item:hover {
	transform: scale(1.03);
}

.team-items .team-item .team-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	border-radius: 10px;
}

.team-items .team-item .team-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.team-items .team-item .team-image::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgb(238, 114, 60, 0.5) 0%, rgba(255,255,255,0) 80%);
	opacity: 0;
	transition: 0.3s;
}

.team-items .team-item:hover .team-image::after {
	opacity: 1;
}

.team-items .team-item .team-text {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 80%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;

}

.team-items .team-item .team-title h3 {
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 0;
	color: #fff;
}
.nonebox-row {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.nonebox-team-image {
	width: 35%;
}

.nonebox-team-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}

.nonebox-team-text {
	width: 65%;
	padding-left: 25px;
}

.nonebox-team-title h3 {
	font-weight: 700;
	color: #293238;
	font-size: 38px;
}

.nonebox-team-position {
	color: #ee723c;
	font-size: 18px;
	font-weight: 700;
	padding: 0 0 10px;
}

.nonebox-team-about {
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #293238;
}

.nonebox-team-loves {
	font-size: 16px;
	color: #293238;
}

.nonebox-team-loves span {
	color: #ee723c;
	font-weight: 700;
}

@media only screen and (max-width: 1300px) {
	.team-items .team-item {
		width: calc(33.3% - 15px);
	}
}

@media only screen and (max-width: 980px) {
	.team-items .team-item {
		width: calc(50% - 10px);
	}
}

@media only screen and (max-width: 767px) {

	.team-items .team-item {
		width: 100%;
		aspect-ratio: 5 / 4;
/* 		height: 300px; */
		position: relative;
	}
	
	.team-items .team-item .team-image img {
		object-position: top;
	}

	.nonebox-row {
		flex-direction: column;
		align-items: center;
	}

	.nonebox-team-image {
		width: 200px;
		height: 200px;
		border-radius: 100%;
		overflow: hidden;
		margin-bottom: 15px;
	}

	.nonebox-team-text {
		width: 100%;
		text-align: center;
	}

	.nonebox-team-about,
	.nonebox-team-loves {
		text-align: left;
	}

}