﻿@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700,800");

.movie_card {
    position: relative;
    display: block;
    width: 600px;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

    .movie_card:hover {
        -webkit-transform: scale(1.02);
        transform: scale(1.22);
        -webkit-transition: all 0.9s;
        transition: all 0.9s;
    }

    .movie_card .info_section {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

        .movie_card .info_section .movie_header {
            position: relative;
            padding: 20px;
            height: 60%;
        }

            .movie_card .info_section .movie_header h1 {
                color: #fff;
                font-weight: 400;
                font-size: 15px;
            }

            .movie_card .info_section .movie_header h4 {
                color: #9ac7fa;
                font-weight: 400;
                font-size: 15px;
            }

            .movie_card .info_section .movie_header .minutes {
                display: inline-block;
                margin-top: 0px;
                color: #fff;
                padding: 5px;
                border-radius: 5px;
                border: 1px solid rgba(255, 255, 255, 0.13);
                font-size: 15px;
            }

            .movie_card .info_section .movie_header .type {
                display: inline-block;
                color: #cee4fd;
                margin-left: 10px;
                font-size: 10px;
            }

            .movie_card .info_section .movie_header .locandina {
                position: relative;
                float: left;
                margin-right: 20px;
                width: 120px;
                height: auto;
                box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5);
            }

        .movie_card .info_section .movie_desc {
            padding: 10px;
            height: 40%;
        }

            .movie_card .info_section .movie_desc .text {
                color: #cfd6e1;
                font-size: 12px;
            }

        .movie_card .info_section .movie_social {
            height: 100%;
            padding-left: 15px;
            padding-bottom: 20px;
        }

            .movie_card .info_section .movie_social ul {
                list-style: none;
                padding: 0;
            }

                .movie_card .info_section .movie_social ul li {
                    display: inline-block;
                    color: rgba(255, 255, 255, 0.4);
                    -webkit-transition: color 0.3s;
                    transition: color 0.3s;
                    -webkit-transition-delay: 0.15s;
                    transition-delay: 0.15s;
                    margin: 0 10px;
                }

                    .movie_card .info_section .movie_social ul li:hover {
                        -webkit-transition: color 0.3s;
                        transition: color 0.3s;
                        color: rgba(255, 255, 255, 0.8);
                    }

                    .movie_card .info_section .movie_social ul li i {
                        font-size: 10px;
                        cursor: pointer;
                    }

    .movie_card .blur_back {
        position: absolute;
        top: 0;
        height: 100%;
        right: 0;
        background-size: cover;
        font-size: 12px;
    }

@media screen and (min-width: 768px) {
    .movie_header {
        width: 60%;
    }

    .movie_desc {
        width: 100%;
    }

    .info_section {
        background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0d0d0c), to(transparent));
        background: linear-gradient(to right, #0d0d0c 50%, transparent 100%);
    }

    .blur_back {
        margin-top: 10px;
        width: 35%;
        background-position: -100% 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .movie_card {
        width: 95%;
        margin: 70px auto;
        min-height: 350px;
        height: auto;
    }

    .blur_back {
        width: 100%;
        background-position: 50% 50% !important;
    }

    .movie_header {
        width: 100%;
        margin-top: 85px;
    }

    .movie_desc {
        width: 100%;
    }

    .info_section {
        background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #141413), to(transparent));
        background: linear-gradient(to top, #141413 50%, transparent 100%);
        display: inline-grid;
    }
}

#bright {
    box-shadow: 0px 0px 150px -45px rgba(255, 51, 0, 0.5);
}

    #bright:hover {
        box-shadow: 0px 0px 120px -55px rgba(255, 51, 0, 0.5);
    }

.bright_back {
    background: url("https://occ-0-2433-448.1.nflxso.net/art/cd5c9/3e192edf2027c536e25bb5d3b6ac93ced77cd5c9.jpg");
}

#tomb {
    box-shadow: 0px 0px 150px -45px rgba(19, 160, 134, 0.6);
}

    #tomb:hover {
        box-shadow: 0px 0px 120px -55px rgba(19, 160, 134, 0.6);
    }



#ave {
    box-shadow: 0px 0px 150px -45px rgba(199, 147, 75, 0.7);
    margin-bottom: 200px;
}

    #ave:hover {
        box-shadow: 0px 0px 120px -55px rgba(199, 147, 75, 0.7);
    }
