#collage {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
    border-bottom: 1px solid lightgrey;
    margin-left: var(--homepage-margin);
    margin-right: var(--homepage-margin);
}

#collage img{
    width: 100%;
    height: 100%;
    padding: .3vw;
    object-fit: cover;
    opacity: 100%;
    display: block;
    filter: brightness(70%);
    transition: filter 1s ease
}

#collage img:hover {
    filter: brightness(100%);
}

.collage-title{
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: var(--website-header-size); */
    font-size: var(--product-page-title-size);
    padding-top: var(--website-header-padding);
    padding-bottom: var(--website-header-padding);
}

.collage-item-middle-big {
    transition: .5s ease;
    position: absolute;
    bottom: 0px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(51, 51, 51, 0.9);
    color: aliceblue;
    width: 95%;
    height: 50px;
    left: 49.98%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-item-middle-long {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    bottom: 0px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(51, 51, 51, 0.9);
    color: aliceblue;
    width: 95.5%;
    height: 50px;
    left: 49.95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-item-middle-small {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    bottom: 0px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(51, 51, 51, 0.9);
    color: aliceblue;
    width: 91%;
    height: 50px;
    left: 49.95%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.collage-item-info {
    transition: .7s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: "light-sans";
    letter-spacing: 1px;
}
.collage-item-info:hover
{
    color: white;
    text-shadow: 0.5px 1px white;
}

.area-1{
    display: flex;
}

.area-1-1{
    position: relative;
    width: 48vw;
    height: 48vw;
    /* background-color: blue; */
}

.area-1-1:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-1-1:hover .collage-item-info {
    opacity: 1;
}

.area-1-2 {
    display: flex;
    flex-direction: column;
}

.area-1-2-top {
    position: relative;
    width: 48vw;
    height: 24vw;
    /* background-color: aqua; */
}

.area-1-2-top:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-1-2-top:hover .collage-item-info {
    opacity: 1;
}

.area-1-2-bottom {
    display: flex;
}

.area-1-2-bottom-left
{
    position: relative;
    width: 24vw;
    height: 24vw;
    /* background-color: brown; */
}

.area-1-2-bottom-left:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-1-2-bottom-left:hover .collage-item-info {
    opacity: 1;
}

.area-1-2-bottom-right
{
    position: relative;
    width: 24vw;
    height: 24vw;
    /* background-color: yellow; */
}

.area-1-2-bottom-right:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-1-2-bottom-right:hover .collage-item-info {
    opacity: 1;
}

.area-2 {
    display: flex;
}

.area-2-1 {
    position: relative;
    width: 24vw;
    height: 24vw;
    /* background-color: darksalmon; */
}

.area-2-1:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-2-1:hover .collage-item-info {
    opacity: 1;
}

.area-2-2 {
    position: relative;
    width: 48vw;
    height: 24vw;
    /* background-color: green; */
}

.area-2-2:hover img{
    opacity: 0.3;
    filter: brightness(100%);
}

.area-2-2:hover .collage-item-info {
    opacity: 1;
}

.area-2-3 {
    position: relative;
    width: 24vw;
    height: 24vw;
    /* background-color: purple; */
}

.area-2-3:hover img{
    filter: brightness(100%);
    opacity: 0.3;
}

.area-2-3:hover .collage-item-info {
    opacity: 1;
}

.area-3 {
    display: flex;
}

.area-3-1 {
    display: flex;
    flex-direction: column;
}

.area-3-1-top {
    position: relative;
    width: 48vw;
    height: 24vw;
    /* background-color: aquamarine; */
}

.area-3-1-top:hover img{
    filter: brightness(100%);
    opacity: 0.3;
}

.area-3-1-top:hover .collage-item-info {
    opacity: 1;
}

.area-3-1-bottom {
    position: relative;
    width: 48vw;
    height: 24vw;
    /* background-color:orange; */
}

.area-3-1-bottom:hover img{
    filter: brightness(100%);
    opacity: 0.3;
}

.area-3-1-bottom:hover .collage-item-info {
    opacity: 1;
}

.area-3-2 {
    position: relative;
    width: 48vw;
    height: 48vw;
    /* background-color: red; */
}

.area-3-2:hover img{
    opacity: 0.3;
    filter: brightness(100%);

}

.area-3-2:hover .collage-item-info {
    opacity: 1;
}

@media (max-width: 900px){ 
    .collage-item-middle-small{
        height: 25px;
        top: 83%;
    }

    .collage-item-middle-long{
        height: 25px;
        top: 83%;
    }

    .collage-item-middle-big{
        height: 25px;
        top: 92%;
    }

    .collage-item-info {
        padding-top: 0vh;
        font-size: 10px;
    }

    #collage img{
        width: 100%;
        height: 100%;
        padding: .3vw;
        object-fit: cover;
        opacity: 100%;
        display: block;
        filter: brightness(100%);
    }
}