.main {
    top: -10vw;
    width: 100%;
}

.poster {
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: -1;

    img {
        width: 100%;
    }
}

.mini_bar {
    top: -0.5vw;
    width: 100vw;
    display: flex;
    justify-content: center;
    background: #81858D;
    margin: 0;

    h2 {
        color: white;
        padding: 0.3vw 2vw;
        margin: 0.3vw 0;
        font-weight: 400;
        letter-spacing: 2px;

        font-family: 'Playfair Diplay', serif;
        font-style: italic;

        border-left: solid 1px;
    }

    :nth-child(1) {
        border: none;
    }

    >* {
        transition: 300ms;
    }

    >*:hover {
        cursor: pointer;
        scale: 1.05;
    }

}

.special {
    position: relative;

    h1 {
        margin: 20px 0 0;
    }

    .special_content {
        position: relative;
        margin: 5vw;
        padding: 1vw 5vw 5vw;
        display: flex;
        width: 80vw;
        justify-content: center;

        img {
            width: calc(60vw / 3);

            -webkit-box-shadow: 3px 9px 48.5px -12px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: 3px 9px 48.5px -12px rgba(0, 0, 0, 0.75);
            box-shadow: 3px 9px 48.5px -12px rgba(0, 0, 0, 0.75);
        }

        :nth-child(1) {
            left: 1vw;
        }

        :nth-child(2) {
            top: -5vw;
            z-index: 1;
        }

        :nth-child(3) {
            left: -1vw;
        }

        .image_container {
            position: relative;
            overflow: hidden;

        }

        .special_price {
            display: flex;
            position: relative;
            left: 1vw;
            top: calc(-100% - 4px);
            height: 100%;
            width: 100%;

            display: flex;
            justify-content: center;
            align-items: flex-end;

            opacity: 0;
            transition: opacity 0.5s ease-in-out;

            >* {
                height: 15%;
                width: 100%;
                left: 0;
                font-size: 1.5rem;
                font-family: 'Playfair Display', serif;
                background: rgba(255, 255, 255, 0.7);

                z-index: -1;
            }

            :nth-child(2) {
                font-size: 1rem;

            }

            &:hover {
                cursor: pointer;
                opacity: 1;

                color: black;

            }

        }

        img:hover {
            cursor: pointer;

            .special_price {
                opacity: 1;
            }
        }

    }
}



.category {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .category_item {
        display: flex;

        >* {
            margin: 30px;
        }

        img {
            width: calc(60vw / 3);
            display: block;
        }

    }


    .image_container {
        position: relative;
        overflow: hidden;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);

        display: flex;
        justify-content: center;
        align-items: center;

        color: white;

        opacity: 1;
        transition: opacity 0.5s ease-in;

        z-index: 1;

        span {
            font-size: 2.5rem;
            font-family: 'Playfair Display', serif;
        }

        &:hover {
            cursor: pointer;
            opacity: 0;
        }
    }
}

.h2 {
    max-width: none;
}