.services-button-slide-area {
	background-color: #1A1A1A;
	padding-top: 12rem;
	padding-bottom: 15rem;
	position: relative;
}
.services-button-slide-bg {
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}
.sbs-w-con-wrap {
	display: flex;
	justify-content: space-between;
	gap: 5rem;
}
.sbs-w-row {
	display: flex;
	align-items: center;
}
.sbs-w-img {
	width: 50rem;
	border-radius: 1.8rem;
	overflow: hidden;
}
.sbs-b-line {
	white-space: nowrap;
	width: 200%;
	display: flex;
	align-items: center;
	word-spacing: 0;
	gap: 1.6rem;
}
.sbs-b-line-inner {
	display: flex;
	gap: 1.6rem;
}
.sbs-b-item {
	display: flex;
	align-items: center;
	gap: .6rem;
	background: rgba(0, 0, 0, 0.30);
	border-radius: .6rem;
	padding: 2rem;
	font-size: 1.4rem;
	line-height: normal;
	font-weight: 600;
	color: #fff;
}
.sbs-b-item:hover {
	color: #fff;
}
.sbs-area-b {
	margin-top: 9rem;
}
.sbs-b-line:not(:last-child) {
	margin-bottom: 3rem;
}
.sbs-w-row {
	display: flex;
	align-items: center;
	gap: 5.5rem;
}
.sbs-w-con {
	font-size: 1.6rem;
	line-height: normal;
	color: #f2f2f2;
}
.sbs-w-con h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.4rem;
	line-height: normal;
	font-weight: 600;
	color: #fff;
	margin: 0;
}
.sbs-w-con p, .sbs-w-con ul {
	margin-top: 1.5rem;
}
.sbs-w-con ul li:not(:last-child) {
	margin-bottom: .3rem;
}
.sbs-w-con ul li:not(:last-child) {
	margin-bottom: .3rem;
}
.sbs-b-line-l1 .sbs-b-line-inner {
	animation: slide-left 80s linear infinite;
}
.sbs-b-line-l2 .sbs-b-line-inner {
  animation: slide-left2 80s linear infinite;
}
@keyframes slide-left {
  from {
    -webkit-transform:translateX(0);
    transform:translateX(0)
  }
  to {
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%)
  }
}
@keyframes slide-left2 {
  from {
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%)
  }
  to {
    -webkit-transform:translateX(0);
    transform:translateX(0)
  }
}
.sbs-w-con ul li {
	position: relative;
	padding-left: 2rem;
}
.sbs-w-con ul li::before {
	content: '';
	width: 1rem;
	height: 2rem;
	position: absolute;
	top: .3rem;
	left: 0;
	background-image: url(xceed-x.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.sbs-w-meta {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
@media only screen and (max-width: 1050px) {
	.services-button-slide-area {
		padding-top: 70px;
		padding-bottom: 86px;
	}
	.services-button-slide-bg {
		display: none;
	}
	.sbs-w-row {
		flex-direction: column;
		gap: 29px;
	}
	.sbs-w-img {
		width: 350px;
		max-width: 100%;
		border-radius: 5px;
	}
	.sbs-w-meta {
		display: none;
	}
	.sbs-area-b {
		margin-top: 42px;
	}
	.sbs-b-line {
		gap: 8px;
	}
	.sbs-b-line:not(:last-child) {
		margin-bottom: 16px;
	}
	.sbs-b-item {
		gap: 10px;
		padding: 13px 20px;
	}
}