.must_watch_container {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    align-content: center;
    gap: 8px;
    margin: 160px 0;

    .title {
        font-family: 'Thunder', sans-serif;
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        color: #f0f0f0;
    }

    .projects_container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        flex: 1;
        height: 50vh;
        padding: 0 40px;

        .project {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;

            a {
                position: relative;
                cursor: none;
                width: 100%;
                height: 100%;

                .project_img {
                    width: 100%;
                    height: 100%;
                    overflow: hidden; 
                }

                img {
                    z-index: 2;
                    position: relative;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    transform: scale(1);
                    transition: all 0.3s ease-in-out;
                    overflow: hidden;
                }

                .project_title {
                    z-index: 1;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    font-family: 'Delight', sans-serif;
                    text-align: center;
                    font-size: 24px;
                    font-weight: 600;
                    color: #AE041E;
                    text-transform: uppercase;
                    transition: all 0.3s ease-out;
                }
            }

            a:hover {
                img {
                    transform: scale(1.1);
                    transition: all 0.3s ease-in-out;
                }

                .project_title {
                    bottom: -40px;
                    left: 0;
                    transition: all 0.3s ease-out;
                }
            }
        }
    }
}