.afishaImage {
    object-fit: cover;
    height: 90vh;
}

.afishaText {
    margin-left: 10px;
    font-size: 18px;
    margin-top: 4px;
}

.afishaSubText {
    margin-left: 10px;
    margin-top: 6px;
}

.afishaDiv {
    width: 100%;
    height: 100%;
    background-color: #21170d;
    margin: auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.afishaImg {
    max-width:  100%;
    margin: auto;
}

.onShowTextHeader {
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 6px;
    position: relative;
    animation: onShow 1s;
}

.itemIndexContent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    Gap: 1px;
    position: relative;
}

.blockIndex {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.blockIndex:hover .themeItemTextArea {
    opacity: 1;
    transition: 0.5s;
}

.themeItemTextArea {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    color: #fbfbf4;
    opacity: 0.2;
    transition: 0.5s;
}

.themeItemText {
    margin: auto;
    letter-spacing: 1px;
    font-size: 34px;
}

@media screen and (min-width: 1101px) {
    .itemIndexContent {
        background-color: rgba(0, 0, 0, 1);
    }

    .themeItemTextArea {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media screen and (max-width: 1100px) {
    .itemIndexContent {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        Gap: 20px;
        position: relative;
        background-color: rgba(0, 0, 0, 1);
        border-radius: 20px;
    }

    .blockIndex {
        border-radius: 20px;
        margin-left: auto;
        margin-right: auto;
        height: 90vh;
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }

    .themeItemTextArea {
        background-color: rgba(0, 0, 0, 0.4);
    }
}