

.step {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    transition: opacity 0.5s;
    flex-direction: row;
    position: relative;
    transform: translate(-150px, 48px )
}

.step h2{
    color: #7A8032;
    font-size:2.25em;
    font-weight: 600;
}
.step p {
    padding-top: 0;
    max-width: 920px;
    font-size:14px;
}

.step >*{
    /*display: none !important;*/
}

.step .step-number {
    width: 125px;
    height: 125px;
    background-color: #b2b295;
    color: #6c6c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5em;
    font-weight:bold;
    margin-right: 20px;
}

.step-content {
    max-width:520px;
    font-size:1em;
}

.step-content > h2 {
    color: #7A8032;
}

.line {
    position: absolute;
    top: 100%;
    left: 50px;
    width: 200px;
    height: 200px;
    z-index: -1;
    transition: opacity 0.5s;
}

.visible + .line {
    opacity: 1;
}

.visible {
    opacity: 1;
}

.containerSvg{
    transform: translateX(-20%);
	position:relative;
	border-radius: 23px;
	max-width:780px;
    margin: auto;
	width:100%;
}

.containerSvg svg{
    max-height: 100%;
}

@media(max-width: 768px){
    .containerSvg{
        margin: 50px 0 ;
        aspect-ratio: 1/1;
    }

    .step {
        transform: translate(0, -50px);/*  */
    }
    
}

.containerSvg svg{
    max-height: 90dvh;
    max-width: 100%;
}

.step{
    transition: all 0.5s ease-in-out;
    opacity: 0 !important;
}

.step.revealed{
    opacity: 1 !important;
    transform: translate(10px, 48px )
}