.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.gallery-overview {
padding-block: 50px;
}

#gallery-buttons {
display: grid;
grid-template-columns: repeat(3, 1fr);
justify-content: center;
gap: 12px;
margin-inline: auto;
list-style: none;
padding-block: 20px;
text-align: center;
}

#gallery-buttons button  {
background: #ffffff;
border: 3px solid #ff0000;
width: 320px;
color: #ff0000;
font-weight: 600;
padding: 15px 5px;
}

#gallery-buttons button:hover  {
background: #ff0000;
color: #ffffff;
}



.portfolio-wrapper,
.gallery-wrapper {
  max-width: 98%;
  width: 100%;
  margin-inline: auto;
  }
  
  
  .box-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    position: relative;
justify-content: center;
  }
  .box-gallery h3 {
    position: absolute;
    top: -55px;
  }
  .box-gallery .box-gallery-item {
    position: relative;
    height: 250px;
    margin: 0.5%;
    overflow: hidden;
    flex: 0 1 18em;
    transition: all 0.2s ease-in-out;
  
    border-radius: 5px;
  }
  .box-gallery .box-gallery-item i {
    position: absolute;
    bottom: 40%;
    left: 50%;
    margin: 0 0 -28px -28px;
    font-size: 2em !important;
    border-radius: 50%;
    padding: 10px;
    background: var(--accent-color);
    color: #fff;
    opacity: 0;
    transition: all 0.25s;
  }
  .box-gallery .box-gallery-item:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }
  .box-gallery .box-gallery-item:hover i {
    bottom: 50%;
    opacity: 1;
  }
  .box-gallery .box-gallery-item:hover figure {
    opacity: 0.6;
  }
  .box-gallery .box-gallery-item figure {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    background-size: cover;
  }
  .box-gallery .box-gallery-item figure:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }/*# sourceMappingURL=Untitled-1.css.map */

.content-featured,
 .content-bath,
 .content-decks,
 .content-flooring,
 .content-kitchen,
 .content-painting{ 
display: none;
margin-inline: auto;
}

.show { 
display: block; 
}

#active-btn {
background-color: #ff0000!important;
color: #ffffff!important;
}

/****** Media Queries ****/

@media (max-width: 1100px) {
#gallery-buttons {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 720px) {
#gallery-buttons {
grid-template-columns: 1fr;
}

#gallery-buttons li {
max-width: 95%;
width: 100%;
}
}