/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body
{
    background-image: url('../images/background/red_black_maroon_1302674908.jpg');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center;
}

#Main
{
    width: 100%;
    height: auto;
    padding-top: 15vh;
    margin-bottom: 3rem;
}
.AboutH
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.AH
{
    color: #fff;
    font-size: 2.7rem;
    border-bottom: solid 3px #dc3545;
    width: 15rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vh;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
.Details
{
    margin-top: 2rem;
    height: auto;
    width: 83vw;
    /* background-color:blue; */
    margin-left: auto;
    margin-right: auto;
}
.cards
{
    height: 23rem;
    /* width: 26vw; */
    margin-top: 5vh;
    padding: 0px;
    /* background-color: red; */
    margin-left: auto;
    margin-right: auto;
}
.interface
{
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.Front, .Back
{
    height: 23rem;
    width: 25%;
    overflow: hidden;
    backface-visibility: hidden;
    position: absolute;
    transition: transform 0.6s linear;
}
.Front
{
    transform: perspective(600px) rotateY(0deg);
}
.Back
{
    transform: perspective(600px) rotateY(180deg);
}
.interface:hover > .Front
{
    transform: perspective(600px) rotateY(-180deg);
}
.interface:hover > .Back
{
    transform: perspective(600px) rotateY(0deg);
}
.card-img
{
    height: 80%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.Title
{
    height: 20%;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    padding-top: 1rem;
}
.modal
{
    height: 30rem;
    margin-top: 20vh;
    text-align: justify;
}
.modal-content {
	background: linear-gradient(#e66465, #9198e5) !important;
}

.btn-secondary{
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-secondary:hover{
    background-color: #dc3545;
    border-color: #dc3545;
}

.Content
{
    height: 100%;
    width: 100%;
    background-color: #000;   
    padding-top: 5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.Drama1
{
    background-image: url('../images/Drama/1.jpg');
}
.Drama2
{
    background-image: url('../images/Drama/2.jpg');
}
.Drama3
{
    background-image: url('../images/Drama/3.jpg');
}
.Drama4
{
    background-image: url('../images/Drama/4.jpg');
}
.Drama5
{
    background-image: url('../images/Drama/5.jpg');
}
.Drama6
{
    background-image: url('../images/Drama/6.jpg');
}
.Movie1
{
    background-image: url('../images/portfolio/CaptainMarvel.jpg');
    background-size: 100% 120%;
}
.Movie2
{
    background-image: url('../images/portfolio/SpiderMan.jpg');
}
.Movie3
{
    background-image: url('../images/portfolio/Joker.jpg');
}
.Movie4
{
    background-image: url('../images/portfolio/HarryPotter.jpg');
    background-size: 100% 120%;
}
.Movie5
{
    background-image: url('../images/portfolio/CaptainAmerica.jpg');
    background-size: 100% 130%;
    background-position: top;
}
.Movie6
{
    background-image: url('../images/portfolio/Venom.jpg');
    background-size: 100% 120%;
}
.DramaContent
{
    color: #fff;
    text-align: center;
}
.link
{
    text-decoration: none;
    color: #dc3545;
    font-weight: 500;
    font-size: 1.2rem;
}
.link:hover
{
    color: red;
}

.SSB
{
    height: auto;
    width: 80vw;
    /* background-color: #fff; */
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    display: flex;
}
#FilterDropDown
{
    background-color: transparent;
    color: #fff;
    border: solid 1px #dc3545;
    padding-left: 1rem;
    padding-right: 1rem;
}

#FilterDropDown option
{
    background-color: rgba(0, 0, 0);
    color: #dc3545;
}
#SearchBox
{
    height: 2.7rem;
    width: auto;
    /* background-color: red; */
    margin-left: auto;
    margin-right: 2rem;
    display: flex;
    border: solid 1px #dc3545;
    overflow: hidden;
}
#InnerSearch
{
    width: 0px;
    height: 100%;
    transition: 0.5s ease-in-out;
    transform: translateX(400px);
}
#input
{
    height: 100%;
    z-index: -1;
    outline: none;
    border: none;
    background-color: transparent;
    color: #fff;
    padding-left: 1rem;
    padding-right: 0.5rem;
}
#searchIcon
{
    width: 3rem;
    height: 100%;
    /* background-color: yellowgreen; */
    font-size: 1.3rem;
    text-align: center;
    padding-top: 5px;
    color: #fff;
    border-left: solid 1px #dc3545;
    z-index: 2;
    cursor: pointer;
}
/* Responsive CSS */

@media (max-width: 991px)
{
    #Main
    {
        padding-top: 25vh;
    }
    .Front, .Back
    {
        width: 40%;
    }
}
@media (max-width: 575px)
{
    .Front, .Back
    {
        width: 80%;
    }
}