.howtoblock-container {
    margin: 15px 0;
}

.howtoblock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.howtoblock-item {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.howtoblock-header {
    background: #222323;
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.howtoblock-step-number {
    position: absolute;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    color: #fff;
    opacity: 0.2;
    z-index: 1;
    left: 5px;
}

.howtoblock-header h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
}

.howtoblock-body {
    background: #fff;
    border: 1px solid #ebf4fa;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 100%;
    padding-bottom: 0;
}

.howtoblock-body p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.408px;
    color: #000;
    margin-bottom: 10px;
    padding: 0;
}

.howtoblock-image {
    margin-top: auto;
}

.howtoblock-image img {
    width: 100%;
    height: auto;
}

/* Mobile Carousel */
.arrows-carousel {
    display: none;
}

@media screen and (max-width: 768px) {
    .mb_carousel {
        position: relative;
    }

    .mb_carousel_wrap {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .mb_carousel_item {
        min-width: 290px;
        height: auto !important;
    }

    .mb_carousel_wrap::-webkit-scrollbar {
        width: 2px;
        height: 2px;
        background-color: #969696;
    }

    .mb_carousel_wrap::-webkit-scrollbar-thumb {
        background-color: #00416f;
    }

    .arrows-carousel {
        cursor: pointer;
        display: block;
        width: 100%;
        position: absolute;
        top: 50%;
    }

    .arrows-carousel .left {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -10px;
    }

    .arrows-carousel .right {
        position: absolute;
        top: 0;
        bottom: 0;
        right: -10px;
    }
}