@charset "UTF-8";
/*!
 * Holy Carousel
 * Version: 1.0.0
 * Author: Web_Trendy
 * Copyright 2019 © Web_Trendy (https://codecanyon.net/user/web_trendy)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "Life is balance of holding on and letting go." -Rumi
 *
 */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
	1.0 General Styles > Line 23
	2.0 Layout Styles > Line 349
	3.0 Animations > Line 520
	4.0 Media Queries > Line 613
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 General Styles
Styles applied to all effects.
--------------------------------------------------------------*/
.holy-carousel {
  position: relative;
  min-height: 100vh; }
  .holy-carousel .hc-slide {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw; }
    .holy-carousel .hc-slide.slide-current {
      z-index: 99; }
      .holy-carousel .hc-slide.slide-current .hc-img-wrapper .img-reveal {
        -webkit-animation-name: hc-revealTop;
                animation-name: hc-revealTop; }
      .holy-carousel .hc-slide.slide-current .hc-img-wrapper .hc-img {
        opacity: 1;
        -webkit-animation-name: hc-scaleUp;
                animation-name: hc-scaleUp;
        -webkit-animation-delay: 800ms;
                animation-delay: 800ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .hc-title {
        -webkit-animation-name: hc-fadeInRight;
                animation-name: hc-fadeInRight;
        -webkit-animation-delay: 1000ms;
                animation-delay: 1000ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .title-reveal {
        opacity: 1;
        -webkit-animation-name: hc-slideInRight;
                animation-name: hc-slideInRight;
        -webkit-animation-delay: 900ms;
                animation-delay: 900ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .hc-subtitle {
        -webkit-animation-name: hc-fadeInRight;
                animation-name: hc-fadeInRight;
        -webkit-animation-delay: 1300ms;
                animation-delay: 1300ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .subtitle-reveal {
        opacity: 1;
        -webkit-animation-name: hc-slideInRight;
                animation-name: hc-slideInRight;
        -webkit-animation-delay: 1200ms;
                animation-delay: 1200ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .hc-desc {
        -webkit-animation-name: hc-fadeInTop;
                animation-name: hc-fadeInTop;
        -webkit-animation-delay: 1200ms;
                animation-delay: 1200ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .holy-carousel .hc-slide.slide-current .hc-info .slide-identity {
        -webkit-animation-delay: 1200ms;
                animation-delay: 1200ms;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
    .holy-carousel .hc-slide.slide-out .hc-img-wrapper .hc-img {
      -webkit-transform: scale(1.04);
              transform: scale(1.04); }
    .holy-carousel .hc-slide.slide-out .hc-info .hc-title, .holy-carousel .hc-slide.slide-out .hc-info .hc-subtitle {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-name: hc-fadeOutRight;
              animation-name: hc-fadeOutRight;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .holy-carousel .hc-slide.slide-out .hc-info .title-reveal {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-name: hc-slideOutRight;
              animation-name: hc-slideOutRight;
      -webkit-animation-delay: 300ms;
              animation-delay: 300ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .holy-carousel .hc-slide.slide-out .hc-info .subtitle-reveal {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-name: hc-slideOutRight;
              animation-name: hc-slideOutRight;
      -webkit-animation-delay: 500ms;
              animation-delay: 500ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .holy-carousel .hc-slide.slide-out .hc-info .hc-desc {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-name: hc-fadeOutTop;
              animation-name: hc-fadeOutTop;
      -webkit-animation-delay: 500ms;
              animation-delay: 500ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .holy-carousel .hc-slide .hc-img-wrapper {
      width: 40%;
      position: relative;
      overflow: hidden; }
      .holy-carousel .hc-slide .hc-img-wrapper .hc-img {
        height: 100vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0;
        -webkit-transition-delay: 500ms;
                transition-delay: 500ms;
        -webkit-animation-duration: 1000ms;
                animation-duration: 1000ms;
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out; }
      .holy-carousel .hc-slide .hc-img-wrapper .img-reveal {
        -webkit-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200%;
        background-color: white;
        transition: all 300ms ease-out;
        transform: translateY(100%);
        -webkit-animation-duration: 1500ms;
                animation-duration: 1500ms;
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out; }
    .holy-carousel .hc-slide .hc-info {
      width: 60%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .holy-carousel .hc-slide .hc-info .hc-title-wrapper, .holy-carousel .hc-slide .hc-info .hc-subtitle-wrapper {
        position: relative;
        overflow: hidden;
        display: inline-block;
        margin: 3px 0px; }
      .holy-carousel .hc-slide .hc-info .hc-title, .holy-carousel .hc-slide .hc-info .hc-subtitle {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        -webkit-animation-duration: 300ms;
                animation-duration: 300ms;
        -webkit-animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02);
                animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02);
        display: inline-block;
        color: white;
        opacity: 0;
        /* margin: 10px 15px; */
        font-size: 2.8em; }
      .holy-carousel .hc-slide .hc-info .hc-subtitle {
        font-size: 1.2em;
        line-height: 1.5; }
      .holy-carousel .hc-slide .hc-info .title-reveal, .holy-carousel .hc-slide .hc-info .subtitle-reveal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: black; */
        z-index: -1;
        opacity: 0;
        -webkit-transform: translateX(-120%);
                transform: translateX(-120%);
        -webkit-animation-duration: 300ms;
                animation-duration: 300ms;
        -webkit-animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02);
                animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02); }
      .holy-carousel .hc-slide .hc-info .hc-desc {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        opacity: 0;
        line-height: 1.5;
        -webkit-animation-duration: 300ms;
                animation-duration: 300ms;
        -webkit-animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02);
                animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02); }
      .holy-carousel .hc-slide .hc-info .slide-identity {
        position: absolute;
        bottom: 20px;
        -webkit-writing-mode: vertical-lr;
            -ms-writing-mode: tb-lr;
                writing-mode: vertical-lr;
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
        opacity: 0;
        font-size: 0.8em;
        -webkit-animation-duration: 300ms;
                animation-duration: 300ms;
        -webkit-animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02);
                animation-timing-function: cubic-bezier(0.1, 0.74, 0.74, 1.02); }
        .holy-carousel .hc-slide .hc-info .slide-identity .hc-id {
          display: inline-block;
          color: #bbb;
          padding-bottom: 5px; }
          .holy-carousel .hc-slide .hc-info .slide-identity .hc-id:before {
            content: '# '; }
          .holy-carousel .hc-slide .hc-info .slide-identity .hc-id:after {
            content: ' - '; }
        .holy-carousel .hc-slide .hc-info .slide-identity .hc-name {
          display: inline-block;
          color: #777; }
  .holy-carousel .nav {
    position: absolute;
    margin: 10px;
    z-index: 998; }
    .holy-carousel .nav button {
      background: #ccc;
      border: none;
      padding: 15px;
      cursor: pointer;
      margin: 0px 5px; }
      /*
      .holy-carousel .nav button[id='next'] {
        background-image: url(../img/partials/arrow-right-s-line.svg); }
      .holy-carousel .nav button[id='prev'] {
        background-image: url(../img/partials/arrow-left-s-line.svg); }
        */
      .holy-carousel .nav button:hover, .holy-carousel .nav button:focus {
        outline: none;
        background-color: #b3b3b3; }
  .holy-carousel .audio-wrapper {
    position: absolute;
    width: 100px;
    text-align: center;
    z-index: 999; }
    .holy-carousel .audio-wrapper audio {
      display: none; }
    .holy-carousel .audio-wrapper ul.bars {
      display: inline-block;
      list-style: none;
      padding: 0;
      margin: 0; }
      .holy-carousel .audio-wrapper ul.bars img {
        width: 15px;
        margin-right: 5px;
        opacity: .3; }
      .holy-carousel .audio-wrapper ul.bars li {
        display: inline-block;
        width: 3px;
        height: 15px;
        position: relative;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        margin: 0px 1px; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(1) {
          height: 5px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(1):before {
            -webkit-animation-delay: 0.2s;
                    animation-delay: 0.2s;
            height: 50%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(2) {
          height: 10px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(2):before {
            -webkit-animation-delay: 0.4s;
                    animation-delay: 0.4s;
            height: 90%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(3) {
          height: 12px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(3):before {
            -webkit-animation-delay: 0.6s;
                    animation-delay: 0.6s;
            height: 80%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(4) {
          height: 15px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(4):before {
            -webkit-animation-delay: 0.8s;
                    animation-delay: 0.8s;
            height: 35%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(5) {
          height: 12px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(5):before {
            -webkit-animation-delay: 0.3s;
                    animation-delay: 0.3s;
            height: 65%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(6) {
          height: 10px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(6):before {
            -webkit-animation-delay: 0.9s;
                    animation-delay: 0.9s;
            height: 90%; }
        .holy-carousel .audio-wrapper ul.bars li:nth-of-type(7) {
          height: 5px; }
          .holy-carousel .audio-wrapper ul.bars li:nth-of-type(7):before {
            -webkit-animation-delay: 0.1s;
                    animation-delay: 0.1s;
            height: 95%; }
        .holy-carousel .audio-wrapper ul.bars li:before {
          content: '';
          display: inline-block;
          background: #aaa;
          position: absolute;
          bottom: 0;
          width: 100%;
          -webkit-animation-name: hc-volume_play;
                  animation-name: hc-volume_play;
          -webkit-animation-duration: 0.5s;
                  animation-duration: 0.5s;
          -webkit-animation-iteration-count: infinite;
                  animation-iteration-count: infinite;
          -webkit-animation-direction: alternate;
                  animation-direction: alternate; }
      .holy-carousel .audio-wrapper ul.bars:hover {
        cursor: pointer; }
      .holy-carousel .audio-wrapper ul.bars.paused li {
        height: 15px !important; }
        .holy-carousel .audio-wrapper ul.bars.paused li:before {
          -webkit-animation-play-state: paused !important;
                  animation-play-state: paused !important; }
      .holy-carousel .audio-wrapper ul.bars.played li:before {
        background: #555; }

/*--------------------------------------------------------------
2.0 Layout Styles
Styles applied to different layouts.
--------------------------------------------------------------*/
.holy-carousel.layout1 .hc-slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  .holy-carousel.layout1 .hc-slide.slide-current .hc-info .slide-identity {
    -webkit-animation-name: hc-appearInLeft;
            animation-name: hc-appearInLeft; }
  .holy-carousel.layout1 .hc-slide .hc-info {
    padding-left: 10%;
    padding-right: 50px; }
    .holy-carousel.layout1 .hc-slide .hc-info .slide-identity {
      left: 40%; }
    .holy-carousel.layout1 .hc-slide .hc-info .hc-desc {
      margin-right: 20%; }
.holy-carousel.layout1 .nav {
  bottom: 0;
  right: 0; }
.holy-carousel.layout1 .audio-wrapper {
  right: 80px;
  bottom: 10px; }

.holy-carousel.layout2 .hc-slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }
  .holy-carousel.layout2 .hc-slide.slide-current .hc-info .slide-identity {
    -webkit-animation-name: hc-appearInRight;
            animation-name: hc-appearInRight; }
  .holy-carousel.layout2 .hc-slide .hc-info {
    padding-right: 10%;
    padding-left: 50px;
    text-align: right; }
    .holy-carousel.layout2 .hc-slide .hc-info .slide-identity {
      right: 40%; }
    .holy-carousel.layout2 .hc-slide .hc-info .hc-desc {
      margin-left: 20%; }
.holy-carousel.layout2 .nav {
  bottom: 0;
  left: 0; }
.holy-carousel.layout2 .audio-wrapper {
  left: 80px;
  bottom: 10px; }

.holy-carousel.layout3 .hc-slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  .holy-carousel.layout3 .hc-slide.slide-current .hc-info .slide-identity {
    -webkit-animation-name: hc-appearInLeft-layout3;
            animation-name: hc-appearInLeft-layout3; }
  .holy-carousel.layout3 .hc-slide .hc-img-wrapper {
    left: 15%; }
  .holy-carousel.layout3 .hc-slide .hc-info {
    z-index: 999;
    padding-left: 5%;
    padding-right: 50px; }
    .holy-carousel.layout3 .hc-slide .hc-info .slide-identity {
      left: calc(10% + 30px);
      font-size: 1.2em; }
    .holy-carousel.layout3 .hc-slide .hc-info .hc-desc {
      margin-left: 25%; }
.holy-carousel.layout3 .nav {
  bottom: 0;
  right: 0; }
.holy-carousel.layout3 .audio-wrapper {
  right: 80px;
  bottom: 10px; }

.holy-carousel.layout4 .hc-slide {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%; }
  .holy-carousel.layout4 .hc-slide.slide-current .hc-info .slide-identity {
    -webkit-animation-name: hc-appearInLeft-layout4;
            animation-name: hc-appearInLeft-layout4; }
  .holy-carousel.layout4 .hc-slide .hc-img-wrapper {
    position: absolute;
    width: 100%; }
    .holy-carousel.layout4 .hc-slide .hc-img-wrapper .hc-img:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4); }
  .holy-carousel.layout4 .hc-slide .hc-info {
    padding: 0;
    z-index: 99;
    position: relative; }
    .holy-carousel.layout4 .hc-slide .hc-info .slide-identity {
      left: 0;
      top: -50px;
      -webkit-writing-mode: unset;
          -ms-writing-mode: unset;
              writing-mode: unset;
      -webkit-transform: rotate(0);
              transform: rotate(0); }
      .holy-carousel.layout4 .hc-slide .hc-info .slide-identity .hc-id {
        padding-right: 10px; }
      .holy-carousel.layout4 .hc-slide .hc-info .slide-identity .hc-name {
        color: #ddd; }
    .holy-carousel.layout4 .hc-slide .hc-info .hc-desc {
      margin-right: 20%;
      color: #ddd; }
.holy-carousel.layout4 .nav {
  bottom: 0;
  right: 0; }
.holy-carousel.layout4 .audio-wrapper {
  right: 80px;
  bottom: 10px; }
  .holy-carousel.layout4 .audio-wrapper img {
    -webkit-filter: invert(1);
            filter: invert(1); }

/*--------------------------------------------------------------
3.0 Animations
CSS animations used.
--------------------------------------------------------------*/
@-webkit-keyframes hc-revealTop {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }
@keyframes hc-revealTop {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }
@-webkit-keyframes hc-fadeInTop {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes hc-fadeInTop {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@-webkit-keyframes hc-fadeOutTop {
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }
@keyframes hc-fadeOutTop {
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }
@-webkit-keyframes hc-fadeInRight {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes hc-fadeInRight {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@-webkit-keyframes hc-fadeOutRight {
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }
@keyframes hc-fadeOutRight {
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }
@-webkit-keyframes hc-slideInRight {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes hc-slideInRight {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@-webkit-keyframes hc-slideOutRight {
  100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%); } }
@keyframes hc-slideOutRight {
  100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%); } }
@-webkit-keyframes hc-scaleUp {
  100% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04); } }
@keyframes hc-scaleUp {
  100% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04); } }
@-webkit-keyframes hc-appearInLeft {
  100% {
    opacity: 1;
    left: calc(40% + 15px); } }
@keyframes hc-appearInLeft {
  100% {
    opacity: 1;
    left: calc(40% + 15px); } }
@-webkit-keyframes hc-appearInRight {
  100% {
    opacity: 1;
    right: calc(40% + 15px); } }
@keyframes hc-appearInRight {
  100% {
    opacity: 1;
    right: calc(40% + 15px); } }
@-webkit-keyframes hc-appearInLeft-layout3 {
  100% {
    opacity: 1;
    left: calc(10% + 15px); } }
@keyframes hc-appearInLeft-layout3 {
  100% {
    opacity: 1;
    left: calc(10% + 15px); } }
@-webkit-keyframes hc-appearInLeft-layout4 {
  100% {
    opacity: 1;
    top: -30px; } }
@keyframes hc-appearInLeft-layout4 {
  100% {
    opacity: 1;
    top: -30px; } }
@-webkit-keyframes hc-appearInLeft-mobile {
  100% {
    opacity: 1;
    top: 20px; } }
@keyframes hc-appearInLeft-mobile {
  100% {
    opacity: 1;
    top: 20px; } }
@-webkit-keyframes hc-volume_play {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }
@keyframes hc-volume_play {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }
/*--------------------------------------------------------------
4.0 Media Queries
Styles applied to small devices.
--------------------------------------------------------------*/
/*Phone*/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .holy-carousel.layout1 .hc-slide, .holy-carousel.layout2 .hc-slide, .holy-carousel.layout3 .hc-slide, .holy-carousel.layout4 .hc-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .holy-carousel.layout1 .hc-slide.slide-current .hc-info .slide-identity, .holy-carousel.layout2 .hc-slide.slide-current .hc-info .slide-identity, .holy-carousel.layout3 .hc-slide.slide-current .hc-info .slide-identity, .holy-carousel.layout4 .hc-slide.slide-current .hc-info .slide-identity {
      -webkit-animation-name: hc-appearInLeft-mobile;
              animation-name: hc-appearInLeft-mobile; }
    .holy-carousel.layout1 .hc-slide .hc-img-wrapper, .holy-carousel.layout2 .hc-slide .hc-img-wrapper, .holy-carousel.layout3 .hc-slide .hc-img-wrapper, .holy-carousel.layout4 .hc-slide .hc-img-wrapper {
      width: 100%;
      position: absolute; }
      .holy-carousel.layout1 .hc-slide .hc-img-wrapper .hc-img:before, .holy-carousel.layout2 .hc-slide .hc-img-wrapper .hc-img:before, .holy-carousel.layout3 .hc-slide .hc-img-wrapper .hc-img:before, .holy-carousel.layout4 .hc-slide .hc-img-wrapper .hc-img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4); }
    .holy-carousel.layout1 .hc-slide .hc-info, .holy-carousel.layout2 .hc-slide .hc-info, .holy-carousel.layout3 .hc-slide .hc-info, .holy-carousel.layout4 .hc-slide .hc-info {
      padding: 80px 20px 40px;
      width: 100%;
      z-index: 99; }
      .holy-carousel.layout1 .hc-slide .hc-info .title-reveal, .holy-carousel.layout1 .hc-slide .hc-info .subtitle-reveal, .holy-carousel.layout2 .hc-slide .hc-info .title-reveal, .holy-carousel.layout2 .hc-slide .hc-info .subtitle-reveal, .holy-carousel.layout3 .hc-slide .hc-info .title-reveal, .holy-carousel.layout3 .hc-slide .hc-info .subtitle-reveal, .holy-carousel.layout4 .hc-slide .hc-info .title-reveal, .holy-carousel.layout4 .hc-slide .hc-info .subtitle-reveal {
        background-color: rgba(0, 0, 0, 0.4); }
      .holy-carousel.layout1 .hc-slide .hc-info .hc-title, .holy-carousel.layout2 .hc-slide .hc-info .hc-title, .holy-carousel.layout3 .hc-slide .hc-info .hc-title, .holy-carousel.layout4 .hc-slide .hc-info .hc-title {
        font-size: 2em; }
      .holy-carousel.layout1 .hc-slide .hc-info .hc-subtitle, .holy-carousel.layout2 .hc-slide .hc-info .hc-subtitle, .holy-carousel.layout3 .hc-slide .hc-info .hc-subtitle, .holy-carousel.layout4 .hc-slide .hc-info .hc-subtitle {
        font-size: 1em; }
      .holy-carousel.layout1 .hc-slide .hc-info .slide-identity, .holy-carousel.layout2 .hc-slide .hc-info .slide-identity, .holy-carousel.layout3 .hc-slide .hc-info .slide-identity, .holy-carousel.layout4 .hc-slide .hc-info .slide-identity {
        left: 20px;
        top: 40px;
        bottom: auto;
        -webkit-writing-mode: unset;
            -ms-writing-mode: unset;
                writing-mode: unset;
        -webkit-transform: rotate(0);
                transform: rotate(0); }
        .holy-carousel.layout1 .hc-slide .hc-info .slide-identity .hc-id, .holy-carousel.layout2 .hc-slide .hc-info .slide-identity .hc-id, .holy-carousel.layout3 .hc-slide .hc-info .slide-identity .hc-id, .holy-carousel.layout4 .hc-slide .hc-info .slide-identity .hc-id {
          padding-right: 5px; }
        .holy-carousel.layout1 .hc-slide .hc-info .slide-identity .hc-name, .holy-carousel.layout2 .hc-slide .hc-info .slide-identity .hc-name, .holy-carousel.layout3 .hc-slide .hc-info .slide-identity .hc-name, .holy-carousel.layout4 .hc-slide .hc-info .slide-identity .hc-name {
          color: #ddd; }
      .holy-carousel.layout1 .hc-slide .hc-info .hc-desc, .holy-carousel.layout2 .hc-slide .hc-info .hc-desc, .holy-carousel.layout3 .hc-slide .hc-info .hc-desc, .holy-carousel.layout4 .hc-slide .hc-info .hc-desc {
        margin-right: 0%;
        color: #ddd;
        font-size: 0.9em; }
  .holy-carousel.layout1 .audio-wrapper img, .holy-carousel.layout2 .audio-wrapper img, .holy-carousel.layout3 .audio-wrapper img, .holy-carousel.layout4 .audio-wrapper img {
    -webkit-filter: invert(1);
            filter: invert(1); }
  .holy-carousel.layout1 .audio-wrapper ul.bars.played li:before, .holy-carousel.layout2 .audio-wrapper ul.bars.played li:before, .holy-carousel.layout3 .audio-wrapper ul.bars.played li:before, .holy-carousel.layout4 .audio-wrapper ul.bars.played li:before {
    background: #ddd; }

  .holy-carousel.layout2 .hc-slide .hc-info .slide-identity {
    right: 20px; }

  .holy-carousel.layout3 .hc-slide .hc-img-wrapper {
    left: 0; }
  .holy-carousel.layout3 .hc-slide .hc-info .slide-identity {
    font-size: 0.8em; }
  .holy-carousel.layout3 .hc-slide .hc-info .hc-desc {
    margin-left: 0; } }
/*Tablet & iPad*/
/* :) Let's meke internet BEAUTIFUL*/
/*
 _       __     __       ______                    __
| |     / /__  / /_     /_  __/_______  ____  ____/ /_  __
| | /| / / _ \/ __ \     / / / ___/ _ \/ __ \/ __  / / / /
| |/ |/ /  __/ /_/ /    / / / /  /  __/ / / / /_/ / /_/ /
|__/|__/\___/_.___/    /_/ /_/   \___/_/ /_/\__,_/\__, /
                                                 /____/
*/
/* 03 Sep 2019*/

/*# sourceMappingURL=holycarousel.css.map */