@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;600;700&display=swap');
body {
    background-color: #000;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
body:not(.home) .main-content {
    min-height: 500px;
}
.rubix-main {
    margin-top: 100px;
}
.hidden {
    display: none;
}
footer {
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 2px;
    text-align: center;
    margin: 30px auto;
}
body.home footer {
    position: absolute;
    bottom: 20px;
}
@media screen and (max-width: 767px) {
    .rubix-main {
        margin-top: 70px;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Menu */
.rubix-navbar {
    background: #000;
}
.rubix-navbar .navbar-toggler {
    color: #fff;
}
.rubix-navbar .navbar-brand .title {
    text-transform: none;
    font-weight: 200;
    font-size: 25px;
    letter-spacing: 1px;
    color: #fff;
}
.rubix-navbar .navbar-brand .title span {
    font-weight: 400;
}
.rubix-navmenufix .nav-link {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 200;
}
.rubix-navmenufix .navbar-nav {
    width: 75%;
}
.rubix-navmenufix .nav-item {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 7px;
}
.rubix-navmenufix li a {
    position: relative;
}
.rubix-navmenufix li a.active {
    font-weight: 400;
}
.rubix-navmenufix li a.active::before,
.rubix-navmenufix li a:hover::before {
    animation: fadeInAnimation ease 1s;
    content: '[';
    position: absolute;
    font-size: 20px;
    font-weight: 200;
    top: 2px;
    left: 20px;
}
.rubix-navmenufix li a.active::after,
.rubix-navmenufix li a:hover::after {
    animation: fadeInAnimation ease 1s;
    content: ']';
    position: absolute;
    font-size: 20px;
    font-weight: 200;
    top: 2px;
    right: 20px;
}
@media screen and (max-width: 1024px) {
    .rubix-navmenufix .navbar-nav {
        width: 100%;
    }
    .rubix-navmenufix li a.active::before,
    .rubix-navmenufix li a:hover::before {
        left: 5px;
    }
    .rubix-navmenufix li a.active::after,
    .rubix-navmenufix li a:hover::after {
        right: 5px;
    }
}
@media screen and (min-width: 768px) {
    .rubix-navmenufix .nav-item {
        margin-top: 0;
    }
    .rubix-navbar {
        padding: 20px 1rem;
    }
    .rubix-navmenufix .nav-link {
        padding: 0;
        display: unset;
    }
    .rubix-navmenufix li a.active::before,
    .rubix-navmenufix li a:hover::before {
        left: -10px;
        top: -7px;
    }
    .rubix-navmenufix li a.active::after,
    .rubix-navmenufix li a:hover::after {
        top: -7px;
        right: -7px;
    }
}
@media screen and (max-width: 767px) {
    .rubix-navbar .container {
        justify-content: unset;
    }
    .rubix-navbar .navbar-brand {
        margin: 0 auto;
    }
    .rubix-navmenufix .navbar-nav {
        width: 100%;
    }
}

/* Home */
body.home {
    background: #000 url(../images/BG.png) no-repeat center center fixed;
    background-size: cover;
}
.wrap-home {
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
}
.wrap-home .title {
    text-transform: none;
    font-weight: 200;
    font-size: 70px;
    letter-spacing: 5px;
    text-align: center;
}
.wrap-home .title span {
    font-weight: 200;
    margin-left: 5px;
}
.wrap-home .menu {
    width: 70%;
    margin: 20px auto 0;
}
.wrap-home .menu ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 60%;
    padding: 0;
    text-align: center;
    list-style-type: none;
}
.wrap-home .menu ul li {
    flex: 1 1;
}
.wrap-home .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    position: relative;
}
.wrap-home .menu ul li a:hover::before {
    animation: fadeInAnimation ease 1s;
    content: '[';
    position: absolute;
    font-size: 20px;
    left: -15px;
    font-weight: 200;
    top: -9px;
}
.wrap-home .menu ul li a:hover::after {
    animation: fadeInAnimation ease 1s;
    content: ']';
    position: absolute;
    font-size: 20px;
    top: -9px;
    right: -15px;
    font-weight: 200;
}
@media screen and (max-width: 1320px) {
    .wrap-home .title {
        font-size: 5vw;
    }
}
@media screen and (max-width: 767px) {
    .wrap-home {
        width: 100%;
        top: 45%;
    }
    .wrap-home .title {
        font-size: 8vw;
    }
    .wrap-home .menu {
        width: 100%;
        margin: 20px auto 0;
    }
    .wrap-home .menu ul {
        width: 80%;
    }
}
@media screen and (max-width: 480px) {
    body.home {
        background: #000 url(../images/BG.png) no-repeat -800px center fixed;
        background-size: cover;
    }
    .wrap-home .menu {
        width: 100%;
    }
    .wrap-home .menu ul {
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    body.home {
        background: #000 url(../images/BG.png) no-repeat -800px center fixed;
    }
}

/* Films Page & About Page */
.film-row {
    margin: 0 auto;
    justify-content: space-between;
}
.film-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.film-box a {
    width: 100%;
    height: 100%;
}
.film-title {
    display: none;
}
.film-box img {
    width: 100%;
    transition: 0.3s;
}
.film-box:hover img {
    transform: scale(1.1);
}
.film-box:hover .film-title {
    display: block;
    height: 100%;
    width: 100%;
    font-weight: 200;
    letter-spacing: 3px;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 20px;
    background: #00000057;
    padding-top: 20%;
}
.film-desc {
    color: #fff;
}
.film-desc-col .title {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 400;
}
.film-desc-col .desc {
    font-size: 14px;
    font-weight: 200;
}
.film-desc-col .desc .achievement-link {
    color: #fff;
}
.detailfilm-row ul {
    list-style: none;
    padding: 0;
}
.detailfilm-row img {
    width: 100%;
}
.detailfilm-row .about-img {
    width: 95%;
}
@media screen and (max-width: 767px) {
    .film-box.col-6 {
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 50%;
    }
    .detailfilm-row .about-img {
        width: 100%;
    }   
}
@media screen and (min-width: 768px) {
    .film-box.col-md-4 {
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 33.3333%;
    }
}
@media screen and (min-width: 992px) {
    .film-box.col-lg-4 {
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 33.3333%;
    }
}

/* Words Page & Stage Page */
.words-category {
    color: #fff;
}
.words-category .category-title,
.stage-contact .title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.words-category .category-list ul {
    list-style: none;
    padding: 0;
}
.words-category .category-list li {
    font-size: 14px;
    /* font-style: italic; */
    font-weight: 200;
}
.words-category .category-list li a {
    color: #fff;
    font-style: normal;
    font-weight: 600;
}
.words-category .category-list p {
    margin-bottom: 2px;
}
.words-quote {
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    font-style: italic;

    background-image: linear-gradient(#a7a7a7, #a7a7a7),
    linear-gradient(#a7a7a7, #a7a7a7),
    linear-gradient(#a7a7a7, #a7a7a7),
    linear-gradient(#a7a7a7, #a7a7a7);
    background-repeat: no-repeat;
    background-size: 8px 1px;
    background-position: top left, top right, bottom left, bottom right;
    border: solid #a7a7a7;
    text-align: justify;
    border-width: 0 1px;
    display: inline-block;
    vertical-align: top;
    padding: 5px 15px;
}
.stage-row,
.stage-contact .desc {
    font-weight: 200;
    font-size: 13px;
}
.stage-row .small-text {
    display: block;
    font-size: 10px;
}
.stage-row .stage-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}
.stage-row .stage-list li {
    font-size: 13px;
    font-style: normal;
    margin-bottom: 5px;
}
.stage-row i {
    font-size: 10px;
}
.stage-p-list {
    color: #fff;
    font-size: 13px;
}
.stage-p-list span {
    font-weight: 600;
}
.img-stage {
    width: 90%;
}
.stage-resume {
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
}
.stage-resume:hover {
    color: #fff;
    text-decoration: none;
}
.stage-resume span {
    text-decoration: underline;
    letter-spacing: 2.8px;
}
.stage-contact {
    color: #fff;
}
.btn-rubix {
    color: #000;
    text-transform: uppercase;
    background-color: #fff;
    border-color: #fff;
    font-size: 13px;
    letter-spacing: 2.5px;
    border-radius: 0;
    width: 185px;
    min-height: 42px;
    line-height: 2.5;
}
.btn-rubix:hover,
.btn-rubix:active {
    background-color: #000 !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}
.btn-rubix:focus {
    box-shadow: none !important;
}
.words-category legend {
    font-size: 12px;
    font-weight: 200;
}
.rubix-stg-up {
    background-color: #303030;
}
@media screen and (min-width: 1024px) {
    .rubix-stage-img {
        height: 500px;
    }
    .img-stage {
        object-fit: cover;
        height: 100%;
    }
}
@media screen and (min-width: 768px) {
    .words-category.theatre .stage-row .col-stg:first-child {
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
    }
    .words-category.theatre .stage-row .col-stg:nth-child(2),
    .words-category.theatre .stage-row .col-stg:nth-child(3) {
        -ms-flex: 0 0 21%;
        flex: 0 0 21%;
        max-width: 21%;
    }
    .words-category.theatre .stage-row .col-stg:last-child {
        -ms-flex: 0 0 28%;
        flex: 0 0 28%;
        max-width: 28%;
    }
}
@media screen and (max-width: 767px) {
    .stage-det {
       flex-wrap: wrap;
       width: 100%;
    }
    .rubix-stage-img {
        height: calc(70vh + 10px);
        overflow: hidden;
    }
    .img-stage {
        width: 100%;
        margin-top: -30px;
    }
    .words-category.theatre .stage-row,
    .words-category.workshop .stage-row {
        border-bottom: 0.2px solid rgba(255, 255, 255, 0.617);
        padding-bottom: 12px;
    }
    .rubix-stage-headdesc {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .stage-row-rubix .stage-row {
        margin: 0;
    }
    .stage-row-rubix .stage-row > div {
        padding: 0;
    }
    .stage-row-rubix .stage-row > div:first-child {
        padding-right: 15px;
    }
}
@media screen and (max-width: 500px) {
    .stage-row-rubix .stage-row > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .stage-row-rubix .stage-row > div:first-child {
        padding-right: 0;
    }
}
@media screen and (max-width: 468px) {
    .rubix-stage-headdesc {
        background-color: #535353;
        margin-top: -90px;
    }
}

/* Etc Page */
.etc-container .etc-title,
.media-container .media-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 16px;
}
.etc-container img {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    border-radius: 0;
    transition: 0.5s;
    width: 100%;
}
.etc-container a:hover img {
    -webkit-filter: grayscale(0);
    filter: none;
}

/* Gallery Page */
.figure-gallery img {
    width: 100%;
}
.figure-sizer,
.figure-gallery {
    width: 25%;
}
.figure-gallery {
    padding: 10px;
    margin: 0;
}
.figure-gallery.width2 {
    width: 50%;
}
.figure-gallery img {
    border-radius: 0;
}
.sl-overlay {
    background: #000;
}
.sl-wrapper .sl-counter {
    font-size: 13px;
    color: #fff;
}
.sl-wrapper .sl-close {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
}
.sl-wrapper .sl-navigation button {
    font-weight: 400;
    color: #fff;
}
.close-popup,
.arrow-popup {
    background: #292929;
    width: 40px;
    line-height: 37px;
    height: 40px;
    text-align: center;
}
.arrow-popup {
    line-height: 32px;
}
.sl-wrapper .sl-image .sl-caption {
    font-size: 14px;
    font-weight: 200;
}
.rubix-video-list iframe {
    width: 100%;
    height: 285px;
}
.no-list {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .figure-sizer,
    .figure-gallery {
        width: 50%;
    }
}