 /* HIDE DURING PAGE LOAD (show via JS)
-------------------------------------------------- */



/* CUSTOMIZE THE GLOBAL STYLES
-------------------------------------------------- */

* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
:root {
    --text-shadow-base: 1px 1px 3px rgba(0,0,0,.25);
    --box-shadow-base: 1px 1px 10px rgba(0,0,0,.25);
    --form-shadow-base: 0 3px 10px rgba(0,0,0,.2);
    --color-base-darker: #1d1d1b;
    --color-base-dark: #3b3b3b;
    --color-base-medium: #9d9d9c;
    --color-base-light: #d0d0d0;
    --color-base-lighter: #ededed;
    --color-contrast-dark: #004f3f;
    --color-contrast-medium: #03775b;
    --color-contrast-light: #D61C3C;
    --color-contrast-lighter: #ff0000;
}
html {
    -webkit-text-size-adjust: 100%;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
    font-family: "roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
	color: var(--color-base-dark);
    background-color: #fff;
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
}
a {
    text-decoration: none;
    color: var(--color-base-darker);
    transition: all ease .5s;
}
a i {
	color: var(--color-contrast-light);
}
a:hover {
    color: var(--color-contrast-light);
}
a,
a:focus,
a:hover,
a:active {
    outline: none;
}
h1 {
    font-weight: 700;
    font-style: normal;
    margin-top: 0;
    color: var(--color-contrast-light);
}
h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    font-style: normal;
    color: var(--color-base-darker);
}
h1, .h1 {  
    font-size: 2.2rem;
}
h2, .h2 {
    font-size: 2rem;
	padding-top: 1em;
    color: var(--color-contrast-light);
}
h3, .h3 {
    font-size: 1.4rem;
	padding-top: 1em;
}
h4, .h4 { 
    font-size: 1.2rem;
}
figure {
	margin: 0;
}
img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

/* FORMS
-------------------------------------------------- */

/* HEADER
-------------------------------------------------- */

a#top {
    position: absolute;
    margin-top: -1px;
}
.siteHeader {
    position: fixed;
    z-index: 2;
    top: 0; 
    left: 0;
    right: 0;
    bottom: auto;
    height: 120px;
    background-color: rgba(255,255,255,.75);
    transition: all ease .5s;
}
.persistent .siteHeader {
    height: 60px;
    background-color: rgba(255,255,255,1);
    box-shadow: var(--box-shadow-base);
}
.headerLogo {
    width: auto;
    height: 60px;
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 20px;
    transition: all ease .5s;
}
@media (min-width: 400px) {
  .headerLogo {
      height: 80px;
      top: 20px;
    }
  }
.persistent .headerLogo {
    height: 50px;
    top: 5px;
}
.headerLogo a,
.headerLogo a:hover,
.headerLogo a:visited {
    line-height: 60px;
}
.persistent .headerLogo a,
.persistent .headerLogo a:hover,
.persistent .headerLogo a:visited {
    line-height: 40px;
}

