.Image_Group .LightBox_image_group{
    padding-bottom: calc(var(--ImageHeight)/var(--ImageWidth) * 100%);
    position: relative;
}
.Image_Group .LightBox_image_group img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.caption-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 22, 0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 6;
}
p.gallery-caption {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    margin: 0;
    line-height: 1;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
p.gallery-caption::before, p.gallery-caption::after {
    content: " ";
    width: 60%;
    height: 2px;
    position: absolute;
    left: 20%;
    top: -40px;
    background: #bc192e;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
p.gallery-caption::after {
    bottom: -40px;
    top: unset;
}
.photo_box:hover .caption-inner {
    background: rgba(20, 20, 22, 0.7);
}
.caption-inner:hover p.gallery-caption {
    opacity: 1;
}
.caption-inner:hover p.gallery-caption::before {
    top: -25px;
    opacity: 1;
}
.caption-inner:hover p.gallery-caption::after {
    bottom: -25px;
    opacity: 1;
}