.elementor-1328 .elementor-element.elementor-element-d333ff2{--display:flex;}@media(min-width:768px){.elementor-1328 .elementor-element.elementor-element-d333ff2{--content-width:1350px;}}/* Start custom CSS for html, class: .elementor-element-3408636 */h1 {
  color: white !important;
}
<style>
/* Thumbnail gallery item styling */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200px; /* You can adjust this height as needed */
    aspect-ratio: 4 / 3; /* Optional: for consistent aspect ratio across thumbnails */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(88, 37, 16, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '\f00e'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Carousel modal styling */
.carousel-modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.carousel-image-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.carousel-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.carousel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.carousel-counter {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}

.carousel-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: block;
}

.carousel-thumbnail.active {
    border-color: #D4A76A;
    opacity: 1;
}

.carousel-thumbnail:hover {
    opacity: 1;
}
</style>/* End custom CSS */