/* Header Menu */
.mainNav {
    display: none;
    padding: 80px 40px;
    width: 100%;
    min-height: 100vh;
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    position: absolute;
    z-index: 4;
    background-color: #fff;
    transition: all ease .5s;
}
.mainNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.mainNav ul li {
    display: block;
    margin: 0;
    padding: 0;
}
.mainNav ul li a {
    display: block;
    position: relative;
    padding: 0 .5em 0 .3em;
    line-height: 60px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
/* Header Menu Main */
.mainNav .mainMenu ul li a::after {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "";
    padding-left: .6rem;
    width: .5rem;
    display: inline-block;
    color: var(--color-contrast-light);
    transition: all ease .5s;
}
.mainNav .mainMenu ul li a:hover::after {
    font: var(--fa-font-solid);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\2b";
    color: var(--color-contrast-light);
}


/* Header Menu Social */
.mainNav .mainMenuSocial {
    padding-right: 40px;
}
.mainNav .mainMenuSocial ul li a .menuTitle {
    display: none;
}
.mainNav .mainMenuSocial ul li a i {
    color: var(--color-contrast-dark);
    transition: all ease .5s;
}
.mainNav .mainMenuSocial ul li a:hover i {
    color: var(--color-contrast-light);
}

/* Mobile Menu */
.mobileMenuTrigger,
.mobileMenuClose {
    position: fixed;
    z-index: 2;
    top: 30px;
    right: 40px;
    line-height: 60px;
    cursor: pointer;
    display: inline-block;
    transition: all ease .5s;
}
.persistent .mobileMenuTrigger {
    top: 0;
}
.mobileMenuClose {
    z-index: 6;
    top: 0;
}
.mobileMenuTrigger span,
.mobileMenuClose span {
    padding: 5px 10px;
    border: 1px solid var(--color-contrast-dark);
    transition: all ease .5s;
}
.mobileMenuTrigger:hover span,
.mobileMenuClose:hover span {
    background-color: var(--color-contrast-light);
    color: #fff;
}

@media (min-width: 1000px) {
  .mobileMenuTrigger,
  .mobileMenuClose {
    display: none;
  }
  .mainNav {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      padding: 0;
      margin-top: 30px;
      min-height: 0;
      max-height: none;
      background-color: transparent;
      transition: all ease .5s;
  }
  .persistent .mainNav {
      margin-top: 0;
  }
  .mainNav ul li {
      display: inline-block;
  }
  .mainNav .mainMenu ul li a::after {
      content: "|";
  }
}

/* FOOTER
-------------------------------------------------- */

.siteFooter {
}

/* subFooter */
.subFooter {
    display: flex;
    background-color:#fff;
}
.refDYD,
.copyright {
    font-size: .7rem;
    text-align: center;
    padding: 20px;
}
.copyright {
    margin-left: auto;
}
.refDYD a {
    text-decoration: none;
}

/* PAGE
-------------------------------------------------- */

main {
    min-height: calc(100vh - 40px);
    padding: 0 40px 60px 40px;
}
article p {
    line-height: 1.5;
}
article li {
    padding-bottom: .5em;
}
/* Albums tweaks */
.wp-block-image,
.wp-block-media-text__media {
    /*overflow: hidden;*/
    position: relative;
}
.wp-block-image img,
.wp-block-media-text__media,    
.wp-block-media-text__media a img {
    border-radius: 12px;
}
.wp-block-image a .overAlbumImg,
.wp-block-media-text__media a .overAlbumImg {
    position: absolute;
    z-index: 1;
    text-align: center;
    left: 40%;
    top: 40%;
    right: 40%;
    bottom: 40%;
    opacity: 0;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all ease .5s;
}
.wp-block-image a:hover .overAlbumImg,
.wp-block-media-text__media a:hover .overAlbumImg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}
.wp-block-image a .overAlbumImg span,
.wp-block-media-text__media a .overAlbumImg span {
    position: absolute;
    bottom: 50%;
    right: 50%;
    opacity: 0;
    transition: all ease .75s;
}
.wp-block-image a .overAlbumImg span i,
.wp-block-media-text__media a .overAlbumImg span i {
    color: var(--color-contrast-dark);
}
.wp-block-image a:hover .overAlbumImg span,
.wp-block-media-text__media a:hover .overAlbumImg span {
    opacity: 1;
}

/* Youtube Tweaks */
.wp-embed-responsive .wp-has-aspect-ratio iframe {
}

/* Complianz Cookies */
#cmplz-document, 
.editor-styles-wrapper .cmplz-unlinked-mode {
    max-width: 100%;
}

/* Colums Tweaks */
.wp-block-columns .has-background {
    border-radius: 12px;
    border: 1px solid var(--color-base-lighter);
    padding: 20px;
}

.page .siteHeader {
    background-color: rgba(255,255,255,.75);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    top: 0px;
    height: 120px;
}
.page.persistent .siteHeader {
    background-color: rgba(255,255,255,1);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    top: 0;
    height: 60px;
}
.page main {
    padding: 0;
}
.pageIntro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.pageIntro .scrollContainer {
     justify-content: left;
     bottom: 10vh;
     left: 60px;
     width: auto;
}
.pageIntro h1 {
    position: absolute;
    top: auto;
    right: 40px;
    bottom: 0;
    left: auto;
    padding-left: 160px;
    text-align: right;
    color: #fff;
    font-weight: 700;
    text-shadow: var(--text-shadow-base);
}
.page article {
    background-color: #fff;
    padding: 0;
    position: relative;
}
@media (min-width: 460px) {
    .page article {
        padding: 40px 0 0 0;
    }
}

