/* Slider Hiji */

.slider-hiji .slider__slide {
    --color-text: #ff00c4;
    --color-bg: #1c1423;
    --color-link: #59545e;
    --color-link-hover: #fff;
    --color-slide-text: #fff;
    --color-nav: #fff;
    --font-trail-weight: 900;
    --font-trail-size: 12vh;
    --font-trail-lheight: 0.75;
    color: var(--color-text);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Page Loader */
.slider-hiji .js .loading::before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.slider-hiji .js .loading::after {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5,0.5,1);
    }
}


.slider.has-pag ul.swiper-pag {
    bottom: 20px;
}

.slider-hiji .frame {
    padding: 3rem 5vw 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.slider-hiji .frame__title {
    font-size: 1rem;
    margin: 0 0 1rem;
    font-weight: normal;
}

.slider-hiji .frame__links {
    display: inline;
}

.slider-hiji .frame__links a:not(:last-child),
.slider-hiji .frame__demos a:not(:last-child) {
    margin-right: 1rem;
}

.slider-hiji .frame__demos {
    margin: 1rem 0;
}

.slider-hiji .frame__demo--current,
.slider-hiji .frame__demo--current:hover {
    color: var(--color-text);
}

.slider-hiji .slider {
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    grid-template-areas: 'main';
    height: calc(100vh - 19rem);
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.slider-hiji .slider__slide {
    grid-area: main;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    grid-template-areas: 'inner';
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.slider-hiji .slider__slide--current {
    opacity: 1;
}

.slider-hiji .slider__img,
.slider-hiji .slider__text-wrap {
    grid-area: inner;
    width: 100%;
}

.slider-hiji .slider__img {
    height: calc(100vh - 25rem);
    width: 90%;
    max-width: calc(1000px - 11rem);
    max-height: 600px;
    justify-self: center;
    overflow: hidden;
    z-index: 0;
    position: relative;
}

.slider-hiji .slider__img--full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.slider-hiji .slider__img-inner {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
}

.slider-hiji .slider__text-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slider-hiji .slider__text {
    overflow: hidden;
    flex: 1;
    opacity: 0;
    pointer-events: none;
}

.slider-hiji .slider__text:nth-child(6) {
    opacity: 1;
}

.slider-hiji .slider__text--full {
    flex: none;
}

.slider-hiji .slider__text-inner {
    display: block;
    color: var(--color-slide-text);
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: var(--font-trail-weight);
    line-height: var(--font-trail-lheight);
    font-family: var(--font-trail-family);
}

.slider .link-button {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    cursor: pointer;
}

.slider .link-button a {
    font-size: 3.5rem;
    text-align: center;
    color: transparent;
    display: block;
}

.slider-hiji .slider__text-inner--bottom {
    transform: translate3d(0,-40%,0);
}

.slider-hiji .slider__text-inner--stroke {
    -webkit-text-stroke: 2px var(--color-slide-text);
    text-stroke: 2px var(--color-slide-text);
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    color: transparent;
}

.slider-hiji .slider__nav-button {
    border: 0;
    cursor: pointer;
    background: none;
    margin: 0.25rem 0;
    padding: 0;
    text-transform: lowercase;
    color: var(--color-nav);
    font-weight: 900;
    line-height: 1;
    font-size: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-hiji .slider__nav-button.slider__nav-button--prev {
    left: 30px;
}

.slider-hiji .slider__nav-button.slider__nav-button--next {
    right: 30px;
}

.slider-hiji .slider__nav-button:focus {
    outline: none;
    text-decoration: none;
}

@media screen and (min-width: 53em) {
    .slider-hiji .frame {
        position: fixed;
        text-align: left;
        z-index: 10000;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem;
        pointer-events: none;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto auto;
        grid-template-areas: 'title tagline'
                            '... ...'
                            'links demos';
    }
    .slider-hiji .frame__title-wrap {
        grid-area: title;
        display: flex;
    }
    .slider-hiji .frame__title {
        margin: 0;
    }
    .slider-hiji .frame__tagline {
        grid-area: tagline;
        justify-self: end;
        margin: 0;
        text-align: right;
    }
    .slider-hiji .frame__demos {
        margin: 0;
        grid-area: demos;
        justify-self: end;
    }
    .slider-hiji .frame__links {
        grid-area: links;
        padding: 0;
        justify-self: start;
    }
    .slider-hiji .frame a {
        pointer-events: auto;
    }
    .slider-hiji .slider {
        height: 100vh;
    }
    .slider-hiji .slider__img {
        width: calc(90% - 11rem);
        height: 60vh;
    }
    .slider-hiji .slider__img--full {
        height: calc(100vh + 20px);
        width: calc(100vw + 20px);
        max-width: none;
        max-height: none;
    }
    .slider-hiji .slider__text-inner {
        font-size: var(--font-trail-size);
    }
    .slider .link-button a {
        font-size: 12vh;
    }
    .slider-hiji .demo5 .slider__text-inner--stroke {
        -webkit-text-stroke: 3px var(--color-slide-text);
        text-stroke: 3px var(--color-slide-text);
    }
}
/* Unique Tujuh */


.slideshow-slider .swiper-pag {
    bottom: 30px;
}

.slideshow-slider path {
    transition: unset;
}

.slider-genep {
    --color-text: #000;
    --color-bg: #edf2f4;
    --color-link: #000;
    --color-link-hover: #0e54c1;
    --color-stitle: #000;
    --fontsize-stitle: 8vw;
    --color-sdesc: #000;
    --color-slink: #000;
    --color-slink-hover: #000;
    --color-slink-bg: #fff;
    --color-slink-hover-bg: #0e54c1;
    --color-nav: #000;
    --color-nav-hover: #191970;
}

.slider-genep {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slider-genep .slides {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.slider-genep .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center
}

.slider-genep .slide--current {
    opacity: 1;
    pointer-events: auto
}

.slider-genep .slide__img {
    position: absolute;
    top: -200px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 400px);
    background-size: cover;
    background-position: 50% 50%
}

.slider-genep .slidenav__item {
    border: 0;
    background: 0 0;
    font-weight: 700;
    color: var(--color-nav);
    text-decoration: none;
}

.slider-genep .slidenav__item:focus {
    outline: none
}

.slider-genep .slidenav__item:hover {
    color: var(--color-nav-hover)
}

.slider-genep .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: var(--color-shape-fill);
    top: 0;
    pointer-events: none
}

.slider-genep .slide__title {
    position: relative;
    font-size: var(--fontsize-stitle);
    margin: 0;
    cursor: default;
    line-height: 1;
    color: #fff;
    z-index: 2
}

.slider-genep .slide__desc {
    position: relative;
    font-size: 1.5rem;
    margin: 0 0 2em;
    cursor: default;
    color: #fff;
    padding: 0 1em;
    text-align: center;
    z-index: 2
}

.slider-genep .slide__link {
    position: relative;
    font-size: 1em;
    font-weight: 700;
    padding: 1em 2em;
    display: block;
    color: var(--color-slink);
    background: var(--color-slink-bg);
    transition: color .3s,background .3s;
    z-index: 2
}

.slider-genep .slide__link:hover {
    color: var(--color-slink-hover);
    background: var(--color-slink-hover-bg)
}

.slider-genep .slide__title {
    font-size: 5vh;
    margin-bottom: 15px
}

.slider-genep .slide__link {
    padding: 10px 30px;
    text-transform: uppercase
}

.slider-genep .slide__link:hover {
    background: #191970;
    color: #fff
}

.slider-genep .btn-arrow span {
    transition: transform 300ms ease-out
}

.slider-genep .slide__desc {
    width: 60%
}

.slider-genep .slide__desc p {
    position: relative;
    font-size: 1.5em;
    margin: 0 0 2em;
    cursor: default;
    color: #fff;
    padding: 0 1em;
    text-align: center;
    opacity: 1;
    transform: translateX(0px);
    font-size: inherit;
    margin-bottom: 0;
    margin-top: 10px
}

.overlay-slider {
    background: #000;
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: .4;
    z-index: 1
}

.slider-genep .slideshow__nav {
    position: absolute;
    z-index: 30
}

.slider-genep .slideshow__nav button {
    border: 0;
    font-size: 16px;
    margin: 0;
    cursor: pointer;
    font-weight: 700;
    line-height: 0
}

.slider-genep .slideshow__nav button:hover {
    color: #191970
}

.slider-genep .slideshow__nav span {
    font-size: 20px;
    line-height: 0;
    padding: 0;
    margin: 0;
    color: #000;
}

.no-js .slideshow__nav {
    display: none
}

.slider-genep .slideshow__nav--arrows {
    pointer-events: auto;
    opacity: 1
}

.slider-genep .slideshow__nav--arrows.bottom-nav {
    position: absolute;
    width: 300px;
    margin-left: -150px;
    left: 50%;
    bottom: 0;
    text-align: center;
    padding: 2em;
}

.slider-genep a {
    text-decoration: none;
}



.slider-sabelas {
    /* Grid gap */
    --gap: 10px;
    /* Color scheme */
    --body-text: #333;
    --body-bg: #ccd8e4;
    --link-text: #ef3b3b;
    --link-text-hover: #333;
    --grid-name-text: #ef3b3b;
    --grid-title-text: #ef3b3b;
    --grid-nav-text: #fff;
    --grid-nav-bg: #442ef4;
    --grid-nav-text-hover: #fff;
    --grid-nav-bg-hover: #1f1f1f;
    --grid-text: #333;
}

.slider-sabelas .grid-wrap-item {
    display: grid;
    height: calc(100vh - 6em);
    grid-auto-rows: calc((calc(100vh - 6em) / 30) - var(--gap));
    grid-auto-columns: calc((calc(100% - 6em) / 30) - var(--gap));
    justify-content: center;
    align-content: center;
    grid-gap: var(--gap);
    pointer-events: none;
}

.slider-sabelas .grid-wrap-item a {
    text-decoration: none;
    color: inherit;
}

.slider-sabelas .grid-wrap-item .icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 auto;
    fill: currentColor;
}

.no-js .slider-sabelas .grid-wrap-item {
    margin: 0 0 15vh;
}

.js .slider-sabelas .grid-wrap-item {
    opacity: 0;
    display: none;
}

.js .slider-sabelas .grid--current {
    display: grid;
    opacity: 1;
    pointer-events: auto;
}

.slider-sabelas .grid__item {
    position: relative;
    padding: 1em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transition: transform 0.2s ease-out;
}

.slider-sabelas .grid__item--name,
.slider-sabelas .grid__item--title,
.slider-sabelas .grid__item--text {
    pointer-events: none;
    padding: 0;
    margin: 0;
}

.slider-sabelas .grid__item--name,
.slider-sabelas .grid__item--title {
    text-transform: uppercase;
    line-height: 0.8;
}

.slider-sabelas .grid__item--name {
    pointer-events: unset;
}

.slider-sabelas .grid__item--name {
    font-size: 7vw;
    color: #ef3b3b;
    color: var(--grid-name-text);
}

.slider-sabelas .grid__item--title {
    font-size: 3.5vh;
    text-transform: uppercase;  
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    color: #ef3b3b;
    color: var(--grid-title-text);
}

.slider-sabelas .grid__item--text {
    font-size: 0.85em;
    line-height: 1.2;
    display: flex;
    color: inherit;
    color: var(--grid-text);
}

.slider-sabelas .grid__item--nav {
    background: #442ef4;
    background: var(--grid-nav-bg);
    color: #fff;
    color: var(--grid-nav-text);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.slider-sabelas .grid__item--nav:hover {
    background: #1f1f1f;
    background: var(--grid-nav-bg-hover);
    color: #fff;
    color: var(--grid-nav-text-hover);
}

.slider-sabelas .grid__item--nav-next .icon--nav-arrow {
    margin: 0 0 0 auto;
}

.slider-sabelas .grid__item--nav-prev .icon--nav-arrow {
    transform: rotate(180deg);
    margin: 0;
}


.slider-sabelas .grid__item--animateOut {
    animation: animateOut 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}


/* STYLE 1 GRID*/

.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:first-child { grid-area: 11 / 1 / 17 / 5; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(2) { grid-area: 22 / 6 / 28 / 10; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(3) { grid-area: 8 / 5 / 22 / 15;}
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(4) { grid-area: 22 / 10 / 29 / 15;}
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(5) { grid-area: 1 / 11 / 8 / 15; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(6) { grid-area: 17 / 15 / 24 / 20; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(7) { grid-area: 9 / 15 / 17 / 23; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(8) { grid-area: 2 / 18 / 9 / 23; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(9) { grid-area: 17 / 20 / 22 / 26; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(10) { grid-area: 22 / 20 / 28 / 23; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(11) { grid-area: 4 / 23 / 11 / 27; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(12) { grid-area: 11 / 23 / 17 / 30;}
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item:nth-child(13) { grid-area: 17 / 26 / 22 / 28;}
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item--name { grid-area: 3 / 12 / 24 / 25; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item--title { grid-area: 1 / 27 / 11 / 29; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item--text { grid-area: 22 / 23 / 28 / 28; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item--nav-prev { grid-area: 3 / 6 / 8 / 11; }
.slider-sabelas .grid-wrap-item:nth-child(3n-7) .grid__item--nav-next { grid-area: 24 / 15 / 29 / 20; }

/* STYLE 3 GRID*/

.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:first-child { grid-area: 6 / 1 / 14 / 5;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(2) { grid-area: 3 / 5 / 14 / 10;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(3) { grid-area: 14 / 1 / 21 / 5;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(4) { grid-area: 19 / 10 / 28 / 20;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(5) { grid-area: 1 / 10 / 11 / 18;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(6) { grid-area: 11 / 10 / 19 / 15;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(7) { grid-area: 11 / 15 / 19 / 20;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(8) { grid-area: 1 / 18 / 6 / 23;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(9) { grid-area: 20 / 20 / 27 / 24;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(10) { grid-area: 20 / 28 / 25 / 30;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(11) { grid-area: 4 / 23 / 11 / 27;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(12) { grid-area: 11 / 20 / 20 / 30;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item:nth-child(13) { grid-area: 20 / 24 / 26 / 28;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item--name { grid-area: 15 / 16 / 30 / 26; }
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item--title { grid-area: 1 / 27 / 11 / 29; }
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item--text { grid-area: 19 / 5 / 28 / 10; text-align: right;}
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item--nav-prev { grid-area: 14 / 5 / 19 / 10; }
.slider-sabelas .grid-wrap-item:nth-child(3n-5) .grid__item--nav-next { grid-area: 6 / 18 / 11 / 23; }

/* STYLE 2 GRID*/

.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:first-child { grid-area: 17 / 1 / 24 / 5;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(2) { grid-area: 22 / 6 / 28 / 10;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(3) { grid-area: 14 / 5 / 22 / 10;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(4) { grid-area: 17 / 10 / 26 / 15;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(5) { grid-area: 1 / 10 / 17 / 15;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(6) { grid-area: 11 / 15 / 24 / 20;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(7) { grid-area: 5 / 15 / 11 / 18;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(8) { grid-area: 1 / 18 / 11 / 23;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(9) { grid-area: 20 / 20 / 27 / 24;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(10) { grid-area: 24 / 15 / 29 / 20;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(11) { grid-area: 4 / 23 / 11 / 27;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(12) { grid-area: 11 / 20 / 20 / 30;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item:nth-child(13) { grid-area: 25 / 24 / 29 / 28;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item--name { grid-area: 16 / 7 / 30 / 16; }
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item--title { grid-area: 1 / 27 / 11 / 29; }
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item--text { grid-area: 1 / 5 / 9 / 10; align-items: flex-end; text-align: right;}
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item--nav-prev { grid-area: 9 / 5 / 14 / 10; }
.slider-sabelas .grid-wrap-item:nth-child(3n-6) .grid__item--nav-next { grid-area: 20 / 24 / 25 / 30; }

@keyframes animateOut {
    to {
        opacity: 0;
    }
}

.slider-sabelas .grid__item--animateIn {
    animation: animateIn 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes animateIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 60em) {
    .slider-sabelas .grid-wrap-item {
        height: auto;
        top: auto !important;
        width: 100%;
        left: auto !important;
        padding: 0 2em;
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        grid-auto-rows: auto !important;
        grid-auto-columns: auto !important;
        grid-gap: 1vw;
        margin: 0 0 5em;
    }

    .slider-sabelas .grid__item {
        min-height: 50px;
        grid-area: auto !important;
    }

    .slider-sabelas .grid__item br {
        content: '';
        display: none;
    }

    .slider-sabelas .grid__item--name,
    .slider-sabelas .grid__item--title,
    .slider-sabelas .grid__item--text {
        grid-column: 1 / -1 !important;
        justify-content: flex-start;
        min-height: 0;
        padding: 1vh 0;
        text-align: left !important;
    }   

    .slider-sabelas .grid__item--name {
        grid-row: 1 / -1 !important;
    }

    .slider-sabelas .slider-sabelas .grid-wrap-item .grid__item--title {
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
}
.slider-sabelas .revealer {
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px); /* Firefox and Safari gap hack */
    background: #fff;
    top: -2px;
    left: -2px;
    opacity: 0;
    pointer-events: none;
}

/* Direction control */
.slider-sabelas .revealer--right {
    transform-origin: 100% 50%;
}

.slider-sabelas .revealer--left {
    transform-origin: 0% 50%;
}

.slider-sabelas .revealer--top {
    transform-origin: 50% 0%;
}

.slider-sabelas .revealer--bottom {
    transform-origin: 50% 100%;
}

.slider-sabelas .revealer--showX,
.slider-sabelas .revealer--hideX,
.slider-sabelas .revealer--showY,
.slider-sabelas .revealer--hideY,
.slider-sabelas .revealer--visible {
    opacity: 1;
}

svg.hidden {
    display: none;
}

/* Hide from left/right */
.revealer--hideX {
    animation: hideX 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes hideX {
    from {
        transform: scale3d(0,1,1);
    }
    to {
        transform: scale3d(1,1,1);
    }
}

/* Show from left/right */
.revealer--showX {
    animation: showX 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes showX {
    to {
        opacity: 1;
        transform: scale3d(0,1,1);
    }
}

/* Hide from top/bottom */
.revealer--hideY {
    animation: hideY 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes hideY {
    from {
        transform: scale3d(1,0,1);
    }
    to {
        transform: scale3d(1,1,1);
    }
}

/* Show from top/bottom */
.revealer--showY {
    animation: showY 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes showY {
    to {
        opacity: 1;
        transform: scale3d(1,0,1);
    }
}

/* SINGLE STYLE PORTFOLIO ADD ON */
/***** Individual effects *****/

.single-portfolio-main-wrapper,
.single-portfolio-main-wrapper .header-single {
    height: 100%;
}

/*.single-portfolio-main-wrapper.intro-effect-fadeout,
.single-portfolio-main-wrapper.intro-effect-fadeout .header-single,
.single-portfolio-main-wrapper.intro-effect-sliced,
.single-portfolio-main-wrapper.intro-effect-sliced .header-single,
.single-portfolio-main-wrapper.intro-effect-side,
.single-portfolio-main-wrapper.intro-effect-side .header-single,
.single-portfolio-main-wrapper.intro-effect-jam3,
.single-portfolio-main-wrapper.intro-effect-jam3 .header-single,
.single-portfolio-main-wrapper.intro-effect-grid,
.single-portfolio-main-wrapper.intro-effect-grid .header-single  {
    height: 100%;
}*/

.single-portfolio-main-wrapper .header-single {
    position: relative;
    margin: 0 auto;
    height: calc(100vh - 98px);
    width: 100%;
}

.single-portfolio-main-wrapper.intro-effect-sliced.modify .header-single {
    height: calc(100vh - 250px);
}

.single-portfolio-main-wrapper.intro-effect-sliced.modify .header-single .title {
    padding-top: 80px;
}

.single-portfolio-main-wrapper.intro-effect-jam3.modify .header-single {
    height: calc(100vh - 250px);
}

.single-portfolio-main-wrapper.intro-effect-jam3.modify .header-single .title {
    padding-top: 100px;
}

/*.single-portfolio-main-wrapper.intro-effect-fadeout .header-single,
.single-portfolio-main-wrapper.intro-effect-sliced .header-single,
.single-portfolio-main-wrapper.intro-effect-side .header-single,
.single-portfolio-main-wrapper.intro-effect-jam3 .header-single,
.single-portfolio-main-wrapper.intro-effect-grid .header-single {
    min-height: calc(100vh - 100px);
}

.single-portfolio-main-wrapper.intro-effect-fadeout.modify .header-single,
.single-portfolio-main-wrapper.intro-effect-sliced.modify .header-single {
    min-height: calc(100vh - 230px);
}*/

.single-portfolio-main-wrapper .bg-img {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.single-portfolio-main-wrapper .bg-img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.single-portfolio-main-wrapper.intro-effect-push .bg-img img {
    z-index: 1;
}

.single-portfolio-main-wrapper .bg-img .bg-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.single-portfolio-main-wrapper.intro-effect-fadeout .title h1 {
    padding: 0 0 0.2em;
}

.single-portfolio-main-wrapper.intro-effect-push .header-single .title h1 {
    padding: 0 0 0.3em;
}

.intro-effect-push > .content {
    min-height: 30vh;
}

.single-portfolio-main-wrapper .header-single .title h1 {
    color: #ffffff;
}

.single-portfolio-main-wrapper .header-single .title p.subline {
    color: #ffffff;
}

.single-portfolio-main-wrapper .title p strong:after {
    content: "-";
    margin: 0 5px;
}

.single-portfolio-main-wrapper .title p strong:last-child:after {
    content: "";
    margin: 0;
}

/* Trigger Button */
.single-portfolio-main-wrapper button.trigger {
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 5000;
    display: block;
    transform: translateX(-50%);
    padding: 0;
    width: 100px;
    height: 1em;
    border: none;
    background: transparent;
    color: transparent;
    font-size: 2em;
    cursor: pointer;
}

.single-portfolio-main-wrapper:not(.notrans) button.trigger {
    -webkit-transition: opacity 0.3s 0.5s;
    transition: opacity 0.3s 0.5s;
}

.single-portfolio-main-wrapper.modify:not(.notrans) button.trigger {
    opacity: 0;
    pointer-events: none;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.single-portfolio-main-wrapper button.trigger::before {
    position: absolute;
    bottom: 100%;
    left: -100%;
    padding: 0.8em;
    width: 300%;
    color: #fff;
    content: attr(data-info);
    font-size: 13px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.single-portfolio-main-wrapper button.trigger:focus {
    outline: none;
}

.single-portfolio-main-wrapper button.trigger span {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.single-portfolio-main-wrapper button.trigger span::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    content: "\f078";
    text-transform: none;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    font-family: "font awesome 5 free";
    line-height: 1;
    speak: none;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* -------------------------- */
/* Jam 3 */
/* -------------------------- */
.intro-effect-jam3:not(.notrans) .bg-img {
    -webkit-transition-property: top, left, right, bottom;
    transition-property: top, left, right, bottom;
}

.intro-effect-jam3:not(.notrans) .header-single h1,
.intro-effect-jam3:not(.notrans) .codrops-top a {
    -webkit-transition-property: color;
    transition-property: color;
}

.intro-effect-jam3:not(.notrans) .codrops-demos a {
    -webkit-transition-property: border-color, color;
    transition-property: border-color, color;
}

.intro-effect-jam3:not(.notrans) .header-single p {
    -webkit-transition-property: color, opacity, -webkit-transform;
    transition-property: color, opacity, transform;
}

.intro-effect-jam3:not(.notrans) .content > div {
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
}

.intro-effect-jam3:not(.notrans) .bg-img,
.intro-effect-jam3:not(.notrans) .header-single h1,
.intro-effect-jam3:not(.notrans) .codrops-top a,
.intro-effect-jam3:not(.notrans) .codrops-demos a,
.intro-effect-jam3:not(.notrans) .content > div {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.intro-effect-jam3:not(.notrans) .header-single p,
.intro-effect-jam3:not(.notrans) .header-single p.subline,
.intro-effect-jam3:not(.notrans) .content > div {
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.intro-effect-jam3.modify:not(.notrans) .header-single p,
.intro-effect-jam3.modify:not(.notrans) .header-single p.subline,
.intro-effect-jam3.modify:not(.notrans) .content > div {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.intro-effect-jam3 .codrops-demos a {
    color: #fff;
}

.intro-effect-jam3 .codrops-demos a.current-demo {
    border-color: #fff;
}

.intro-effect-jam3.modify .codrops-demos a {
    color: #c03b5d;
}

.intro-effect-jam3.modify .codrops-demos a.current-demo {
    border-color: #c03b5d;
}

.intro-effect-jam3#container {
    padding: 45px 30px;
}

.intro-effect-jam3 .bg-img {
    top: -45px;
    right: -30px;
    bottom: -45px;
    left: -30px;
    background: #514753;
}

.intro-effect-jam3.modify .bg-img {
    top: 0;
    right: 0;
    bottom: 85%;
    left: 0;
}

.intro-effect-jam3.modify .header-single h1 {
    color: #514753;
}

.intro-effect-jam3 .header-single p {
    color: #514753;
    opacity: 0;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
}

.intro-effect-jam3.modify .header-single p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.intro-effect-jam3 .content {
    padding: 0 5em 5em;
}

.intro-effect-jam3 .content > div {
    opacity: 0;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
}

.intro-effect-jam3.modify .content > div {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.intro-effect-jam3.modify .codrops-top a {
    color: #514753;
}

/* Delays */
.intro-effect-jam3.modify:not(.notrans) .header-single p:nth-last-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.intro-effect-jam3.modify:not(.notrans) .header-single p:last-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.intro-effect-jam3.modify:not(.notrans) .content > div {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* -------------------------- */
/* Faded gradient */
/* -------------------------- */

.intro-effect-fadeout:not(.notrans) .bg-img {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.intro-effect-fadeout:not(.notrans) .bg-img::after {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.intro-effect-fadeout:not(.notrans) .header-single h1 {
    -webkit-transition-property: color;
    transition-property: color;
}

.intro-effect-fadeout:not(.notrans) .header-single p,
.intro-effect-fadeout:not(.notrans) .content > div {
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.intro-effect-fadeout:not(.notrans) .bg-img,
.intro-effect-fadeout:not(.notrans) .bg-img::after,
.intro-effect-fadeout:not(.notrans) .header-single h1,
.intro-effect-fadeout:not(.notrans) .header-single p,
.intro-effect-fadeout:not(.notrans) .content > div {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.intro-effect-fadeout .header-single {
    overflow: hidden;
}

.intro-effect-fadeout.modify .bg-img {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}

.intro-effect-fadeout .bg-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 101%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.intro-effect-fadeout.modify .bg-img::after {
    opacity: 1;
}

.single-portfolio-main-wrapper.intro-effect-fadeout .title {
    text-align: left;
    max-width: 900px;
}

.single-portfolio-main-wrapper.intro-effect-fadeout.modify .header-single h1,
.single-portfolio-main-wrapper.intro-effect-fadeout .header-single p {
    color: #514753;
}

.single-portfolio-main-wrapper.intro-effect-fadeout .header-single p:nth-child(3) {
    opacity: 0;
}

.single-portfolio-main-wrapper.intro-effect-fadeout .header-single p.subline2 {
    opacity: 1;
    transform: translate(10px, 10px);
}

.single-portfolio-main-wrapper.intro-effect-fadeout .header-single p:nth-child(3) {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
}

.single-portfolio-main-wrapper.intro-effect-fadeout.modify .header-single p:nth-child(3) {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.single-portfolio-main-wrapper.intro-effect-fadeout .content {
    z-index: 1000;
    position: relative;
}

.single-portfolio-main-wrapper.intro-effect-fadeout .content > div {
    opacity: 0;
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
}

.single-portfolio-main-wrapper.intro-effect-fadeout.modify .content > div {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* -------------------------- */
/* Sliced */
/* -------------------------- */

.intro-effect-sliced:not(.notrans) .bg-img,
.intro-effect-sliced:not(.notrans) .title {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.intro-effect-sliced:not(.notrans) .header-single h1,
.intro-effect-sliced:not(.notrans) .codrops-demos a {
    -webkit-transition-property: color;
    transition-property: color;
}

.intro-effect-sliced:not(.notrans) .header-single p {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.intro-effect-sliced:not(.notrans) .content > div {
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.intro-effect-sliced:not(.notrans) .bg-img,
.intro-effect-sliced:not(.notrans) .header-single h1,
.intro-effect-sliced:not(.notrans) .title,
.intro-effect-sliced:not(.notrans) .header-single p,
.intro-effect-sliced:not(.notrans) .content > div,
.intro-effect-sliced:not(.notrans) .codrops-demos a {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.intro-effect-sliced.modify:not(.notrans) .header-single h1,
.intro-effect-sliced.modify:not(.notrans) .title,
.intro-effect-sliced.modify:not(.notrans) .header-single p,
.intro-effect-sliced.modify:not(.notrans) .content > div,
.intro-effect-sliced.modify:not(.notrans) .codrops-demos a {
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.intro-effect-sliced .bg-img:first-child {
    bottom: 50%;
}

.intro-effect-sliced .bg-img:last-child {
    top: 50%;
    position: absolute;
    z-index: 900;
}

.intro-effect-sliced.modify .bg-img:last-child {
    top: 50%;
    position: fixed;
    z-index: 900;
}

.intro-effect-sliced .bg-img:last-child img {
    top: -100%;
}

.intro-effect-sliced.modify .bg-img:first-child {
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
}

.intro-effect-sliced.modify .bg-img:last-child {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.intro-effect-sliced .codrops-demos {
    text-align: center;
}

.intro-effect-sliced .codrops-demos a {
    color: #fff;
    font-size: 0.8em;
}

.intro-effect-sliced.modify .codrops-demos a {
    color: #cf4a5c;
}

.intro-effect-sliced .title {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.7);
    transform: translateX(-50%) translateY(-50%) scale(0.7);
}

.intro-effect-sliced.modify .title {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.intro-effect-sliced .header-single p {
    opacity: 0;
    color: #514753;
}

.intro-effect-sliced .title p.subline {
    opacity: 1;
}

.intro-effect-sliced.modify .header-single p {
    opacity: 1;
}

.intro-effect-sliced.modify .header-single h1 {
    color: #514753;
}

.intro-effect-sliced .content > div {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    opacity: 0;
}

.intro-effect-sliced.modify .content > div {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/* Delays */
.intro-effect-sliced.modify:not(.notrans) .title {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

/* -------------------------- */
/* Side */
/* -------------------------- */

.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .title {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::after {
    -webkit-transition-property: top, left, bottom, right, background-color;
    transition-property: top, left, bottom, right, background-color;
}

.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .header-single p {
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .content > div {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::after,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .title,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .header-single p,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .content > div {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.single-portfolio-main-wrapper.intro-effect-side .codrops-top a {
    color: #7b8d92;
}

.single-portfolio-main-wrapper.intro-effect-side .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-side .bg-img::after {
    content: '';
    position: absolute;
    z-index: 100;
}

.single-portfolio-main-wrapper.intro-effect-side .bg-img::before {
    background: #fff;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.single-portfolio-main-wrapper.intro-effect-side.modify .bg-img::before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.single-portfolio-main-wrapper.intro-effect-side .bg-img::after {
    border: 80px solid #fff;
    top: -80px;
    right: -80px;
    bottom: -80px;
    left: -80px;
    background-color: rgba(0,0,0,0.2);
}

.single-portfolio-main-wrapper.intro-effect-side.modify .bg-img::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0);
}

.single-portfolio-main-wrapper.intro-effect-side .codrops-demos a {
    color: #43939d;
}

.single-portfolio-main-wrapper.intro-effect-side .header-single .title p.subline {
    opacity: 1;
    transform: translate(0);
}

.single-portfolio-main-wrapper.intro-effect-side .codrops-demos a.current-demo {
    border-bottom: 3px solid #43939d;
}

.single-portfolio-main-wrapper.intro-effect-side.modify .title {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-portfolio-main-wrapper.intro-effect-side .header-single h1 {
    font-style: italic;
    font-weight: 600;
    padding: 0 0 0.5em 0;
    color: #516165;
}

.single-portfolio-main-wrapper.intro-effect-side .header-single p {
    opacity: 0;
    color: #7b8d92;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.single-portfolio-main-wrapper.intro-effect-side.modify .header-single p {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .content p.subline {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .content {
    z-index: 11;
}

.single-portfolio-main-wrapper.intro-effect-side .content > div {
    margin-top: 0px;
    opacity: 0;
}

.single-portfolio-main-wrapper.intro-effect-side.modify .content > div {
    opacity: 1;
}

/* Delays */
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .title,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-side:not(.notrans) .bg-img::after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .title,
.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .bg-img::after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .header-single p:nth-last-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .header-single p:last-child {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.single-portfolio-main-wrapper.intro-effect-side.modify:not(.notrans) .content > div {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/* -------------------------- */
/* Side Fixed */
/* -------------------------- */
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::before {
    -webkit-transition-property: background-color;
    transition-property: background-color;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::after {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .title p {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .content > div {
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::after,
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .title p,
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .content > div {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed {
    position: relative;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .header-single {
    position: absolute;
    overflow: hidden;
    transform: translate3d(0px,0,0);
    z-index: 10;
    transition: all 1s ease;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .header-single {
    height: 100%;
    z-index: auto;
    transition: all 1s ease;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .bg-img {
    position: fixed;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img img {
    left: auto;
    right: 0;
    position: fixed;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img::after {
    content: '';
    position: absolute;
    z-index: 100;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img::after {
    background: #ffffff;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .bg-img::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img::before {
    width: 100%;
    height: 100%;
    background-color: rgba(247,214,169,0.1);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .bg-img::before {
    background-color: rgb(0 0 0 / 40%);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .codrops-demos a {
    color: #f68f6c;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .title {
    position: relative;
    top: auto;
    left: auto;
    text-align: left;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .title {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .title h1 {
    font-weight: 700;
    color: #585a66;
    transition-duration: 0.5s;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .title p {
    opacity: 0;
    color: #585a66;
    transition-duration: 0.5s;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .title p {
    opacity: 1;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .content {
    width: 60%;
    margin-left: 40%;
    padding: 0 8em 0 8em;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .content div {
    position: relative;
    color: #77726b;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .content div:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify .content div:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.intro-effect-jam3 .header-single p.subline {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* Delays */
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .title,
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-sidefixed:not(.notrans) .bg-img::after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify:not(.notrans) .title,
.single-portfolio-main-wrapper.intro-effect-sidefixed.modify:not(.notrans) .bg-img::before,
.single-portfolio-main-wrapper.intro-effect-sidefixed.modify:not(.notrans) .bg-img::after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed.modify:not(.notrans) .content div:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

/* -------------------------- */
/* Push */
/* -------------------------- */
.intro-effect-push:not(.notrans) .single-header,
.intro-effect-push:not(.notrans) > .title,
.intro-effect-push:not(.notrans) .content > div {
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.intro-effect-push:not(.notrans) .header-single {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s;
}

.intro-effect-push .codrops-demos a {
    color: #108576;
}

.intro-effect-push .header-single {
    position: absolute;
    z-index: 100;
}

.intro-effect-push > .title {
    position: relative;
    top: auto;
    left: auto;
    padding: 15em 1em 2em;
}

.intro-effect-push .content > div {
    margin-top: 0;
    color: #b2b2c0;
}

.single-portfolio-main-wrapper.intro-effect-push > .title,
.single-portfolio-main-wrapper.intro-effect-push .content > div {
    -webkit-transform: translateY(400px);
    transform: translateY(400px);
    opacity: 0;
}

.single-portfolio-main-wrapper.intro-effect-push.modify > .title,
.single-portfolio-main-wrapper.intro-effect-push.modify .content > div {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.single-portfolio-main-wrapper.intro-effect-push.modify .header-single {
    opacity: 0;
    -webkit-transform: translateY(-100%) scale(0.9);
    transform: translateY(-100%) scale(0.9);
}

/* Delays */
.single-portfolio-main-wrapper.intro-effect-push.modify:not(.notrans) > .title {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.single-portfolio-main-wrapper.intro-effect-push.modify:not(.notrans) .content > div {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

/* -------------------------- */
/* Grid */
/* -------------------------- */

.intro-effect-grid:not(.notrans) .grid li:nth-child(5) {
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.intro-effect-grid:not(.notrans) .header-single p  {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.intro-effect-grid:not(.notrans) .bg-img,
.intro-effect-grid:not(.notrans) .title {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.intro-effect-grid:not(.notrans) .header-single h1,
.intro-effect-grid:not(.notrans) .codrops-demos a {
    -webkit-transition-property: color;
    transition-property: color;
}

.intro-effect-grid:not(.notrans) .grid li:nth-child(5),
.intro-effect-grid:not(.notrans) .bg-img,
.intro-effect-grid:not(.notrans) .title,
.intro-effect-grid:not(.notrans) .header-single h1,
.intro-effect-grid:not(.notrans) .header-single p,
.intro-effect-grid:not(.notrans) .codrops-demos a {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.intro-effect-grid .codrops-demos a {
    color: #fff;
}

.intro-effect-grid.modify .codrops-demos a {
    color: #cf7000;
}

.intro-effect-grid .codrops-demos a.current-demo {
    border-bottom: 3px solid #fff;
}

.intro-effect-grid.modify .codrops-demos a.current-demo {
    border-color: #cf7000;
}

.intro-effect-grid .title {
    max-width: 900px;
    padding-top: 2em;
}

.intro-effect-grid.modify .title {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

.intro-effect-grid .content > div {
    margin-top: 40px;
    color: #2e3337;
}

.intro-effect-grid .header-single h1 {
    padding: 0 0 0.6em;
}

.intro-effect-grid.modify .header-single h1 {
    color: #2d3b44;
}

.intro-effect-grid .header-single p {
    opacity: 0;
    color: #4c6270;
}

.intro-effect-grid .header-single p.subline {
    font-size: 1.5em;
}

.intro-effect-grid.modify .header-single p {
    opacity: 1;
}

.intro-effect-grid .grid {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
}

.intro-effect-grid .grid li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(71,63,59,0.5);
    pointer-events: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.intro-effect-grid.modify .grid li:hover::after,
.intro-effect-grid.modify .grid li:nth-child(5)::after {
    background: rgba(71,63,59,0.1);
}

.intro-effect-grid .grid li {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.intro-effect-grid .grid li h2 {
    padding-bottom: 0.4em;
    margin: 1em;
    color: #fff;
    line-height: 1;
    font-size: 1em;
    position: absolute;
    bottom: 0;
    z-index: 100;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.intro-effect-grid .grid li:hover h2 {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.intro-effect-grid .grid li:first-child {
    top: 0;
    left: 0;
    height: 50%;
    width: 25%;
    background-image: url(../img/thumbs/1.jpg);
}

.intro-effect-grid .grid li:nth-child(2) {
    top: 50%;
    left: 0;
    height: 50%;
    width: 25%;
    background-image: url(../img/thumbs/2.jpg);
}

.intro-effect-grid .grid li:nth-child(3) {
    top: 0;
    left: 25%;
    height: 100%;
    width: 25%;
    background-image: url(../img/thumbs/5.jpg);
}

.intro-effect-grid .grid li:nth-child(4) {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
    background-image: url(../img/thumbs/4.jpg);
}

.intro-effect-grid .grid li:nth-child(5) {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 25%;
    background-image: url(../img/thumbs/8.jpg);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.intro-effect-grid.modify .grid li:nth-child(5) {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.intro-effect-grid .grid li:nth-child(5) h2 {
    color: #de8721;
}

.intro-effect-grid .grid li:nth-child(6) {
    top: 50%;
    left: 75%;
    height: 50%;
    width: 25%;
    background-image: url(../img/thumbs/6.jpg);
}

.intro-effect-grid.modify .bg-img {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

/* Media Queries */
@media screen and (max-width: 47em) {
    .single-portfolio-main-wrapper .title, 
    .single-portfolio-main-wrapper .content {
        font-size: 70%;
    }

    .single-portfolio-main-wrapper.intro-effect-side .title {
        width: 100%;
        padding: 0 10em;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .single-portfolio-main-wrapper.intro-effect-side.modify .bg-img::before {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .single-portfolio-main-wrapper.intro-effect-side .bg-img::after {
        border-left-width: 0px;
        border-right-width: 0px;
        right: 0px;
        left: 0px;
        background: rgba(255,255,255,0.1);
    }

    .single-portfolio-main-wrapper.intro-effect-side.modify .bg-img::after {
        background: rgba(255,255,255,0.8);
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .content {
        width: 100%;
        margin-left: auto;
        padding-left: 11em;
        padding: 0;
        padding-top: 5em;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .bg-img::after {
        width: 100%;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .title {
        padding: 0px 3.25em;
        padding-top: 5em;
        text-align: center;
    }

}

@media screen and (max-width: 27em) {
    .intro-effect-jam3 .content {
        padding: 0;
    }

    .intro-effect-grid .grid li h2 {
        display: none;
    }

    .single-portfolio-main-wrapper .title, 
    .single-portfolio-main-wrapper .content {
        font-size: 50%;
    }

    .single-portfolio-main-wrapper button.trigger::before {
        display: none;
    }
    
    .single-portfolio-main-wrapper.intro-effect-sliced .bg-img img {
        height: 100vh;
    }
}

.single-portfolio-main-wrapper .content .wp-block-quote.is-large p, 
.single-portfolio-main-wrapper .content .wp-block-quote.is-style-large p {
    font-size: 24px;
}


/* FONT SETTING */

/* FOR TA */
/*.single-portfolio-main-wrapper .title h1 {
    padding: 0 0 0.5em;
    font-weight: 700;
    font-size: 7.2em;
    margin: 0 auto;
    color: #000000;
}

.single-portfolio-main-wrapper .title p {
    padding: 0 0 0.8em;
    font-weight: 300;
    font-size: 1.4em;
    margin: 0 auto;
}

.single-portfolio-main-wrapper .header-single .title p {
    color: #ffffff;
}

.single-portfolio-main-wrapper .title h1,
.single-portfolio-main-wrapper .title p.subline {
    line-height: 1.2;
}

.single-portfolio-main-wrapper .title p.subline {
    font-size: 2.4em;
}

.single-portfolio-main-wrapper .content, 
.single-portfolio-main-wrapper .content p {
    color: #000000;
    font-size: 1.26em;
    font-weight: 400;
}
.single-portfolio-main-wrapper .intro-effect-push > .title {
    position: relative;
    top: auto;
    left: auto;
    padding: 13em 1em 2em;
}

.single-portfolio-main-wrapper .title {
    z-index: 906;
    margin: 0 auto;
    padding: 0 1.25em;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}


.single-portfolio-main-wrapper.intro-effect-side .title {
    text-align: right;
    left: 0;
    padding: 0 8em 0 8em;
    width: 60%;
    -webkit-transform: translateX(33.3%) translateY(-50%);
    transform: translateX(33.3%) translateY(-50%);
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .title {
    padding: 0 5.25em;
}

*/

.single-portfolio-main-wrapper .title {
    z-index: 906;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.single-portfolio-main-wrapper.intro-effect-fadeout .title {
    padding: 0 30px;
}

.single-portfolio-main-wrapper.intro-effect-side .title {
    text-align: right;
    left: 0;
    padding: 0 40px 0 40px;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-portfolio-main-wrapper .title h1 {
    padding: 0 0 25px;
    font-weight: 700;
    font-size: 36px;
    margin: 0 auto;
    color: #000000;
}

.single-portfolio-main-wrapper .title p {
    padding: 0 0 20px;
    font-weight: 300;
    font-size: 16px;
    margin: 0 auto;
}

.single-portfolio-main-wrapper .header-single .title p {
    color: #ffffff;
}

.single-portfolio-main-wrapper .title h1,
.single-portfolio-main-wrapper .title p.subline {
    line-height: 1.2;
}

.single-portfolio-main-wrapper .title p.subline {
    font-size: 18px;
}

.single-portfolio-main-wrapper .content, 
.single-portfolio-main-wrapper .content p {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}

.single-portfolio-main-wrapper.intro-effect-push > .title {
    position: relative;
    top: auto;
    left: auto;
    padding: 60px 30px 20px;
}

.single-portfolio-main-wrapper.intro-effect-sidefixed .title {
    padding: 0 30px;
}

@media (min-width: 640px) {
    .single-portfolio-main-wrapper .title h1 {
        font-size: 61px;
        padding-bottom: 20px;
    }

    .single-portfolio-main-wrapper .title p {
        font-size: 16px;
    }

    .single-portfolio-main-wrapper .title p.subline {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .single-portfolio-main-wrapper.intro-effect-side .title {
        text-align: right;
        left: 0;
        padding: 0 40px 0 40px;
        width: 60%;
        -webkit-transform: translateX(33.3%) translateY(-50%);
        transform: translateX(33.3%) translateY(-50%);
    }

    .single-portfolio-main-wrapper .content, 
    .single-portfolio-main-wrapper .content p {
        font-size: 14px;
    }

    .intro-effect-push > .title {
        padding: 120px 10px 40px;
    }

    .intro-effect-push > .content {
        min-height: 40vh;
    }

    .single-portfolio-main-wrapper.intro-effect-fadeout .title {
        padding: 0 30px;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .content {
        padding: 0 30px 0 30px;
        padding: 4em;
    }
}

@media (min-width: 1025px) {
    .single-portfolio-main-wrapper.intro-effect-fadeout .title {
        padding: 0 15px;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .title {
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    .single-portfolio-main-wrapper .title h1 {
        font-size: 81px;
    }

    .single-portfolio-main-wrapper .title p {
        font-size: 18px;
    }

    .single-portfolio-main-wrapper .title p.subline {
        font-size: 27px;
    }

    .single-portfolio-main-wrapper .content, 
    .single-portfolio-main-wrapper .content p {
        font-size: 16px;
    }

    .single-portfolio-main-wrapper.intro-effect-push > .title {
        padding: 150px 10px 20px;
    }

    .single-portfolio-main-wrapper.intro-effect-side .title {
        padding: 0 50px 0 50px;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .title {
        padding: 0 15px;
    }

    .single-portfolio-main-wrapper.intro-effect-sidefixed .content {
        padding: 0 80px 0 80px;
        padding-top: 5em;
    }
}

@media (min-height: 1024px) {
    .single-portfolio-main-wrapper.intro-effect-jam3.modify .header-single {
        height: calc(100vh - 450px);
    }

    .intro-effect-push > .content {
        min-height: 40vh;
    }

    .single-portfolio-main-wrapper.intro-effect-sliced .bg-img img {
        height: 100vh;
    }
}


.slider-hiji .slider-overlay,
.slider-dua .slider-overlay,
.slider-tilu .slider-overlay,
.slider-opat .slider-overlay,
.slider-lima .slider-overlay,
.slider-genep .slider-overlay,
.slider-tujuh .slider-overlay,
.slider-dalapan .slider-overlay,
.slider-salapan .slider-overlay,
.slider-sapuluh .slider-overlay {
    z-index: 1;
    left: -1px;
    top: -1px;
    width: 101%;
    height: 101%;
}
