.banner-client {
	float: left;
	padding:10px 20px;
	width: auto;
}
.banner-client img { max-width: 60px; max-height: 60px; }

#chatfx { position: relative; width: 100%; height: 100%; overflow: hidden; }

.bubble {	
	position: absolute;	
	top: 0;	
	left: 0;	
	cursor: pointer;	
	opacity: 1;
	transition:linear 2s, transform .2s, opacity .5s;
	
}	
	
.bubble:hover {	
	transform: scale(1.7);	
}	
	
.bubble--bust {	
	transform: scale(1.8);	
	opacity: 0;
}

#hero-img {
	margin: 100px auto 0 auto;
}

#hero-img img {
	position: absolute;
	opacity: 0;
}

#hero-img img.fadein {
	animation-name: fadeIn;
	animation-delay: 0s;
	animation-duration: 2s;
	/*z-index: 20;*/
}
#hero-img img.fadeout {
	animation-name: fadeOut;
	animation-delay: 0s;
	animation-duration: 2s;
/*	z-index: 20;*/
}


@keyframes fadeIn {
	from { opacity: 0.0; }
	to   { opacity: 1.0; }
}

@keyframes fadeOut {
	from { opacity: 1.0; }
	to   { opacity: 0.0; }
}


/* client slider */

.client-slider {
	background: transparent;
	height: 75pt;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	cursor: default;
	user-select: none;
	touch-action: none;
}

.client-slider:before {
	left: 0;
	top: 0;
}
.client-slider:after,
.client-slider:before {
	content: "[";
	font-size: 75pt;
	color:#dedede;
	height: 75pt;
	position: absolute;
	width: 200px;
	z-index: 2;
	vertical-align: middle;
	left: -11px;
	top: -41px;
}
.client-slider:after {
	right: -11px !important;
	top: 44px !important;
	transform: rotateZ(180deg);
	left: auto !important;
	transform: rotateZ(180deg);
}
.client-slider:after,
.client-slider:before {
	content: "[";
	font-size: 75pt;
	color:#dedede;
	height: 75pt;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.client-slider .slide-track-1 {
	animation: scroll-l 30s linear infinite;
	display: flex;
	width: 3500px;
}
.client-slider .slide-track-2 {
	animation: scroll-r 30s linear infinite;
	display: flex;
	width: 3500px;
}

.client-slider .slide {
	height: 75pt;
	width: 350px;
	display: flex;
	align-items: center;
	text-align: left;
	line-height:1;
}
.client-slider .slide img {
	width: 75px;
	height: auto;
	padding: 10px;
	vertical-align: middle;
	margin: 0;
	display: inline-block;
	max-width: 100%;
}

@keyframes scroll-l {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-350px * 5));
	}
}
@keyframes scroll-r {
	100% {
		transform: translateX(0);
	}
	0% {
		transform: translateX(calc(-350px * 5));
	}
}




/* Custom Workflow Container Style */
.workflow-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-steps-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Individual Column Settings */
.workflow-step-item {
  position: relative;
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 10px;
}

/* UI UPDATE: Set background to #f1f2f2 and applied the #c8c5d3 border */
.workflow-graphic-circle {
  position: relative;
  z-index: 3;
  width: 85%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #f1f2f2;
  border: 3px solid #c8c5d3; /* New solid brand border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  color: #333;
  font-weight: bold;
}

/* UI UPDATE: Increased SVG icon width to 75% for extra visibility */
.workflow-graphic-circle img {
  width: 90%; 
  max-width: 90%;
  height: auto;
}

/* ----------------------------------------------------------------------
   SPECIAL STYLE: Target Simplii Sold to change background and border to #0f153f
   ---------------------------------------------------------------------- */
.simplii-sold-step .workflow-graphic-circle {
  background: #0f153f !important;
  border-color: #f1f2f2 !important;
}

/* Decorative Red Accent Line */
.workflow-red-line {
  width: 40px;
  height: 3px;
  background-color: #dc3545;
  margin: 10px auto;
}

/* Dotted Connection Line */
.workflow-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 90px;
  right: -50%;
  width: 100%;
  height: 2px;
  border-top: 2px dotted rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/* Small middle connection dot */
.workflow-step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 87px;
  right: -4px;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: 2;
}

/* Mobile responsive fallback layout overrides */
@media (max-width: 991.98px) {
  .workflow-steps-wrap {
    flex-direction: column;
    align-items: center;
  }
  .workflow-step-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .workflow-step-item:not(:last-child)::after {
    top: auto;
    bottom: -30px;
    right: 50%;
    width: 2px;
    height: 30px;
    border-left: 2px dotted rgba(255, 255, 255, 0.4);
    border-top: none;
  }
  .workflow-step-item:not(:last-child)::before {
    top: auto;
    bottom: -20px;
    right: calc(50% - 3px);
  }
}