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

.product-btn-container {
max-width: fit-content;
width: 100%;
margin: 35px auto;
display: flex;
flex-direction: column;
justify-content: center;
}

.product-btn-container img {
max-width: 250px;
width: 100%;
height: auto;
}



    #gallery_section {
        padding: 80px 5%;
        text-align: center;
    }

    .gallery-noscript {
        font-size: 1.05rem;
        text-align: center;
        padding-top: 85px;
    }

    .gallery-loader {
        display: block;
        margin: 80px auto -50px;
        border-radius: 50%;
        transition: opacity .4s;
        animation: spin 1s linear infinite;
        width: 20px;
        height: 20px;
        box-shadow: 20px 0 0 #e2e4e8, -20px 0 0 #e2e4e8, 0 20px 0 #e2e4e8, 0 -20px 0 var(--accent-color);
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        max-width: 1400px;
        width: 100%;
        margin-inline: auto;
        padding: 0;
        transform: translateY(50px);
        opacity: 0;
        min-height: 500px;
        transition: transform .4s, opacity .4s;
    }

    .gallery-fade-in {
        transform: translateY(0);
        opacity: 1;
    }

    .gallery-fade-out {
        opacity: 0;
    }

    .gallery-item {
        position: relative;
        width: 32%;
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px .5% 0;
    }

    .gallery-item img {
        width: auto;
        height: 115%;
        transition: opacity .4s, transform .4s;
    }

    .gallery-item img.vertical-img {
        width: 115%;
        height: auto;
    }

    .gallery-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 45px;
        height: 45px;
        fill: #111;
        opacity: 0;
        transition: opacity .4s;
    }

    .gallery-item:hover .gallery-icon {
        opacity: 1;
    }

    .gallery-item:hover img {
        opacity: .6;
        transform: scale(1.05);
    }

    @media screen and (max-width: 1200px) {
        .gallery-item {
            width: 32.3333333333%;
        }
    }

    @media screen and (max-width: 900px) {
        .gallery-item {
            width: 49%;
        }
    }

    @media screen and (max-width: 600px) {

        .gallery-item,
        .gallery-item img {
            width: 100%;
            height: auto;
        }
    }

    @media screen and (max-width: 480px) {
        #gallery_section {
            padding-inline: 20px;
        }
    }



/* --- Two-column provide / why us --- */

.hoa-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px 20px;
}

.hoa-col-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4em;
  color: var(--accent-color);
  margin-top: 0;
}

.hoa-col-icon {
  background: var(--accent-color);
  color: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 1.3em !important;
}

.hoa-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hoa-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1em;
  line-height: 1.4;
}

.hoa-list li:last-child {
  border-bottom: none;
}

.hoa-list li .material-symbols-outlined {
  color: var(--accent-color);
  font-size: 1.3em;
  flex-shrink: 0;
}


/* --- CTA --- */

.hoa-cta-icon {
  display: block !important;
  font-size: 2.5em !important;
  color: var(--accent-color);
  margin: 0 auto 20px;
  width: fit-content;
}


/* --- Responsive --- */

@media (max-width: 900px) {
  .hoa-gallery-grid {
    grid-template-columns: 1fr;
  }
  .hoa-gallery-item img {
    height: 280px;
  }
  .hoa-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 550px) {
  .hoa-gallery-item img {
    height: 220px;
  }
}