     /* ---- Create Accordion --- */
     .accordion {
        display: flex;
        overflow: hidden;
        margin: 50px auto;
        .tab {
            position: relative;
            width: 20%;
            height: inherit;
            padding: 20px;
            background: #000;
            color: #FFF;
            cursor: pointer;
            transition: width 0.5s ease;
            img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.5s ease;
            }
            .caption {
                position: absolute;
                z-index: 2;
                white-space: nowrap;
                top: 150px;
                opacity: 0;
                h2 {
                    margin-bottom: 2px;
                    text-overflow: clip;
                    font-size: 24px;
                    text-transform: uppercase;
                }
                p {
                    margin: 0;
                    font-family: 'Open Sans';
                    font-size: .9rem;
                }
            }
            &.active {
                width: 80%;
                img {
                    opacity: 0.6;
                }
                .caption {
                    opacity: 1;
                }
            }

        }
    }
