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

}
 


/***** Interior Pages Content *****/


.interior-h2 {
    text-align: center;
}

.interior-content-section {
    padding-block: 50px;
    margin-inline: auto;
}

.interior-list-item i {
    display: inline !important;
}

.interior-products-col h2 {
    text-align: center;
}


.interior-image-container {
    text-align: center;
    float: right;
    width: fit-content;
    margin: 12px;
}


.interior-image-container img {
    max-width: 480px;
    width: 43vw;
    width: 100%;
    margin: 12px;

}

.services-section {
    padding-block: 35px;
}

.products-section {
    background: #f3f3f3;
    padding: 35px 15px;
}

.interior-product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.product-card-container {
    text-align: center;
    margin: auto;
}

.product-card-container img {
max-width: 300px;
width: 100%;
margin: 20px auto;
}

.product-card-container .site_button.square{
    background: var(--accent-color);
max-width: 250px;
width: 100%;
}


/**** Accordion Section *****/
    .accordion-section {
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .accordion-title {
position: relative;
        background-color: #5e9833;
        padding: 10px;
        margin: 0;
        cursor: pointer;
color: #ffffff;
    }

    .accordion-title {}

    .accordion-content {
        display: none;
        padding: 10px;
    }

/* Add styles to the plus and minus signs */
.accordion-title::before {
    content: "+";
    display: inline-block;
    margin-right: 5px;
}

.accordion-title.active::before {
    content: "-";
}



.comm-list {
list-style: inside;
}


/***** Gallery Section *****/

.portfolio-wrapper,
.gallery-wrapper {
  max-width: 92%;
  width: 100%;
  margin-inline: auto;
  padding-block: 25px;
  }
  
  
  .box-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0;
    width: 100%;
    position: relative;
justify-content: space-around;
  }
  .box-gallery h3 {
    position: absolute;
    top: -55px;
  }
  .box-gallery .box-gallery-item{
    position: relative;
width: 350px;
  height: 200px;
    margin-inline: auto;
    overflow: hidden;
    flex: 0 1 20em;
    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 */



/***** Media Queries ****/
@media (max-width: 1200px) {
  .box-gallery .box-gallery-item{
    position: relative;
max-width: 350px;
width: 100%;
}
}

@media (max-width: 900px) {

.interior-product-cards {
    grid-template-columns: 1fr;
}

.interior-product-cards,
  .box-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

  .box-gallery .box-gallery-item{
    position: relative;
max-width: 430px;
height: 250px;
width: 100%;
}
}

@media (max-width: 500px) {

.interior-product-cards,
  .box-gallery {
    display: grid;
    grid-template-columns: 1fr;
}

  .box-gallery .box-gallery-item{
    position: relative;
max-width: 430px;
height: 250px;
width: 100%;
}
}