* {
    box-sizing: border-box;
}

.effect-fade-in{
    transition:opacity 0.5s;
    &:not([animPlaying]){
        opacity:0;
    }

    &[animPlaying]{
        opacity:1;
    }
}

/* .effect-scale-down{
    transition:transform 0.5s;
    transform-origin: center;
    &:not([animPlaying]){
        transform:scale(1.3);
    }

    &[animPlaying]{
        transform:scale(1);
    }
}
 */
body {
    line-height: 1.8em;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton';
    text-transform: uppercase;
    color: #00111a;
    text-align: center;
    display: table;
    background: #00111a;
    color: #dee7ec;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    letter-spacing: 1px;
    margin: 20px auto;
}

h1 {
    font-size: 3em;
    margin: 20px auto 40px
}


html,
body{
    height:100%;
}

.site-wrapper {
    min-height: 100%;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-rows: auto 1fr auto;
}




/*--- MENU SETTINGS ---*/

#responsive-menu-pro-container{
    left:0;
}

.hl-head{
    @media screen and (min-width:980px){
        display:none !important;
    }
}

.hl-side{
    @media screen and (max-width:979px){
        display:none !important;
    }
}

.desk-nav {

    @media screen and (max-width:979px){
        display:none !important;
    }
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    left: 0;
    top: 0;
    
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index:2;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
}

.homepage .sub-logo {
    display: none;
    width: 98%;
    height: auto;
}

.homepage{
    .hl-side {
        display: block;
        width: 98%;
        height: auto;
    }

    .hl-head {
        display: block;
        width: auto;
        height: 98%;
    }
}

.homepage .header-inner,
.homepage .footer-inner {
    color: #00111a;
}

.subpage #header {
    background: #00111a;
}

.subpage .sub-logo {
    display: block;
    width: 98%;
    height: auto;
}

.subpage .home-logo {

    @media screen and (min-width:980px){
        display: none;
    }
    
    
}

.subpage .header-inner,
.subpage .footer-inner {
    color: #dee7ec;
}

.menu-links ul {
    padding-left: 15px;
    padding-top: 10px;
    margin: 0;
    font-family: 'Anton';
    font-size: 2em;
    letter-spacing: 0.02em;
}

.menu-links ul li {
    display: table;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    height:1.1em;
}

.menu-links ul li a {
    text-decoration: none;
    line-height: 1em;
    position:absolute;
}

.homepage .menu-links ul li a {
    color: #00111a;
}

.subpage .menu-links ul li a {
    color: #dee7ec;
}

.footer-inner {
    padding-left: 15px;
    font-family: 'Anton';
    font-size: 0.8em;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.05em;
}

.footer-inner a {
    text-decoration: none;
}

.footer-inner i {
    font-size: 1.6em;
    margin-right: 10px;
    margin-bottom: 5px;
}

.homepage .footer-inner a {
    color: #00111a;
}

.subpage .footer-inner a {
    color: #dee7ec;
}

.menu-links ul li a {
    height: 1.1em;
    line-height: 1em;
}

.menu-links ul li a:hover {
    font-family: 'Comforter Brush';
    height: 1.1em;
    line-height: 1em;
}

.homepage #footer {
    display: none;
}

/*--- SUBPAGES ---*/

.subpage{
    .desk-nav{
        position:fixed;
        background-color: #00111a;
    }
}

.subpage .wrapper-inner {
    /* justify-content: center;
    display: flex;
    flex-direction: column; */
    min-height: 100%;
    /* position: absolute;
    right: 0;
    top: 0; */
    
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left:auto;
}

.page-content {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: 'Poppins';
    font-size: 1.2em;
    color: #00111a;
}

.page-content a {
    text-decoration: none;
    color: #00111a;
    font-weight: 700;
}

.page-bg {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    
    height: 100vh;
    background: url(../../../assets/img/subpage-desk.jpg) center center;
    background-size: cover;
}

@media screen and (max-width: 979px) {
}

@media screen and (min-width:980px) and (max-width: 1919px) {
    .subpage .wrapper-inner{
        width: 70%;
    }

    .subpage .desk-nav{
        width: 30%;
    }

    .page-bg{
        width: 70%;
    }
    
}

