.infoBox{
    width: 90%;
    margin: 0 auto;
    height: 15vh;
    border-bottom: 1px solid #ccc;
    display: flex;
    margin-top: 25px;
}
.infoleft{
    width: 15vh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timeBox{
    height: 80%;
    width: 80%;
}
.top{
    height: 60%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: large;
    font-weight: 600;
    color: #5178db;
}
.bottom{
    height: 40%;
    width: 100%;
    background-color: #5178db;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.title{
    height: 50%;
    font-size:1.6vw;
    font-weight: 700;
    color: #5178db;
    display: flex;
    align-items: center;
}
.text{
    width: 90%;
    font-size: 15px;
    font-weight: 300;
}
@media (max-width: 767px) {
    .infoBox{
        width: 95%;
        margin: 0 auto;
        height: 12vh;
    }
    .infoleft{
        width: 30%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .timeBox{
        height: 80%;
        width: 80%;
    }
    .top{
        height: 60%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: small;
        font-weight: 600;
        color: #5178db;
    }
    .bottom{
        height: 40%;
        width: 100%;
        background-color: #5178db;
        text-align: center;
        display: flex;
        font-size: smaller;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    .title{
        height: 50%;
        font-size:12px;
        font-weight: 700;
        color: #5178db;
        display: flex;
        align-items: center;
    }
    .text{
        width: 90%;
        font-size: 6px;
        font-weight: 300;
        text-indent: 2em;
    }
}