.row-countdown{
    background-color: red;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    margin-bottom: 50px;
}
.row-countdown .timer-cnt{
    background-color: transparent;
    width: 80%;
    max-width: 1200px;
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.row-countdown .timer-cnt .text{
    width: 30%;
    color: #fff;
    font-size: 30px;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row-countdown .timer-cnt .text i{
    color: yellow;
    font-size: 50px;
    /* text-align: center; */
}

.row-countdown .cards{
    display: flex;
    width: 70%;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-around;
}
.row-countdown .cards .card{
    width: 22%;
    text-align: center;
    /* font-size: 25px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.row-countdown .cards .card .dato{
    /* color: #8486a9; */
    color: #000;
    font-size: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.row-countdown .cards .card p{
    color: #8486a9;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 !important;
}

@media (max-width:768px) {
    .row-countdown .timer-cnt{
        width: 95%;
        flex-direction: column;
    }

    .row-countdown .timer-cnt .text{
        text-align: center;
    }
    .row-countdown .cards{
        width: 100%;
        max-width: unset;
        margin-top: 30px
    }
    .row-countdown .cards .card p{
        font-size: 14px;
    }
}
