@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap'); :root {
    --font-theme: 'Kulim Park', sans-serif;
    --color-primary: #2F4F4F;
    --color-secondary: #000000;
    --color-tertiary: #F8F9FA;
    --color-fourth: #FFFFFF;
}

a, a:hover {
    color: var(--color-primary);
}

body {
    color: var(--color-primary);
    background-color: var(--color-tertiary);
    font-family: var(--font-theme);
    overflow-x: hidden;
}

/*===== Header =====*/
.logo, .logo-text {
    color: var(--color-primary);
    display: block;
    line-height: 30px;
}

.logo-text {
    font-style: italic;
    font-size: .775em;

}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: background-color 0.3s ease;

}

.nav-link a {
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem .5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.nav-link a:hover {
    color: var(--color-secondary);
}

.about-content .links  {
    text-decoration: none;
}
.work .work-item {
    position: relative;
    overflow: hidden;
}

.work .work-item:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    opacity: 0.65;
    transition: all 0.4s ease;
     border-radius: .45rem;
}

.work .work-item img {
    transform: scale(1);
    transition: all 0.4s ease;
    border-radius: .45rem;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.work .work-item:hover img {
    transition: all 0.4s ease;
    transform: scale(1.1);
     border-radius: .45rem;
}

.work .work-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
     border-radius: .45rem;
}

.work .work-item .work-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    color: var(--color-tertiary);
    padding: 1rem;
    display: none;
    z-index: 10;
}

.work .work-item:hover .work-content {
    display: block;
}

/*===== Filmmakers =====*/
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 168%;
    background-color: var(--color-secondary);
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 992px) {
    .filmmaker-videos .col-lg-4 {
        padding: 0 var(--spacing-md);
    }

    .video-wrapper {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .filmmaker-videos .col-lg-4 {
        margin-bottom: var(--spacing-lg);
    }

    .filmmaker-content {
        text-align: center;
        padding: 0 var(--spacing-md);
    }

    .video-wrapper {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .filmmaker-videos .col-md-6 {
        width: 50%;
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .video-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .filmmaker-section {
        padding: var(--spacing-md) 0;
    }

    .filmmaker-content .title {
        font-size: 1.5rem;
    }

    .filmmaker-videos .col-md-6 {
        width: 100%;
    }

    .video-wrapper {
        max-width: 300px;
        padding-bottom: 175%;
    }
}

.filmmaker-videos .row {
    margin-left: -10px;
    margin-right: -10px;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
    z-index: 2;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

/*===== Work =====*/
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-container.full-aspect {
    padding-bottom: 56.25%;
    height: 0;
}

.video-container.square-aspect {
    padding-bottom: 100%;
    height: 0;
}

.video-container.vertical-aspect {
    padding-bottom: 177.78%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 576px) {
    .header,
    .about ,
    .filmmaker-section,
    .single-works {
       padding-left: 10px;
        padding-right: 10px;
    
    }
}