.top-navbar{
  display: none;
}

.s-block__title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  justify-content:center;
}

.s-block__title h2 {
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-block;
  position: relative;
  padding-bottom: 30px; /* space below for lines and circle */
}

.s-block__title h2::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100px; /* line length */
  height: 2px;
  background-color: #0b5e7f;
  transform: translateX(-130%);
}

.s-block__title h2::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100px;
  height: 2px;
  background-color: #0b5e7f;
  transform: translateX(30%);
}

.s-block__title::after {
  content: "";
  position: absolute;
  left: 51%;
  transform: translateX(-50%);
  bottom: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid #0b5e7f;
  border-radius: 50%;
  background: #fff;
}

.two-row .banner-entry:first-child{
  grid-row: auto !important;
  grid-column: auto !important;
  height: 200px !important;        
}

.banner-entry{
  position: relative;
  height: 200px;                    
  background: transparent !important;
  padding: 0 !important;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: visible;                
}

.banner-entry > a{
  position: absolute; inset: 0;
}

.banner-entry .lazy__bg{
  position: relative;
  width: 160px; 
  height: 160px;
  border-radius: 50%;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 0 0 3px #0b5e7f;   
}

.banner-entry .lazy__bg::after{
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(11,94,127,.15), 0 6px 16px rgba(0,0,0,.12);
  pointer-events: none;
}

.banner-entry:hover .lazy__bg{
  transform: scale(1.03);
  transition: transform .2s ease;
}

@media (max-width: 480px){
  .banner-entry{ height: 160px; }
  .banner-entry .lazy__bg{ width: 130px; height: 130px; }
}