.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.box-container .box-wrapper, .box-container .box-wrapper .box {
    display: flex;
    align-items: center;
}
.box-container .box-wrapper {
    padding: 6px;
    margin-bottom: 20px;
    min-height: 80px;
    justify-content: center;
}
.box-container .box-wrapper .sequence {
    font-size: 35px;
    font-weight: 900;
    line-height: 42px;
    color: #ffffff;
    text-align: center;
}
.box-container .box-wrapper .box {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    background: #ffffff;
    padding: 10px;
    height: 100%;
    border: 1px solid #ffffff;
}
.box-container .box-wrapper:nth-child(odd) {
    background-color: #0689D6;
}
.box-container .box-wrapper:nth-child(even) {
    background-color: #010852;
}
.box-container .box-wrapper span:nth-of-type(3) {
    font-size: 30px;
    justify-content: end;
    padding-left: 5px;
}
.box-container .box-wrapper span:nth-of-type(2) {
    padding-right: 5px;
}
@media (max-width: 768px) {
    .box-container .box-wrapper:nth-child(odd) span:not(:nth-of-type(1)) {
        color: #0689D6;
    }
    .box-container .box-wrapper:nth-child(even) span:not(:nth-of-type(1)) {
        color: #010852;
    }
}
@media (min-width: 768px) {
    .box-container .box-wrapper.box-blue {
        background-color: #0689D6;
    }
    .box-container .box-wrapper.box-navy-blue {
        background-color: #010852;
    }
    .box-container .box-wrapper.box-blue span:nth-of-type(3) {
        color: #0689D6;
    }
    .box-container .box-wrapper.box-navy-blue span:nth-of-type(3) {
        color: #010852;
    }
    .box-container .box-wrapper {
        width: 49%;
    }
    .box-container .box-wrapper .box {
        padding: 10px 14px;
    }
    .box-container .box-wrapper .sequence {
        font-size: 50px;
    }
    .box-container .box-wrapper span:nth-of-type(3) {
        font-size: 45px;
    }
}