∞ /* 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: #4a4a49;
    --color-base-medium: #9d9d9c;
    --color-base-light: #d0d0d0;
    --color-base-lighter: #ededed;
    --color-contrast-dark: #96464d;
    --color-contrast-medium: #c89f9c;
    --color-contrast-light: #e3cecd;
}
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: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
	color: var(--color-base-dark);
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
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-medium);
}
main p a i {
    min-width: 1.6em;
}
a:hover {
    color: var(--color-contrast-medium);
}
a,
a:focus,
a:hover,
a:active {
    outline: none;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    /*font-family: gadugi, sans-serif;*/
    font-weight: 400;
    font-style: normal;
}
h1, .h1 {  
    font-size: 2.2rem;
    font-weight: 700;
    font-style: normal;
    margin-top: 0;
}
h2, .h2 {
    font-size: 1.8rem;
	padding-top: 1em;
}
h3, .h3 {
    font-size: 1.4rem;
	padding-top: 1em;
}
h4, .h4 { 
    font-size: 1.2rem;
}
figure {
	margin: 0;
}
main p {
    line-height: 1.6;
}

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

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

.siteHeader {
    position: absolute;
    z-index: 100;
    width: 100vw;
    height: 60px;
	top: 0;
	left: 0;
    transition: all ease .5s;
}
.persistent .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-base);
}
.blurBg .siteHeader {
    background-color: rgba(255,255,255,1);
}
a#top {
    position: absolute;
    margin-top: -1px;
}

