 /* 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-base-ultralight: #efefef;
    --color-contrast-dark: #288973;
    --color-contrast-medium: #68bfab;
    --color-contrast-light: #a6dccf;
}
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: 400;
    font-style: normal;
    font-size: 16px;
	color: var(--color-base-darker);
    background-color: var(--color-base-ultralight);
    scroll-behavior: smooth;
}
.bgGradient {
    background: -webkit-linear-gradient(60deg,rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 12%, rgba(224, 239, 235, 1) 31%, rgba(239, 239, 239, 1) 60%, rgba(214, 239, 233, 1) 80%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(60deg,rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 12%, rgba(224, 239, 235, 1) 31%, rgba(239, 239, 239, 1) 60%, rgba(214, 239, 233, 1) 80%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(60deg,rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 12%, rgba(224, 239, 235, 1) 31%, rgba(239, 239, 239, 1) 60%, rgba(214, 239, 233, 1) 80%, rgba(255, 255, 255, 1) 100%);
}
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);
}
a:hover {
    color: var(--color-contrast-medium);
}
a,
a:focus,
a:hover,
a:active {
    outline: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: roboto-condensed, sans-serif;
}
h1 {
    font-weight: 700;
    font-style: normal;
    margin-top: 0;
}
h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-style: normal;
}
h1 {  
    font-size: 2.2rem;
}
h2 {
    font-size: 1.6rem;
	padding-top: 1em;
    color: var(--color-contrast-dark);
}
h3 {
    font-size: 1.4rem;
	padding-top: 1em;
}
h4 { 
    font-size: 1.2rem;
}
figure {
	margin: 0;
}
img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

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

input, button, select, textarea {
    border: 1px solid var(--color-base-light);
    padding: 10px 20px;
}
input[type=text], input[type=email], select, textarea {
    width: calc(100% - 40px);
}
input[type="radio"]{
    padding: inherit;
    border-radius: 0;
}
input[type=checkbox]:focus, 
input[type=color]:focus, 
input[type=date]:focus, 
input[type=datetime-local]:focus, 
input[type=datetime]:focus, 
input[type=email]:focus, 
input[type=month]:focus, 
input[type=number]:focus, 
input[type=password]:focus, 
input[type=radio]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=text]:focus, 
input[type=time]:focus, 
input[type=url]:focus, 
input[type=week]:focus, 
select:focus, 
textarea:focus {
    border-color: transparent !important;
    box-shadow: 0 3px 10px rgba(0,0,0,.2) !important;
}
/* no focus style for non-keyboard-inputs elements */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

/* and for keyboard users, override everything with
   a Big Blue Border when focused on any element */
