
 .clocks-container {
    display: flex;
    justify-content: center;
    max-width: 668px;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  @media screen and (min-width: 750px) {
    .clocks-container {
      padding-top: 62px;
      padding-bottom: 20px;
    }
  }
  .clocks-container .clock {
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    margin: 0 .6rem;
    position: relative;
    display: flex;
    align-items:center;
    justify-content: center;
  }
  @media screen and (min-width: 750px) {
    .clocks-container .clock {
      height: 56px;
      width: 56px;
      margin: 0 1.6rem;
    }
  }
  .clocks-container .clock-city {
    color: rgba(255, 255, 255, 0.5); 
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 10px 0 0 0;
  }
  .clocks-container .clock-content {
    width: 100%;
    height: 100%;
    transform: translateY(0px);
  }

  .clocks-container .hand {
    position: absolute;
    top:50%;
    width:50%;
    height: 1px;
    transform-origin: 100%;
    transform: rotate(90deg);
  }

  .clocks-container .hour {
    background: linear-gradient(to right,  rgba(255,0,0,0) 0%, rgba(255,0,0,0) 50%,  #fff 50%,  #fff 100%);
  }
  .clocks-container .minute {
    background: linear-gradient(to right,  rgba(255,0,0,0) 0%, rgba(255,0,0,0) 15%,  #fff 15%,  #fff 100%);
  }

  .clocks-container .second {
    background: linear-gradient(to right,  rgba(255,0,0,0) 0%, rgba(255,0,0,0) 10%,  rgba(255,255,255,.5) 10%,  rgba(255,255,255,.5) 100%);
    height: 1px;
  }