@font-face {
    font-family: "Dancemakers";
    src: url('../fonts/dancemakers/Dancemakers-Display.otf');
    src: url('../fonts/dancemakers/Dancemakers-Display.woff2') format('woff2'),
    url('../fonts/dancemakers/Dancemakers-Display.woff') format('woff');
}

:root {
    --dm_max_width: 1600px;
    --dm_main_padding: 25px;
    --dm_black: #000;
    --dm_white: #fff;
    --dm_orange: #FF6D2C;
    --dm_pink: #FF00B1;
    --dm_gold: #B6AB7F;
    --dm_green: #59AE70;
    --dm_lavender: #8794C6;
    --dm_yellow: #F1B541;
    --dm_transition: .5s;
    --dm_nav_height: 68px;
}

@media all and (max-width: 992px) {
    :root {
        --dm_nav_height: 88px;
    }
}

.section-content .has-medium-font-size {
    line-height: 1.2;
}

body.no-scroll {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    max-width: var(--dm_max_width);
    padding: 100px var(--dm_main_padding);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.wrapper-z2 {
    z-index: 2;
}

.wrapper.wrapper-header {
    padding-top: 200px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    min-height: 68px;
    transition: .5s;
}

nav.nav-event {
    background-color: #fff;
}

nav.sticky-nav,
nav.nav-clear.sticky-nav{
    top: -68px;
    position: fixed;
}

nav.sticky-nav {
    background-color: #fff;
    box-shadow: 1px 1px rgba(0,0,0,.1);
}

nav.nav-bottom.nav-bottom-active {
    bottom: 30vh;
    top: unset !important;
    position: absolute !important;
    background-color: transparent;
    box-shadow: none;
}

nav.nav-bottom {
    background-color: #fff;
}

.nav-wrapper {
    max-width: var(--dm_max_width);
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-menu > li {
    padding: 10px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-menu > li > a,
.nav-menu > li > span{
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 11;
    transition: var(--dm_transition);
    position: relative;
}


.nav-menu.nav-menu-secondary > li > a,
.nav-menu.nav-menu-secondary > li > span{
    position: relative;
}

.nav-menu > li > a:after,
.nav-menu > li > span:after{
    content: '';
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #000;
    transition: var(--dm_transition);
    width: 0;
}

.sub-menu-trigger {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 6px;
    z-index: 11;
}

.sub-menu-trigger:before,
.sub-menu-trigger:after {
    width: 100%;
    height: 2px;
    content: '';
    background-color: #000;
    position: absolute;
    transition: var(--dm_transition);
}

.sub-menu-trigger:after {
    transform: rotate(90deg);
}



nav .sub-menu {
    position: absolute;
    top: -14px;
    left: -15px;
    list-style: none;
    padding: 60px 0 20px;
    /*width: 100%;*/
    min-width: 220px;
    display: flex;
    flex-direction: column;
    background-color: var(--dm_black);
    z-index: 10;
    transition: var(--dm_transition);
    transform: scale(1,0);
    transform-origin: top center;
    opacity: 1;

}

nav.nav-bottom-sm .sub-menu {
    top: unset;
    bottom: -14px;
    transform-origin: bottom center;
    padding: 20px 0 60px;
}

.sub-menu > li a,
.sub-menu > li span{
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    padding: 5px 40px;
    width: 100%;
    display: block;
    font-size: 1.5em;
    opacity: 0;
    transition: var(--dm_transition);
    white-space: nowrap;
}


.mobile-nav-logo {
    display: none;
    position: absolute;
    left: 30px;
    top: 32px;
}


.mobile-menu-trigger {
    position: absolute;
    right: 30px;
    top: 20px;
    font-family: 'Dancemakers', sans-serif;
    color: var(--dm_black);
    border: 1px solid var(--dm_black);
    padding: 15px 20px 7px;
    border-radius: 40px;

    display: none;
}
.main-menu-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu > li > a br {
    display: none;
}

.nav-menu > li.sub-menu-active .sub-menu {
    display: flex;
    opacity: 1;
    transform: scale(1, 1);
    z-index: 12;
}

.nav-menu > li.sub-menu-active .sub-menu > li a,
.nav-menu > li.sub-menu-active .sub-menu > li span {
    opacity: 1;
}

.btn-skip-content {
    background: var(--dm_lavender);
    left: 50%;
    padding: 8px 20px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 10000;
    color: var(--dm_black);
    text-decoration: none;
    opacity: 0;
}

.btn-skip-content:focus {
    transform: translateY(0%);
    opacity: 1;
}

.btn-skip-content:hover {
    text-decoration: none;
}

.nav-menu-main > li > a br,
.nav-menu-main > li > span br{
    display: none;
}

@media(hover: hover) {

    .nav-menu > li:not(.menu-item-has-children):hover > a:after,
    .nav-menu > li:not(.menu-item-has-children):hover > span:after {
        width: 100%;
    }

    .nav-menu > li.menu-item-has-children:hover > a,
    .nav-menu > li.menu-item-has-children:hover > span{
        color: var(--dm_gold);
        z-index: 13;
    }

    /*    .nav-menu.nav-menu-secondary:hover > li > a:after,
        .nav-menu.nav-menu-secondary:hover > li > span:after{
            background-color: var(--dm_gold);
        }*/

    .nav-menu > li:hover .sub-menu-trigger {
        z-index: 13;
    }

    .nav-menu > li:hover .sub-menu-trigger:before,
    .nav-menu > li:hover .sub-menu-trigger:after {
        background-color: var(--dm_gold);

    }

    .nav-menu > li:hover .sub-menu-trigger:after {
        transform: rotate(0);
    }

    .nav-menu > li:hover .sub-menu > li a,
    .nav-menu > li:hover .sub-menu > li span {
        opacity: 1;
    }

    .nav-menu > li:hover .sub-menu {
        display: flex;
        opacity: 1;
        transform: scale(1, 1);
        z-index: 12;
    }

    .sub-menu > li a:hover {
        color: var(--dm_gold);
    }
}


@media all and (max-width: 992px) {

    .nav-menu-main > li > a br,
    .nav-menu-main > li > span br{
        display: block;
    }


    .mobile-nav-logo {
        display: block;
    }

    nav {
        min-height: 88px;
    }

    nav.nav-bottom.nav-bottom-active {
        top: 0 !important;
        position: fixed !important;
    }

    nav .sub-menu,
    nav.nav-bottom-sm .sub-menu{
        top: 100% !important;
        left: 0 !important;
        transform-origin: top center !important;
        transform: scale(1,0) !important;
        display: flex;
        padding: 0 0 20px;
        transition: .2s;
        position: relative;
        max-height: 0;
        width: 100%;
    }

    .nav-menu > li.sub-menu-active .sub-menu {
        transform: scale(1,1) !important;
        max-height: 100%;
    }

    nav.nav-bottom-sm .sub-menu {
        bottom: unset;
    }

    .nav-menu > li {
        flex-wrap: wrap;
    }

    .nav-menu > li > a br {
        display: block;
    }

    .main-menu-wrapper {
        display: none;

    }

    .nav-logo {
        display: none;
    }

    .nav-open .nav-wrapper {
        padding: 0;
    }

    .nav-open .main-menu-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        top: 0;
        min-height: 100vh;
        background-color: var(--dm_black);
        padding: 100px 0 0;
        justify-content: flex-start;

        background-image: url('../images/mobile-bg.svg');
        background-size: cover;
        background-position: bottom center;
        background-color: transparent;
        background-repeat: no-repeat;
    }

    nav.nav-open {
        background-color: transparent;
        transition: 0s;
    }

    .nav-open .mobile-menu-trigger {
        color: #fff;
        border-color: #fff;
    }

    .mobile-menu-trigger {
        display: block;
    }

    .nav-menu-main {
        margin-bottom: 30px;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
        align-items: flex-end;
    }

    .nav-menu > li > a,
    .nav-menu > li > span {
        color: #fff;
        max-width: calc(100% - 30px);
    }

    .nav-menu-main > li > a,
    .nav-menu-main > li > span{
        font-size: 1.5em;
        font-family: 'Dancemakers', sans-serif;
        color: #fff;
        text-transform: unset;
    }

    .nav-menu-secondary > li > a {
        font-size: 1.2em;
        color: #fff;
    }

    .sub-menu-trigger {
        width: 15px;
        height: 15px;
        margin-bottom: 15px;
        margin-left: 10px;
    }

    .sub-menu-trigger:before,
    .sub-menu-trigger:after {
        height: 4px;
        background-color: #fff;
    }

    .sub-menu-active {
        flex-wrap: wrap;
    }

    .sub-menu-active .sub-menu {
        position: relative;
        display: flex;
        background-color: transparent;
        width: 100%;
    }

    .sub-menu-active .sub-menu > li a,
    .nav-menu-main > li.sub-menu-active > a,
    .nav-menu-main > li.sub-menu-active > span{
        color: #B6AB7F;
    }

    .sub-menu > li a, .sub-menu > li span {
        padding: 5px 0;
        text-transform: uppercase;
        font-size: 1em;
    }

    .sub-menu-active .sub-menu-trigger:before,
    .sub-menu-active .sub-menu-trigger:after {
        background-color: #B6AB7F;
    }

    .sub-menu-active .sub-menu-trigger:after {
        transform: rotate(0deg);
    }

}

.homepage-image {
    width: calc(100% - 50px);
    top: 50px;
    left: var(--dm_main_padding);
    position: absolute;
}

.homepage-image-mobile {
    display: none;
}

.dm-home-banner {
    width: 100%;
    background-color: #B6AB7F;
    z-index: 2;
    position: relative;
}

.dm-home-banner:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 120px;
    transform: rotate(180deg);
    bottom: -120px;
    background-size: cover;
    background-position: top center;
background-image: url('../images/bg-wave-gold.svg');
    display: none;
}

.dm-home-banner.bg-black:after {background-image: url('../images/bg-wave-black.svg');}
.dm-home-banner.bg-lavender:after {background-image: url('../images/bg-wave-lavender.svg');}
.dm-home-banner.bg-gold:after {background-image: url('../images/bg-wave-gold.svg');}
.dm-home-banner.bg-orange:after {background-image: url('../images/bg-wave-orange.svg');}
.dm-home-banner.bg-green:after {background-image: url('../images/bg-wave-green.svg');}


.information-item .bg-pink:before {
    background-image: url('../images/bg-wave-pink.svg');

}

.dm-home-banner.bg-yellow:after {
    background-image: url('../images/bg-wave-yellow.svg');
}

.information-item .bg-white:before {
    background-image: url('../images/bg-wave-white.svg');
}

.dm-home-banner-lavender {background-color: var(--dm_lavender)}
.dm-home-banner-pink {background-color: var(--dm_pink)}
.dm-home-banner-orange {background-color: var(--dm_orange)}
.dm-home-banner-green {background-color: var(--dm_green)}

.dm-home-banner .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 70vh;
    position: relative;
    padding-top: 180px;
    padding-bottom: 50px;
}

