/* main nav */
.navigation-a ul li {
    margin-bottom: 0;
}

/* Grid on video module */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2rem;
  margin: 0 auto;
}

.video {
  width: 100%;
  height: 300px;
}


/* Adjust award images */
.gallery-grid--item {
    width: auto;
}
.gallery-items-wrap {
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.gallery-item--image {
    width: 75%;
}
.gallery-item--spacer {
    text-align: center;
}
@media only screen and (max-width: 749px){
    .gallery-items-wrap {
        flex-direction: column;
    }
}


/* Button inside of buckets */
.featuredblock__content {
    display: flex;
    justify-content: center;
}
.btn-buckets:link,
.btn-buckets:visited {
  padding: 10px 15px; 
  border: none;
  background-color: #bfd400;
  font-weight: 600;
  color: #232e4a !important;
  cursor: pointer;
  transition: all .2s ease-in-out;
  text-decoration: none;
}
.btn-buckets:hover {
  background-color: #c9e000;
  transform: translateY(-2px)
}



/* Change color of form on banner */
.section__bg--dark-3 .section--dark .banner-e__form {
    background-color: #232e4a !important;
}




/* Awards section */
.awards h3 {
    font-size: 2.25rem;
    font-weight: 600;
}
.awards__gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transition: all .2 ease-in-out;
}

.awards__gallery > a .avvo-badge,
.awards__gallery > a img {
    transition: all .2s ease-in-out !important;
}

.awards__gallery > a:hover .avvo-badge, 
.awards__gallery > a:hover img{
    
    transform: scale(1.1);
    
}

@media only screen and (max-width: 749px){
    .awards__gallery {
        flex-direction: column;
    }
}
