.wrapper{
    color: #fff;
    max-width: 900px;
    text-align: center;
    padding: 0 50px;
    font-size: 35px;
}
.wrapper .count-down{
    display: flex;
    width: 100%;
    height: 100px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.wrapper .count-down .timer{
    height: 100%;
    width: 100px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center ;
}
.count-down .timer .numb{
    font-size: 25px;
    font-weight: 500;
}
.count-down .timer .numb{
    font-size: 15px;
}
.count-down .clone{
    font-size: 45px;
}

@media (max-width: 630px) {
    .wrapper .count-down{
        height: 80px;
    }
    .wrapper .count-down .timer{
        width: 80px;
    }
    .count-down .timer .numb{
        font-size: 20px;
    }
    .count-down .timer .text{
        font-size: 13px;
    }
    .count-down .clone{
        font-size: 40px;
    }
}
@media (max-width: 542px) {
    .wrapper{
        padding:0 20px;
    }
    .wrapper .count-down .timer{
        border: none;
    }
    .count-down .timer .numb{
        font-size: 28px;
    }
    .count-down .timer .text{
        font-size: 15px;
    }
    .count-down .clone{
        display: none;
    }
}