/* Lists Hack */
ul.wp-block-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
ul.wp-block-list li {
    padding-left: 1.7em;
    padding-bottom: 0.8em;
    line-height: 1.4em;
    text-indent: -1.6em;
}
ul.wp-block-list li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--color-contrast-light);
    padding-right: 0.5em;
    font-size: 1.2em;
    position: relative;
}

/* HOME PAGE
-------------------------------------------------- */

.homeIntro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.hero {
    text-align: center;
}
.heroTxt {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 900;
}
.hero a {
    display: inline-block;
    color: #fff;
    background-color: var(--color-contrast-light);
    padding: 10px 20px;
    border-radius: 8px;
    margin: 1em auto;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: all ease-in-out .5s;
}
.hero a:hover {
    color: #fff;
    background-color: var(--color-contrast-dark);
}

/* Home Image BG */
.overHomeImg {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0);
    transition: all ease-in-out .5s;
}
.persistent .overHomeImg {
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.homeImg {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
}

/* Home Slider BG */
.homeSlider {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.dydHomeSlider {
    background-color: #fff;
}
.dydHomeSlider .carousel-cell {
    width: 100%;
    height: 100vh;
    counter-increment: gallery-cell;
    position: relative;
    overflow: hidden;
}
.dydHomeSlider .carousel-cell figure {
    height: 100vh;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    width: 100%;
}


/* Home Video BG */
.homeVideo {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.home main {
    padding: 0;
}
/* Scroll to content */
.scrollContainer {
     display: flex;
     justify-content: center;
     align-items: flex-end;
     position: absolute;
     z-index: 4;
     width: 100%;
     bottom: calc(20px + 6vh);
}
.persistent .scrollContainer {
    display: none;
}
.scroll {
    position: relative;
    width: 28px;
    height: 24px;
}
.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #ffffff;
}
.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}
.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.home article {
    background-color: #fff;
    padding: 0;
    position: relative;
}
@media (min-width: 460px) {
    .home article {
        padding: 40px 40px 60px 40px;
    }
}

/* SINGLE
-------------------------------------------------- */

.single .siteHeader {
    background-color: rgba(255,255,255,.75);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    top: -20px;
    height: 100px;
}
.single.persistent .siteHeader {
    background-color: rgba(255,255,255,1);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    top: 0;
    height: 60px;
}
.single main {
    padding: 0;
}
.singleIntro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.singleIntro .scrollContainer {
     justify-content: left;
     bottom: 10vh;
     left: 10px;
     width: auto;
}
@media (min-width: 700px) {
    .singleIntro .scrollContainer {
        left: 60px;
    }
}
.singleIntro .introTitle {
    position: absolute;
    top: auto;
    right: 20px;
    bottom: 1.4em;
    left: auto;
    padding-left: 160px;
    text-align: right;
    color: #fff;
    font-weight: 700;
    font-size: 2em;
    text-transform: uppercase;
    text-shadow: var(--text-shadow-base);
}
@media (min-width: 700px) {
    .singleIntro .introTitle {
        right: 40px;
        bottom: 1em;
        font-size: 3em;
    }
}
.single article {
    background-color: #fff;
    padding: 0;
    position: relative;
}
@media (min-width: 460px) {
    .single article {
        padding: 40px 40px 60px 40px;
    }
}
.single .articleBg {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left:0;
    opacity: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition-delay: 5s;
    transition: all ease 5s;
}
.single .is-inViewport .articleBg {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    opacity: .25;
}
.single article .singleContent {
    max-width: 100%;
    margin: 0;
    padding: 40px;
    background-color: rgba(255,255,255,0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: all ease .5s;
}
@media (min-width: calc(900px + 20vw)) {
    .single article .singleContent {
        max-width: 900px;
        margin: 10vh 10vw 5vh auto;
        box-shadow: var(--box-shadow-base);
    }
}
@media (min-width: calc(1200px + 20vw)) {
    .single article .singleContent {
        max-width: 1100px;
    }
}

/* ARCHIVES
-------------------------------------------------- */

.archive .pageTitle {
    margin: 0;
    padding: 0 0 0 70px;
}
.archive .pageSubTitle {
    top: calc(140px - .5em);
    z-index: -1;
}
.archive .pageContent {
    max-width: 100%;
    padding: 60px 0;
    margin: 0;
}
@media (min-width: 1000px) {
    .archive .pageContent {
        margin: 0 10vw 0 20vw;
    }
}
.gridView {
    display: grid;
    grid-gap: 80px;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}
@media (max-width: 1050px){
    .gridView {
        grid-gap: 40px;
        grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    }
}
.gridItem .content {
    position: relative;
}
.gridItem img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.gridItem h2, 
.gridItem h4 {
  font-size: 20px;
  margin-bottom: 0;
  padding: 0 12px;
  line-height: 1.2;
}
article .gridItem a, 
article .gridItem h2 a, 
article .gridItem h4 a {
  text-decoration: none;
  border-bottom: none;
  color: var(--color-base-dark);
  transition: all ease .5s;
}
article .gridItem a:hover, 
article .gridItem h2 a:hover, 
article .gridItem h4 a:hover {
  color: var(--color-contrast-medium);
  border-bottom: none;
}
article .gridItem h2 a::after, 
article .gridItem h4 a::after {
    font: var(--fa-font-solid);
    font-size: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\2b";
    margin-left: 1em;
    padding: .25em .3em;
    color: var(--color-contrast-medium);
    border: 1px solid var(--color-contrast-medium);
}
.gridItem a span.gridOverImg {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 40%;
    top: 40%;
    right: 40%;
    bottom: 40%;
    opacity: 0;
    background-color: rgba(255,255,255,0);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all ease .5s;
}
.gridItem a span.gridOverImg i {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
    color: var(--color-contrast-dark);
    font-size: 2em;
    opacity: 0;
    transition: all ease .75s;
}
.gridItem a:hover span.gridOverImg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-color: rgba(255,255,255,.5);
}
.gridItem a:hover span.gridOverImg i {
    opacity: 1;
}


/*  Archives Nav */
.archiveNav {
	clear: both;
	text-align: center;
	display: block;
	padding: 3rem 0;
}
.archiveNav li {
	display: inline;
}
.archiveNav a,
.archiveNav a:hover,
.archiveNav .active a,
.archiveNav .disabled {
    display: inline-block;
	background-color: var(--color-contrast-medium);
    border: 1px solid var(--color-contrast-medium);
	cursor: pointer;
	color: #fff;
	text-decoration:none;
    font-weight: 900;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin-right: 5px;
    transition: all ease .5s;
}
.archiveNav .current {
	padding: 10px;
	padding: 0.7rem;
}

.archiveNav a:hover {
    background-color: var(--color-contrast-dark);
    color: #fff;
}
.archiveNav .active a,
.archiveNav .current {
	color: var(--color-base-dark);
	background-color: #fff;
}

/* SPLASH PAGE
-------------------------------------------------- */

.splashWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100vh;
}
.splashLogo {
    width: 100vw;
    text-align: center;
}
.splashLogo img {
    max-width: 500px;
    width: auto;
    height: auto;
}
.splashLang {
    max-width: 40%;
    margin: 1%;
    position: relative;
}
.splashLang a {
    display: block;
    color: var(--color-base-darker);
    background-color: rgba(255,255,255,.8);
    border: 3px solid var(--color-contrast-light);
    padding: 10px;
    transition: all ease-out .5s;
}
.splashLang a:hover {
    color: var(--color-base-lighter);
    background-color: var(--color-contrast-light);
}
.splashLangCode {
    display: block;
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
}
.splashLangTxt {
    display: block;
    text-align: center;
    font-size: 1rem;
}
.page-template-page-splash .fullBg {
	position: fixed !important;
	z-index: -2;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
}
