﻿/*--------------------------------------------------------------
# releases Two
--------------------------------------------------------------*/
.releases-home-section {
    position: relative;
    display: block;
    background-color: #f9f9f9;
    padding: 2rem 0 2rem 0;
}

.releases-page {
    padding-top: 2rem;
}

.release-play-btn-cont {
    margin-top: 2rem;
}

.release-title-cont {
    margin-bottom: 2rem;
}

.releases-two {
    position: relative;
    display: block;
    padding: 150px 0 70px;
    margin-top: -50px;
}



.releases-two__single img {
    width: 100%;
}

.releases-two-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 644px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

.releases-two-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    height: 644px;
    width: 100%;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .9);
}

.releases-two-bg.jarallax div div {
    filter: grayscale(100%);
}

.releases-two .section-title {
    position: relative;
    margin-bottom: 35px;
    z-index: 5;
}

.releases-two .section-title__tagline {
    color: var(--thm-primary);
}

.releases-two .section-title__title {
    color: #ffffff;
}

.releases-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 24px;
    padding-top: 50px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 5px 5px 5px 5px #e5eeec, 5px 5px 5px 5px #e5eeec;
}

.releases-two__img-box {
    position: relative;
    display: block;
}

.releases-two__img {
    position: relative;
    display: block;
    overflow: hidden;
}

    .releases-two__img > img {
        position: relative;
        width: 100%;
        transition: transform 500ms ease;
        transform: scale(1);
    }



    .releases-two__img > a {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(var(--thm-primary-rgb), 0.9);
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        color: #ffffff;
        transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-30%);
    }

        .releases-two__img > a > i {
            color: #ffffff;
            transition: all 500ms ease;
        }

            .releases-two__img > a > i:hover {
                color: #ffffff;
            }

.releases-two__single:hover .releases-two__img > a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.releases-two__date {
    position: absolute;
    bottom: -10px;
    left: 20px;
    background: var(--thm-primary);
    padding: 4px 20px;
    z-index: 2;
}

    .releases-two__date > p {
        font-size: 0.8rem;
        color: #ffffff;
        font-weight: 600;
        margin: 0;
    }


.releases-two__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

    .releases-two__meta li + li {
        margin-right: 12px;
    }

    .releases-two__meta li a {
        font-size: 0.8rem;
        color: var(--thm-gray);
        font-weight: 600;
    }

        .releases-two__meta li a i {
            color: var(--thm-primary);
        }

.releases-two__content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 11px;
    margin-top: 0;
    height: 100px;
}

    .releases-two__content h3 a {
        color: var(--thm-black);
        transition: all 500ms ease;
        font-size: 1.2rem;
    }

        .releases-two__content h3 a:hover {
            color: var(--thm-primary);
        }

.releases-two__text {
    font-size: 1rem;
    margin: 0;
}

.releases-two__content .introduction__btn {
    padding: 16px 0px 16px 0px;
    min-width: 120px;
    text-align: center;
    /* float: right; */
    margin: auto;
}

.book-container {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
}

@keyframes initAnimation {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-30deg);
    }
}

.book {
    width: 200px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-30deg);
    transition: 1s ease;
    animation: 1s ease 0s 1 initAnimation;
}

.book-container:hover .book,
.book-container:focus .book {
    transform: rotateY(0deg);
}

.book > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    background-color: red;
    width: 200px;
    height: 300px;
    transform: translateZ(15px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
    box-shadow: 5px 5px 20px #666;
}

.book::before {
    position: absolute;
    content: ' ';
    background-color: blue;
    left: 0;
    top: 1px;
    width: 28px;
    height: 298px;
    transform: translateX(184px) rotateY(90deg);
    background: linear-gradient(90deg, #fff 0%, #f9f9f9 5%, #fff 10%, #f9f9f9 15%, #fff 20%, #f9f9f9 25%, #fff 30%, #f9f9f9 35%, #fff 40%, #f9f9f9 45%, #fff 50%, #f9f9f9 55%, #fff 60%, #f9f9f9 65%, #fff 70%, #f9f9f9 75%, #fff 80%, #f9f9f9 85%, #fff 90%, #f9f9f9 95%, #fff 100% );
}

.book::after {
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 200px;
    height: 300px;
    transform: translateZ(-15px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
}
