
.subtitle {
    font-size: 24px;
}
.card {
    border: unset;
    border-radius: 0;
}
.card:last-of-type {
    border-bottom: 1px solid #ccc;
}
.card-header {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}
.card-header button {
    color: #191919;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;

    font-weight: 600;
}
.card-header button:hover {
    color: #000000;
}
.card-header button:focus {
    outline: none;
    box-shadow: none;
}
.card .card-body {
    font-weight: 400;
}
.more-projects {
    margin: 40px 0 80px 0;
}

.video-background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 8000;
}

.video-tab {
    position: fixed;
    width: 800px;
    height: 450px;
    background: white;
    z-index: 9000;
    top: calc(50vh - 250px);
    left: calc(50vw - 400px);
}

.video-close-btn {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 20px;
    height: 100px;
}

.video-title {
    width: 100%;
    height: 30px;
    background-color: silver;
}

.video-frame {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}
.movie-item {
    transition: transform .5s;
}
.movie-item:hover {
    transform: scale(1.05);
}