.networking-date-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 158px;
    height: 158px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.networking-date-box__outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 178px;
    height: 178px;
    border-radius: 50%;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
}

.networking-date-box__date,
.networking-date-box__day {
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}
.networking-date-box__date {
    font-size: 45px;
    line-height: 0.8;
}

.networking-date-box__day {
    font-size: 18px;
    line-height: 1;
    margin-top: 5px;
}


@media only screen and (max-width: 768px) {
    .networking-date-box {
        width: 92px;
        height: 92px;
    }
    .networking-date-box__outer {
        width: 107px;
        height: 107px;
    }
    .networking-date-box__date {
        font-size: 28px;
    }
    .networking-date-box__day {
        font-size: 11px;
    }
}