body.user-is-tabbing *:focus {
  outline: 2px solid #7AACFE !important; /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}
label {
    font-weight: 600;
    display: inline-block;
    font-size: 1.1rem;
    line-height: normal;
}

/* CF7 */
.wpcf7-list-item {
    margin: 0;
    display: block;
}
.wpcf7-list-item label {
    font-weight: 400;
    padding: inherit;
    font-size: 1rem;
}
.buttForm {
    display: block;
    background-color: var(--color-contrast-medium);
    padding: 10px;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-align: center;
    margin: 1em auto;
    border: none;
    transition: all ease .5s;
    width: 100%;
}
.buttForm:hover {
    background-color: var(--color-contrast-dark);
    color: #fff;
}
input.submitForm {
	font-size: 1.4em;
	color: #fff;
	background-color: var(--color-base-medium);
	padding: 0.4em;
	border: none;
}
input.submitForm:hover {
	color: #555;
	background-color: var(--color-base-darker);
}

/* 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: #fff;
    border-bottom: 1px solid var(--color-base-lighter);
    transition: all ease .5s;
}
.persistent .siteHeader {
    height: 60px;
    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: 60px;
    top: 0;
}
.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 */

/* Lang Menu */
.langMenu, .langMenu div, .langMenu ul, .langMenu li {
	display: inline;
}
.langMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.langMenu ul li a {
    margin-left: 1em;
    padding: 8px;
    color: var(--color-base-darker);
    font-weight: 700;
    text-align: center;
    transition: all ease .5s;
    display: inline-block;
}
.langMenu ul li a:hover {
    color: var(--color-contrast-medium);
}
/* Header Menu Social */
.langMenu .mainMenuSocial ul li a .menuTitle {
    display: none;
}
.langMenu .mainMenuSocial ul li a i {
    color: var(--color-contrast-dark);
    transition: all ease .5s;
}
.langMenu .mainMenuSocial ul li a:hover i {
    color: var(--color-contrast-medium);
}

/* navbar*/
.mobileMenu {
    cursor: pointer;
	color: #222;
	font-weight: 700;
	letter-spacing: 1px;
	position: fixed;
    z-index: 10;
	right: 10px;
	top: 25px;
	padding: 10px 20px;
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow: var(--box-shadow-base);
    border-radius: 6px;
	transition: all .7s ease;
}
.mobileMenu i {
	color: var(--color-contrast-medium);
}
.persistent .mobileMenu {
	position: absolute;
    top: 2px;
    background-color: rgba(255,255,255,0);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
}
.mobileMenu:hover {
	color: var(--color-contrast-dark);
}
.mobileMenu:hover i {
	color: var(--color-base-darker);
}
header nav {
    position: fixed;
    z-index: 11;
    width: 0;
	height: 100vh;
    top: 0;
	right: -10vw;
    background-color: rgba(104,191,171,.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all ease 1s;
}
header nav.fullWidth {
    width: 100vw;
	right: 0;
}
.mobileMenuContainer {
	position: absolute;
	z-index: 12;
	top: 0;
	right: -10vw;
	background-color: #fff;
	height: 100vh;
	min-height: 100vh;
	min-width: 0;
	max-width: 0;
	margin-left: 0;
	width: 0;
	display: inline-block;
	overflow-y: auto;
    transition: all ease 1s;
}
.mobileMenuContainer.fullWidth {
	right: 0;
	min-width: 60vw;
	max-width: 90vw;
	width: auto;
	margin-right: 9vw;
}
.mainMenuClose {
	display: block;
	position: absolute;
	z-index: auto;
	right: 1.5rem;
	font-size: 2rem;
	color: #f00;
	top: 1.5rem;
	cursor: pointer;
	text-shadow: 0 0 3px rgba(0,0,0,0.25);
    transition: all ease 1s;
}
.mainMenuClose:hover {
	color: #e2001a;
}
.scrollableMenu {
	padding: 40px;
}
.logoMenu {
    display: block;
    height: 80px;
    margin-bottom: 20px;
    background-image: url("../img/icon-abc.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.mainMenuContainer {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 300px;
    -moz-column-width: 300px;
    column-width: 300px;
    column-gap: 40px;
    column-rule-style: solid;
    column-rule-width: 1px;
    column-rule-color: var(--color-contrast-light);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav li.menu-item {
    -webkit-column-break-inside: avoid; /* WebKit fix */
    page-break-inside: avoid; /* Firefox fix */
    break-inside: avoid; /* W3C */
}
header nav li {
	border-top: 1px solid var(--color-contrast-light);
    padding: 5px 0;
}
header nav li li {
	border-top: none;
    padding: 0;
}
header nav li a {
    display: block;
    text-decoration: none;
    color: var(--color-base-darker);
    font-size: 1.3rem;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all ease-in-out .5s;
}
header nav li li a {
    font-size: 1rem;
    padding: 5px 10px 5px 30px;
	text-shadow: none;
    color: var(--color-base-dark);
}
header nav li li:last-child {
	padding-bottom: 10px;
}
header nav a:hover {
    background-color: var(--color-contrast-medium);
	color: #fff;
}
header nav .current_page_item > a, 
header nav .current_page_item > a:hover {
    color: #000;
    font-weight: 600;
    font-style: italic;
    background-color: transparent;
    cursor: default;
}
header nav .current_page_item > a:before {
    margin-left: -1.5em;
    padding-right: 0.5em;
    content: "->";
    color: var(--color-contrast-medium);
}




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

.siteFooter {
    background-color: #fff;
    border-top: 1px solid var(--color-contrast-light);
    padding: 0 20px;
    min-height: 200px;
    box-shadow: var(--box-shadow-base);
}
.footerContent {
    max-width: 1400px;
    margin: 0 auto;
}
.footerGridContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
}
.footerGridContainer .footerWidgetContainer {
    flex: 100%;
    position: relative;
    max-width: 100%;
    padding: 20px;
    /*border: 1px solid var(--color-base-lighter);*/
}
@media (min-width: 900px) {
  .footerGridContainer .footerWidgetContainer {
    flex: 33.33%;
    max-width: 33.33%;
  }
}
.siteFooter h2 {
    text-transform: uppercase;
    padding-top: 0;
    margin-top: 0;
}

/* FOOTER Menu */
.siteFooter .menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.siteFooter li {
    margin: 0 0 2px 0;
    padding: 0;
    background-color: var(--color-contrast-light);
}
.siteFooter li a {
    display: block;
    position: relative;
    color: var(--color-base-darker);
    padding: 0 1em;
    line-height: 2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all ease .5s;
}
.siteFooter li a .menuIcon {
    padding-right: .5em;
}
.siteFooter li a::after {
    text-rendering: auto;
    content: "";
    transition: all ease .5s;
}
.siteFooter li a:hover {
    color: var(--color-contrast-dark);
}
.siteFooter li a:hover::after {
    font: var(--fa-font-solid);
    text-rendering: auto;
    padding-left: .5em;
    -webkit-font-smoothing: antialiased;
    content: "\2b";
    color: var(--color-base-darker);
}
/* Left Footer Container */

/* Right Footer Container */
.footerGridContainer .footerWidgetContainer.footerWidget03 {
    background-color: var(--color-contrast-light);
    margin: -40px 0 0 0;
    border-radius: 20px;
    padding: 30px 20px;
}
@media (min-width: 900px) {
    .footerGridContainer .footerWidgetContainer.footerWidget03 {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}
.siteFooter .footerWidget03 li a {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.siteFooter .footerWidget03 li a:hover {
    border-bottom: 1px solid rgba(255,255,255,1);
}

/* Other Footer Container */
.footerGridContainer .footerWidgetContainer.footerWidget01,
.footerGridContainer .footerWidgetContainer.footerWidget02 {
    padding: 40px 20px;
}
/*
@media (min-width: 900px) {
    .footerWidget03 {
        text-align: right;
    }
}
*/

/* subFooter */
.subFooter {
    display: flex;
    border-top: 1px solid var(--color-contrast-light);
    background-color:#fff;
}
.refDYD,
.copyright {
    font-size: .7rem;
    text-align: center;
    padding: 10px 20px;
}
.copyright {
    margin-left: auto;
}
.refDYD a {
    text-decoration: none;
}

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

main {
    min-height: calc(100vh - 40px);
    padding: 200px 40px 60px 40px;
}
.page-template-default h1 {
    margin: 0;
    padding: 0 0 0 70px;
    color: var(--color-contrast-medium);
    font-size: 3rem;
    text-transform: uppercase;
}
#breadcrumbs {
    padding: 0 0 0 70px;
    font-size: .8em;
}

/* Hack si premier block est different de Slide */
.noSlide {
    max-width: 1200px;
    margin: 120px auto 60px auto;
}
.noSlideComments {
    max-width: 1200px;
    margin: 40px auto 40px auto;
}

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: 13px;
}
.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;
    background-color: rgba(255,255,255,0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 13px;
    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 {
    border-radius: 13px;
}

/* 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 6 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--color-contrast-medium);
    padding-right: 0.5em;
    font-size: 1.2em;
    position: relative;
}

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

.home .siteHeader {
    top: -120px;
}
.home.persistent .siteHeader {
    top: 0;
}
.page-template-page-home main {
    padding: 0;
}
.homeIntro {
    position: relative;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    width: 100vw;
    height: 100vh;
}

/* Block intro menu */
.homeIntroMenu {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding: 20px 0;
    margin: 0 20px 0 0;
    opacity: 1;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow-base);
    transition: all ease .5s;
}
.persistent .homeIntroMenu {
    opacity: 0;
}
.homeIntroLogo {
    background-image: url("../img/logo-abc.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 30vh;
    min-height: 100px;
    min-width: 200px;
    max-height: 250px;
    padding: 0 20px;
    margin-right: 40px;
}
.homeIntroNav {
    text-align: center;
}
.homeIntroNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.homeIntroNav ul li {
    margin: 0;
    padding: 0;
}
.homeIntroNav ul li a {
    display: block;
    position: relative;
    padding: 0 .6em;
    line-height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    text-align: right;
    color: var(--color-base-darker);
    transition: all ease .5s;
}
.homeIntroNav ul li a:hover {
    color: var(--color-contrast-medium);
}
.homeIntroNav ul li a::after {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\2b";
    padding-left: .6rem;
    width: .5rem;
    display: inline-block;
    color: var(--color-contrast-light);
    opacity: 0;
    transition: all ease .5s;
}
.homeIntroNav ul li a:hover::after {
    opacity: 1;
}


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

/* 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;
}
.single article {
    padding: 0;
    position: relative;
    min-height: 100vh;
}
@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: 1;
}
.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);
        border-radius: 12px;
    }
}
@media (min-width: calc(1200px + 20vw)) {
    .single article .singleContent {
        max-width: 1100px;
        border-radius: 20px;
    }
}

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

.archive .pageTitle,
.blog .pageTitle {
    margin: 0;
    padding: 20px 0px;
}
.archive .pageContent,
.blog .pageContent {
    max-width: 100%;
    padding: 160px 0 60px 0;
    margin: 0;
}
@media (min-width: 1000px) {
    .archive .pageContent,
    .blog .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;
  border-radius: 13px;
}
.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);
    border-radius: 50%;
}
.gridItem a span.gridOverImg {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 40%;
    top: 40%;
    right: 40%;
    bottom: 40%;
    border-radius: 50%;
    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;
    border-radius: 13px;
    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;
}

/* EVENTS
-------------------------------------------------- */

.events-single main {
    max-width: 1200px;
    margin: 100px auto 60px auto;
}
.events-single #breadcrumbs {
    padding: 0;
}
/* Hack si premier block est different de Slide */
.events-single .noSlide {
    max-width: 100%;
    margin: 0;
}