#count-down-v3 {
    /* font-size: 120px; */
    font-family: 'La-Luxe Serif'!important;
    width: 100%;
    margin: auto;
    color:#0D0D0D;
}

.count-down-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 50px;
    width: 100%;
}

.count-down-first-row,
.count-down-second-row {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.count-down-unit {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.count-down-number {
    display: flex;
    flex-direction: column;
    justify-content: end;
    line-height: 1;
    font-size: 120px;
    /* width: 140px; */
    text-align: center;
}

.count-down-text {
    font-size: 26px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    /* margin-right: 30px; */
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 1460px) {
    .count-down-number {
        font-size: 80px;
    }
    .count-down-text {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1020px) {
    .count-down-text {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    .count-down-wrapper {
        column-gap: 30px;
    }
    .count-down-first-row,
    .count-down-second-row {
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .count-down-number,
    .count-down-text {
        color: #F7F7F7;
    }
}

@media only screen and (max-width: 640px) {
    .count-down-number {
        font-size: 40px;
    }
    .count-down-text {
        font-size: 16px;
    }
}

@media only screen and (max-width: 500px) {
    .count-down-wrapper {
        flex-direction: column;
    }
    .count-down-first-row,
    .count-down-second-row {
        column-gap: unset;
        justify-content: space-evenly;
    }
    .count-down-unit {
        width: 125px;
    }
}