/* flow chart css */
.avia-fullwidth-flowchart {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	position: relative;
	overflow: hidden;
}

.custom-flowchart-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	padding: 40px 20px;
	max-width: 100%;
        filter: drop-shadow(-5px 10px 10px rgba(255, 255, 255, 0.5));
}

.flowchart-step {
	flex: 1 1 250px;
	box-sizing: border-box;
	min-width: 200px;
	max-width: 300px;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pointer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #777777;
  color: #ffffff;
  padding: 2rem;
  min-width: 180px;
  max-width: 220px;
  clip-path: polygon( 85% 0%,100% 50%,85% 100%,0% 100%,15% 50%,0% 0% );
  text-align: center;
  flex-shrink: 0;
  justify-content: center;
}

.pointer .text-content {
  color: #ffffff;
  font-size: 0.9rem;
}

.flowchart-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.flowchart-title {
  margin: 0.25rem 0;
  font-weight: bold;
  font-size: 1rem;
}

.flowchart-desc {
  font-size: 0.85rem;
  margin: 0;
}