/*Mobile first*/
.bloop_h0,
.bloop_h1,
.bloop_h2 {
    font-family: inherit;
    text-align: center;
    font-style: normal;
    font-weight: 100;
    word-break: break-word;
}

.bloop_h0 {
    font-size: 4rem;
}

.bloop_h1 {
    font-size: 30px;
}

.bloop_h2 {
    font-size: 2rem;
}

.bss__bloop--guide {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bss__bloop--guide-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
    align-content: center;
    justify-content: center;
    gap: 24px;
}

.bss__bloop--guide-item{
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    flex-shrink: 0;
    border: 1px solid #CCCCD1;
    border-radius: 10px;
}

.bss__bloop--item-icon {
    width: 45px;
    background: #f6f6f6;
    padding: 7px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bss__bloop--item-header {
    font-size: 20px;
    font-style: normal;
    font-weight: 100;
    line-height: 23px;
}

.bss__bloop--item-description {
    text-align: start;
}
/*Desktop*/
@media only screen and (min-width: 750px) {
    .bloop_h0 {
        font-size: 5.2rem;
    }
    .bloop_h1 {
        font-size: 30px;
    }
    .bloop_h2 {
        font-size: 2.4rem;
    }
}