/* Logo */
.siteLogo {
    position: absolute;
    z-index: 10;
    right: 60px;
    opacity: 1;
    top: 40vh;
    width: 250px;
    transition: all ease 1.5s;
}
@media (min-width: 750px) {
    .siteLogo {
        top: 50vh;
        width: 300px;
    }
}
.persistent .siteLogo {
    right: -400px;
    opacity: 0;
}
.persistentSiteLogo {
    position: absolute;
    z-index: 10;
    left: -130px;
    top: 0;
    width: 80px;
    background-color: transparent;
    opacity: 0;
    transition: all ease 1s;
}
.persistent .persistentSiteLogo {
    left: 20px;
    opacity: 1;
}
.siteLogo a {
    display: block;
    height: 300px;
    background-image: url("../img/logo-bekoz-slogan.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease .5s;
}
.persistentSiteLogo a {
    display: block;
    height: 70px;
    background-image: url("../img/logo-bekoz.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.siteLogo span,
.persistentSiteLogo span {
	display: none;
}

/* Menus Container */
.compactMenu {
    position: absolute;
    top: 0;
    right: -20px;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    transition: all ease .5s;
}


/* Top Bar Menu */
.topBarMenu {
    height: 60px;
    padding-left: 100px;
    padding-right: 140px;
    text-align: right;
    display: none;
}
@media (min-width: 800px) {
    .topBarMenu {
        display: block;
        opacity: 1;
        transition: all ease 1s;
    }
   /* .persistent .topBarMenu {
        padding-left: 80px;
        position: absolute;
        z-index: auto;
        width: 100%;
        overflow: hidden;
        opacity: 0;
        top: -100px;
    }*/
}
.topBarMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.topBarMenu ul li {
    display: inline;
}
.topBarMenu ul li a {
    line-height: 60px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    font-size: .7rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: 1px solid var(--color-contrast-medium);
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.persistent .topBarMenu ul li a {
    border-left: 1px solid var(--color-contrast-dark);
}
.topBarMenu ul li a:hover,
.topBarMenu ul li.current-menu-item a {
    color: var(--color-contrast-dark);
}
.topBarMenu ul li:first-of-type a {
    border-left: none;
}
.topBarMenu ul li a span {
    padding: 0 10px;
    line-height: 2.6rem;
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    transform: skewX(15deg);
}
.topBarMenu ul li.current-menu-item a span:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    content: "";
    margin-left: -3px;
    width: 6px;
    height: 6px;
    border-left: 2px solid var(--color-base-darker);
    border-bottom: 2px solid var(--color-base-darker);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/* navbar*/
.mobileMenu {
    cursor: pointer;
	color: var(--color-base-darker);
    height: 60px;
    line-height: 60px;
    width: 60px;
    padding: 0 20px;
	transition: all .7s ease;
}
@media (min-width: 750px){ 
    .mobileMenu {
	    padding-left: 20px;
        width: 120px;
    }
}
.mobileMenu span {
    border: 1px solid var(--color-contrast-medium);
    background-color: rgba(255,255,255,1);
    padding: .5rem .25rem .5rem .75rem;
    display: inline-block;
    margin-top: .5rem;
    line-height: 1.5rem;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    transform: skewX(-15deg); 
	transition: all .7s ease;
}
.mobileMenu i {
	color: var(--color-base-darker);
    margin-right: 5px;
	transition: all .7s ease;
}
.persistent .mobileMenu {
    background-color: var(--color-contrast-dark);
    color: #fff;
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.persistent .mobileMenu span {
    border: none;
    background-color: rgba(255,255,255,0);
    padding: 0;
    margin-top: auto;
    display: inline;
    line-height: normal;
    -webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    transform: skewX(15deg); 
}
.persistent .mobileMenu i {
    color: #fff;
}
.mobileMenu:hover,
.mobileMenu:hover i {
	color: var(--color-contrast-medium);
}
.persistent .mobileMenu:hover,
.persistent .mobileMenu:hover i {
    color: #fff;
}
.persistent .mobileMenu:hover {
    background-color: var(--color-contrast-medium);
}
header nav {
    position: fixed;
    z-index: 11;
    width: 0;
	height: 100vh;
    top: 0;
	right: -10vw;
    background-color: rgba(255,255,255,0);
    transition: all ease 1.5s;
    transition-delay: .33s;
}
header nav.fullWidth {
    width: 100vw;
	right: 0;
    background-color: rgba(0,0,0,.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.mobileMenuContainer {
	position: absolute;
	z-index: 12;
	top: 0;
	right: -20vw;
	background-color: #fff;
	height: 100vh;
	min-height: 100vh;
	min-width: 0;
	max-width: 0;
	margin-right: 0;
	width: 0;
	display: inline-block;
	overflow-y: auto;
    transition: all ease 1s;
    border-right: 1px solid var(--color-base-lighter);
}
.mobileMenuContainer.fullWidth {
	min-width: 100vw;
	max-width: 120vw;
    right: -20vw;
	width: auto;
    -webkit-transform: skew(-10deg);
    -moz-transform: skew(-10deg);
    transform: skew(-10deg);
}
@media (min-width: 500px) {
    .mobileMenuContainer.fullWidth {
        min-width: 80vw;
        max-width: 100vw;
    }
}
@media (min-width: 800px) {
    .mobileMenuContainer.fullWidth {
        min-width: 50vw;
        max-width: 90vw;
    }
}
.mainMenuClose {
	display: block;
	position: absolute;
	z-index: auto;
	right: 80px;
	font-size: 2rem;
	color: red;
	top: 1.5rem;
	cursor: pointer;
    transition: all ease 1s;
}
.mainMenuClose:hover {
	color: var(--color-contrast-dark);
}
.mobileMenuContainer .scrollableMenu {
    position: relative;
    margin-right: 20vw;
	padding: 40px 10px 40px 70px;
    opacity: 0;
    transition: all ease 1s;
}
.mobileMenuContainer.fullWidth .scrollableMenu {
    opacity: 1;
    -webkit-transform: skew(10deg);
    -moz-transform: skew(10deg);
    transform: skew(10deg);
}
.logoMenu {
    display: inline-block;
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
    background-image: url("../img/logo-bekoz.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.mainMenuContainer {
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav li.menu-item-has-children {
}
header nav li a {
    display: block;
    text-decoration: none;
    color: var(--color-base-darker);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 20px;
    transition: all ease-in-out .5s;
}
header nav li a .menuDesc {
    display: block;
    font-style: italic;
}
header nav li li a {
    font-size: 1.4rem;
    padding: 5px 10px 5px 30px;
	text-shadow: none;
	border-top: none;
    color: var(--color-base-darker);
}
header nav li li:last-child {
	padding-bottom: 20px;
}
header nav a:hover {
	color: var(--color-contrast-dark);
}
header nav .current_page_item a, header nav .current_page_item a:hover {
    color: var(--color-contrast-medium);
    font-style: italic;
    background-color: transparent;
    cursor: default;
}
header nav .current_page_item a:before {
    margin-left: -1rem;
    padding-right: 0.5em;
    content: "***";
    color: var(--color-contrast-medium);
}


/* Header Image BG */
.overHeadImg {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100vh;
    background-color: rgba(255,255,255,.65);
}
@media (min-width: 1050px) {
    .overHeadImg {
        background-color: rgba(255,255,255,0);
    }
}
.persistent .overHeadImg {
    background-color: rgba(255,255,255,0);
}
.blurBg .overHeadImg {
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.cacheHeadImg {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100vh;
    background-image: url("../img/Bekoz-mask-full-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 1;
}
@media (min-width: 1050px) {
    .cacheHeadImg {
        background-position: left center;
    }
}
.persistent .cacheHeadImg {
    opacity: 0;
}
.page-template-default .cacheHeadImg {
    background-image: url("../img/Bekoz-mask-full-white-inverted.svg");
}
.single .cacheHeadImg {
    background-image: url("../img/Bekoz-asterisk-top-left.svg");
}
.asteriskHeadImg {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh + 200px);
    background-image: url("../img/Bekoz-asterisk-white-2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    opacity: 0;
}
.asteriskBg .asteriskHeadImg {
    opacity: .5;
}
.blurBg .asteriskHeadImg {
    opacity: 1;
}
.headImg {
    position: fixed;
    z-index: -3;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100vh;
    background-position: center center;
    background-size: cover;
}

/* Header Slider BG */
.headSlider {
    position: fixed;
    z-index: -3;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100vh;
}
.dydHeadSlider {
    background-color: #fff;
}
.dydHeadSlider .carousel-cell {
    width: 100%;
    height: 100vh;
    counter-increment: gallery-cell;
    position: relative;
    overflow: hidden;
}
.dydHeadSlider .carousel-cell figure {
    height: 100vh;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    width: 100%;
}
@media (min-width: 1050px) {
    .dydHeadSlider .carousel-cell figure {
        background-position: 50%;
    }
}
/* Header transition */
.overHeadImg,
.cacheHeadImg,
.asteriskHeadImg,
.headImg,
.headSlider,
.dydHeadSlider .carousel-cell {
    transition: all ease-in-out .75s;
}


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

.siteFooter {
    position: relative;
}

/* Bottom Nav */

.bottomNav {
    text-align: right;
    font-size: .8rem;
    padding: 0 20px;
    line-height: 40px;
    height: 40px;
    background-color: rgba(255,255,255,1);
    box-shadow: var(--box-shadow-base);
}
.bottomNav nav {
    float: left;
}
.bottomNav nav ul {
    padding: 0;
    margin: 0;
}
.bottomNav nav li {
    display: inline-block;
}
.bottomNav nav li a {
    margin-right: 10px;
}
.bottomNav nav li a::after {
    content: "/";
    padding-left: 1rem;
    color: var(--color-contrast-medium);
}
.bottomNav nav li:last-child a {
    margin-right: 0;
}
.bottomNav nav li:last-child a::after {
    content: "";
    padding-left: 0;
}
@media (max-width: 1000px) {
    .bottomNav nav {
        display: none;
    }
}

/* Copyright */
.refDYD,
.copyright {
    font-size: .6rem;
}

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

.mainContent {
    margin-top: 100vh;
    background-color: #fff;
    min-height: 100vh;
    padding: 20px;
}
@media (min-width: 1050px) {
    .mainContent {
        padding: 60px;
    }
}
.mainContent h1.pageTitle {
    position: relative;
    top: -120px;
    text-align: right;
    opacity: 0;
    text-transform: uppercase;
    transition: all 2s ease;
}
.persistent .mainContent h1.pageTitle {
    opacity: 1;
     color: var(--color-base-darker);
}
@media (min-width: 1050px) {
    .persistent .mainContent h1.pageTitle {
        color: #fff;
    }
}
.page-template-default .mainContent h1.pageTitle {
    top: -140px;
    text-align: left;
    opacity: 1;
    font-size: 2rem;
    color: var(--color-base-darker);
}
@media (min-width: 1050px) {
    .page-template-default .mainContent h1.pageTitle {
        top: -200px;
        font-size: 4rem;
        color: #fff;
    }
}
.blurBg .mainContent h1.pageTitle {
    color: var(--color-base-darker);
}
.page-template-default.blurBg .mainContent h1.pageTitle {
    top: -120px;
}

@media (min-width:800px) {
    .blockContent {
        position: relative;
        width: 80vw;
        left: 10vw;
        z-index: 1;
    }
}
@media (min-width:1200px) {
    .blockContent {
        width: 65vw;
        left: 25vw;
    }
}

/* Rolling asterisk */
.rollScrollContainer {
    bottom: 0;
    right: -5vw;
    left: auto;
    position: fixed;
    z-index: 0;
}
.page .rollScrollContainer {
    right: auto;
    left: -5vw;
}
.rollScroll {
    width: 20vw;
    height: 20vw;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    opacity: 0;
    transition: all ease-oout .7s;
}
.blurBg .rollScroll {
    opacity: .1;
}
#reload {
    width: 20vw;
    height: 20vw;
}

/* Photo Albums Hacks */
.wp-block-image,
.wp-block-media-text__media {
    overflow: hidden;
    position: relative;
}
.wp-block-image a span.overAlbumImg,
.wp-block-media-text__media a span.overAlbumImg {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: auto;
    top: 20px;
    right: 0;
    bottom: auto;
    opacity: 0;
    background-color: rgba(255,255,255,0);
/*    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);*/
    transition: all ease .5s;
}
.wp-block-image a span.overAlbumImg i,
.wp-block-media-text__media a span.overAlbumImg i {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
    color: var(--color-contrast-dark);
    transition: all ease .75s;
}
.wp-block-image a:hover span.overAlbumImg,
.wp-block-media-text__media a:hover span.overAlbumImg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-color: rgba(255,255,255,.75);
}
.wp-block-image a:hover span.overAlbumImg i,
.wp-block-media-text__media a:hover span.overAlbumImg i {
    opacity: 1;
}
.wp-block-image a .cornerImg,
.wp-block-media-text__media a .cornerImg {
    position: absolute;
    z-index: 1;
    width: 60%;
    height: 60%;
    top: -22%;
    right: -20%;
    background-image: url("../img/Bekoz-asterisk-square-white.svg");
    background-size: cover;
    background-position: bottom left;
    transition: all ease .5s;
}
.wp-block-image a:hover .cornerImg,
.wp-block-media-text__media a:hover .cornerImg {
    width: 120%;
    height: 120%;
    top: -10%;
    right: -10%;
}

/* Lists Hack */
ul.wp-block-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
ul.wp-block-list li {
    padding-left: 2em;
    padding-bottom: 0.8em;
    line-height: 1.4em;
    text-indent: -2em;
}
ul.wp-block-list li:before {
    content: "*";
    color: var(--color-contrast-medium);
    padding-right: 0.4em;
    font-size: 2em;
    position: relative;
    top: .35em;
}


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

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

.single header {
    background-color: rgba(255,255,255,1);
}
.single .siteLogo {
    left: 10px;
    top: 10px;
    width: 200px;
    right: auto;
    bottom: auto;
}
.single .siteLogo a {
    height: 200px;
}
@media (min-width: 1050px){
    .single .siteLogo {
        left: 50px;
        top: 40px;
        width: 300px;
    }
    .single .siteLogo a {
        height: 300px;
    }
}
.single.persistent .siteLogo {
    left: -450px;
    top: 40px;
    right: auto;
    bottom: auto;
}
.single .mainContent .singleTitle {
    position: relative;
    top: -130px;
    text-align: right;
    opacity: 1;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 2s ease;
}
@media (min-width: 1050px){
    .single .mainContent .singleTitle {
        font-size: 4rem;
    }
}
.blurBg .mainContent .singleTitle {
    color: var(--color-base-darker);
}
.single .asteriskHeadImg {
    background-image: url("../img/Bekoz-asterisk-white-2-right.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}


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

@media (max-width: 1050px){
    .archive .siteLogo {
        right: auto;
        top: 0;
        left: 0;
        width: 150px;
    }
    .archive .siteLogo a {
        height: 150px;
    }
}
.archive main {
    padding-top: 15vh;
    padding-left: 10vw;
    padding-right: 10vw;
    transition: all ease 1s;
}
@media (min-width: 1050px){
    .archive main {
        padding-top: 10vh;
        padding-right: calc(10vw + 300px);
    }
}
.archive.persistent main {
    padding-right: 10vw;
}
.archive h1 {
    text-transform: uppercase;
    font-size: 2rem;
}
@media (min-width: 1050px){
    .archive h1 {
        font-size: 4rem;
    }
}
.archive .pageContent {
    max-width: 100%;
    padding: 60px 0;
    margin: 0;
}
.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;
    overflow: hidden;
}
.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-base-darker);
    border: 1px solid var(--color-contrast-medium);
}
.gridItem a span.gridOverImg {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: auto;
    top: 20px;
    right: 0;
    bottom: auto;
    opacity: 1;
    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;
    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,.75);
}
.gridItem a:hover span.gridOverImg i {
    opacity: 1;
}
.gridItem a .cornerImg {
    position: absolute;
    z-index: 0;
    width: 60%;
    height: 60%;
    top: -22%;
    right: -20%;
    background-image: url("../img/Bekoz-asterisk-square-white.svg");
    background-size: cover;
    transition: all ease .5s;
}
.gridItem a:hover .cornerImg {
    width: 120%;
    height: 120%;
    top: -10%;
    right: -10%;
}

/*  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;
}

/* TEMPLATE NEWS
-------------------------------------------------- */

.page-template-page-news {}

@media (max-width: 1050px){
    .page-template-page-news .siteLogo {
        right: auto;
        top: 0;
        left: 0;
        width: 150px;
    }
    .page-template-page-news .siteLogo a {
        height: 150px;
    }
}
.page-template-page-news main {
    padding-top: 15vh;
    padding-left: 10vw;
    padding-right: 10vw;
    transition: all ease 1s;
}
@media (min-width: 1050px){
    .page-template-page-news main {
        padding-top: 10vh;
        padding-right: calc(10vw + 300px);
    }
}
.page-template-page-news h1 {
    text-transform: uppercase;
    font-size: 2rem;
}
@media (min-width: 1050px){
    .page-template-page-news h1 {
        font-size: 4rem;
    }
}
.page-template-page-news .pageContent {
    max-width: 100%;
    padding: 60px 0;
    margin: 0;
}

