.seoc-icon-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 40px 20px;
    text-align: center;
}
.seoc-icon-steps-details > span {
    font-size: 37px;
    font-weight: 600;
}
.seoc-icon-steps-details p {
    margin-bottom: 10px;
    white-space: nowrap;
}
.seoc-icon-steps-details p.seoc-icon-steps-tools {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seoc-icon-steps-tools img {
    margin-right: 10px;
}
.steps-sep-2 {
    display: none;
}
.seoc-icon-steps-sep span {
    display: block;
    height: 2px;
    background-color: #262626;
    margin-top: 65px;
    position: relative;
}
.seoc-icon-steps-sep span::before, .seoc-icon-steps-sep span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 2px;
    background-color: #262626;
    transform-origin: right;
}
.seoc-icon-steps-sep span::before {
    transform: rotate(45deg);
}
.seoc-icon-steps-sep span::after {
    transform: rotate(-45deg);
}
@media (max-width: 1024px) {
    .seoc-icon-steps {
        grid-template-columns: repeat(1, 1fr 80px 1fr 80px 1fr);
    }
    .seoc-icon-steps-details p {
        white-space: normal;
    }
}
@media (max-width: 768px) {
    .seoc-icon-steps {
        grid-template-columns: repeat(1, 200px 1fr 200px 1fr);
        grid-gap: 30px 10px;
    }
    .seoc-icon-steps-details > span {
        font-size: 21px;
    }
    .steps-sep-2 {
        display: block;
    }
    .seoc-icon-steps-sep span {
        margin-top: 40px;
    }
}
@media (max-width: 500px) {
    .seoc-icon-steps {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 10px;
    }
    .seoc-icon-steps-details p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .seoc-icon-steps-sep {
        display: none;
    }
}