.hf-multinumber-boxes-wrapper .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.hf-multinumber-boxes-wrapper h2 {
    font-size: 44px;
    margin-bottom: 44px;
}

.hf-multinumber-boxes-wrapper h2.lighttext {
    color: #fff;
}

.hf-multinumber-boxes-wrapper h2.darktext {
    color: #000;
}

.hf-multinumber-boxes-wrapper .multinumber-boxes {
    display: flex;
    gap: 5px;
}

.hf-multinumber-boxes-wrapper .multinumber-box {
    height: 277px;
    border-radius: 20px;
    padding-left: 12px;
    padding-right: 12px;
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: flex-start;
    align-content: center;
}

.hf-multinumber-boxes-wrapper .multinumber-box.lighttext {
    color: #fff;
}

.hf-multinumber-boxes-wrapper .multinumber-box.darktext {
    color: #000;
}

.hf-multinumber-boxes-wrapper .multinumber-box.black {
    background: #000;
}

.hf-multinumber-boxes-wrapper .multinumber-box.white {
    background: #fff;
}

.hf-multinumber-boxes-wrapper .multinumber-box.whitegradient {
    background: var(--white-gradient);
}

.hf-multinumber-boxes-wrapper .multinumber-box.gradient {
    background: var(--main-gradient);
}

.hf-multinumber-boxes-wrapper .multinumber-box.gradientflip {
    background: var(--main-gradient-flipped);
}

.hf-multinumber-boxes-wrapper .multinumber-box.bluegradient {
    background: var(--blue-gradient);
}

.hf-multinumber-boxes-wrapper .multinumber-box.purplegradient {
    background: var(--purple-gradient);
}

.hf-multinumber-boxes-wrapper .multinumber-box.pinkgradient {
    background: var(--pink-gradient);
}


.hf-multinumber-boxes-wrapper .multinumber-box .box-number {
    font-size: 70px;
    font-weight: 700;
    line-height: .8;
    margin-top: 75px;
}

.hf-multinumber-boxes-wrapper .multinumber-box .box-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

@media (max-width: 992px) {
    .hf-multinumber-boxes-wrapper h2 {
        font-size: 34px;
        margin-bottom: 34px;
    }

    .hf-multinumber-boxes-wrapper .multinumber-boxes {
        flex-direction: column;
    }

    .hf-multinumber-boxes-wrapper .multinumber-box .box-number {
        font-size: 60px;
        margin-top: 0;
    }

    .hf-multinumber-boxes-wrapper .multinumber-box {
        height: 206px;
        justify-content: center;
        padding-top: 55px;
        padding-bottom: 55px;
        width: 50%;
        margin: auto;
    }

    .multinumber-box:first-child {
        background: linear-gradient(13deg, #2A38E7 -15%, #007EEC 72%) !important;
    }

    .multinumber-box:nth-child(2) {
        background: linear-gradient(13deg, #6A00F6 -55%, #2A38E7 40%, #007EEC 150%) !important;
    }

    .multinumber-box:nth-child(3) {
        background: linear-gradient(13deg, #A502CE -155%, #6A00F6 10%, #2A38E7 150%) !important;
    }

    .multinumber-box:nth-child(4) {
        background: linear-gradient(13deg, #A502CE -5%, #6A00F6 110%) !important;
    }
}

@media (max-width: 767px) {
    .hf-multinumber-boxes-wrapper h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .hf-multinumber-boxes-wrapper .multinumber-box {
        width: 100%;
        padding-bottom: 50px;
    }

}