.triple-section{
    text-align: center;
    color: white;
}

.triple-section > .section-header {
    padding-bottom: 20px;
}

.section-header{
    padding-bottom: 50px;
}

.images-container{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.images-container{
    width: 100%;
}

.image-container{
    width: 50%;
    transition: 1s;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.image-container:hover{
    width: 200%;
    height: fit-content;
    transition: 1s;
}

.image-container:hover > .image-sub-container{
    filter: brightness(1);
    transition: 1s;
}

.image-sub-container{
    contain: content;
    height: 850px;
    width: 100%;
    filter: brightness(0.5);
    transition: 1s;
}

.tsection-img{
    object-fit: cover;
    min-width: 100%;
    min-height: 90%;
    width: 100%;
}

.ps-image-table{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    padding-bottom: 100px;
}

.image-description{
    margin-top: 0;
    margin-bottom: 1rem;
    position: absolute;
    z-index: 100;
    border: 2px solid white;
    padding: 100px;
    opacity: 1;
    transition: 1s;
    background: #00000000;
}
.image-subdescription {
    font-size: 12px;
    padding-top: 20px;
    text-align: center;
    white-space: pre-line;
    opacity: 0;
    transition: 1s;
}

.image-container:hover > .image-description{
    opacity: 0;
    transition: 1s;
    background: #000000a1;
}

.image-container:hover  .image-subdescription {
    opacity: 1;
    transition: 1s;
}

.image-zoom{
        width: 20px;
    position: absolute;
    z-index: 2;
    margin-top: 70px;
}

.image-container:hover > .image-zoom {
    opacity: 0;
    transition: 1s;
}



