/*  MOBILE */
@media (max-width: 768px) {
    .promo-title {
        font-size: 20px;
        font-weight: bold;
    }

    .promo-text {
        font-size: 12px;
    }

    .discount-buttons {
        display: flex;
        flex-grow: 2
    }

    .discount-buttons :nth-child(1) {
        margin-right:2.5px;
    }
    .discount-buttons :nth-child(2) {
        flex-grow: 2;
        margin-left:2.5px;
    }

    .btn-outline-white {
        border: 1px solid white;
        color: white;
        font-size: 12px;
    }
}

/* NON M%OBILE */
@media (min-width: 768px) {
    .promo-title {
        font-size: 22px;
        font-weight: bold;
    }

    .promo-text {
        font-size: 14px;
    }

    .btn-outline-white {
        border: 1px solid white;
        color: white;
    }
}

.btn-block {
    display: block;
    width: 100%;
}

.m-b-xs {
    margin-bottom: 5px;
}

.fbox {
    display: flex;
}

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

.fend {
    justify-content: flex-end;
}

.fstart {
    justify-content: flex-start;
}

.fcenter {
    justify-content: center;
}

.fvcenter {
    align-items: center;
}

.bg-grad-primary {
    background: rgb(19, 167, 175);
    background: linear-gradient(138deg, rgba(19, 167, 175, 1) 0%, rgba(94, 218, 224, 1) 100%);
}
