.blind_type_img{
    height:175px;
    max-height: 100%;
	width:100%;
    object-fit: cover;
}

/* vertical expandable gallery */
.vertical_expandable_gallery {
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin: 10vmin; */
        overflow: hidden;
    }

    .vertical_expandable_gallery .card {
        flex: 1;
        transition: all 1s ease-in-out;
        height: 60vmin;
        position: relative;
    }

    .vertical_expandable_gallery .card .card__head {
        color: black;
        background: rgb(248 149 32 / 41%);
        padding: 0.2em;
        transform: rotate(-90deg);
        transform-origin: 0% 0%;
        transition: all 0.5s ease-in-out;
        min-width: 100%;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 1em;
        white-space: nowrap;
    }

    .vertical_expandable_gallery .card:hover {
        flex-grow: 10;
    }

    .vertical_expandable_gallery .card:hover img {
        filter: grayscale(0);
    }

    .vertical_expandable_gallery .card:hover .card__head {
        text-align: center;
        top: calc(100% - 2em);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        font-size: 2em;
        transform: rotate(0deg) skew(-5deg);
    }

    .vertical_expandable_gallery .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 1s ease-in-out;
        filter: grayscale(100%);
    }

    .vertical_expandable_gallery .card:not(:nth-child(5)) {
        margin-right: 1em;
    }