.filmo-header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 60px;
    z-index: 12;
    margin: -10px -60px 0;
}
.filmo-header-left {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
}
.filmo-header-left h1 {
    margin: 0;
}
.filmo-header-right {
    display: inline-block;
    width: 69%;
    vertical-align: middle;
    text-align: right;
}
.career-nav li {
    display: inline-block;
}
.career-nav li a {
    color: #000;
    padding: 20px 35px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
.career-nav li a:before {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    transform: skew(-25deg, 0deg);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.career-nav li a.active:before {
    background: #f5ca2a;
}

.section {
    padding: 40px 0 0;
    margin: -9px 0 0;
}


.section-title {
    position: relative;
    padding: 0 0 10px;
}
.section-title small {
    border-top: 1px solid #ccc;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    z-index: -1;
}
.section-title span {
    background: #2a2a2e;
    padding: 0 5px 0 0;
    position: relative;
}
.section-title span:after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: 9px;
    width: 100px;
    height: 2px;
    background: #fff;
}



.television-main-inner {
    margin: 0 -15px;
}
.television-list {
    display: inline-block;
    width: 33.2%;
    vertical-align: top;
    padding: 0 15px 30px;
}
.television-list img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.television-list h5 {
    padding: 12px 0 0;
    font-size: 20px;
    font-weight: 400;
}




.costumdesigner-main-inner {
    margin: 0 -15px;
}
.costumdesigner-list {
    display: inline-block;
    width: 24.8%;
    vertical-align: top;
    padding: 0 15px;
}
.costumdesigner-list img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.costumdesigner-list h5 {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 400;
}
.costumdesigner-list h6 {
    color: #b1a2a2;
}



.filmography-main-inner {
    margin: 0 -12px;
}
.filmography-main h2 {
    padding: 0 0 20px;
}

.filmography-films-list {
    display: inline-block;
    width: 14.1%;
    padding: 0 12px 40px;
}
.filmography-films-list-inner {
    position: relative;
}
.filmography-films-list img {
    width: 100%;
    border-radius: 2px;
    opacity: 0.8;
    transform: scale(1);
    position: relative;
    z-index: 2;

    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.filmography-films-list-caption {
    padding: 10px 0;
}
.filmography-films-list-caption h5 {
    font-size: 20px;
    margin: 0 0 5px;
    font-weight: 400;
    position: relative;
}
.filmography-films-list-caption h5 span {
    display: inline-block;
    position: relative;
}
.filmography-films-list-caption h5 span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 35px;
    background: #f5ca2a;
    height: 2px;
}
.filmography-films-list-caption h6 {
    margin: 0;
    color: #afb2bb;
}


.filmography-films-list:hover img {
    opacity: 1;
    transform: scale(1.1);
    z-index: 3;
}











.awards-main-inner {
    margin: 0 -15px;
}
.awards-list {
    display: inline-block;
    width: 19.7%;
    vertical-align: top;
    padding: 10px 15px 30px 15px;
    text-align: center;
}
.awards-list-img {
    position: relative;
}
.awards-list-img:before {
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    position: absolute;
    box-shadow: 0 0 200px 50px rgba(32, 32, 32, 0.3) inset;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.awards-list img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.awards-list-caption {
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.awards-list-caption h5 {
    color: #999;
    margin: 12px 0 5px;
}

.awards-list-img-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 50px 10px 20px;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.awards-list-img-caption h6 {
    position: relative;
    padding-bottom: 15px;
}
.awards-list-img-caption h6:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    max-width: 170px;
    height: 2px;
    margin: 0 auto;
}
.awards-list-img-caption h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 24px;
}
.awards-list-img-caption p {
    color: #777;
}

.awards-list:hover .awards-list-img:before {
    opacity: 0;
}
.awards-list:hover img {
    filter: blur(5px);
}
.awards-list:hover .awards-list-caption {
    opacity: 0;
}
.awards-list:hover .awards-list-img-caption {
    opacity: 1;
}




@media only screen and (min-width:100px) and (max-width:767px)
{


.filmo-header {
    margin: 0;
    padding: 0;
}
.filmo-header-left {
    display: none;
}
.filmo-header-right {
    width: 100%;
    text-align: center;
}
.career-nav li a {
    padding: 8px 5px;
    font-size: 15px;
}
.career-nav li a:before {
    transform: skew(-15deg, 0deg);
}


.filmography-films-list {
    width: 100%;
    text-align: center;
}
.filmography-films-list img {
    width: auto;
}


.television-list {
    width: 100%;
}


.costumdesigner-list {
    width: 100%;
}


}