/* film-maker */

.film-maker {
    margin-bottom: 40px;
    margin-top: 73px;
}

.play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.film-maker .film-maker-title h1 {
    color: #191919;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    min-width: fit-content;
    line-height: 72px;
}

.film-maker .film-maker-title {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    border-radius: 30px;
    border: 1px solid #BEBEBE;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
}



.film-maker .film-maker-content {
    column-gap: 32px;
    row-gap: 42px;
    display: flex;
    flex-wrap: wrap;
}

.film-maker .film-maker-content .card {
    flex: 0 0 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
}

.film-maker .film-maker-content .card .card-header img {
    width: 100%;
    height: 705px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
}


.film-maker .film-maker-content .card .card-body {
    position: absolute;
    background: #fff;
    bottom: 46px;
    left: 58px;
    right: 58px;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.film-maker .film-maker-content .card .card-body .card-title {
    flex: 1;
    min-width: fit-content;
}

.film-maker .film-maker-content .card .card-body .card-title h2 {
    text-decoration: none;
    color: #303030 !important;
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    min-width: fit-content;
    text-transform: capitalize;
}

.film-maker .tags {
    display: flex;
    gap: 30px;
    overflow: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.film-maker .tags .tag {
    color: #303030 !important;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 20px;
    min-width: fit-content;
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #8080808c;

}

.film-maker .sticky-card {
    position: absolute;
    left: 38px;
    top: 28px;

    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
}


.film-maker .sticky-card .sticky-card-figure .sticky-card-figure-container {
    position: relative;
}

.film-maker .sticky-card .sticky-card-figure .sticky-card-img {
    width: 368px;
    height: 214px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}

.film-maker .sticky-card .sticky-card-figure .play-btn {
    backdrop-filter: blur(50px);
    border-radius: 50%;
    width: 54px;
    height: 54px;
}


.film-maker .sticky-card .sticky-card-body {
    width: 100%;
}

.film-maker .sticky-card .sticky-card-body-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.film-maker .sticky-card .sticky-card-body .card-title {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.film-maker .sticky-card .sticky-card-body .card-text {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.film-maker .sticky-card .sticky-card-body .card-status {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    
    margin-right: 10px;
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    border-radius: 1000px;
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 800px) {

    .film-maker {
        margin-top: 0;
    }


    .film-maker .film-maker-title {
        margin: 30px 0;
        padding: 0;
        border: none;
        text-align: center;
        display: block;
    }

    .film-maker .film-maker-title h1 {
        text-align: center;
        color: #191919;
        text-align: center;
        font-family: Inter, sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 56.735px;
    }

    .film-maker .film-maker-content {
        row-gap: 30px;
        margin-inline: 15px;
        display: flex;
        flex-wrap: wrap;
    }

    .film-maker .film-maker-content .card {
        flex: 0 0 100%;
    }


    .film-maker .film-maker-content .card .card-header img {
        border-radius: 16px;
        border-radius: 33.719px;
        height: calc(100vw - 90px);
    }

    .film-maker .film-maker-content .card .card-body {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 30px;
        justify-content: space-between;
        align-items: center;
        border-radius: 30px;
    }

    .film-maker .film-maker-title .tags {
        display: none;
    }


    .film-maker .film-maker-content .card .card-body .card-title h2 {
        color: #303030 !important;
        font-family: Inter, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 36px;
        /* 180% */
    }


}

/* end film-maker */


.film-maker {
    margin-bottom: 0px;
}
