.steps__img-text {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 1.7;
    margin-top: 35px;
    align-items: center;
    font-size: 20px;
}

.steps__img-text img {
    max-width: 220px;
    height: auto;
}

.steps__contacts {
    margin-top: 30px;
}

.steps__grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-left: 20px;
}

.steps__col {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
    position: relative;
    width: 100%;
    margin-left: -20px;
}

.steps__item {
    background: #f7f7f7;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    filter: drop-shadow(0px 8px 7px rgba(0, 0, 0, 0.08));
    transition: all 0.2s ease-out 0s;
}

.steps__item-numb {
    font-size: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    color: #010;
}

.steps__item-numb span {
    font-size: 20px;
    color: #a4a4a4;
}

.steps__item-img {
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
}

.steps__item-img img {
    width: 100%;
    height: auto;
    max-width: 50px;
}

.steps__item-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #010 !important;
}

.steps__item-text {
    color: #696969;
    font-size: 12px;
    margin-top: 10px;
}

.steps__btn {
    margin-top: 10px;
    background: #ccd9f7;
    padding: 7px 22px;
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 10px;
    color: #010101;
    text-decoration: none !important;
}

.steps__btn:hover {
    background: #b8c2db;
}

.steps__col:first-child .steps__item {
    background: #1f61f7;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.07));
}

.steps__col:first-child .steps__item-numb {
    color: #fff;
}

.steps__col:first-child .steps__item-numb span {
    color: #fff;
}

.steps__col:first-child .steps__item-img {
    border: 1px solid #fff;
}

.steps__col:first-child .steps__item-title {
    color: #fff !important;
}

.steps__col:first-child .steps__item-text {
    color: #fff;
}

.steps__col:first-child .steps__btn {
    background: #fff;
}

.steps__col:first-child {
    z-index: 5;
}

.steps__col:nth-child(2) {
    margin-top: 40px;
    z-index: 4;
}

.steps__col:nth-child(3) {
    margin-top: 80px;
    z-index: 3;
}

.steps__col:nth-child(4) {
    margin-top: 120px;
    z-index: 2;
}

.steps__col:nth-child(5) {
    margin-top: 160px;
    z-index: 1;
}

.steps__col:hover {
    z-index: 6;
}

.steps__item:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 16px 32px rgba(9, 37, 64, 0.08), 0 24px 40px rgba(9, 37, 64, 0.12);
}

@media (max-width: 1250px) {
    .steps .col-lg-5,
    .steps .col-lg-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .steps__grid {
        margin-top: 30px;
    }
    .steps__col {
        margin-left: -23px;
    }
}

@media (max-width: 991px) {
    .steps__col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        width: 100%;
        margin-left: 0;
        margin-top: 30px !important;
    }
    .steps__item {
        text-align: left;
        padding-left: 80px;
    }
    .steps__item-numb {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 20px;
        font-size: 45px;
    }
    .steps__item-img {
        position: absolute;
        top: -27px;
        right: 20px;
    }
    .steps__grid {
        padding-left: 0;
        margin-top: 10px;
    }
    .steps__img-text img {
        max-width: 120px;
        height: auto;
    }
    .steps__text-wrapper {
        font-size: 16px;
    }
    .steps__text-wrapper br {
        display: none;
    }
}