.products-container {
    padding: 1rem;
}

.products-container ul {
    list-style-type: none;
}

.products-container ul li {
    display: inline-block
}

.products-container ul li a {
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.products-list-item:hover .products-link {
    opacity: 0.75;
}

.products-image {
    object-fit: cover;
    width: 200px;
    height: 556px;
}

.products-container figcaption {
    font-size: 14px;
    border-bottom: 2px solid transparent;
    color: #070155;
    text-align: center;
    padding: 1rem;
}
.products-list-item{
    margin: 0.2rem;
}
.products-list-item:hover .products-text {
    color: #FE5001;
    border-bottom: 2px solid #070155;
}

.product-color {
    display: none;
}
.active-color{
    display: block;
}
.active-product {
    display: block;
}

/*Image Gallery*/
.gallery {
    padding: 1rem;
}

.gallery-container {
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-img {
    background-color: #070155;
    border: 1px solid #070155;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-img:hover {
    opacity: 0.75;
}

.gallery-close {
    position: absolute;
}

.gallery-img {
    width: 250px;
    padding: 4px;
    margin-right: 2px;
    cursor: zoom-in;
    margin-top: 1rem;
}

.gallery-modal {
    display: flex;
    z-index: 32;
    align-items: center;
    justify-content: center;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    animation-name: modal;
    animation-duration: 0.6s;
    -webkit-animation-name: modal;
    -webkit-animation-duration: 0.6s;
}

@keyframes modal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes modal {
    from {
        -webkit-opacity: 0;
    }
    to {
        -webkit-opacity: 1;
    }
}

.gallery-modal-img {
    display: flex;
    margin: auto;
    width: 500px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
}

@media screen and (max-width: 800px) {
    .gallery-modal-img {
        width: 450px;
    }

    .close-gallery {
        right: 20px !important;
        top: 300px !important;
    }
}

.close-gallery {
    position: absolute;
    top: 120px;
    right: 130px;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 50px;
    color: rgb(255, 255, 255);
    padding: 5px;
    line-height: 30px;
}

.close-gallery:hover {
    color: rgb(201, 200, 200);
}

.technical-details-image {
    margin: auto;
}

.technical-details-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Glass Balcony Style*/
.glass-balcony-selector {
    color: #070155;
    border-bottom: 1px solid transparent;
}

.active-section {
    border-bottom: 1px solid #070155;
}

.section-container {
    padding: 2rem;
}

.section-header {
    width: 50%;
    margin: auto;
    background-color: #fff;
    font-size: 24px;
    color: #070155;
    font-weight: 700;
    border-bottom: 1px solid #FE5001;
}