.dm-home-banner-right {
    width: 50%;
}

.dm-home-banner-right {
    display: flex;
    align-items: flex-start;justify-content: flex-start;
    flex-direction: column;
}

.dm-home-banner-right p {
    font-size: 2em;
    margin-bottom: 50px;
    font-weight: 300;
}

.dm-btn {
    padding: 16px 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    border: 1px solid var(--dm_black);
    cursor: pointer;
    transition: .2s;
    min-width: 100px;
    color: var(--dm_black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.dm-btn:hover {
    background-color: var(--dm_black);
    color: #fff;
    text-decoration: none;
}

.dm-btn-h-orange:hover {
    background-color: var(--dm_black);
    color: var(--dm_orange)
}

.dm-btn-h-gold:hover {
    background-color: var(--dm_black);
    color: var(--dm_gold)
}

.bg-lavender .dm-btn:hover { color: var(--dm_lavender); }
.bg-orange .dm-btn:hover { color: var(--dm_orange); }
.bg-pink .dm-btn:hover { color: var(--dm_pink); }
.bg-gold .dm-btn:hover { color: var(--dm_gold); }
.bg-green .dm-btn:hover { color: var(--dm_green); }
.bg-yellow .dm-btn:hover { color: var(--dm_yellow); }

.dm-home-banner-lavender .dm-btn:hover { color: var(--dm_lavender); }
.dm-home-banner-orange .dm-btn:hover { color: var(--dm_orange); }
.dm-home-banner-pink .dm-btn:hover { color: var(--dm_pink); }
.dm-home-banner .dm-btn:hover { color: var(--dm_gold); }
.dm-home-banner-green .dm-btn:hover { color: var(--dm_green); }
.dm-home-banner-yellow .dm-btn:hover { color: var(--dm_yellow); }


.bg-black .dm-btn {
    border-color: #fff;
    color: #fff;
}

.bg-black .dm-btn:hover { color: var(--dm_black); background-color: #fff; }
.bg-white .dm-btn:hover { color: #fff; }

@media all and (max-width: 992px) {

    .dm-home-banner {
        padding-top: 50px;
    }

    .dm-home-banner:after {
        display: block;
    }

    .dm-home-banner-right p {
        font-size: 1.5em;
    }

    .dm-home-banner-right {
        width: 80%;
        margin: 0 auto;
    }

    .homepage-image {
      display: none;
    }

    .homepage-image-mobile {
        display: block;
        margin-bottom: 30px;
        width: 100%;
    }

    .dm-home-banner .wrapper {
        justify-content: flex-start;
        height: unset;
        padding-bottom: 0px;
        padding-top: 10px;
    }

    .dm-btn-hide-mobile {
        display: none !important;
    }
}

footer {
    background-color: var(--dm_orange);
}

footer a {
    color: var(--dm_black);
}

footer p > a {
    text-decoration: none;
    font-weight: 800;
}

.footer-menu > li > a:after,
.footer-menu > li > span:after,
footer p > a:after{
    content: '';
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #000;
    transition: var(--dm_transition);
    width: 0;
}

footer p > a {
    position: relative;
}

footer a:hover {
    color: var(--dm_black);
}

.footer-upper,
.footer-lower{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-upper {
    margin-bottom: 60px;
}

.footer-upper > div,
.footer-lower > div{
    width: 50%;
    padding: 0 25px;
}

.footer-upper > div:first-child {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-upper > div:first-child > div {
    width: 60%;
}

.footer-menu {
    width: 40%;
}


.footer-lower p {
    font-size: .9em;
    max-width: 600px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    color: var(--dm_black);
    font-weight: 800;
    position: relative;
}

footer .social-media-container {
    margin-top: 30px;
}

.social-media-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-media-container a{
    background-color:  var(--dm_orange);
    color: var(--dm_black);
    padding: 2px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: .8em;
    text-decoration: none;
    border: 1px solid var(--dm_black);
    transition: var(--dm_transition);
}

.social-media-container a:hover {
    background-color:var(--dm_black);
    color:  var(--dm_orange);
}

@media(hover: hover) {

    .footer-menu > li:hover > a:after,
    .footer-menu > li:hover > span:after,
    footer p > a:hover:after{
        width: 100%;
    }

}

@media all and (max-width: 992px) {

    h1, h2 {
        font-size: 2em;
    }

    .wrapper {
        padding: 50px var(--dm_main_padding);
    }

    .footer-upper > div,
    .footer-lower > div,
    .footer-menu
    {
        width: 100%;
        margin-bottom: 40px;
        padding: 0;
    }

    .footer-lower > div:last-child {
        margin-bottom: 0;
    }

    .footer-lower > div:last-child p {
        margin-bottom: 0;
    }

    .footer-upper > div:first-child > div {
        width: 100%;
        padding: 0;
    }

    .footer-upper {
        flex-direction: column-reverse;
        margin-bottom: 0;
    }

    .footer-menu a {
        line-height: 2;
    }
}

.dm-cta-block-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.dm-cta-block-container .dm-cta-block{
    flex-grow: 1;
}

.dm-cta-block-container .dm-cta-block .wrapper {
    flex-direction: column;
}

.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block .wrapper {
    flex-direction: row;
}

.dm-cta-block-container .dm-cta-block .dm-cta-block-content {
    width: 100%;
    max-width: 750px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.dm-cta-block-container .dm-cta-block .dm-cta-block-content h2,
.dm-cta-block-container .dm-cta-block .dm-cta-block-content > div {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
}

.dm-cta-block-container .dm-cta-block .wrapper > .cta-banner-arrow-container {
    display: none;
}

.dm-cta-block .wrapper  .dm-cta-block-content .cta-banner-arrow-container {
    display: none;
}

.dm-cta-block-container .dm-cta-block .wrapper  .dm-cta-block-content .cta-banner-arrow-container {
    display: flex;
}

.dm-cta-block-container .dm-cta-block:nth-child(odd) .wrapper {
    align-items: flex-end;
}

.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block:nth-child(odd) .wrapper {
    align-items: flex-start;
}

.dm-cta-block-container {

}

.dm-cta-block {
    background-color: var(--dm_gold);
    position: relative;
}

.dm-cta-block-green { background-color: var(--dm_green); }
.dm-cta-block-lavender { background-color: var(--dm_lavender); }
.dm-cta-block-pink { background-color: var(--dm_pink); }
.dm-cta-block-orange { background-color: var(--dm_orange); }

.dm-cta-block-content,
.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block .dm-cta-block-content{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: unset;
}

.dm-cta-block-content h2,
.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content h2{
    width: 460px;
    transition: .1s;
    white-space: pre-wrap;
    margin-top: 10px;
}

.dm-cta-block-content > div,
.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content > div{
    padding: 0 30px;
    width: calc(100% - 460px);
}

.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block .wrapper .dm-cta-block-content .cta-banner-arrow-container {
    margin-top: 0;
}

.dm-cta-block-content > div p {
    max-width: 600px;
    font-size: 1.2em;
    font-weight: 300;
}

.dm-cta-block-content > div a {
    margin-top: 40px;
}

.dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content > div a {
    margin-top: 0;
}

.dm-cta-block img {
    width: 160px;
    transition: var(--dm_transition);
}

.dm-cta-block svg {
    width: 160px !important;
}

img.cta-banner-arrow-active {
    position: absolute;
}

img.cta-banner-arrow-active {
    opacity: 0;
    transition: .2s;
}

a:hover img.cta-banner-arrow-active {
    opacity: 1;
    transition: .2s;
}

a:hover img.cta-banner-arrow {
    opacity: 0;
    transition: .2s;
}

@media all and (max-width: 1400px) {
    .dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content > div {
        flex-direction: column;
    }

    .dm-cta-block-container.dm-cta-block-container-single .dm-cta-block .wrapper .dm-cta-block-content a,
    .dm-cta-block-container.dm-cta-block-container-single .dm-cta-block .wrapper .dm-cta-block-content .cta-banner-arrow-container{
        margin-top: 40px;
    }
}

@media all and (max-width: 992px) {
    .dm-cta-block-content {
        width: 100%;
        flex-direction: column !important;
    }

    .dm-cta-block-content > div {
        width: 100% !important;
        padding: 20px 0 !important;
    }

    .dm-cta-block img,
    .dm-cta-block svg,
    .information-item svg{
        width: 80px !important;
    }

    .dm-cta-block-arrow {
        width: 100px;
    }

    .dm-cta-block-container {
        flex-wrap: wrap;
    }

    .dm-cta-block-container .dm-cta-block {
        width: 100%;
    }

    .dm-cta-block-content h2,
    .dm-cta-block-container.dm-cta-block-container-single .dm-cta-block-content h2 {
        width: 100%;
    }

    .information-item>div>div {
        min-height: 300px;
    }

}

.section-header {
    padding-top: 150px;
    padding-bottom: 0;
    z-index: 0;
    position: relative;
}

.section-header + div {
    padding-top: 0;
}

.section-header-under {
    margin-bottom: -128px;
}

.section-header-over {
    margin-bottom: -128px;
    z-index: 1;
}

.section-header-over + .stk-block-columns {
    z-index: 0;
    padding-top: 180px !important;
}

.section-header .stk-block-columns {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.section-header-tp0 {padding-top: 0; }
.section-header-tps {padding-top: 30px; }
.section-header-tpm {padding-top: 75px; }

.section-header-tbs { padding-bottom: 30px}
.section-header-tbm { padding-bottom: 75px}
.section-header-tbl { padding-bottom: 150px}

.section-header-wrapper {
    width: 65%;
    background-color: var(--dm_gold);
    padding: 100px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.section-header-inner {
    max-width: 1010px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media all and (min-width: 992px) {
    .section-header-wrapper { width: 50%;  }
    .shw-50 .section-header-inner { max-width: 725px; }
    .section-header-wrapper.shw-55 { width: 55%; }
    .shw-55 .section-header-inner { max-width: 810px; }
    .section-header-wrapper.shw-60 { width: 60%; }
    .shw-60 .section-header-inner { max-width: 900px; }
    .section-header-wrapper.shw-65 { width: 65%; }
    .shw-65 .section-header-inner { max-width: 985px; }
    .section-header-wrapper.shw-70 { width: 70%; }
    .shw-70 .section-header-inner { max-width: 1072px }
    .section-header-wrapper.shw-75 { width: 75%; }
    .shw-75 .section-header-inner { max-width: 1160px }
    .section-header-wrapper.shw-80 { width: 80%; }
    .shw-80 .section-header-inner { max-width: 1245px; }
    .section-header-wrapper.shw-85 { width: 85%; }
    .shw-85 .section-header-inner { max-width: 1330px; }
}

@media all and (min-width: 992px) and (max-width: 1500px) {
    .section-header-wrapper { min-width: 800px; }

}

.section-header-under .section-header-wrapper {
    padding-bottom: 200px;
}

.section-header.section-header-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.section-header-right .section-header-wrapper {
    justify-content: flex-start;
}

/*.section-header-wrapper > div {
    max-width: 505px;
}*/

.sh-header {
    flex-grow: 1;
    min-width: 500px;
    padding-right: 0;
}

.sh-content {
    flex-grow: 1;
    padding-left: 50px;
}

.sh-content p {
    margin-bottom: 50px;
    font-size: 1.3em;
    font-weight: 300;
}

.sh-content-no-text {
    display: flex;
    justify-content: flex-end;
}

@media all and (max-width: 992px) {
    .section-header.section-header-over,
    .section-header.section-header-under{
        margin-bottom: -60px;
    }

    .section-header-wrapper {
        flex-direction: column;
        width: 85%;
        padding: 50px var(--dm_main_padding);
    }

    .section-header-wrapper h2 {
        margin-bottom: 30px;
    }

    .sh-content {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .section-header-wrapper > div {
        flex-direction: column;
    }

    .sh-content-no-text {
        justify-content: flex-start;
    }

    .section-header-under .section-header-wrapper {
        padding-bottom: 100px;
    }

    .sh-header {
        min-width: unset;
        padding-right: 0;
    }

    .sh-header h2 {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -ms-word-break: break-word;
        word-break: break-word;
        -ms-hyphens: manual;
        -moz-hyphens: manual;
        -webkit-hyphens: manual;
        hyphens: manual;
    }

    .sh-content p {
        font-size: 1.1em;
    }

}

.artist-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 5%;
    flex-wrap: wrap;
}


.artist-item .artist-item-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: .5s;
    padding: 25px;
    z-index: 1;
}

.artist-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center;
}

.artist-item {
    aspect-ratio: 516 / 718;
    width: 25%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.artist-item:after {
    content: '';
    mix-blend-mode: Exclusion;
    background-color: #8794C6;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: .5s;
}



.artist-item .artist-item-content p {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--dm_black);
    line-height: 1.2;
}

.artist-item .artist-item-content img{
    width: 50px;
    margin-top: 10px;
}

.artist-item .artist-item-content .arrow-mobile {
    display: none;
}

.artist-item .artist-item-content > div {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (hover: hover) {
    .artist-item:hover .artist-item-content,
    .artist-item:hover:after{
        opacity: 1;
    }
    .artist-item:hover .artist-item-bg {
        -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
        -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
        -webkit-filter: grayscale(100%);
        filter: gray;
        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    }
}

@media all and (max-width: 992px) {

    .artist-item .artist-item-content {
        opacity: 1;
        display: flex;
        align-items: flex-end;
    }

    .artist-item .artist-item-content p {
        color: #fff;
        margin-bottom: 0;
    }

    .artist-item .artist-item-content > div {
        align-items: flex-end;
    }

    .artist-item {
        width: 100%;
    }

    .artist-item .artist-item-content .arrow-dt {
        display: none;
    }

    .artist-item .artist-item-content .arrow-mobile {
        display: block;
        margin-bottom: .3rem;
    }

    .artist-item-bg:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        background-color: transparent;
        background-image: linear-gradient(transparent, rgba(0,0,0,.1));
    }

}

.event-container,
.profile-container{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    z-index: 1;
}

.event-container {
    min-height: 300px;
}

.event-item {
    width: 33.3%;
    padding: 10px;
    transition: var(--dm_transition);
    text-decoration: none;
}

.event-item:hover {
    text-decoration: none;
}

.profile-container .event-item {
    width: 25%;
}

.event-image {
    aspect-ratio: 1;
    background-size: 100%;
    background-position: center;
    transition: var(--dm_transition);
}

.event-image.event-image-h {
    background-size: auto 100%;
}

.profile-container .event-image {
    aspect-ratio: 4 / 3;
}

.event-content {
    padding: 15px;
    transition: var(--dm_transition);
    background-color: #fff;
}

.event-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    min-height: 80px;
}

.event-item p {
    color: #000;
    transition: var(--dm_transition);
}

.event-header p {
    font-weight: 700;
    max-width: 80%;
    font-size: 1.2em;
}

.event-header img {
    width: 30px;
    position: absolute;
    right: 0;
    transition: var(--dm_transition);
}

.event-header .dm-cta-block-arrow {
    opacity: 1;
}

.event-header .dm-cta-block-arrow-active {
    opacity: 0;
}


.event-item:hover {
    transform: translateY(-25px);
}

.event-item:hover .event-image {
    background-size: 120%;
}

.event-item:hover .event-image.event-image-h {
    background-size: auto 120%;
}

.event-item:hover .event-content {
    padding: 15px;
    background-color: #000;
}

.event-item:hover p {
    color: #fff;
}

.event-item:hover .event-header .dm-cta-block-arrow {
    opacity: 0;
}

.event-item:hover .event-header .dm-cta-block-arrow-active {
    opacity: 1;
}

.mobile-event-cta-container {
    display: none;
}

@media all and (max-width: 992px) {
    .event-item {
        width: 100%;
        padding: 10px 0;
    }
    .profile-container .event-item {
        width: 100%;
    }

    .event-item .event-content {
        padding: 15px;
        background-color: #000;
    }

    .event-item p {
        color: #fff;
    }

    .event-item .event-header .dm-cta-block-arrow {
        opacity: 0;
    }

    .event-item .event-header .dm-cta-block-arrow-active {
        opacity: 1;
    }

    .mobile-event-cta-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
    }
}

.event-filters-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.event-filters-container > div {
    display: flex;
    align-items: flex-start; justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ef-input-wrapper {
    border: 1px solid var(--dm_black);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 60;
}

.ef-wrapper input{
    padding: 5px 26px;
    min-width: 300px;
    min-height: 60px;
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
    z-index: 60;
}

.ef-input-wrapper input::placeholder {
    color: #fff;
}

.ef-wrapper {
    z-index: 2;
    background-color: var(--dm_lavender);
    position: relative;

}


.ef-wrapper .wrapper {
    padding-top: 0;
}

.ef-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.events-main-wrapper {
    background: -webkit-linear-gradient(top, var(--dm_lavender) 150px, #fff 150px)
}

.ef-input-wrapper button {
    position: absolute;
    right: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.ef-input-wrapper button img {
    height: 25px;
}

.ef-search-wrapper {
    /*position: relative;*/
    min-width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end !important;
}

.ef-search-wrapper .ef-input-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    background-color: transparent;
    z-index: 81;
}

/*
.ef-search-wrapper .ef-input-wrapper input {
    color: #fff;
}

.ef-search-wrapper .ef-input-wrapper input::placeholder {
    color: #fff;
}
*/

.ef-search-wrapper.ef-search-open .ef-input-wrapper {
    display: flex;
    width: 100%;
}

.ef-search-wrapper.ef-search-open .ef-input-wrapper {
    background-color: #000;
    border-radius: 0;
    border: none;
}

.event-filters-wrapper {
    width: calc(100% - 300px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.ef-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border: 1px solid var(--dm_black);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 0;
    z-index: 81;
}

.ef-search-open .ef-search-trigger-open {
    display: none;
}

.ef-search-trigger-close {
    transform: rotate(45deg);
}

.ef-search-trigger-close:before,
.ef-search-trigger-close:after{
    content: '';
    width: 50%;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

.ef-search-trigger-close:after {
    transform: rotate(90deg);
}

.ef-search-trigger img {
    height: 25px;
}

.as-wrapper {
    background-color: #000;
    border: none;
}

.as-wrapper > div {
    padding: 10px 26px;
}

.as-wrapper > div:last-child {
    padding-bottom: 36px;
}

.as-wrapper > div a {
    color: #fff;
    text-decoration: none;
}

.as-wrapper > div a:hover {
    text-decoration: none;
    color: var(--dm_gold);
}

.autocomplete-suggestions {
    border: none;
    box-shadow: none;
    background-color: transparent;
}

@media all and (max-width: 992px) {
    .ef-wrapper input,
    .ef-wrapper input::placeholder{
        color: var(--dm_black);
    }

    .ef-search-wrapper .ef-input-wrapper {
        z-index: unset;
    }

    .event-filters-wrapper {
        z-index: 2;
    }

    .ef-search-wrapper {
        z-index: 1;
    }
}

/* MONTH PICKER */

.graph-input-item {
    position: relative;
    width: 300px;
}

#event-month-picker {
    margin-right: 10px;
    margin-bottom: 10px;
}

.dm-month-picker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
    background-color: var(--dm_black);
    color: #fff;
    padding:  60px 5px 0;
    font-weight: 500;
    display: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    border-radius: 0;
}

.dm-mp-open .dm-month-picker {
    display: block;
}

.start-date-display {
    position: relative;
    background-color: transparent;
    height: 100%;
    padding: 5px 20px;
    min-width: 250px;
    border: 1px solid var(--dm_black);
    border-radius: 40px;
    min-height: 60px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    width: 300px;
    z-index: 2;
    cursor: pointer;
}

.dm-mp-open .start-date-display {
    color: #fff;
    z-index: 10;
}

.start-date-display:after {
    position: absolute;
    content: '';
    width: 15px;
    height:19px;
    background-image: url(../images/arrow-down-straight.svg);
    background-size: cover;
    display: inline-block;
    padding: 6px;
    right: 20px;
    z-index: 100;
    transform-origin: center;
    transition: .2s;
}

.dm-mp-open .start-date-display:after{
/*    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);*/
    background-image: url(../images/arrow-down-straight-white.svg);
}

.dm-month-selected .start-date-display:after {
    display: none;
}

.dm-month-picker-months {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 300px;
}

.dm-month-picker-year {
    font-weight: 700;
}

.dm-month-picker-months > div {
    width: 16.67%;
    font-size: .8em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 2px 0;
    position: relative;
    cursor: pointer;
    color: var(--dm_gold);
}

.dm-month-picker-months .dm-mpm-disabled {
    opacity: .5;
    cursor: default;
}

.dm-month-picker-months > div span {
    z-index: 1 !important;
}

.dm-month-picker-months > div.month-selected {
    background-color: rgba(237,237,70,.4);
}

.dm-month-picker-months > div.dm-mpm-right,
.dm-month-picker-months > div.month-end{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.dm-month-picker-months > div.dm-mpm-left,
.dm-month-picker-months > div.month-start{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.dm-month-picker-months > div.month-start:before,
.dm-month-picker-months > div.month-end:before{
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 50%;
    background-color: var(--dm_lavender);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.dm-month-picker-months > div.month-end {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.dm-month-picker-container-wrapper {
    background-color: transparent;
    padding: 15px 20px;
    max-height: 200px;
    overflow-y: auto;
}

/* width */
.dm-month-picker-container-wrapper::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.dm-month-picker-container-wrapper::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 0 grey;*/
    border-radius: 3px;
    background-color: rgba(255,255,255,.15);
}

/* Handle */
.dm-month-picker-container-wrapper::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 3px;
}

/* Handle on hover */
.dm-month-picker-container-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--dm_lavender);
}

.dm-mpm {
    margin-bottom: 15px;
}

.dm-mp-date-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(112,112,112,.3);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.dm-month-picker-input-wrapper {
    padding: 20px 10px;
}

.dm-month-picker-input-wrapper > p {
    font-size: .8em;
}

.dm-mp-date-container > div {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.dm-mp-date-container label {
    margin: 0;
    font-size: .8em;
}

.dm-mp-date-container span {
    font-weight: 700;
    color: var(--dm_lavender);
    min-height: 24px;
}

.dm-mp-close-trigger {
    width: 20px;
    height:20px;
    transform: rotate(45deg);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 17px;
    z-index: 30;
}

.dm-month-selected .dm-mp-close-trigger {
    display: flex;
}

.dm-mp-close-trigger:before,
.dm-mp-close-trigger:after {
    width: 100%;
    height: 3px;
    background-color:var(--dm_black);
    content: '';
    position: absolute;
}

.dm-mp-open .dm-mp-close-trigger:before,
.dm-mp-open .dm-mp-close-trigger:after {
    background-color: #fff;
}

.dm-mp-close-trigger:after {
    transform: rotate(90deg);
}

@media all and (max-width: 992px) {

    .ef-mobile-wrapper {
        display: flex;
        padding-top: 50px;
    }

    .ef-wrapper .wrapper.ef-mobile-wrapper {
        padding-top: 50px;
    }

    .ef-input-wrapper {
        width: 100%;

    }

    .ef-wrapper {
        display: none;
    }

    .ef-wrapper.ef-open {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        padding-top: 0;
        background-color: transparent;
        background-image: url('../images/bg-ef-mobile.png');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .ef-wrapper .graph-input-item {
        width: 100%;
    }

    .ef-wrapper .graph-input-container {
        width: 100%;
        margin-right: 0;
    }

    #event-month-picker {
        margin-right: 0;
    }

    .ef-wrapper .start-date-display {
        width: 100%;
    }

    .event-filters-container > div {
        width: 100%;
        margin-bottom: 0;
    }

    .ef-search-trigger {
        display: none;
    }

    .ef-search-wrapper .ef-input-wrapper {
        position: relative;
        display: flex;
    }

    .start-date-display {
        padding: 5px 36px;
    }
}

.event-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    background-color: #fff;
    min-height: calc(100vh - var(--dm_nav_height));
}

.event-page-header-content {
    background-color: var(--dm_lavender);
    width: calc(50% + 300px);
    min-height: calc(100vh - 12vh - var(--dm_nav_height));
    position: relative;
    z-index: 0;
    /*margin-bottom: 40px;*/
    padding: 13vh 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.event-page-header-content-inner {
    padding-right: 350px;
    width: 100%;
    max-width: 1050px;
}

.event-page-header-image {
    width: 50%;
    min-height: calc(100vh - 12vh - var(--dm_nav_height));
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
    /*margin-top: 40px;*/
}

.event-page-container {
    padding-top: 68px;
}

.ephc-label {
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.ephc-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.ephc-info p {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 20px;
}

.ephc-info p b {
    font-weight: 700;
}

.ephc-info > div {
    width: calc(100% - 135px);
}

.ephc-info-artist {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ephc-info-artist p {
    width: 50%;
    padding-right: 15px;
}

.event-page-header h1 {
    margin-bottom: 60px;
    min-height: 250px;
}

.event-page-header-image .dm-btn {
    background-color: var(--dm_black);
    color: #fff;
}

@media all and (max-width: 1200px) {



   /* .event-page-header-content {
        width: calc(50% + 100px);
    }

    .event-page-header-image {
        width: calc(50% + 100px);
    }*/



/*    .event-page-header-content-inner {
        padding-right: 225px;
    }*/

    .ephc-info-artist {
        flex-direction: column;
    }

    .ephc-info-artist p {
        width: 100%;
    }
}

@media all and (max-width: 992px) {

    .ephc-info {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .ephc-info > div {
        margin-bottom: 50px;
        width: 100%;
    }

    .event-page-header-content {
        width: 85%;
        min-height: unset;
        padding-bottom: 6vh;
    }



    .event-page-header {
        flex-wrap: wrap;
    }

    .event-page-header:before {
        content: '';
        width: 100%;
        aspect-ratio: 7 / 4;
        position: relative;
        background-color: transparent;
    }

    .event-page-header-image {
        width: 85%;
        aspect-ratio: 4 / 3;
        bottom: unset;
        top: 25px;
        min-height: unset;
    }
    .event-page-header-content-inner {
        padding-right: 0;
    }

    .event-page-header h1 {
        min-height: unset;
    }
}

@media all and (max-width: 600px) {
    .event-page-header:before {
        aspect-ratio: 8 / 4;
    }
}


.event-page-content-main {
    width: calc(100% - 400px);
    padding-right: 60px;
}

.event-page-content-main p {
    margin-bottom: 30px;
}

.event-page-content-side {
    width: 400px;
}

.event-page-content-side a {
    color: #000;
}

.event-page-content-side a:hover {
    color: var(--dm_orange);
}

.event-tags {
    margin-top: 50px;
}

.event-tags a {
    font-size: 1.8em;
    margin-right: 10px;
}

@media all and (max-width: 992px) {
    .event-page-content-main,
    .event-page-content-side{
        width: 100%;
        padding-right: 0;
    }

    .event-page-content-main {
        padding-right: 0;
        margin-bottom: 80px;
    }
}

.gallery-item {
    aspect-ratio: 1920 / 1000;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: flex-end;justify-content: flex-start;
    position: relative;
}

.gallery-item:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background-image: linear-gradient(transparent, rgba(0,0,0,.6));
}

.gallery-item-info {
    z-index: 1;
}

.gallery-item-info .gif-content {
    padding: 25px;
    width: 80%;
    max-width: 1000px;
    color: #fff;
    opacity: 0;
    transition: var(--dm_transition);
}

@media all and (max-width: 992px) {
    .gallery-item {
        aspect-ratio: unset;
        width: 100%;
        height: calc(100vh - 88px);
    }

    .gallery-item-info .gif-content {
        width: 60%;
        opacity: 1;
    }

    .gallery-item-info .gif-content p {
        font-size: .8em;
    }
}

.slick-active .gallery-item-info .gif-content {
    opacity: 1;
}

.gallery-item-info .gif-credit {
    font-weight: 700;
    font-size: 14px;
}
.gallery-item-info .gif-content span {
    font-weight: 300;
}

.gallery-slider .slick-list {
    padding-right: 10%;
}

.artist-slider {
    padding-left: 5%;
}

.slick-slide:focus {
    border: 2px solid red !important;
}

.artist-slider .slick-list {
    padding-right: 15%;
}

.gallery-slider .slick-dots > li.slick-active button,
.artist-slider .slick-dots > li.slick-active button{
    background-color: #fff;
}

.gallery-slider .slick-dots,
.artist-slider .slick-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    margin: 0;
    right: 0;
    padding: 0 0 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.gallery-slider  .slick-list,
.artist-slider  .slick-list{
    transition: .5s;
}

.gallery-slider .slick-dots > li,
.artist-slider .slick-dots > li{
    flex: 1;
    height: 10px;
    display:flex;
    background-color: #E3E5ED;
}

.gallery-slider .slick-dots > li button,
.artist-slider .slick-dots > li button{
    content: '';
    width: 100%;
    border: none;
    box-shadow: none;
    height: 10px;
    background-color: #E3E5ED;
    overflow: hidden;
    transition: .5s;
    margin-right: 5px;
    font-size: 0;
}

.gallery-slider .slick-dots > li.slick-active button,
.artist-slider .slick-dots > li.slick-active button{
    background-color: var(--dm_gold);
}

.slick-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 16px;
    z-index: 2;
    font-size: 14px;
    height: 53px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--dm_transition);
}

.slick-arrow.prev-arrow {
    right: 100px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.slick-arrow.next-arrow {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.slick-arrow:hover {
    background-color: #fff;
    color: #000;
}

@media all and (max-width: 992px) {
    .gallery-slider .slick-list{
        padding-right: 0;
    }

    .slick-arrow.prev-arrow {
        right: 85px;
    }

    .slick-arrow.next-arrow {
        right: 25px;
    }

    .artist-slider .slick-arrow {
        display: none !important;
    }
}

.acc {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 2px solid transparent;
    position: relative;
}

.acc-header {
    width: 100%;
    border-top: 6px solid var(--dm_black);
    padding: 20px 25px;
    background-color: var(--dm_black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--dm_transition);
    cursor: pointer;
}

.acc-header.collapsed {
    background-color: transparent;
}

.acc-header p {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    width: calc(100% - 60px);
    transition: var(--dm_transition);
    text-align: left;
}

.acc-header.collapsed p {
    color: var(--dm_black);
}

.acc-trigger {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
    transition: var(--dm_transition);
}

.acc-trigger:before,
.acc-trigger:after {
    content: '';
    width: 100%;
    height: 6px;
    background-color: #fff;
    position: absolute;
    transition: var(--dm_transition);
}

.acc-header.collapsed .acc-trigger:before,
.acc-header.collapsed .acc-trigger:after {
    background-color: var(--dm_black);
}

.acc-header.collapsed .acc-trigger:after {
    transform: rotate(90deg);
}

.acc-body {
    background-color: black;
    color: #fff;
    padding: 20px 200px 40px 25px;
    text-align: left;
}

.acc-body .dm-btn {
    border-color: #fff;
    color: #fff;
    margin-top: 40px;
}

.acc-body a {
    color: inherit;
}

.acc-body .dm-btn:hover {
    background-color: #fff;
    color: var(--dm_black);
}

@media all and (max-width: 992px) {
    .acc-header p {
        font-size: 1.5em;
    }
    .acc-header {
        padding: 20px 15px;
    }

    .acc-trigger {
        margin-right: 0;
        height: 24px;
        width: 24px;
    }

    .acc-trigger:before,
    .acc-trigger:after {
        height: 4px;
    }

    .acc-body {
        padding: 20px 15px;
    }

}

.center-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.dm-logo-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.dm-logo-container > div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.dm-logo-container > div img {
    height: 50px;
}

@media all and (max-width: 992px) {
    .dm-logo-container > div {
        padding: 20px 5px;
    }
}

.dm-sub-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 14;
    margin-top: -20px;
    transition: var(--dm_transition);
}

.sticky-nav-show .dm-sub-nav {
    top: var(--dm_nav_height);
}

.dm-sub-nav ul {
    padding: 0 25px;
    list-style: none;
    max-width: var(--dm_max_width);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0;
    overflow-x: auto
}

.dm-sub-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    min-width: 300px;
    min-height: 100px;
    color: #fff;
    text-decoration: none;
    background-color: var(--dm_black);
    transition: var(--dm_transition);
    text-transform: uppercase;
    font-weight: 700;

}

.dm-sub-nav ul li a:hover {
    background-color: var(--dm_pink);
    color: var(--dm_black);
}

.profile-container {
    align-items: stretch;
}

.profile-container-v2 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.profile-container-v2 .profile-item,
.profile-container-v2 .profile-cta{
    width: 50%;
}

.profile-container-v4 .profile-item,
.profile-container-v4 .profile-cta{
    width: 25%;
}

.profile-item {
    padding: 10px;
}

.pi-image {
    aspect-ratio: 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.pi-content {
    border-bottom: none;
}

.pi-content-header {
    align-items: flex-start;
    border-bottom: 6px solid var(--dm_black);
}

.pi-content-header p {
    font-weight: 250;
    font-size: 1.4em;
    line-height: 1.2;
}

.profile-container-v4 .pi-content-header p {
    font-size: 1em;
}

.pi-content-header p span {
    font-weight: 800;
}

.pi-content-trigger {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 0;

    transition: var(--dm_transition);
}

.profile-container-v2 .pi-content-trigger {
    margin-top: 10px;
}

.pi-content-trigger:before,
.pi-content-trigger:after {
    content: '';
    width: 100%;
    height: 6px;
    background-color: #fff;
    position: absolute;
    transition: var(--dm_transition);
}

.pi-content-sm {
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.pi-content-sm a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 5px;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.artist-page-content .pi-content-sm a {
    border: 1px solid #000;
}

.pi-content-sm img,
.pi-content-sm svg{
    height: 30px;
    width: 30px;
}

.pi-content-sm a:hover {
    background-color: #fff;
}

.pi-content-sm a:hover svg path {
    stroke: #000;
}

.social-media-container a:hover svg path {
    stroke: var(--dm_orange);
}

.artist-page-content .pi-content-sm a:hover {
    background-color: #000;
}

.artist-page-content .pi-content-sm a:hover svg path {
    stroke: #fff;
}

.pi-content .acc-body {
    padding: 20px 25px 40px;
}

.profile-cta {
    padding: 10px;
}

.profile-cta a {
    width: 100%;
    height: 100%;
    background-color: var(--dm_black);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding:40px 25px;
    text-decoration: none;
}

.profile-cta img {
    height: 40px;
}

@media all and (max-width: 992px) {

    .profile-item,
    .profile-cta{
        padding: 0 0 25px;
    }

    .profile-container-v2 .profile-item,
    .profile-container-v2 .profile-cta,
    .profile-container-v4 .profile-item,
    .profile-container-v4 .profile-cta{
        width: 100%;
        min-height: 430px;
    }


}

.dm-page-header {
    padding-top: 80px;
    padding-bottom: 0;
}

.dm-page-header .wrapper {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.dm-page-header .dm-page-header-title {
    padding-right: 30px;
    padding-top: 15px;
    min-width: 40%;
}

.dm-page-header .dm-page-header-title h1 {
    white-space: pre-wrap;
}

.dm-page-header .dm-page-header-content {
    max-width: 60%;
}

@media all and (max-width: 992px) {
    .dm-page-header .dm-page-header-title {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .dm-page-header .dm-page-header-content {
        width: 100%;
        max-width: unset;
    }

    .dm-page-header .wrapper {
        flex-wrap: wrap;
    }
}

.contact-form-container {
    margin: 0 auto;
    max-width: 900px;
}

.dm-input-container input {
    width: 100%;
    padding: 5px 25px;
    border-radius: 30px;
    box-shadow: none;
    border: 1px solid var(--dm_black);
    min-height: 60px;
}

.dm-input-container textarea {
    border-radius: 30px;
    width: 100%;
    padding: 15px 25px;
    border: 1px solid var(--dm_black);
}

.dm-submit-container input {
    margin-left: auto;
    display: block;
    background-color: transparent;
}

.artist-page-container {
    padding-top:var(--dm_nav_height);
    position: relative;
}

.artist-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    background-color: #fff;
    min-height: calc(100vh - var(--dm_nav_height));
}

.artist-page-header-content {
    background-color: var(--dm_lavender);
    width: calc(50% + 300px);
    min-height: calc(60vh - var(--dm_nav_height));
    position: relative;
    z-index: 0;
    /*margin-bottom: 40px;*/
    padding: 13vh 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.artist-page-content-wrapper {
    width: calc(50% + 100px);
}

.artist-page-header-content-inner {
    padding-right: 350px;
    width: 100%;
    max-width: 1050px;
}

.artist-page-content {
    padding: 7vh 25px 50px;
    width: calc(50% + 300px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 50vh;
}

.artist-page-content-inner {
    padding-right: 350px;
    width: 100%;
    max-width: 1050px;
}

.artist-page-header-image {
    width: 50%;
    min-height: calc(95vh - var(--dm_nav_height));
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 1;
    top: calc(var(--dm_nav_height) + 40px);
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
    /*margin-top: 40px;*/
}

.artist-page-container {
    padding-top: 68px;
}

.artist-page-header h1 {
    margin-bottom: 60px;
    min-height: 250px;
}

.artist-page-header-content + .dm-sub-nav {
    margin-top: -50px;
}

@media all and (max-width: 992px) {
    .artist-page-header-image {
        width: 90%;
        top: var(--dm_nav_height);
        padding-top: 25px !important;
        height: 300px;
        min-height: unset;
    }

    .artist-page-header-content {
        margin-top: 290px;
        width: 90%;
        min-height: 300px;

    }

    .artist-page-header-content-inner {
        padding-right: 0;
    }

    .artist-page-content {
        width: 100%;
    }

    .artist-page-content-inner {
        padding-right: 0;
    }
}

.dm-quote-container {
    width: 100%;
    padding: 50px 0;
}

.dm-quote-container.dm-quote-container-right .dm-quote-content-wrapper {
    margin-left: auto;
}

.dm-quote-image-wrapper {
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    padding: 0 25px;
}

.dm-quote-image-wrapper img {
    width: 90%;
}

.dm-quote-image-wrapper {
    z-index: 1;
    position: relative;
}

.dm-quote-content-wrapper {
    width: 45%;
    background-color: var(--dm_gold);
    padding: 100px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: -300px;
    z-index: 2;
    position: relative;
    min-height: 350px;
}

.dm-quote-container.dm-quote-container-right .dm-quote-content-wrapper {
    justify-content: flex-start;
}

.dm-quote-content-wrapper p.dm-qc-quote {
    font-size: 1.7em;
}

.dm-quote-content-wrapper p.dm-qc-quoter {
    line-height: 1.2;
    margin-top: 40px;
    font-size: .9em;
}

.dm-quote-content {
    max-width: 450px;
}

@media all and (max-width: 992px) {

    .dm-quote-image-wrapper {
        padding: 0;
    }
    .dm-quote-image-wrapper img {
        width: 100%;
    }
    .dm-quote-content-wrapper {
        width: 90%;
        margin-top: -20px;
        padding: 50px 25px;
    }
}

.share-container .dm-btn {
    background-color: var(--dm_black);
    color: #fff;
}

.share-container .dm-btn:hover {
    background-color: #fff;
    color: var(--dm_black);
    border-color: #fff;
}

.wpcf7 {
    max-width: 900px;
    margin: 0 auto;
}

.wpcf7 form .wpcf7-response-output {
    border: none !important;
    padding: 0;
    margin: 0;
}

.information-item > div {
    position: relative;
}

.information-item > div:before {
    height: 100px;
    width: 100%;
    left: 0;
    position: absolute;
    background-position: top center;
    background-size: 100% auto;
    content: '';
    top: -100px;
    display: none;
}


.information-item .bg-black:before {background-image: url('../images/bg-wave-black.svg');}
.information-item .bg-lavender:before {background-image: url('../images/bg-wave-lavender.svg');}
.information-item .bg-gold:before {background-image: url('../images/bg-wave-gold.svg');}
.information-item .bg-orange:before {background-image: url('../images/bg-wave-orange.svg');}
.information-item .bg-green:before {background-image: url('../images/bg-wave-green.svg');}

.information-item .bg-pink:before {
    background-image: url('../images/bg-wave-pink.svg');
    top: -160px;
    height: 160px;
}

.information-item .bg-yellow:before {
    background-image: url('../images/bg-wave-yellow.svg');
    top: -120px;
    height: 120px;
}

.information-item .bg-white:before {
    background-image: url('../images/bg-wave-white.svg');
    top: -120px;
    height: 120px;
}


@media all and (max-width: 992px) {
    .information-item > div:before{
        display: block;
    }
}

.animation-banner {
    display: none !important;
}


@media all and (min-width: 992px) {
    .animation-banner-active {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .animation-banner {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        position: absolute !important;
        top: -15px !important;
        left: 0 !important;
        right: 0 !important;
        max-width: unset!important;
        min-height: unset !important;
        z-index: 0 !important;
    }

    .animation-banner.animation-banner-bottom {
        bottom: 0 !important;
        top: unset !important;
    }

    .animation-banner svg,
    .information-item .animation-banner svg{
        width: 400px !important;
    }

    .animation-banner-active {
        position: relative;
        background-color: unset !important;
        /*
        background: linear-gradient(to bottom, transparent   90px, var(--dm_lavender) 90px, var(--dm_lavender)  100%);
        */
    }

    .animation-banner-active {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .section-header-under .section-header-wrapper.animation-banner-active {
        padding-bottom: 200px !important;
    }

    .animation-banner-active > .wrapper {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .bg-lavender.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_lavender) 85px, var(--dm_lavender)  calc(100% - 85px), transparent  calc(100% - 85px), transparent 100%); }
    .bg-orange.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_orange) 85px, var(--dm_orange)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }

    .bg-pink.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_pink) 85px, var(--dm_pink)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }
    .bg-gold.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_gold) 85px, var(--dm_gold)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }
    .bg-green.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_green) 85px, var(--dm_green)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }
    .bg-yellow.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_yellow) 85px, var(--dm_yellow)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }
    .bg-black.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_black) 85px, var(--dm_black)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }
    .bg-white.animation-banner-active { background: linear-gradient(to bottom, transparent   85px, var(--dm_white) 85px, var(--dm_white)  calc(100% - 85px), transparent  calc(100% - 85px),transparent 100%); }

}

.bg-lavender { background-color: var(--dm_lavender); }
.bg-orange { background-color: var(--dm_orange); }
.bg-pink { background-color: var(--dm_pink); }
.bg-gold { background-color: var(--dm_gold); }
.bg-green { background-color: var(--dm_green); }
.bg-yellow { background-color: var(--dm_yellow); }
.bg-black {background-color: var(--dm_black); }
.bg-white {background-color: var(--dm_white); }

.bg-black h1,
.bg-black h2,
.bg-black p,
.bg-black a {
    color: #fff;
}