/* --------------------------------- */
/*          General Styling          */
/* --------------------------------- */
.numbered-title {
    display: flex;
    flex-flow: row;
    align-items: center;
}
.numbered-title .number {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    background-color: #00E267;
}
.numbered-title .number .medium-title {
    margin-top: -0.17em;
    margin-bottom: -0.26em;
}
.numbered-title {
    margin-bottom: 20px;
}
/* ------------------------------------ */
/*          Responsive Styling          */
/* ------------------------------------ */
@media screen and (max-width: 850px) {
    .numbered-title .number {
        height: 51px;
        width: 51px;
        margin-right: 17px;
    }
}
@media screen and (min-width: 850px) and (max-width: 1200px) {
    .numbered-title .number {
        height: 60px;
        width: 60px;
        margin-right: 20px;
    }
}
@media screen and (min-width: 1200px) {
    .numbered-title .number {
        height: 75px;
        width: 75px;
        margin-right: 25px;
    }
}