@media screen and (min-width: 1920px) {
    .subpage .wrapper-inner{
        width: 80%;
    }

    .subpage .desk-nav{
        width: 20%;
    }

    .page-bg{
        width: 80%;
    }
}



/***************
 * HOME SLIDER *
 ***************/

.wrapper-inner {
    position: relative;
    width:100%;
    height:100%;

}

.home-slider {
    width: 100%;
    height: 100%;
    
    position: relative;

    .hs-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transform-origin: top;
        z-index: 200;

        cursor: pointer;
        transition: transform 0.5s;

        &:hover {
            transform: scale(2.5) translateY(-50%);
        }

        &.prev {
            left: 1%;
        }

        &.next {
            right: 1%;
        }
    }

    .slider-inner {
        width: 100%;
        height: 100%;

        .slick-list,
        .slick-track {
            height: 100%;
            width: 100%;
        }

        

        .slider-inner-inner {
            text-decoration: none;
            display: block;
        }

        .home-slider-text {
            position: absolute;
            padding: 1%;

            bottom: 0;
            text-transform: uppercase;
            overflow: hidden;
            width: auto;
            font-family: "garet heavy";
            height: auto;

            @media screen and (min-width: 1024px) {
                text-align: right;
            }

            @media screen and (max-width: 1023px) {
                text-align: center;
            }

            font-size: 50px;
            letter-spacing: 2px;
            z-index: 2;
            color: #fff;
            width: 100%;
            text-transform: uppercase;
            transition: opacity 1s;

            pointer-events: none;

            >div {
                background: rgba(0, 0, 0, 0.9);
                padding: 30px 25px 25px !important;
                display: inline-block;
            }

            .cs-title {
                background: linear-gradient(90deg, rgba(32, 150, 175, 1) 0%, rgba(234, 170, 115, 1) 55%, rgba(218, 212, 191, 1) 85%, rgba(244, 243, 239, 1) 100%) !important;
                -webkit-background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
                /*color: #dad4bf;*/
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .wrapper-inner.home-slider {
        
    }

    .wrapper-inner.home-slider .slider-inner {
        .slider-inner-inner {
            .home-slider-text {
                font-size: 30px;
            }
        }
    }
}




/*--- TOUR ---*/

.bit-widget { color: #00111a !important; }

.bit-widget .bit-upcoming-events-show-all-button,
.bit-upcoming-events-show-all-button {
    display: none !important;
}

.more {
    font-family: 'Anton';
    border: 2px solid #00111a;
    color: #00111a;
    padding-bottom: 15px; padding-top: 18px;
    padding-left: 20px;
    padding-right: 20px; 
    display: table;
    margin: 0 auto;
}

.more:hover {
    background: #00111a;
    border: 2px solid #00111a;
    color: #dee7ec; }


.bit-widget .bit-nav-bar-container {
    padding: 0;
}

.bit-widget .bit-top-track-button {
    padding-top: 0px !important;
    color: #00111a !important;
    padding-bottom: 10px !important;
}

.bit-lineUp-with,
.bit-widget .bit-event .bit-lineUp-container .bit-lineUp {
    font-family: 'Poppins';
    font-size: 12px !important;
    line-height: 1.2em;
}

.bit-widget-container {
    margin-top: 0px !important;
    width: 100%;
    font-size: 15px;
}


.bit-track-button {
    display: none !important;
}

.bit-events {
    color: #00111a !important;
}

.bit-top-track-button {
    color: #00111a;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
    font-family: 'Poppins';
    padding-bottom: 30px !important;
    text-align: center;
    font-size: 16px;
}

.bit-top-track-button a {
    color: #00111a !important;
}

a.bit-top-track-button {
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 20px !important;
}

.bit-nav-bar {
    font-family: 'Poppins';
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: 16px;
}

.bit-nav-bar a,
.bit-nav-bar span {
    color: #00111a !important;
}

.bit-nav-bar a:hover,
.bit-nav-bar span a:hover {
    color: #00111a !important;
}

.bit-venue,
.bit-venue a {
    font-weight: bold !important;
    color: #00111a !important;
}

.bit-widget {
    padding-top: 0px;
}

.bit-widget .bit-venue {
    color: #00111a !important;
}

.bit-widget .bit-venue,
.bit-widget .bit-location {
    padding-top: 10px !important;
}

.bit-widget .bit-location {
    color: #00111a;
}

.bit-event {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left !important;
    font-size: 16px;
}

.bit-details {
    padding-top: 15px;
    padding-bottom: 10px;
}

.bit-widget .bit-event {
    border-bottom: 1px solid #00111a;
    border-top: 0 !important;
}

.bit-widget .bit-event:last-child {
    border-bottom: 0 !important;
}

.bit-widget .bit-event:last-child {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.bit-upcoming-events,
.bit-past-events {
    font-family: 'Poppins' !important;
    text-transform: uppercase;
}

.bit-widget .bit-upcoming-events,
bit-past-events {
    border-bottom: 0 !important;
}

.bit-upcoming-events a,
.bit-past-events a {
    color: #00111a;
}

.bit-date {
    font-size: 24px;
    color: #00111a;
    padding-bottom: 5px;
    display: block;
    margin-right: 18px;
}

.bit-date,
.bit-button {
    font-family: 'Poppins';
    text-transform: uppercase;
}

.bit-button {
    font-size: 16px;
    background: none !important;
    font-weight: bold;
    color: #00111a !important;
    border: 2px solid #00111a !important;
    /*float: right; margin-bottom: 5px; clear:both;*/
}

.bit-button:hover {
    color: #dee7ec !important;
    background: #00111a !important;
    border: 2px solid #00111a !important;
}

.bit-widget .bit-event .bit-event-buttons {
    margin-top: 0 !important;
}

.bit-widget .bit-event-list-title,
.bit-widget .bit-top-track-button {
    font-size: 16px;
}

.bit-event:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.bit-widget .bit-no-dates-container .bit-track-button {
    display: none;
}

.bit-widget .bit-no-dates-container .bit-no-dates-title {
    font-family: 'Poppins';
    font-size: 16px;
}

@media screen and (max-width: 1125px) {
    .bit-date {
        padding-bottom: 10px;
        font-size: 18px !important;
    }

    .bit-widget.bit-layout-ipad .bit-event .bit-button {
        width: 120px;
    }

    .bit-widget.bit-layout-ipad .bit-event {
        padding-right: 15px;
    }

    .bit-event {
        font-size: 15px;
    }

    .bit-button {
        font-size: 15px;
    }

}


.bit-widget.bit-layout-desktop .bit-details {
    display: flex !important;
}

.bit-widget.bit-layout-desktop .bit-location {
    margin-left: 0 !important;
    text-align: left !important;
    font-weight: bold;
}

.bit-past-events .bit-event .bit-date {
    width: 200px;
}

.bit-past-events-show-all-button {
    font-family: 'Poppins';
    font-size: 16px;
    max-width: 300px;
    margin: 10px auto !important;
    display: block !important;
    background: none;
    border: 2px solid #00111a;
}

.bit-widget .bit-play-my-city-button {
    display: none !important;
}

.bit-widget.bit-layout-desktop .bit-details,
.bit-widget.bit-layout-desktop .bit-details>div {
    display: block !important;
}

.bit-past-events .bit-event .bit-rsvp-container {
    padding-top: 10px !important;
}

.bit-nav-bar {
    display: none !important;
}

@media screen and (max-width: 1125px) {
    .bit-date {
        padding-bottom: 0 !important;
    }
}

.bit-upcoming-events-show-all-button {
    font-family: 'Poppins' !important;
    font-weight: 700 !important;
    max-width: 300px !important;
    display: block !important;
    margin: 5px auto !important;
    background: #00111a;
    font-size: 16px !important;
}

.bit-upcoming-events-show-all-button:hover {
    background: #00111a !important;
    color: #00111a !important;
}


@media screen and (max-width: 800px) {
    .bit-widget {
        padding-top: 10px;
    }

    .bit-details {
        padding-top: 20px !important;
        padding-bottom: 10px !important;
    }
}


@media screen and (max-width: 600px) {
    .bit-date {
        padding-top: 10px !important;
    }

    .bit-widget .bit-event {
        padding-top: 10px !important;
    }

}

.bit-date {
    padding-top: 5px;
}

.bit-rsvp-container a {
    margin-left: auto;
    margin-bottom: 5px;
}




/*--- CONTACT ---*/

.contact-box h3 {
    margin-bottom: -20px;
    padding-bottom: 0px;
}

.contact-box a {
    color: #00111a;
    font-style: italic;
}

.contact-box a:hover {
    color: #00111a;
}

.contact-box {
    margin-bottom: 50px;
}







/*--- MOBILE STYLES ---*/

@media screen and (max-width: 980px) {
    #header {
        width: 100%;
        height: 60px;
        position: sticky;
        top: 0;
        left: 0;
        
        z-index: 999;
    }

    #header img {
        width: 200px;
        height: auto;
        z-index:99999;
    }

    #header .footer-inner {
        display: none;
    }

    .homepage #footer {
        display: block;
    }

    .homepage #footer,
    .homepage #footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .homepage #footer .footer-inner{
        position: fixed;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        background: #00111a;
    }

    .subpage #footer .footer-inner {
        position: relative;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        background: #00111a;
        color: #dee7ec;
    }

    .subpage .wrapper-inner {
        
        min-height: 95%;
        
        width: 100%;
    }


    .page-content {
        width: 100%;
        padding: 5%;
    }

    .page-bg {
        position: fixed;
        top: 0;
        right: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background: url(../../../assets/img/subpage-mob.jpg) center center;
        background-size: cover;
    }

    .homepage #header {
        background: #00111a;
    }

    .homepage .sub-logo {
        display: block;
    }

    

    .homepage .footer-inner {
        color: #dee7ec;
    }

    .homepage .footer-inner a {
        color: #dee7ec;
    }


}





