.sib-area {
	background-color: #000;
	padding: 5rem 0;
}
.sib-area .container {
	max-width: 153rem;
}
.sib-row {
	margin-top: 6rem;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.sib-item-single {
	width: calc(25% - 1.2rem);
	min-height: 38.9rem;
	position: relative;
	border-radius: 1rem;
	background-color: #222;
	overflow: hidden;
}
.sib-item-bg {
	width: max-content;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
}
.sib-item-contents {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 3.2rem 2.2rem 2rem 2.2rem;
}
.sib-icon {
	width: 5rem;
	height: 4.3rem;
	padding: .8rem;
	background-color: rgba(0, 0, 0, 0.20);
	border-radius: .2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .7s;
	position: relative;
	transform: scale(3);
	left: 14rem;
	top: 13rem;
}
.sib-item-single:hover .sib-icon {
	transform: scale(1);
	left: 0;
	top: 0;
}
.sib-title {
	margin-top: 1.8rem;
	min-height: 8.2rem;
	font-size: 1.5rem;
	line-height: normal;
	font-weight: 600;
	color: #78C370;
	position: relative;
	right: -40rem;
	transition: all .7s;
}
.sib-item-single:hover .sib-title {
	right: 0;
}
.sib-icon svg {
	max-width: 100%;
	max-height: 100%;
}
.sib-text {
	min-height: 11rem;
	font-size: 1.5rem;
	line-height: normal;
	font-weight: 600;
	color: #fff;
	position: relative;
	transition: all .7s;
	left: -40rem;
}
.sib-item-single:hover .sib-text {
	left: 0;
}
.sib-text ul li {
	position: relative;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.sib-text ul li:not(:last-child) {
	margin-bottom: 1rem;
}
.sib-name {
	min-height: 4.6rem;
	background: linear-gradient(90deg, rgba(120, 195, 112, 0.00) 0%, rgba(90, 147, 84, 0.16) 47.12%, rgba(57, 93, 53, 0.00) 100%);
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	line-height: normal;
	color: #fff;
	font-weight: 700;
	margin-left: -2.2rem;
	padding: 0 2.2rem;
	width: calc(100% + 4.4rem);
	max-width: calc(100% + 4.4rem);
	position: relative;
	bottom: -6.7rem;
	transition: bottom .7s;
}
.sib-item-single:hover .sib-name {
	bottom: 0;
}
.sib-btn {
	margin-top: 1.8rem;
	font-size: 1.2rem;
	color: #F7F7F7;
	font-weight: 600;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	gap: 1.2rem;
	transition: all .7s;
	transform: scale(0);
	width: max-content;
}
.sib-item-single:hover .sib-btn {
	transform: scale(1);
}
.sib-btn:hover, .sib-btn:focus {
	color: #F7F7F7;
}
@media only screen and (max-width: 1050px) {
	.sib-area {
		padding-top: 78px;
	}
	.sib-row {
		margin-top: 27px;
		justify-content: center;
	}
	.sib-item-single {
		width: 366px;
		min-height: auto;
		border-radius: 4px;
		max-width: 100%;
	}
	.sib-item-contents {
		padding: 33px 15px 25px;
	}
	.sib-title {
		min-height: auto;
	}
	.sib-text {
		min-height: auto;
		margin-top: 18px;
	}
	.sib-name {
		margin-top: 17px;
		min-height: auto;
		padding: 10px 15px;
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
		margin-left: -15px;
	}
	.sib-icon {
	  transform: scale(1);
	  left: 0;
	  top: 0;
	}
	.sib-title {
	  right: 0;
	}
	.sib-text {
	  left: 0;
	}
	.sib-name {
		bottom: 0;
	}
	.sib-btn {
	  transform: scale(1);
	}
}