.steps_index .container {
    max-width: 1400px;
}

.steps-container {
    padding: 133px 0px 145px 0px;
}

.steps_index h5 {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--dark-color);
}

.steps_index h1 {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 30px;
}

.steps_index .content-text {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 100px;
}

.steps_index ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.steps-card {
    position: relative;
    background-color: #fff;
    padding: 100px 15px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 6px 50px;
}

.steps-icons {
    position: absolute;
    top: -60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.steps-icons .custom-icon {
    height: 50px !important;
    width: 50px !important;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(115deg) brightness(105%) contrast(104%);
}

.steps-icons .custom-icon.step2,
.steps-icons .custom-icon.step4_1,
.steps-icons .custom-icon.step5 {
    width: 70px !important;
    height: 70px !important;
}

.steps-icons:hover {
    top: -70px;
    height: 140px;
    width: 140px;
}

.steps-card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.steps-card-subtitle {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.steps-card-text {
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}