#events .date {
    margin-bottom: 0;
}


.circles {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin: 4rem 0;
}

.circles li, .circles li a {
    border-radius: 100px;
    height: 200px;
    width: 200px;
    text-align: center;
}

.circles li a {
    vertical-align: middle;
    display: table-cell;
    border: 3px solid #000;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    overflow: hidden;
}

.circles li a span {
    background-color: rgba(0,0,0,0.7);
    display: inline-block;
    padding: 2px;
    width: 100%;
}
  
.circles li a:hover {
    background-color: rgba(255,255,255,0.7);
}

@media (min-width: 992px) {
    .circles {
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(2, 1fr);
    }
    
    .circles li {
      grid-column: span 2;
    }
  
    .circles li:nth-child(5) {
      grid-column: 2/4;
    }
}


@media (max-width: 767px) {

    .circles {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
    
    .circles li:last-child {
      grid-column: span 2;
    }
    
    .circles li, .circles li a {
      border-radius: 70px;
      height: 140px;
      width: 140px;
    }
}