/*--- CLIENTS ---*/

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.client-grid div,
.artist-grid div {
    padding-bottom: 20px;
    padding: 10px;
}

.client-grid img,
.artist-grid img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.artist-grid img {
    margin: 0 auto 10px;
}


@media screen and (max-width: 1200px) {
    .client-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    .artist-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}


@media screen and (max-width: 800px) {
    .client-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .artist-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
}



/*--- PRESS ---*/

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: top;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.press-item {
    display: block;
    margin-bottom: 30px;
    padding: 50px;
    width: 100%;
    text-align: center;
    max-width: 500px;
}

.press-item img {
    width: auto;
    height: 50px;
    max-width: 100%;
    margin: 0 auto 15px;
    display: block;
}

@media screen and (max-width: 980px) {
    .press-grid {
        grid-template-columns: 100%;
        max-width: 500px;
    }

    .press-item {
        width: 100%;
        padding: 20px;
        margin-bottom: 40px;
    }
}




/*--- RESPONSIVE MENU ---*/

#responsive-menu-pro-container { z-index: 55; }

#responsive-menu-pro-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
text-transform: uppercase;
}

#responsive-menu-pro-wrapper a:hover { font-family: 'Comforter Brush'; }


@media screen and (max-width: 980px) {
#responsive-menu-pro-button { z-index: 99999999999 !important; }
#header, #footer { z-index: 9999999 !important; }
}





/***********
 * EFFECTS *
 ***********/

 /* ----------------------------------------------
 * Generated by Animista on 2022-8-22 21:27:40
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

.effect-fade-in{
    transition:opacity 0.5s;
    &:not([animPlaying]){
        opacity:0;
    }

    &[animPlaying]{
        opacity:1;
    }
}

.effect-scale-up{
    
    animation-name:scale-up-center;
    animation-delay:0s;
    animation-duration:0.4s;
    animation-fill-mode:both;
    animation-timing-function: cubic-bezier(0.390, 0.575, 0.565, 1.000);

    &:not([animPlaying]){
        animation-play-state:paused;
    }

    &[animPlaying]{
        animation-play-state:running;
    }
}



/*--- MUSIC ---*/

.playlist { margin: 0 auto; display: block; padding-bottom: 50px; max-width: 800px; width: 96%; }
.playlist h2 { color: #00111a; background: none; margin-bottom: 10px; padding-bottom: 0; }