.concept-svg-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.concept-svg-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 25%;
    opacity: 0;
    transition: all 0.5s ease;
}
.concept-svg-item img{
    width: 10vw;
    height: 10vw;
}
.concept-svg-item p{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    transform: translateY(50%);
}
@media (max-width: 576px) {
    .concept-svg-container{
        flex-direction: column;
    }
    .concept-svg-item img{
        width: 25vw;
        height: 25vw;
    }
    .concept-svg-item p{
        transform: translateY(0%);
    }
}