#steps {
}

#steps h3 {
    margin-bottom: 15px;
    text-align: center;
}


.steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    position: relative;
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    _border: 1px solid var(--site-border);
    box-shadow: rgb(170 183 199 / 30%) 0px 10px 40px 0px;
}

.step-image {
    display: block;
    margin: auto;
    height: 145px !important;
    width: auto !important;
}

.step-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.step-desc {
    position: relative;
    z-index: 2;
}

#steps .description {
    text-align: center;
}

.description-medium {
    font-size: 22px;
}

.step-arrow {
    width: 60px;
    margin: 0px 25px;
    align-self: center;
}

.step-icon {
    color: #fff;
    font-size: 25px;
}

#steps .buttons-group {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 10px;
}

@media (max-width: 980px) {
    #steps {

    }

   .steps-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .steps-header {
        grid-template-columns: 1fr;
    }

    #steps h3 {
        margin-bottom: 0px;
    }

    #steps .description {
        margin: 0;
        margin-bottom: 15px;
    }
}