BMBI {}
/* BOOK MY BIKE IN */
#BMBI, #BMBI > .bmbi-wrap, #BMBI > .bmbi-wrap .bmbi-title p {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
#BMBI {
    border: 2px solid #86cb92;
    background: #e9f9ec;
    justify-content: space-evenly;
    position: relative;
    z-index: 10;
    align-items: flex-end;
    overflow: hidden;
    margin: 0 0 32px 0;
    padding: 0 16px;
}
#BMBI > img {
    height: 450px;
    max-height: 100%;
    margin: 0 auto;
    flex-basis: 25%;
    object-fit: contain;
    display: block;
    object-position: bottom;
}
#BMBI > .bmbi-wrap {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 44px;
    flex-basis: 50%;
    flex: 1;
}
#BMBI > .bmbi-wrap img {
    width: min(100%, 400px);
}
#BMBI > .bmbi-wrap .bmbi-title {
    margin: 44px;
}
#BMBI > .bmbi-wrap .bmbi-title p {
    margin: 0;
    text-transform: uppercase;
    font-family: 'citrfontbold';
    letter-spacing: 4px;
    font-size: 14px;
    gap: 8px;
    justify-content: center;
    text-align: center;
}
#BMBI > .bmbi-wrap .bmbi-title h3 {
    margin: 0;
    font-size: 28px;
}
#BMBI > .bmbi-wrap a.bmbi-cta {
    font-size: 28px;
    font-family: 'citrfontbold';
    color: #e9f9ec;
    background: #86cb92;
    border-radius: 8px;
    position: relative;
    line-height: 1;
    padding: 16px 32px;
    top: 0;
    border: 2px solid #86cb92;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#BMBI > .bmbi-wrap a.bmbi-cta::after {
    content: "";
    position: absolute;
    width: 95%;
    bottom: -6px;
    background: #d5e3d8;
    height: 100%;
    left: 2.5%;
    z-index: -1;
    border-radius: 8px;
    mix-blend-mode: multiply;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#BMBI > .bmbi-wrap a.bmbi-cta:hover {
    color: #fff;
    top: 3px;
    border: 2px solid #7db587;
}
#BMBI > .bmbi-wrap a.bmbi-cta:hover::after {
    background: #b2cdb8;
    width: 100%;
    left: 0;
    bottom: -1px;
}
#BMBI > .bmbi-wrap a.bmbi-cta > i {
    position: absolute;
    font-size: 10px;
    top: 6px;
    right: 6px;
    z-index: 1;
}
#BMBI > .bmbi-wrap .bmbi-desc {
    margin: 44px;
    text-transform: uppercase;
    font-family: 'citrfontbold';
    letter-spacing: 2px;
}
#BMBI > .bmbi-wrap .bmbi-desc p {
    margin: 0;
    font-size: 10px;
}
#BMBI > .bmbi-wrap .bmbi-desc h3 {
    margin: 0;
    color: #86cb92;
}
#BMBI > .bmbi-wrap a.bmbi-message {
    position: absolute;
    bottom: 16px;
    font-size: 12px;
}
#BMBI > .bmbi-wrap a.bmbi-message > span {
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    #BMBI {
        padding: 0;
    }
    #BMBI > img {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    #BMBI > .bmbi-wrap {
        padding: 16px;
    }
    #BMBI > .bmbi-wrap .bmbi-title, #BMBI > .bmbi-wrap .bmbi-desc {
        margin: 32px 16px;
    }
    #BMBI > .bmbi-wrap .bmbi-title p {
        font-size: 10px;
        flex-wrap: wrap;
        gap: 4px;
    }
    #BMBI > .bmbi-wrap .bmbi-title h3, #BMBI > .bmbi-wrap a.bmbi-cta {
        font-size: 20px;
    }
    #BMBI > .bmbi-wrap .bmbi-desc {
        letter-spacing: 0;
    }
}                                                                                                                                                                                                  