#getStarted {
	display:none;
}
.leader {
	margin-left:auto;
}
.leader::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 104%;
    height: 1px;
    border-top: 2px dashed #d3d3d3; /* Dashed effect */
    transform: translateY(-50%);
    width: calc(98% + 20px); /* Adjust length to match spacing */
}
		
.arrow-box {
    position: relative;
    background-color: #fbbf24; /* bg-yellow-400 */
    padding: 16px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content; /* Optional: Makes the box wrap around content */
}


/* Create the full-height triangle on the right side */
.arrow-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px; /* Adjust this based on the triangle's width */
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #fbbf24; /* Adjust to match the background color and width */
}