/* fivesteps */
.bmg--five-steps {
    width: 100%;
    padding: 60px 30px 0 0;
}

.bmg--five-steps__item {
    width: 100%;
    margin-bottom: 60px;
}

.bmg--five-steps__item__content {
    width: calc(100% - 110px);
    background-color: white;
    margin: 0 0 0 110px;
    padding: 40px 0 20px 30px;
    position: relative;
}

.bmg--five-steps__item__content:after {
    width: 20px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: calc(100% - 10px);
    z-index: -1;
    content: '';
    filter: blur(5px);
}

.bmg--five-steps__item__content__number {
    position: absolute;
    top: 70px;
    right: calc(100% - 30px);
    z-index: -2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 162px;
    line-height: 112px;
    transition: right 250ms ease-in-out;
}

.bmg--five-steps__item:nth-child(1) .bmg--five-steps__item__content__number {
    color: black;
}
.bmg--five-steps__item:nth-child(2) .bmg--five-steps__item__content__number {
    color: #472824;
}
.bmg--five-steps__item:nth-child(3) .bmg--five-steps__item__content__number {
    color: #722a22;
}
.bmg--five-steps__item:nth-child(4) .bmg--five-steps__item__content__number {
    color: #a0241c;
}
.bmg--five-steps__item:nth-child(5) .bmg--five-steps__item__content__number {
    color: #c51110;
}

.bmg--five-steps__item:hover .bmg--five-steps__item__content__number {
    right: calc(100% - 15px);
}

.bmg--five-steps__item:nth-child(1) .bmg--five-steps__item__content__number {
    right: calc(100% - 25px);
}
.bmg--five-steps__item:nth-child(1):hover .bmg--five-steps__item__content__number {
    right: calc(100% - 13px);
}

.bmg--five-steps__item__content__icon {
    color: black;
    margin: 0 0 20px 0;
    font-size: 55px;
}

.bmg--five-steps__item__content__material {
    width: 50px;
    height: 43px;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bmg--five-steps__item__content__material .material-symbols-outlined {
    color: black;
    font-size: 65px;
}

.bmg--five-steps__item__content h2 {
    color: black;
    margin: 0 0 20px 0;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 28px;
}

.bmg--five-steps__item__content p {
    color: black;
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 22px;
}

@media (min-width: 768px) {
    .bmg--five-steps {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .bmg--five-steps__item {
        width: 50%;
        font-size: 16px;
    }

    .bmg--five-steps__item__content {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .bmg--five-steps__item {
        width: 33.3333333333%;
    }

    .bmg--five-steps {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .bmg--five-steps__item {
        width: 20%;
    }

    .bmg--five-steps__item__content {
        padding: 70px 0 50px 30px;
    }

    .bmg--five-steps__item:nth-child(1) .bmg--five-steps__item__content {
        width: calc(100% - 80px);
        margin: 0 0 0 80px;
    }
}