.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.col-12 {
    width: 100%;
}

.fs-64 {
    font-size: 4rem;
}

.fs-48 {
    font-size: 3rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-pt14 {
    font-size: 14pt;
}

.fs-default {
    font-size: 1rem;
}

.mb0 {
    margin-bottom: 0;
}

.word-break {
    word-break: auto-phrase;
}

@media (min-width: 768px) {
    .md-col-6 {
        width: 50%;
    }

    .md-col-4 {
        width: 33.33%;
    }

    .md-col-3 {
        width: 25%;
    }
}

.circle-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-inner {
    width: 100px;         
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-inner h3 {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
}

.sace-block {
    color: #19191A;

    h2,
    h3 {
        color: #19191A;
    }

    .c-blue {
        color: #06c;
    }
}