/* Swiper Consultancy Steps - Custom CSS */

.consultancy-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 333px;
}

.consultancy-step-card:nth-child(2),
.consultancy-step-card:nth-child(3) {
    transform: translateY(-320px);
}
	
	.consultancy-step-card:nth-child(2) span.step-number {
    background: #D1A97A;
	color: #1B2429;
}
.consultancy-step-card:nth-child(2) {
    margin-right: 50px; 
}

.consultancy-step-card:nth-child(3) {
    margin-left: 50px;
}
.consultancy-step-image {
    position: relative;
    width: 244px;
    height: 244px;
    border-radius: 50%;
    overflow: hidden;

}

.consultancy-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    left: 58%;
    transform: translate(-100%, -55%);
    background: #222;
    color: #fff;
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
	letter-spacing: -1px;
}

.consultancy-step-info {
    max-width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
}
.step-heading {
    font-size: 25px;
    font-weight: 400;
    color: #3B4443;
    letter-spacing: -1px;
    font-family: 'Marcellus';
}

.step-description {
    font-size: 18px;
    color: #616866;
    margin-top: 5px;
    letter-spacing: -1px;
}
	
		.steps-arrow-next, .steps-arrow-prev {
			
			display: none;
	}
@media screen and (max-width: 768px) {
    .consultancy-steps-slider {
        padding: 30px 0;
		overflow: hidden;
    }

    .consultancy-step-card {
        transform: none !important; /* Removes desktop positioning */
        margin: 0 auto 40px; /* Adds spacing between items */
        width: 100% !important; /* Ensures full width */
    }

    .consultancy-step-card:nth-child(2),
    .consultancy-step-card:nth-child(3) {
        transform: none !important; /* Removes specific shifts */
        margin-left: 0;
        margin-right: 0;
    }

    .consultancy-step-image {
      margin: 0 auto;
    }

.step-number {
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%);
}

    .consultancy-step-info {
        height: 210px;
    }
	
	.steps-arrow-next, .steps-arrow-prev {
	 position: absolute;
	top: 94%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;

	}
	.steps-arrow-next {
    right: 39%;
    
}
	.steps-arrow-prev {
    left: 36%;
}
	.steps-arrow-next::after {
    content: '\2192';
    font-size: 22px;
}
		.steps-arrow-prev::after {
    content: '\2190';
    font-size: 22px;
}
.steps-arrow-next, .steps-arrow-prev {
    color: #ccc;
}
.m-steps {
    background-color: transparent !important;
}
	.m-steps-bg {
    background-image: none !important;
}
}